File: test_target.py

package info (click to toggle)
cwltool 1.0.20181217162649%2Bdfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,632 kB
  • sloc: python: 11,008; makefile: 153; sh: 22
file content (35 lines) | stat: -rw-r--r-- 1,089 bytes parent folder | download
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
35
from cwltool.main import main
from cwltool import load_tool

from .util import get_data, windows_needs_docker


@windows_needs_docker
def test_target():
    load_tool.loaders = {}
    """Test --target option successful."""
    test_file = "tests/wf/scatter-wf4.cwl"
    exit_code = main(['--target', 'out', get_data(test_file),
                     '--inp1', 'INP1', '--inp2', 'INP2'])
    assert exit_code == 0


def test_wrong_target():
    load_tool.loaders = {}
    """Test --target option when value is wrong."""
    test_file = "tests/wf/scatter-wf4.cwl"
    exit_code = main(['--target', 'dummy_target',
                     get_data(test_file),
                     '--inp1', 'INP1', '--inp2', 'INP2'])
    assert exit_code == 1


@windows_needs_docker    
def test_target_packed():
    load_tool.loaders = {}
    """Test --target option with packed workflow schema."""
    test_file = "tests/wf/scatter-wf4.json"
    exit_code = main(['--target', 'out',
                     get_data(test_file),
                     '--inp1', 'INP1', '--inp2', 'INP2'])
    assert exit_code == 0