Fix issue with large S3 values. Closes #11.

This commit is contained in:
Steve Pulec 2013-05-06 23:33:59 -04:00
commit caf73557cd
3 changed files with 34 additions and 1 deletions

View file

@ -78,6 +78,17 @@ def test_empty_key_set_on_existing_key():
bucket.get_key("the-key").get_contents_as_string().should.equal('')
@mock_s3
def test_large_key_save():
conn = boto.connect_s3('the_key', 'the_secret')
bucket = conn.create_bucket("foobar")
key = Key(bucket)
key.key = "the-key"
key.set_contents_from_string("foobar" * 100000)
bucket.get_key("the-key").get_contents_as_string().should.equal('foobar' * 100000)
@mock_s3
def test_copy_key():
conn = boto.connect_s3('the_key', 'the_secret')