]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
test_web: improve test coverage of PUT DIRURL t=uri replace=false
authorBrian Warner <warner@allmydata.com>
Wed, 29 Oct 2008 04:57:44 +0000 (21:57 -0700)
committerBrian Warner <warner@allmydata.com>
Wed, 29 Oct 2008 04:57:44 +0000 (21:57 -0700)
src/allmydata/test/test_web.py

index 85732704ba0c3391387045264da0741ced95cb77..40f9e4020fdc8286e1e58de593e348107a67072d 100644 (file)
@@ -2178,6 +2178,25 @@ class Web(WebMixin, testutil.StallMixin, unittest.TestCase):
         d.addCallback(_made_dir)
         return d
 
+    def test_PUT_DIRURL_uri_noreplace(self):
+        d = self.s.create_empty_dirnode()
+        def _made_dir(dn):
+            new_uri = dn.get_uri()
+            # replace /foo with a new (empty) directory, but ask that
+            # replace=false, so it should fail
+            d = self.shouldFail2(error.Error, "test_PUT_DIRURL_uri_noreplace",
+                                 "409 Conflict", "There was already a child by that name, and you asked me to not replace it",
+                                 self.PUT,
+                                 self.public_url + "/foo?t=uri&replace=false",
+                                 new_uri)
+            d.addCallback(lambda res:
+                          self.failUnlessChildURIIs(self.public_root,
+                                                    u"foo",
+                                                    self._foo_uri))
+            return d
+        d.addCallback(_made_dir)
+        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)