Sha256: 0fe8787506fb95d6945eb1ab323f97d2bf6a9fa359900a609dad5c5bf1ce7de5
Contents?: true
Size: 1.45 KB
Versions: 3
Compression:
Stored size: 1.45 KB
Contents
require 'test/unit' require File.join(File.dirname(__FILE__), '../lib/s3_authenticator') class S3AuthenticatorTest < Test::Unit::TestCase def setup @s3_test = S3Lib::AuthenticatedRequest.new end def test_http_verb_is_uppercase @s3_test.make_authenticated_request(:get, '/', {'host' => 's3.amazonaws.com'}) assert_match /^GET\n/, @s3_test.canonical_string end def test_canonical_string_contains_positional_headers @s3_test.make_authenticated_request(:get, '', {'content-type' => 'some crazy content type', 'date' => 'December 25th, 2007', 'content-md5' => 'whee'}) assert_match /^GET\n#{@s3_test.canonicalized_positional_headers}/, @s3_test.canonical_string end def test_positional_headers_with_all_headers @s3_test.make_authenticated_request(:get, '', {'content-type' => 'some crazy content type', 'date' => 'December 25th, 2007', 'content-md5' => 'whee'}) assert_equal "whee\nsome crazy content type\nDecember 25th, 2007\n", @s3_test.canonicalized_positional_headers end def test_positional_headers_with_only_date_header @s3_test.make_authenticated_request(:get, '', {'date' => 'December 25th, 2007'}) assert_equal "\n\nDecember 25th, 2007\n", @s3_test.canonicalized_positional_headers end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
spatten-s3lib-0.0.1 | test/first_test.rb |
s3lib-0.1.1 | test/first_test.rb |
s3lib-0.1.0 | test/first_test.rb |