Skip to content

Commit 33a706b

Browse files
GlassOfWhiskeymr-c
authored andcommitted
Fix load_document_by_uri method
This commit adjusts the `load_document_by_uri` method, ensuring that the `LoadingOptions` object used to parse the document contains the correct values for `fileuri` and `baseuri`.
1 parent 3fbfa1b commit 33a706b

File tree

7 files changed

+25
-8
lines changed

7 files changed

+25
-8
lines changed

cwl_utils/parser/__init__.py

+19-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
cwl_v1_2.InputRecordField,
2929
]
3030
"""Type union for a CWL v1.x InputRecordSchema object."""
31+
InputSchema = Union[cwl_v1_0.InputSchema, cwl_v1_1.InputSchema, cwl_v1_2.InputSchema]
32+
"""Type union for a CWL v1.x InputSchema object."""
3133
OutputParameter = Union[
3234
cwl_v1_0.OutputParameter, cwl_v1_1.OutputParameter, cwl_v1_2.OutputParameter
3335
]
@@ -243,8 +245,6 @@ def load_document_by_uri(
243245
load_all: bool = False,
244246
) -> Any:
245247
"""Load a CWL object from a URI or a path."""
246-
base_uri = ""
247-
real_uri = ""
248248
if isinstance(path, str):
249249
uri = urlparse(path)
250250
id_ = uri.fragment or None
@@ -259,8 +259,24 @@ def load_document_by_uri(
259259
base_uri = path.resolve().parent.as_uri()
260260
id_ = path.resolve().name.split("#")[1] if "#" in path.resolve().name else None
261261

262-
if loadingOptions is None:
262+
if isinstance(loadingOptions, cwl_v1_0.LoadingOptions):
263+
loadingOptions = cwl_v1_0.LoadingOptions(
264+
fileuri=real_uri, baseuri=base_uri, copyfrom=loadingOptions
265+
)
266+
elif isinstance(loadingOptions, cwl_v1_1.LoadingOptions):
267+
loadingOptions = cwl_v1_1.LoadingOptions(
268+
fileuri=real_uri, baseuri=base_uri, copyfrom=loadingOptions
269+
)
270+
elif isinstance(loadingOptions, cwl_v1_2.LoadingOptions):
271+
loadingOptions = cwl_v1_2.LoadingOptions(
272+
fileuri=real_uri, baseuri=base_uri, copyfrom=loadingOptions
273+
)
274+
elif loadingOptions is None:
263275
loadingOptions = cwl_v1_2.LoadingOptions(fileuri=real_uri, baseuri=base_uri)
276+
else:
277+
raise ValidationException(
278+
f"Unsupported loadingOptions type: {type(loadingOptions)}"
279+
)
264280

265281
doc = loadingOptions.fetcher.fetch_text(real_uri)
266282
return load_document_by_string(doc, real_uri, loadingOptions, id_, load_all)

testdata/remote-cwl/tool1.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# We have this tool to test both local and remote packing
33

44
class: CommandLineTool
5-
cwlVersion: v1.0
5+
cwlVersion: v1.2
66
inputs:
77
in1:
88
type: string

testdata/remote-cwl/tool2.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# We have this tool to test both local and remote packing
33

44
class: CommandLineTool
5-
cwlVersion: v1.0
5+
cwlVersion: v1.2
66
inputs:
77
in1:
88
type: ../types/testtypes.yml#my_boolean_array

testdata/remote-cwl/wf1.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cwl-runner
22
class: Workflow
3-
cwlVersion: v1.0
3+
cwlVersion: v1.2
44
inputs:
55
- id: in1
66
type: ../types/testtypes.yml#my_boolean_array

testdata/wf2.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env cwl-runner
22
class: Workflow
3-
cwlVersion: v1.0
3+
cwlVersion: v1.2
44
inputs:
55
in1: types/testtypes.yml#my_boolean_array
66
in2:

testdata/workflows/wf5.cwl

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Checks symbolic links on github
33

44
class: Workflow
5-
cwlVersion: v1.0
5+
cwlVersion: v1.2
66
inputs:
77
in1:
88
type: ../types/recursive.yml#file_with_sample_meta

tests/test_parser_utils.py

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ def test_static_checker_success(cwlVersion: str) -> None:
105105
"testdata/cond-single-source-wf-005.1.cwl",
106106
"testdata/extensions/all-output-loop_v1_2.cwl",
107107
"testdata/extensions/single-var-loop_v1_2.cwl",
108+
"testdata/wf2.cwl",
108109
]
109110
)
110111
for test_file in test_files:

0 commit comments

Comments
 (0)