cwltool.validate_js
Classes
Filter instances are used to perform arbitrary filtering of LogRecords. |
|
List of errors and the final values of the globals from running javascript. |
Functions
|
Test a field/schema combo to see if it is a CWL Expression. |
|
|
|
|
|
Log the message from JSHint, using the line number. |
|
Module Contents
- cwltool.validate_js.is_expression(tool, schema)
Test a field/schema combo to see if it is a CWL Expression.
- Parameters:
tool (Any)
schema (Optional[schema_salad.avro.schema.Schema])
- Return type:
- class cwltool.validate_js.SuppressLog(name)
Bases:
logging.Filter
Filter instances are used to perform arbitrary filtering of LogRecords.
Loggers and Handlers can optionally use Filter instances to filter records as desired. The base filter class only allows events which are below a certain point in the logger hierarchy. For example, a filter initialized with “A.B” will allow events logged by loggers “A.B”, “A.B.C”, “A.B.C.D”, “A.B.D” etc. but not “A.BB”, “B.A.B” etc. If initialized with the empty string, all events are passed.
- Parameters:
name (str)
- filter(record)
Never accept a record.
- Parameters:
record (logging.LogRecord)
- Return type:
- cwltool.validate_js.get_expressions(tool, schema, source_line=None)
- Parameters:
tool (Union[ruamel.yaml.comments.CommentedMap, str, ruamel.yaml.comments.CommentedSeq])
schema (Optional[Union[schema_salad.avro.schema.Schema, schema_salad.avro.schema.ArraySchema]])
source_line (Optional[schema_salad.sourceline.SourceLine])
- Return type:
list[tuple[str, Optional[schema_salad.sourceline.SourceLine]]]
- class cwltool.validate_js.JSHintJSReturn
Bases:
NamedTuple
List of errors and the final values of the globals from running javascript.
- cwltool.validate_js.jshint_js(js_text, globals=None, options=None, container_engine='docker', eval_timeout=60)
- cwltool.validate_js.print_js_hint_messages(js_hint_messages, source_line)
Log the message from JSHint, using the line number.
- Parameters:
source_line (Optional[schema_salad.sourceline.SourceLine])
- Return type:
None
- cwltool.validate_js.validate_js_expressions(tool, schema, jshint_options=None, container_engine='docker', eval_timeout=60)