From: Brian Warner <warner@allmydata.com>
Date: Wed, 29 Oct 2008 05:00:15 +0000 (-0700)
Subject: test_web.py: one more line of test coverage
X-Git-Url: https://git.rkrishnan.org/specifications/components/com_hotproperty/frontends?a=commitdiff_plain;h=186b64b6339f42db615fe80949d9a5d727e07463;p=tahoe-lafs%2Ftahoe-lafs.git

test_web.py: one more line of test coverage
---

diff --git a/src/allmydata/test/test_web.py b/src/allmydata/test/test_web.py
index 40f9e402..0d80b52e 100644
--- a/src/allmydata/test/test_web.py
+++ b/src/allmydata/test/test_web.py
@@ -2197,6 +2197,16 @@ class Web(WebMixin, testutil.StallMixin, unittest.TestCase):
         d.addCallback(_made_dir)
         return d
 
+    def test_PUT_DIRURL_bad_t(self):
+        d = self.shouldFail2(error.Error, "test_PUT_DIRURL_bad_t",
+                                 "400 Bad Request", "PUT to a directory",
+                                 self.PUT, self.public_url + "/foo?t=BOGUS", "")
+        d.addCallback(lambda res:
+                      self.failUnlessChildURIIs(self.public_root,
+                                                u"foo",
+                                                self._foo_uri))
+        return d
+
     def test_PUT_NEWFILEURL_uri(self):
         contents, n, new_uri = self.makefile(8)
         d = self.PUT(self.public_url + "/foo/new.txt?t=uri", new_uri)