1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
from internetarchive.cli.cli_utils import get_args_dict
def test_get_args_dict():
test_input = [
'collection:test_collection',
'description: Attention: multiple colons',
'unicode_test:தமிழ்',
'subject:subject1, subject1',
'subject:subject2',
'subject:subject3; subject3',
]
test_output = {
'collection': 'test_collection',
'description': ' Attention: multiple colons',
'unicode_test': 'தமிழ்',
'subject': ['subject1, subject1', 'subject2', 'subject3; subject3'],
}
args_dict = get_args_dict(test_input)
for key, value in args_dict.items():
assert test_output[key] == value
def test_get_args_dict_query_string():
test_input = ['a=b,foo&c=d&e=f', 'foo:bar ']
test_output = {
'a': 'b,foo',
'c': 'd',
'e': 'f',
'foo': 'bar ',
}
args_dict = get_args_dict(test_input, query_string=True)
for key, value in args_dict.items():
assert test_output[key] == value
|