[ARVADOS] created: 2.1.0-921-g96dc323b0
Git user
git at public.arvados.org
Mon Jun 14 14:02:28 UTC 2021
at 96dc323b08e952ea2842d82871a7fe7490e0a501 (commit)
commit 96dc323b08e952ea2842d82871a7fe7490e0a501
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date: Mon Jun 14 11:01:36 2021 -0300
17800: Fixes bug.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>
diff --git a/sdk/python/arvados/commands/put.py b/sdk/python/arvados/commands/put.py
index 092036964..813c6ef29 100644
--- a/sdk/python/arvados/commands/put.py
+++ b/sdk/python/arvados/commands/put.py
@@ -259,9 +259,8 @@ def parse_arguments(arguments):
args.paths = ["-" if x == "/dev/stdin" else x for x in args.paths]
- if len(args.paths) != 1 or os.path.isdir(args.paths[0]):
- if args.filename:
- arg_parser.error("""
+ if args.filename and (len(args.paths) != 1 or os.path.isdir(args.paths[0])):
+ arg_parser.error("""
--filename argument cannot be used when storing a directory or
multiple files.
""")
@@ -525,6 +524,8 @@ class ArvPutUploadJob(object):
self._write_stdin(self.filename or 'stdin')
elif not os.path.exists(path):
raise PathDoesNotExistError(u"file or directory '{}' does not exist.".format(path))
+ elif (not self.follow_links) and os.path.islink(path):
+ continue
elif os.path.isdir(path):
# Use absolute paths on cache index so CWD doesn't interfere
# with the caching logic.
commit ec8f96814a7bc8da38309c2e9ed1e5a0e14dcdad
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date: Mon Jun 14 10:38:14 2021 -0300
17800: Exposes bug on test.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>
diff --git a/sdk/python/tests/test_arv_put.py b/sdk/python/tests/test_arv_put.py
index caa03a3e0..fb20eeede 100644
--- a/sdk/python/tests/test_arv_put.py
+++ b/sdk/python/tests/test_arv_put.py
@@ -308,6 +308,13 @@ class ArvPutUploadJobTest(run_test_server.TestCaseWithServers,
self.assertNotIn('linkeddir', cwriter.manifest_text())
self.assertNotIn('linkedfile', cwriter.manifest_text())
cwriter.destroy_cache()
+ # Check for bug #17800: passed symlinks should also be ignored.
+ linked_dir = os.path.join(self.tempdir_with_symlink, 'linkeddir')
+ cwriter = arv_put.ArvPutUploadJob([linked_dir], follow_links=False)
+ cwriter.start(save_collection=False)
+ self.assertNotIn('linkeddir', cwriter.manifest_text())
+ cwriter.destroy_cache()
+
def test_passing_nonexistant_path_raise_exception(self):
uuid_str = str(uuid.uuid4())
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list