1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: Apache-2.0
5 from __future__ import absolute_import
12 from arvados.collection import Collection, CollectionReader
14 import arvados.commands.arv_copy as arv_copy
15 from . import arvados_testutil as tutil
16 from . import run_test_server
18 class ArvCopyVersionTestCase(run_test_server.TestCaseWithServers, tutil.VersionChecker):
22 def run_copy(self, args):
23 sys.argv = ['arv-copy'] + args
24 return arv_copy.main()
26 def test_unsupported_arg(self):
27 with self.assertRaises(SystemExit):
28 self.run_copy(['-x=unknown'])
30 def test_version_argument(self):
31 with tutil.redirected_streams(
32 stdout=tutil.StringIO, stderr=tutil.StringIO) as (out, err):
33 with self.assertRaises(SystemExit):
34 self.run_copy(['--version'])
35 self.assertVersionOutput(out, err)
37 def test_copy_project(self):
39 src_proj = api.groups().create(body={"group": {"name": "arv-copy project", "group_class": "project"}}).execute()["uuid"]
42 with c.open('foo', 'wt') as f:
44 c.save_new("arv-copy foo collection", owner_uuid=src_proj)
45 coll_record = api.collections().get(uuid=c.manifest_locator()).execute()
46 assert coll_record['storage_classes_desired'] == ['default']
48 dest_proj = api.groups().create(body={"group": {"name": "arv-copy dest project", "group_class": "project"}}).execute()["uuid"]
50 tmphome = tempfile.mkdtemp()
51 home_was = os.environ['HOME']
52 os.environ['HOME'] = tmphome
54 cfgdir = os.path.join(tmphome, ".config", "arvados")
56 with open(os.path.join(cfgdir, "zzzzz.conf"), "wt") as f:
57 f.write("ARVADOS_API_HOST=%s\n" % os.environ["ARVADOS_API_HOST"])
58 f.write("ARVADOS_API_TOKEN=%s\n" % os.environ["ARVADOS_API_TOKEN"])
59 f.write("ARVADOS_API_HOST_INSECURE=1\n")
61 contents = api.groups().list(filters=[["owner_uuid", "=", dest_proj]]).execute()
62 assert len(contents["items"]) == 0
65 self.run_copy(["--project-uuid", dest_proj, "--storage-classes", "foo", src_proj])
66 except SystemExit as e:
69 contents = api.groups().list(filters=[["owner_uuid", "=", dest_proj]]).execute()
70 assert len(contents["items"]) == 1
72 assert contents["items"][0]["name"] == "arv-copy project"
73 copied_project = contents["items"][0]["uuid"]
75 contents = api.collections().list(filters=[["owner_uuid", "=", copied_project]]).execute()
76 assert len(contents["items"]) == 1
78 assert contents["items"][0]["uuid"] != c.manifest_locator()
79 assert contents["items"][0]["name"] == "arv-copy foo collection"
80 assert contents["items"][0]["portable_data_hash"] == c.portable_data_hash()
81 assert contents["items"][0]["storage_classes_desired"] == ["foo"]
84 os.environ['HOME'] = home_was
85 shutil.rmtree(tmphome)