2 # -*- coding: utf-8 -*-
20 from cStringIO import StringIO
23 import arvados.commands.put as arv_put
24 import arvados_testutil as tutil
26 from arvados_testutil import ArvadosBaseTestCase, fake_httplib2_response
27 import run_test_server
29 class ArvadosPutResumeCacheTest(ArvadosBaseTestCase):
33 ['/dev/null', '--filename', 'empty'],
35 ['/tmp', '--max-manifest-depth', '0'],
36 ['/tmp', '--max-manifest-depth', '1']
40 super(ArvadosPutResumeCacheTest, self).tearDown()
42 self.last_cache.destroy()
43 except AttributeError:
46 def cache_path_from_arglist(self, arglist):
47 return arv_put.ResumeCache.make_path(arv_put.parse_arguments(arglist))
49 def test_cache_names_stable(self):
50 for argset in self.CACHE_ARGSET:
51 self.assertEqual(self.cache_path_from_arglist(argset),
52 self.cache_path_from_arglist(argset),
53 "cache name changed for {}".format(argset))
55 def test_cache_names_unique(self):
57 for argset in self.CACHE_ARGSET:
58 path = self.cache_path_from_arglist(argset)
59 self.assertNotIn(path, results)
62 def test_cache_names_simple(self):
63 # The goal here is to make sure the filename doesn't use characters
64 # reserved by the filesystem. Feel free to adjust this regexp as
65 # long as it still does that.
66 bad_chars = re.compile(r'[^-\.\w]')
67 for argset in self.CACHE_ARGSET:
68 path = self.cache_path_from_arglist(argset)
69 self.assertFalse(bad_chars.search(os.path.basename(path)),
70 "path too exotic: {}".format(path))
72 def test_cache_names_ignore_argument_order(self):
74 self.cache_path_from_arglist(['a', 'b', 'c']),
75 self.cache_path_from_arglist(['c', 'a', 'b']))
77 self.cache_path_from_arglist(['-', '--filename', 'stdin']),
78 self.cache_path_from_arglist(['--filename', 'stdin', '-']))
80 def test_cache_names_differ_for_similar_paths(self):
81 # This test needs names at / that don't exist on the real filesystem.
83 self.cache_path_from_arglist(['/_arvputtest1', '/_arvputtest2']),
84 self.cache_path_from_arglist(['/_arvputtest1/_arvputtest2']))
86 def test_cache_names_ignore_irrelevant_arguments(self):
87 # Workaround: parse_arguments bails on --filename with a directory.
88 path1 = self.cache_path_from_arglist(['/tmp'])
89 args = arv_put.parse_arguments(['/tmp'])
91 path2 = arv_put.ResumeCache.make_path(args)
92 self.assertEqual(path1, path2,
93 "cache path considered --filename for directory")
95 self.cache_path_from_arglist(['-']),
96 self.cache_path_from_arglist(['-', '--max-manifest-depth', '1']),
97 "cache path considered --max-manifest-depth for file")
99 def test_cache_names_treat_negative_manifest_depths_identically(self):
100 base_args = ['/tmp', '--max-manifest-depth']
102 self.cache_path_from_arglist(base_args + ['-1']),
103 self.cache_path_from_arglist(base_args + ['-2']))
105 def test_cache_names_treat_stdin_consistently(self):
107 self.cache_path_from_arglist(['-', '--filename', 'test']),
108 self.cache_path_from_arglist(['/dev/stdin', '--filename', 'test']))
110 def test_cache_names_identical_for_synonymous_names(self):
112 self.cache_path_from_arglist(['.']),
113 self.cache_path_from_arglist([os.path.realpath('.')]))
114 testdir = self.make_tmpdir()
115 looplink = os.path.join(testdir, 'loop')
116 os.symlink(testdir, looplink)
118 self.cache_path_from_arglist([testdir]),
119 self.cache_path_from_arglist([looplink]))
121 def test_cache_names_different_by_api_host(self):
122 config = arvados.config.settings()
123 orig_host = config.get('ARVADOS_API_HOST')
125 name1 = self.cache_path_from_arglist(['.'])
126 config['ARVADOS_API_HOST'] = 'x' + (orig_host or 'localhost')
127 self.assertNotEqual(name1, self.cache_path_from_arglist(['.']))
129 if orig_host is None:
130 del config['ARVADOS_API_HOST']
132 config['ARVADOS_API_HOST'] = orig_host
134 @mock.patch('arvados.keep.KeepClient.head')
135 def test_resume_cache_with_current_stream_locators(self, keep_client_head):
136 keep_client_head.side_effect = [True]
138 thing['_current_stream_locators'] = ['098f6bcd4621d373cade4e832627b4f6+4', '1f253c60a2306e0ee12fb6ce0c587904+6']
139 with tempfile.NamedTemporaryFile() as cachefile:
140 self.last_cache = arv_put.ResumeCache(cachefile.name)
141 self.last_cache.save(thing)
142 self.last_cache.close()
143 resume_cache = arv_put.ResumeCache(self.last_cache.filename)
144 self.assertNotEqual(None, resume_cache)
146 @mock.patch('arvados.keep.KeepClient.head')
147 def test_resume_cache_with_finished_streams(self, keep_client_head):
148 keep_client_head.side_effect = [True]
150 thing['_finished_streams'] = [['.', ['098f6bcd4621d373cade4e832627b4f6+4', '1f253c60a2306e0ee12fb6ce0c587904+6']]]
151 with tempfile.NamedTemporaryFile() as cachefile:
152 self.last_cache = arv_put.ResumeCache(cachefile.name)
153 self.last_cache.save(thing)
154 self.last_cache.close()
155 resume_cache = arv_put.ResumeCache(self.last_cache.filename)
156 self.assertNotEqual(None, resume_cache)
158 @mock.patch('arvados.keep.KeepClient.head')
159 def test_resume_cache_with_finished_streams_error_on_head(self, keep_client_head):
160 keep_client_head.side_effect = Exception('Locator not found')
162 thing['_finished_streams'] = [['.', ['098f6bcd4621d373cade4e832627b4f6+4', '1f253c60a2306e0ee12fb6ce0c587904+6']]]
163 with tempfile.NamedTemporaryFile() as cachefile:
164 self.last_cache = arv_put.ResumeCache(cachefile.name)
165 self.last_cache.save(thing)
166 self.last_cache.close()
167 resume_cache = arv_put.ResumeCache(self.last_cache.filename)
168 self.assertNotEqual(None, resume_cache)
169 self.assertRaises(None, resume_cache.check_cache())
171 def test_basic_cache_storage(self):
172 thing = ['test', 'list']
173 with tempfile.NamedTemporaryFile() as cachefile:
174 self.last_cache = arv_put.ResumeCache(cachefile.name)
175 self.last_cache.save(thing)
176 self.assertEqual(thing, self.last_cache.load())
178 def test_empty_cache(self):
179 with tempfile.NamedTemporaryFile() as cachefile:
180 cache = arv_put.ResumeCache(cachefile.name)
181 self.assertRaises(ValueError, cache.load)
183 def test_cache_persistent(self):
184 thing = ['test', 'list']
185 path = os.path.join(self.make_tmpdir(), 'cache')
186 cache = arv_put.ResumeCache(path)
189 self.last_cache = arv_put.ResumeCache(path)
190 self.assertEqual(thing, self.last_cache.load())
192 def test_multiple_cache_writes(self):
193 thing = ['short', 'list']
194 with tempfile.NamedTemporaryFile() as cachefile:
195 self.last_cache = arv_put.ResumeCache(cachefile.name)
196 # Start writing an object longer than the one we test, to make
197 # sure the cache file gets truncated.
198 self.last_cache.save(['long', 'long', 'list'])
199 self.last_cache.save(thing)
200 self.assertEqual(thing, self.last_cache.load())
202 def test_cache_is_locked(self):
203 with tempfile.NamedTemporaryFile() as cachefile:
204 cache = arv_put.ResumeCache(cachefile.name)
205 self.assertRaises(arv_put.ResumeCacheConflict,
206 arv_put.ResumeCache, cachefile.name)
208 def test_cache_stays_locked(self):
209 with tempfile.NamedTemporaryFile() as cachefile:
210 self.last_cache = arv_put.ResumeCache(cachefile.name)
211 path = cachefile.name
212 self.last_cache.save('test')
213 self.assertRaises(arv_put.ResumeCacheConflict,
214 arv_put.ResumeCache, path)
216 def test_destroy_cache(self):
217 cachefile = tempfile.NamedTemporaryFile(delete=False)
219 cache = arv_put.ResumeCache(cachefile.name)
223 arv_put.ResumeCache(cachefile.name)
224 except arv_put.ResumeCacheConflict:
225 self.fail("could not load cache after destroying it")
226 self.assertRaises(ValueError, cache.load)
228 if os.path.exists(cachefile.name):
229 os.unlink(cachefile.name)
231 def test_restart_cache(self):
232 path = os.path.join(self.make_tmpdir(), 'cache')
233 cache = arv_put.ResumeCache(path)
236 self.assertRaises(ValueError, cache.load)
237 self.assertRaises(arv_put.ResumeCacheConflict,
238 arv_put.ResumeCache, path)
241 class ArvPutUploadJobTest(run_test_server.TestCaseWithServers,
242 ArvadosBaseTestCase):
244 super(ArvPutUploadJobTest, self).setUp()
245 run_test_server.authorize_with('active')
246 # Temp files creation
247 self.tempdir = tempfile.mkdtemp()
248 subdir = os.path.join(self.tempdir, 'subdir')
250 data = "x" * 1024 # 1 KB
251 for i in range(1, 5):
252 with open(os.path.join(self.tempdir, str(i)), 'w') as f:
254 with open(os.path.join(subdir, 'otherfile'), 'w') as f:
256 # Large temp file for resume test
257 _, self.large_file_name = tempfile.mkstemp()
258 fileobj = open(self.large_file_name, 'w')
259 # Make sure to write just a little more than one block
260 for _ in range((arvados.config.KEEP_BLOCK_SIZE/(1024*1024))+1):
261 data = random.choice(['x', 'y', 'z']) * 1024 * 1024 # 1 MB
264 self.arvfile_write = getattr(arvados.arvfile.ArvadosFileWriter, 'write')
267 super(ArvPutUploadJobTest, self).tearDown()
268 shutil.rmtree(self.tempdir)
269 os.unlink(self.large_file_name)
271 def test_writer_works_without_cache(self):
272 cwriter = arv_put.ArvPutUploadJob(['/dev/null'], resume=False)
274 self.assertEqual(". d41d8cd98f00b204e9800998ecf8427e+0 0:0:null\n", cwriter.manifest_text())
276 def test_writer_works_with_cache(self):
277 with tempfile.NamedTemporaryFile() as f:
280 cwriter = arv_put.ArvPutUploadJob([f.name])
282 self.assertEqual(3, cwriter.bytes_written)
283 # Don't destroy the cache, and start another upload
284 cwriter_new = arv_put.ArvPutUploadJob([f.name])
286 cwriter_new.destroy_cache()
287 self.assertEqual(0, cwriter_new.bytes_written)
289 def make_progress_tester(self):
291 def record_func(written, expected):
292 progression.append((written, expected))
293 return progression, record_func
295 def test_progress_reporting(self):
296 with tempfile.NamedTemporaryFile() as f:
299 for expect_count in (None, 8):
300 progression, reporter = self.make_progress_tester()
301 cwriter = arv_put.ArvPutUploadJob([f.name],
302 reporter=reporter, bytes_expected=expect_count)
304 cwriter.destroy_cache()
305 self.assertIn((3, expect_count), progression)
307 def test_writer_upload_directory(self):
308 cwriter = arv_put.ArvPutUploadJob([self.tempdir])
310 cwriter.destroy_cache()
311 self.assertEqual(1024*(1+2+3+4+5), cwriter.bytes_written)
313 def test_resume_large_file_upload(self):
314 def wrapped_write(*args, **kwargs):
316 # Exit only on last block
317 if len(data) < arvados.config.KEEP_BLOCK_SIZE:
318 raise SystemExit("Simulated error")
319 return self.arvfile_write(*args, **kwargs)
321 with mock.patch('arvados.arvfile.ArvadosFileWriter.write',
322 autospec=True) as mocked_write:
323 mocked_write.side_effect = wrapped_write
324 writer = arv_put.ArvPutUploadJob([self.large_file_name],
325 replication_desired=1)
326 with self.assertRaises(SystemExit):
328 self.assertLess(writer.bytes_written,
329 os.path.getsize(self.large_file_name))
331 writer2 = arv_put.ArvPutUploadJob([self.large_file_name],
332 replication_desired=1)
334 self.assertEqual(writer.bytes_written + writer2.bytes_written,
335 os.path.getsize(self.large_file_name))
336 writer2.destroy_cache()
339 class ArvadosExpectedBytesTest(ArvadosBaseTestCase):
340 TEST_SIZE = os.path.getsize(__file__)
342 def test_expected_bytes_for_file(self):
343 self.assertEqual(self.TEST_SIZE,
344 arv_put.expected_bytes_for([__file__]))
346 def test_expected_bytes_for_tree(self):
347 tree = self.make_tmpdir()
348 shutil.copyfile(__file__, os.path.join(tree, 'one'))
349 shutil.copyfile(__file__, os.path.join(tree, 'two'))
350 self.assertEqual(self.TEST_SIZE * 2,
351 arv_put.expected_bytes_for([tree]))
352 self.assertEqual(self.TEST_SIZE * 3,
353 arv_put.expected_bytes_for([tree, __file__]))
355 def test_expected_bytes_for_device(self):
356 self.assertIsNone(arv_put.expected_bytes_for(['/dev/null']))
357 self.assertIsNone(arv_put.expected_bytes_for([__file__, '/dev/null']))
360 class ArvadosPutReportTest(ArvadosBaseTestCase):
361 def test_machine_progress(self):
362 for count, total in [(0, 1), (0, None), (1, None), (235, 9283)]:
363 expect = ": {} written {} total\n".format(
364 count, -1 if (total is None) else total)
366 arv_put.machine_progress(count, total).endswith(expect))
368 def test_known_human_progress(self):
369 for count, total in [(0, 1), (2, 4), (45, 60)]:
370 expect = '{:.1%}'.format(float(count) / total)
371 actual = arv_put.human_progress(count, total)
372 self.assertTrue(actual.startswith('\r'))
373 self.assertIn(expect, actual)
375 def test_unknown_human_progress(self):
376 for count in [1, 20, 300, 4000, 50000]:
377 self.assertTrue(re.search(r'\b{}\b'.format(count),
378 arv_put.human_progress(count, None)))
381 class ArvadosPutTest(run_test_server.TestCaseWithServers, ArvadosBaseTestCase):
383 Z_UUID = 'zzzzz-zzzzz-zzzzzzzzzzzzzzz'
385 def call_main_with_args(self, args):
386 self.main_stdout = StringIO()
387 self.main_stderr = StringIO()
388 return arv_put.main(args, self.main_stdout, self.main_stderr)
390 def call_main_on_test_file(self, args=[]):
391 with self.make_test_file() as testfile:
393 self.call_main_with_args(['--stream', '--no-progress'] + args + [path])
395 os.path.exists(os.path.join(os.environ['KEEP_LOCAL_STORE'],
396 '098f6bcd4621d373cade4e832627b4f6')),
397 "did not find file stream in Keep store")
400 super(ArvadosPutTest, self).setUp()
401 run_test_server.authorize_with('active')
402 arv_put.api_client = None
405 for outbuf in ['main_stdout', 'main_stderr']:
406 if hasattr(self, outbuf):
407 getattr(self, outbuf).close()
408 delattr(self, outbuf)
409 super(ArvadosPutTest, self).tearDown()
411 def test_simple_file_put(self):
412 self.call_main_on_test_file()
414 def test_put_with_unwriteable_cache_dir(self):
415 orig_cachedir = arv_put.ResumeCache.CACHE_DIR
416 cachedir = self.make_tmpdir()
417 os.chmod(cachedir, 0o0)
418 arv_put.ResumeCache.CACHE_DIR = cachedir
420 self.call_main_on_test_file()
422 arv_put.ResumeCache.CACHE_DIR = orig_cachedir
423 os.chmod(cachedir, 0o700)
425 def test_put_with_unwritable_cache_subdir(self):
426 orig_cachedir = arv_put.ResumeCache.CACHE_DIR
427 cachedir = self.make_tmpdir()
428 os.chmod(cachedir, 0o0)
429 arv_put.ResumeCache.CACHE_DIR = os.path.join(cachedir, 'cachedir')
431 self.call_main_on_test_file()
433 arv_put.ResumeCache.CACHE_DIR = orig_cachedir
434 os.chmod(cachedir, 0o700)
436 def test_put_block_replication(self):
437 self.call_main_on_test_file()
438 with mock.patch('arvados.collection.KeepClient.local_store_put') as put_mock:
439 put_mock.return_value = 'acbd18db4cc2f85cedef654fccc4a4d8+3'
440 self.call_main_on_test_file(['--replication', '1'])
441 self.call_main_on_test_file(['--replication', '4'])
442 self.call_main_on_test_file(['--replication', '5'])
444 [x[-1].get('copies') for x in put_mock.call_args_list],
447 def test_normalize(self):
448 testfile1 = self.make_test_file()
449 testfile2 = self.make_test_file()
450 test_paths = [testfile1.name, testfile2.name]
451 # Reverse-sort the paths, so normalization must change their order.
452 test_paths.sort(reverse=True)
453 self.call_main_with_args(['--stream', '--no-progress', '--normalize'] +
455 manifest = self.main_stdout.getvalue()
456 # Assert the second file we specified appears first in the manifest.
457 file_indices = [manifest.find(':' + os.path.basename(path))
458 for path in test_paths]
459 self.assertGreater(*file_indices)
461 def test_error_name_without_collection(self):
462 self.assertRaises(SystemExit, self.call_main_with_args,
463 ['--name', 'test without Collection',
464 '--stream', '/dev/null'])
466 def test_error_when_project_not_found(self):
467 self.assertRaises(SystemExit,
468 self.call_main_with_args,
469 ['--project-uuid', self.Z_UUID])
471 def test_error_bad_project_uuid(self):
472 self.assertRaises(SystemExit,
473 self.call_main_with_args,
474 ['--project-uuid', self.Z_UUID, '--stream'])
476 def test_api_error_handling(self):
477 coll_save_mock = mock.Mock(name='arv.collection.Collection().save_new()')
478 coll_save_mock.side_effect = arvados.errors.ApiError(
479 fake_httplib2_response(403), '{}')
480 with mock.patch('arvados.collection.Collection.save_new',
482 with self.assertRaises(SystemExit) as exc_test:
483 self.call_main_with_args(['/dev/null'])
484 self.assertLess(0, exc_test.exception.args[0])
485 self.assertLess(0, coll_save_mock.call_count)
486 self.assertEqual("", self.main_stdout.getvalue())
489 class ArvPutIntegrationTest(run_test_server.TestCaseWithServers,
490 ArvadosBaseTestCase):
491 def _getKeepServerConfig():
492 for config_file, mandatory in [
493 ['application.yml', False], ['application.default.yml', True]]:
494 path = os.path.join(run_test_server.SERVICES_SRC_DIR,
495 "api", "config", config_file)
496 if not mandatory and not os.path.exists(path):
498 with open(path) as f:
499 rails_config = yaml.load(f.read())
500 for config_section in ['test', 'common']:
502 key = rails_config[config_section]["blob_signing_key"]
503 except (KeyError, TypeError):
506 return {'blob_signing_key': key,
507 'enforce_permissions': True}
508 return {'blog_signing_key': None, 'enforce_permissions': False}
511 KEEP_SERVER = _getKeepServerConfig()
512 PROJECT_UUID = run_test_server.fixture('groups')['aproject']['uuid']
516 super(ArvPutIntegrationTest, cls).setUpClass()
517 cls.ENVIRON = os.environ.copy()
518 cls.ENVIRON['PYTHONPATH'] = ':'.join(sys.path)
521 super(ArvPutIntegrationTest, self).setUp()
522 arv_put.api_client = None
524 def authorize_with(self, token_name):
525 run_test_server.authorize_with(token_name)
526 for v in ["ARVADOS_API_HOST",
527 "ARVADOS_API_HOST_INSECURE",
528 "ARVADOS_API_TOKEN"]:
529 self.ENVIRON[v] = arvados.config.settings()[v]
530 arv_put.api_client = arvados.api('v1')
532 def current_user(self):
533 return arv_put.api_client.users().current().execute()
535 def test_check_real_project_found(self):
536 self.authorize_with('active')
537 self.assertTrue(arv_put.desired_project_uuid(arv_put.api_client, self.PROJECT_UUID, 0),
538 "did not correctly find test fixture project")
540 def test_check_error_finding_nonexistent_uuid(self):
541 BAD_UUID = 'zzzzz-zzzzz-zzzzzzzzzzzzzzz'
542 self.authorize_with('active')
544 result = arv_put.desired_project_uuid(arv_put.api_client, BAD_UUID,
546 except ValueError as error:
547 self.assertIn(BAD_UUID, error.message)
549 self.assertFalse(result, "incorrectly found nonexistent project")
551 def test_check_error_finding_nonexistent_project(self):
552 BAD_UUID = 'zzzzz-tpzed-zzzzzzzzzzzzzzz'
553 self.authorize_with('active')
554 with self.assertRaises(apiclient.errors.HttpError):
555 result = arv_put.desired_project_uuid(arv_put.api_client, BAD_UUID,
558 def test_short_put_from_stdin(self):
559 # Have to run this as an integration test since arv-put can't
560 # read from the tests' stdin.
561 # arv-put usually can't stat(os.path.realpath('/dev/stdin')) in this
562 # case, because the /proc entry is already gone by the time it tries.
563 pipe = subprocess.Popen(
564 [sys.executable, arv_put.__file__, '--stream'],
565 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
566 stderr=subprocess.STDOUT, env=self.ENVIRON)
567 pipe.stdin.write('stdin test\n')
569 deadline = time.time() + 5
570 while (pipe.poll() is None) and (time.time() < deadline):
572 returncode = pipe.poll()
573 if returncode is None:
575 self.fail("arv-put did not PUT from stdin within 5 seconds")
576 elif returncode != 0:
577 sys.stdout.write(pipe.stdout.read())
578 self.fail("arv-put returned exit code {}".format(returncode))
579 self.assertIn('4a9c8b735dce4b5fa3acf221a0b13628+11', pipe.stdout.read())
581 def test_ArvPutSignedManifest(self):
582 # ArvPutSignedManifest runs "arv-put foo" and then attempts to get
583 # the newly created manifest from the API server, testing to confirm
584 # that the block locators in the returned manifest are signed.
585 self.authorize_with('active')
587 # Before doing anything, demonstrate that the collection
588 # we're about to create is not present in our test fixture.
589 manifest_uuid = "00b4e9f40ac4dd432ef89749f1c01e74+47"
590 with self.assertRaises(apiclient.errors.HttpError):
591 notfound = arv_put.api_client.collections().get(
592 uuid=manifest_uuid).execute()
594 datadir = self.make_tmpdir()
595 with open(os.path.join(datadir, "foo"), "w") as f:
596 f.write("The quick brown fox jumped over the lazy dog")
597 p = subprocess.Popen([sys.executable, arv_put.__file__, datadir],
598 stdout=subprocess.PIPE, env=self.ENVIRON)
599 (arvout, arverr) = p.communicate()
600 self.assertEqual(arverr, None)
601 self.assertEqual(p.returncode, 0)
603 # The manifest text stored in the API server under the same
604 # manifest UUID must use signed locators.
605 c = arv_put.api_client.collections().get(uuid=manifest_uuid).execute()
606 self.assertRegexpMatches(
608 r'^\. 08a008a01d498c404b0c30852b39d3b8\+44\+A[0-9a-f]+@[0-9a-f]+ 0:44:foo\n')
610 os.remove(os.path.join(datadir, "foo"))
613 def run_and_find_collection(self, text, extra_args=[]):
614 self.authorize_with('active')
615 pipe = subprocess.Popen(
616 [sys.executable, arv_put.__file__] + extra_args,
617 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
618 stderr=subprocess.PIPE, env=self.ENVIRON)
619 stdout, stderr = pipe.communicate(text)
620 search_key = ('portable_data_hash'
621 if '--portable-data-hash' in extra_args else 'uuid')
622 collection_list = arvados.api('v1').collections().list(
623 filters=[[search_key, '=', stdout.strip()]]).execute().get('items', [])
624 self.assertEqual(1, len(collection_list))
625 return collection_list[0]
627 def test_put_collection_with_high_redundancy(self):
628 # Write empty data: we're not testing CollectionWriter, just
629 # making sure collections.create tells the API server what our
630 # desired replication level is.
631 collection = self.run_and_find_collection("", ['--replication', '4'])
632 self.assertEqual(4, collection['replication_desired'])
634 def test_put_collection_with_default_redundancy(self):
635 collection = self.run_and_find_collection("")
636 self.assertEqual(None, collection['replication_desired'])
638 def test_put_collection_with_unnamed_project_link(self):
639 link = self.run_and_find_collection(
640 "Test unnamed collection",
641 ['--portable-data-hash', '--project-uuid', self.PROJECT_UUID])
642 username = pwd.getpwuid(os.getuid()).pw_name
643 self.assertRegexpMatches(
645 r'^Saved at .* by {}@'.format(re.escape(username)))
647 def test_put_collection_with_name_and_no_project(self):
648 link_name = 'Test Collection Link in home project'
649 collection = self.run_and_find_collection(
650 "Test named collection in home project",
651 ['--portable-data-hash', '--name', link_name])
652 self.assertEqual(link_name, collection['name'])
653 my_user_uuid = self.current_user()['uuid']
654 self.assertEqual(my_user_uuid, collection['owner_uuid'])
656 def test_put_collection_with_named_project_link(self):
657 link_name = 'Test auto Collection Link'
658 collection = self.run_and_find_collection("Test named collection",
659 ['--portable-data-hash',
661 '--project-uuid', self.PROJECT_UUID])
662 self.assertEqual(link_name, collection['name'])
665 if __name__ == '__main__':