poor error message for wrong path syntax, e.g. "tahoe cp $CAP:$PATH ." #1379

Closed
opened 2011-03-17 21:49:22 +00:00 by zooko · 2 comments

The error messages are unhelpful, but also it looks like there is a bug so that tahoe cp misparses the $CAP/path syntax in its source argument.

$ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest .
error: you must specify a destination filename
$ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest ./Latest
attaching sources to targets, 1 files / 0 dirs in root
targets assigned, 1 dirs, 2 files
starting copy, 2 files, 1 directories
Traceback (most recent call last):
  File "/Users/zooko/playground/tahoe-lafs/dw/support/bin/tahoe", line 9, in <module>
    load_entry_point('allmydata-tahoe==1.8.2-r5006', 'console_scripts', 'tahoe')()
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 113, in run
    rc = runner(sys.argv[1:], install_node_control=install_node_control)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 99, in runner
    rc = cli.dispatch[command](so)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/cli.py", line 520, in cp
    rc = tahoe_cp.copy(options)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 762, in copy
    return Copier().do_copy(options)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 442, in do_copy
    status = self.try_copy()
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 485, in try_copy
    return self.copy_to_directory(sources, target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 664, in copy_to_directory
    self.copy_files_to_target(self.targetmap[target], target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 695, in copy_files_to_target
    self.copy_file_into(source, name, target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 739, in copy_file_into
    f = source.open(self.caps_only)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 178, in open
    url = self.nodeurl + "uri/" + urllib.quote(self.readcap)
  File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py", line 1216, in quote
    res = map(safe_map.__getitem__, s)
TypeError: argument 2 to map() must support iteration
$ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest/ .
examining 0 of 1
attaching sources to targets, 1 files / 0 dirs in root
targets assigned, 1 dirs, 2 files
starting copy, 2 files, 1 directories
Traceback (most recent call last):
  File "/Users/zooko/playground/tahoe-lafs/dw/support/bin/tahoe", line 9, in <module>
    load_entry_point('allmydata-tahoe==1.8.2-r5006', 'console_scripts', 'tahoe')()
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 113, in run
    rc = runner(sys.argv[1:], install_node_control=install_node_control)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 99, in runner
    rc = cli.dispatch[command](so)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/cli.py", line 520, in cp
    rc = tahoe_cp.copy(options)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 762, in copy
    return Copier().do_copy(options)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 442, in do_copy
    status = self.try_copy()
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 503, in try_copy
    return self.copy_to_directory(sources, target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 664, in copy_to_directory
    self.copy_files_to_target(self.targetmap[target], target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 695, in copy_files_to_target
    self.copy_file_into(source, name, target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 739, in copy_file_into
    f = source.open(self.caps_only)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 178, in open
    url = self.nodeurl + "uri/" + urllib.quote(self.readcap)
  File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py", line 1216, in quote
    res = map(safe_map.__getitem__, s)
TypeError: argument 2 to map() must support iteration
$ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest/ ./Latest
attaching sources to targets, 1 files / 0 dirs in root
targets assigned, 1 dirs, 2 files
starting copy, 2 files, 1 directories
Traceback (most recent call last):
  File "/Users/zooko/playground/tahoe-lafs/dw/support/bin/tahoe", line 9, in <module>
    load_entry_point('allmydata-tahoe==1.8.2-r5006', 'console_scripts', 'tahoe')()
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 113, in run
    rc = runner(sys.argv[1:], install_node_control=install_node_control)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 99, in runner
    rc = cli.dispatch[command](so)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/cli.py", line 520, in cp
    rc = tahoe_cp.copy(options)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 762, in copy
    return Copier().do_copy(options)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 442, in do_copy
    status = self.try_copy()
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 503, in try_copy
    return self.copy_to_directory(sources, target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 664, in copy_to_directory
    self.copy_files_to_target(self.targetmap[target], target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 695, in copy_files_to_target
    self.copy_file_into(source, name, target)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 739, in copy_file_into
    f = source.open(self.caps_only)
  File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 178, in open
    url = self.nodeurl + "uri/" + urllib.quote(self.readcap)
  File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py", line 1216, in quote
    res = map(safe_map.__getitem__, s)
TypeError: argument 2 to map() must support iteration
The error messages are unhelpful, but also it looks like there is a bug so that `tahoe cp` misparses the `$CAP/path` syntax in its source argument. ``` $ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest . error: you must specify a destination filename $ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest ./Latest attaching sources to targets, 1 files / 0 dirs in root targets assigned, 1 dirs, 2 files starting copy, 2 files, 1 directories Traceback (most recent call last): File "/Users/zooko/playground/tahoe-lafs/dw/support/bin/tahoe", line 9, in <module> load_entry_point('allmydata-tahoe==1.8.2-r5006', 'console_scripts', 'tahoe')() File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 113, in run rc = runner(sys.argv[1:], install_node_control=install_node_control) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 99, in runner rc = cli.dispatch[command](so) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/cli.py", line 520, in cp rc = tahoe_cp.copy(options) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 762, in copy return Copier().do_copy(options) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 442, in do_copy status = self.try_copy() File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 485, in try_copy return self.copy_to_directory(sources, target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 664, in copy_to_directory self.copy_files_to_target(self.targetmap[target], target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 695, in copy_files_to_target self.copy_file_into(source, name, target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 739, in copy_file_into f = source.open(self.caps_only) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 178, in open url = self.nodeurl + "uri/" + urllib.quote(self.readcap) File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py", line 1216, in quote res = map(safe_map.__getitem__, s) TypeError: argument 2 to map() must support iteration $ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest/ . examining 0 of 1 attaching sources to targets, 1 files / 0 dirs in root targets assigned, 1 dirs, 2 files starting copy, 2 files, 1 directories Traceback (most recent call last): File "/Users/zooko/playground/tahoe-lafs/dw/support/bin/tahoe", line 9, in <module> load_entry_point('allmydata-tahoe==1.8.2-r5006', 'console_scripts', 'tahoe')() File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 113, in run rc = runner(sys.argv[1:], install_node_control=install_node_control) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 99, in runner rc = cli.dispatch[command](so) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/cli.py", line 520, in cp rc = tahoe_cp.copy(options) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 762, in copy return Copier().do_copy(options) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 442, in do_copy status = self.try_copy() File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 503, in try_copy return self.copy_to_directory(sources, target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 664, in copy_to_directory self.copy_files_to_target(self.targetmap[target], target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 695, in copy_files_to_target self.copy_file_into(source, name, target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 739, in copy_file_into f = source.open(self.caps_only) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 178, in open url = self.nodeurl + "uri/" + urllib.quote(self.readcap) File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py", line 1216, in quote res = map(safe_map.__getitem__, s) TypeError: argument 2 to map() must support iteration $ tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:o7mbbpxsznwfwiih5yzxmuqopq:cl72f3dnb6q7z4ajfjw24me5qwk7q7hfqrp5ho3dntuvoovspska:Latest/ ./Latest attaching sources to targets, 1 files / 0 dirs in root targets assigned, 1 dirs, 2 files starting copy, 2 files, 1 directories Traceback (most recent call last): File "/Users/zooko/playground/tahoe-lafs/dw/support/bin/tahoe", line 9, in <module> load_entry_point('allmydata-tahoe==1.8.2-r5006', 'console_scripts', 'tahoe')() File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 113, in run rc = runner(sys.argv[1:], install_node_control=install_node_control) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/runner.py", line 99, in runner rc = cli.dispatch[command](so) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/cli.py", line 520, in cp rc = tahoe_cp.copy(options) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 762, in copy return Copier().do_copy(options) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 442, in do_copy status = self.try_copy() File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 503, in try_copy return self.copy_to_directory(sources, target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 664, in copy_to_directory self.copy_files_to_target(self.targetmap[target], target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 695, in copy_files_to_target self.copy_file_into(source, name, target) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 739, in copy_file_into f = source.open(self.caps_only) File "/Users/zooko/playground/tahoe-lafs/dw/src/allmydata/scripts/tahoe_cp.py", line 178, in open url = self.nodeurl + "uri/" + urllib.quote(self.readcap) File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/urllib.py", line 1216, in quote res = map(safe_map.__getitem__, s) TypeError: argument 2 to map() must support iteration ```
zooko added the
code-frontend-cli
major
defect
1.8.2
labels 2011-03-17 21:49:22 +00:00
zooko added this to the undecided milestone 2011-03-17 21:49:22 +00:00
davidsarah commented 2011-05-15 00:21:08 +00:00
Owner

If Latest is a subdirectory of the given dircap, shouldn't it be:

tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:blah/Latest ./Latest

?

(I.e. you have "tahoe cp $CAP:$PATH .", not "tahoe cp $CAP/$PATH ." in the examples.)

Having said that, "TypeError: argument 2 to map() must support iteration" is a horrible way to report the error.

If Latest is a subdirectory of the given dircap, shouldn't it be: ``` tahoe cp -v -r --node-url=http://localhost:3458 URI:DIR2-RO:blah/Latest ./Latest ``` ? (I.e. you have "`tahoe cp $CAP:$PATH .`", not "`tahoe cp $CAP/$PATH .`" in the examples.) Having said that, "TypeError: argument 2 to map() must support iteration" is a horrible way to report the error.
tahoe-lafs modified the milestone from undecided to 1.10.0 2011-07-27 16:18:14 +00:00
davidsarah commented 2011-08-03 21:57:21 +00:00
Owner

I'm merging this with #1217, since the incorrect path syntax is the same ($CAP:$PATH). I don't know why the error message is different; perhaps it's because this ticket has an incorrect source argument whereas #1217 has an incorrect destination argument.

I'm merging this with #1217, since the incorrect path syntax is the same ($CAP:$PATH). I don't know why the error message is different; perhaps it's because this ticket has an incorrect source argument whereas #1217 has an incorrect destination argument.
tahoe-lafs added the
duplicate
label 2011-08-03 21:57:21 +00:00
davidsarah closed this issue 2011-08-03 21:57:21 +00:00
tahoe-lafs changed title from misparse of "tahoe cp $CAP/$PATH ." to poor error message for wrong path syntax, e.g. "tahoe cp $CAP:$PATH ." 2011-08-03 21:57:21 +00:00
tahoe-lafs modified the milestone from 1.11.0 to eventually 2012-04-01 00:00:48 +00:00
Sign in to join this conversation.
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Reference: tahoe-lafs/trac-2024-07-25#1379
No description provided.