Make sure it's non-UTF-8-encodable bytes, just to make sure it's roundtripping correctly.
This commit is contained in:
parent
be59682532
commit
20c04f4ddb
|
@ -3094,13 +3094,14 @@ class Web(WebMixin, WebErrorMixin, testutil.StallMixin, testutil.ReallyEqualMixi
|
||||||
self.NEWFILE_CONTENTS)
|
self.NEWFILE_CONTENTS)
|
||||||
|
|
||||||
def test_POST_upload_named(self):
|
def test_POST_upload_named(self):
|
||||||
|
NEWFILE_CONTENTS = self.NEWFILE_CONTENTS + b"\xFF\x00\xFF"
|
||||||
fn = self._foo_node
|
fn = self._foo_node
|
||||||
d = self.POST(self.public_url + "/foo", t="upload",
|
d = self.POST(self.public_url + "/foo", t="upload",
|
||||||
name="new.txt", file=self.NEWFILE_CONTENTS)
|
name="new.txt", file=NEWFILE_CONTENTS)
|
||||||
d.addCallback(self.failUnlessURIMatchesROChild, fn, u"new.txt")
|
d.addCallback(self.failUnlessURIMatchesROChild, fn, u"new.txt")
|
||||||
d.addCallback(lambda res:
|
d.addCallback(lambda res:
|
||||||
self.failUnlessChildContentsAre(fn, u"new.txt",
|
self.failUnlessChildContentsAre(fn, u"new.txt",
|
||||||
self.NEWFILE_CONTENTS))
|
NEWFILE_CONTENTS))
|
||||||
return d
|
return d
|
||||||
|
|
||||||
def test_POST_upload_named_badfilename(self):
|
def test_POST_upload_named_badfilename(self):
|
||||||
|
|
Loading…
Reference in New Issue