mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 23:29:47 +00:00
Add test for keys with XML special characters
This commit is contained in:
parent
a23c81187b
commit
2682a6a0eb
1 changed files with 14 additions and 0 deletions
|
@ -828,6 +828,20 @@ def test_object_read_notexist():
|
||||||
eq(e.error_code, 'NoSuchKey')
|
eq(e.error_code, 'NoSuchKey')
|
||||||
|
|
||||||
|
|
||||||
|
@attr(resource='object')
|
||||||
|
@attr(method='put')
|
||||||
|
@attr(operation='write to special characters key')
|
||||||
|
@attr(assertion='fails 404')
|
||||||
|
def test_object_create_special_characters():
|
||||||
|
bucket = get_new_bucket()
|
||||||
|
# sourced from: http://xml.silmaril.ie/specials.html
|
||||||
|
key = bucket.new_key('<&>"\'')
|
||||||
|
key.set_contents_from_string('bar')
|
||||||
|
got = key.get_contents_as_string()
|
||||||
|
eq(got, 'bar')
|
||||||
|
bucket.get_all_keys()
|
||||||
|
|
||||||
|
|
||||||
# While the test itself passes, there's a SAX parser error during teardown. It
|
# While the test itself passes, there's a SAX parser error during teardown. It
|
||||||
# seems to be a boto bug. It happens with both amazon and dho.
|
# seems to be a boto bug. It happens with both amazon and dho.
|
||||||
# http://code.google.com/p/boto/issues/detail?id=501
|
# http://code.google.com/p/boto/issues/detail?id=501
|
||||||
|
|
Loading…
Reference in a new issue