]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Add unit test for moving a directory
authorMarcus Wanner <marcus@wanners.net>
Thu, 24 Nov 2011 06:51:42 +0000 (01:51 -0500)
committerBrian Warner <warner@lothar.com>
Wed, 9 May 2012 20:07:14 +0000 (13:07 -0700)
My gut tells me this case sould be tested. The rename suite tests it, so
move's will too.

src/allmydata/test/test_web.py

index baf0017847d90907c7e69db710333b12ca1e80b6..5103478f18bacece85097cdb612625f6fdc11472 100644 (file)
@@ -3401,6 +3401,24 @@ class Web(WebMixin, WebErrorMixin, testutil.StallMixin, testutil.ReallyEqualMixi
         d.addCallback(self.failUnlessIsBarJSON)
         return d
 
+    def test_POST_move_dir(self):
+        d = self.POST(self.public_url + "/foo", t="move",
+                      from_name="bar.txt", to_dir="empty")
+        d.addCallback(lambda res: self.POST(self.public_url + "/foo",
+                      t="move", from_name="empty", to_dir="sub"))
+        d.addCallback(lambda res:
+                      self.failIfNodeHasChild(self._foo_node, u"empty"))
+        d.addCallback(lambda res:
+                      self.failUnlessNodeHasChild(self._sub_node, u"empty"))
+        d.addCallback(lambda res:
+                      self._sub_node.get_child_at_path(u"empty"))
+        d.addCallback(lambda node:
+                      self.failUnlessNodeHasChild(node, u"bar.txt"))
+        d.addCallback(lambda res:
+                      self.GET(self.public_url + "/foo/sub/empty/bar.txt"))
+        d.addCallback(self.failUnlessIsBarDotTxt)
+        return d
+
     def shouldRedirect(self, res, target=None, statuscode=None, which=""):
         """ If target is not None then the redirection has to go to target.  If
         statuscode is not None then the redirection has to be accomplished with