[ARVADOS] updated: fe0d8506f80a7ce5f1d412823a09a5d7324b7161
Git user
git at public.curoverse.com
Tue Aug 16 10:44:29 EDT 2016
Summary of changes:
sdk/python/tests/test_collections.py | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
via fe0d8506f80a7ce5f1d412823a09a5d7324b7161 (commit)
from 7b227c653e31449f6c23b4b8d933172bbfb2b172 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit fe0d8506f80a7ce5f1d412823a09a5d7324b7161
Author: Lucas Di Pentima <lucas at curoverse.com>
Date: Tue Aug 16 11:43:43 2016 -0300
9463: Corrected test to prove that the manifest is correct when uncommitted blocks exist
diff --git a/sdk/python/tests/test_collections.py b/sdk/python/tests/test_collections.py
index 668f2e2..cf8f23e 100644
--- a/sdk/python/tests/test_collections.py
+++ b/sdk/python/tests/test_collections.py
@@ -1086,21 +1086,24 @@ class NewCollectionTestCaseWithServers(run_test_server.TestCaseWithServers):
def test_get_manifest_text_only_committed(self):
c = Collection()
with c.open("count.txt", "w") as f:
+ # One file committed
+ with c.open("foo.txt", "w") as foo:
+ foo.write("foo")
f.write("0123456789")
- # Block not written to keep yet
- self.assertNotEqual(
+ # Other file not committed. Block not written to keep yet.
+ self.assertEqual(
c._get_manifest_text(".",
strip=False,
normalize=False,
only_committed=True),
- ". 781e5e245d69b566979b86e28d23f2c7+10 0:10:count.txt\n")
+ '. acbd18db4cc2f85cedef654fccc4a4d8+3 0:0:count.txt 0:3:foo.txt\n')
# And now with the file closed...
self.assertEqual(
c._get_manifest_text(".",
strip=False,
normalize=False,
only_committed=True),
- ". 781e5e245d69b566979b86e28d23f2c7+10 0:10:count.txt\n")
+ ". 781e5e245d69b566979b86e28d23f2c7+10 acbd18db4cc2f85cedef654fccc4a4d8+3 0:10:count.txt 10:3:foo.txt\n")
class CollectionCreateUpdateTest(run_test_server.TestCaseWithServers):
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list