Skip to content
Snippets Groups Projects
Commit d7b766ba authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

TEST: test invalid identifiers

parent 9efdc615
No related branches found
No related tags found
No related merge requests found
...@@ -586,6 +586,44 @@ def test_fileOrThing_results(): ...@@ -586,6 +586,44 @@ def test_fileOrThing_results():
for i in range(3): for i in range(3):
assert (np.loadtxt('outpref_{}.txt'.format(i)) == exp[i+1]).all() assert (np.loadtxt('outpref_{}.txt'.format(i)) == exp[i+1]).all()
result = func(input, wutils.LOAD, wutils.LOAD)
assert len(result) == 4
def test_FileOrThing_invalid_identifiers():
# unlikely to ever happen, but let's test arguments with
# names that are not valid python identifiers
@wutils.fileOrArray('in val', '2out')
def func(**kwargs):
infile = kwargs['in val']
outfile = kwargs['2out']
input = np.loadtxt(infile)
np.savetxt(outfile, input * 2)
return ('return', 'value')
input = np.random.randint(1, 10, (3, 3))
infile = 'input.txt'
exp = input * 2
with tempdir.tempdir():
np.savetxt(infile, input)
res = func(**{'in val' : infile, '2out' : 'output.txt'})
assert res.stdout == ('return', 'value')
assert (np.loadtxt('output.txt') == exp).all()
res = func(**{'in val' : input, '2out' : 'output.txt'})
assert res.stdout == ('return', 'value')
assert (np.loadtxt('output.txt') == exp).all()
res = func(**{'in val' : input, '2out' : wutils.LOAD})
assert res.stdout == ('return', 'value')
assert (res['2out'] == exp).all()
def test_chained_fileOrImageAndArray(): def test_chained_fileOrImageAndArray():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment