-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #116 from satra/enh/file
Enh/file - allow support for hashing Files - closes #96
- Loading branch information
Showing
5 changed files
with
180 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import os | ||
from pathlib import Path | ||
import numpy as np | ||
import pytest | ||
import typing as ty | ||
|
||
from ..submitter import Submitter | ||
from ..core import Workflow | ||
from ... import mark | ||
from ..specs import File | ||
|
||
|
||
@mark.task | ||
def file_add2(file): | ||
array_inp = np.load(file) | ||
array_out = array_inp + 2 | ||
cwd = os.getcwd() | ||
# providing a full path | ||
file_out = os.path.join(cwd, "arr_out.npy") | ||
np.save(file_out, array_out) | ||
return file_out | ||
|
||
|
||
@mark.task | ||
def file_mult(file): | ||
array_inp = np.load(file) | ||
array_out = 10 * array_inp | ||
cwd = os.getcwd() | ||
file_out = os.path.join(cwd, "arr_out.npy") | ||
np.save(file_out, array_out) | ||
return file_out | ||
|
||
|
||
@mark.task | ||
def file_add2_annot(file: File) -> ty.NamedTuple("Output", [("out", File)]): | ||
array_inp = np.load(file) | ||
array_out = array_inp + 2 | ||
cwd = os.getcwd() | ||
# providing a full path | ||
file_out = os.path.join(cwd, "arr_out.npy") | ||
np.save(file_out, array_out) | ||
return file_out | ||
|
||
|
||
@mark.task | ||
def file_mult_annot(file: File) -> ty.NamedTuple("Output", [("out", File)]): | ||
array_inp = np.load(file) | ||
array_out = 10 * array_inp | ||
cwd = os.getcwd() | ||
file_out = os.path.join(cwd, "arr_out.npy") | ||
np.save(file_out, array_out) | ||
return file_out | ||
|
||
|
||
def test_task_1(tmpdir): | ||
""" task that takes file as an input""" | ||
os.chdir(tmpdir) | ||
arr = np.array([2]) | ||
# creating abs path | ||
file = os.path.join(os.getcwd(), "arr1.npy") | ||
np.save(file, arr) | ||
nn = file_add2(name="add2", file=file) | ||
|
||
with Submitter(plugin="cf") as sub: | ||
sub(nn) | ||
|
||
# checking the results | ||
results = nn.result() | ||
res = np.load(results.output.out) | ||
assert res == np.array([4]) | ||
|
||
|
||
def test_wf_1(tmpdir): | ||
""" workflow with 2 tasks that take file as an input and give file as an aoutput""" | ||
wf = Workflow(name="wf_1", input_spec=["file_orig"]) | ||
wf.add(file_add2(name="add2", file=wf.lzin.file_orig)) | ||
wf.add(file_mult(name="mult", file=wf.add2.lzout.out)) | ||
wf.set_output([("out", wf.mult.lzout.out)]) | ||
|
||
os.chdir(tmpdir) | ||
arr = np.array([2, 3]) | ||
# creating abs path | ||
file_orig = os.path.join(os.getcwd(), "arr_orig.npy") | ||
np.save(file_orig, arr) | ||
wf.inputs.file_orig = file_orig | ||
|
||
with Submitter(plugin="cf") as sub: | ||
sub(wf) | ||
|
||
assert wf.output_dir.exists() | ||
file_output = wf.result().output.out | ||
assert Path(file_output).exists() | ||
# loading results | ||
array_out = np.load(file_output) | ||
assert np.array_equal(array_out, [40, 50]) | ||
|
||
|
||
def test_file_annotation_1(tmpdir): | ||
""" task that takes file as an input""" | ||
os.chdir(tmpdir) | ||
arr = np.array([2]) | ||
# creating abs path | ||
file = os.path.join(os.getcwd(), "arr1.npy") | ||
np.save(file, arr) | ||
nn = file_add2_annot(name="add2", file=file) | ||
|
||
with Submitter(plugin="cf") as sub: | ||
sub(nn) | ||
|
||
# checking the results | ||
results = nn.result() | ||
res = np.load(results.output.out) | ||
assert res == np.array([4]) |