14965: Fixes crunchstat test assertion
[arvados.git] / services / fuse / tests / test_tmp_collection.py
index 60eba1bf856deee4983b7297a1fe9192be42c7e1..a70df8822524f66e449051092c9b06f3d6c6b325 100644 (file)
@@ -1,3 +1,8 @@
+# Copyright (C) The Arvados Authors. All rights reserved.
+#
+# SPDX-License-Identifier: AGPL-3.0
+
+from builtins import range
 import arvados
 import arvados_fuse
 import arvados_fuse.command
@@ -122,3 +127,16 @@ class TmpCollectionTest(IntegrationTest):
                     with open(path, 'w') as f:
                         f.write(content)
                 self.assertRegexpMatches(current_manifest(tmpdir), expect)
+
+    @IntegrationTest.mount(argv=mnt_args)
+    def test_tmp_rewrite(self):
+        self.pool_test(os.path.join(self.mnt, 'zzz'))
+    @staticmethod
+    def _test_tmp_rewrite(self, tmpdir):
+        with open(os.path.join(tmpdir, "b1"), 'w') as f:
+            f.write("b1")
+        with open(os.path.join(tmpdir, "b2"), 'w') as f:
+            f.write("b2")
+        with open(os.path.join(tmpdir, "b1"), 'w') as f:
+            f.write("1b")
+        self.assertRegexpMatches(current_manifest(tmpdir), "^\. ed4f3f67c70b02b29c50ce1ea26666bd\+4(\+\S+)? 0:2:b1 2:2:b2\n$")