]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Adds test_ticket_2027 to test_cli.Cp. refs #2027
authorDaira Hopwood <daira@jacaranda.org>
Sat, 11 Oct 2014 22:43:23 +0000 (23:43 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Fri, 30 Jan 2015 00:50:25 +0000 (00:50 +0000)
Author: Mark Berger <mark.berger.j@gmail.com>
Signed-off-by: Daira Hopwood <daira@jacaranda.org>
src/allmydata/test/test_cli.py

index f672ea12095df7f241102ed482e08df51ce68e07..b39cafc495939316e4c54c14dc5d6d496f9476db 100644 (file)
@@ -2509,6 +2509,28 @@ starting copy, 2 files, 1 directories
         d.addCallback(_check_local_fs)
         return d
 
+    def test_ticket_2027(self):
+        # This test ensures that tahoe will copy a file from the grid to
+        # a local directory without a specified file name.
+        # https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2027
+        self.basedir = "cli/Cp/cp_verbose"
+        self.set_up_grid()
+
+        # Write a test file, which we'll copy to the grid.
+        test1_path = os.path.join(self.basedir, "test1")
+        fileutil.write(test1_path, "test1")
+
+        d = self.do_cli("create-alias", "tahoe")
+        d.addCallback(lambda ign:
+            self.do_cli("cp", test1_path, "tahoe:"))
+        d.addCallback(lambda ign:
+            self.do_cli("cp", "tahoe:test1", self.basedir))
+        def _check(res):
+            (rc, out, err) = res
+            self.failUnlessIn("Success: file copied", out, str(res))
+        return d
+
+
 class Backup(GridTestMixin, CLITestMixin, StallMixin, unittest.TestCase):
 
     def writeto(self, path, data):