@cucumber/cucumber 7.3.2 → 8.0.0-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +88 -51
- package/api/index.d.ts +6 -0
- package/lib/api/convert_configuration.d.ts +4 -0
- package/lib/api/convert_configuration.js +64 -0
- package/lib/api/convert_configuration.js.map +1 -0
- package/lib/api/environment.d.ts +2 -0
- package/lib/api/environment.js +13 -0
- package/lib/api/environment.js.map +1 -0
- package/lib/api/formatters.d.ts +16 -0
- package/lib/api/formatters.js +72 -0
- package/lib/api/formatters.js.map +1 -0
- package/lib/api/gherkin.d.ts +21 -0
- package/lib/api/gherkin.js +65 -0
- package/lib/api/gherkin.js.map +1 -0
- package/lib/api/index.d.ts +11 -0
- package/lib/api/index.js +24 -0
- package/lib/api/index.js.map +1 -0
- package/lib/api/load_configuration.d.ts +9 -0
- package/lib/api/load_configuration.js +32 -0
- package/lib/api/load_configuration.js.map +1 -0
- package/lib/api/load_sources.d.ts +9 -0
- package/lib/api/load_sources.js +53 -0
- package/lib/api/load_sources.js.map +1 -0
- package/lib/api/load_support.d.ts +10 -0
- package/lib/api/load_support.js +28 -0
- package/lib/api/load_support.js.map +1 -0
- package/lib/api/paths.d.ts +7 -0
- package/lib/api/paths.js +99 -0
- package/lib/api/paths.js.map +1 -0
- package/lib/api/run_cucumber.d.ts +11 -0
- package/lib/api/run_cucumber.js +108 -0
- package/lib/api/run_cucumber.js.map +1 -0
- package/lib/api/runtime.d.ts +20 -0
- package/lib/api/runtime.js +36 -0
- package/lib/api/runtime.js.map +1 -0
- package/lib/api/support.d.ts +9 -0
- package/lib/api/support.js +21 -0
- package/lib/api/support.js.map +1 -0
- package/lib/api/types.d.ts +168 -0
- package/lib/api/types.js +3 -0
- package/lib/api/types.js.map +1 -0
- package/lib/api/wrapper.mjs +6 -0
- package/lib/cli/helpers.d.ts +16 -9
- package/lib/cli/helpers.js +49 -32
- package/lib/cli/helpers.js.map +1 -1
- package/lib/cli/i18n.js +7 -7
- package/lib/cli/i18n.js.map +1 -1
- package/lib/cli/index.d.ts +6 -23
- package/lib/cli/index.js +38 -197
- package/lib/cli/index.js.map +1 -1
- package/lib/cli/install_validator.js +1 -1
- package/lib/cli/install_validator.js.map +1 -1
- package/lib/cli/publish_banner.js +6 -6
- package/lib/cli/publish_banner.js.map +1 -1
- package/lib/cli/run.js +15 -7
- package/lib/cli/run.js.map +1 -1
- package/lib/cli/validate_node_engine_version.d.ts +7 -0
- package/lib/cli/validate_node_engine_version.js +20 -0
- package/lib/cli/validate_node_engine_version.js.map +1 -0
- package/lib/configuration/argv_parser.d.ts +20 -0
- package/lib/{cli → configuration}/argv_parser.js +52 -53
- package/lib/configuration/argv_parser.js.map +1 -0
- package/lib/configuration/check_schema.d.ts +2 -0
- package/lib/configuration/check_schema.js +56 -0
- package/lib/configuration/check_schema.js.map +1 -0
- package/lib/configuration/default_configuration.d.ts +2 -0
- package/lib/configuration/default_configuration.js +27 -0
- package/lib/configuration/default_configuration.js.map +1 -0
- package/lib/configuration/from_file.d.ts +2 -0
- package/lib/configuration/from_file.js +68 -0
- package/lib/configuration/from_file.js.map +1 -0
- package/lib/configuration/helpers.d.ts +1 -0
- package/lib/configuration/helpers.js +11 -0
- package/lib/configuration/helpers.js.map +1 -0
- package/lib/configuration/index.d.ts +7 -0
- package/lib/configuration/index.js +25 -0
- package/lib/configuration/index.js.map +1 -0
- package/lib/configuration/locate_file.d.ts +1 -0
- package/lib/configuration/locate_file.js +19 -0
- package/lib/configuration/locate_file.js.map +1 -0
- package/lib/configuration/merge_configurations.d.ts +2 -0
- package/lib/configuration/merge_configurations.js +48 -0
- package/lib/configuration/merge_configurations.js.map +1 -0
- package/lib/configuration/option_splitter.d.ts +3 -0
- package/lib/{cli → configuration}/option_splitter.js +3 -2
- package/lib/configuration/option_splitter.js.map +1 -0
- package/lib/configuration/types.d.ts +25 -0
- package/lib/configuration/types.js +3 -0
- package/lib/configuration/types.js.map +1 -0
- package/lib/configuration/validate_configuration.d.ts +2 -0
- package/lib/configuration/validate_configuration.js +10 -0
- package/lib/configuration/validate_configuration.js.map +1 -0
- package/lib/formatter/builder.d.ts +7 -7
- package/lib/formatter/builder.js +48 -55
- package/lib/formatter/builder.js.map +1 -1
- package/lib/formatter/get_color_fns.js +15 -16
- package/lib/formatter/get_color_fns.js.map +1 -1
- package/lib/formatter/helpers/event_data_collector.d.ts +2 -1
- package/lib/formatter/helpers/event_data_collector.js +16 -15
- package/lib/formatter/helpers/event_data_collector.js.map +1 -1
- package/lib/formatter/helpers/formatters.d.ts +6 -0
- package/lib/formatter/helpers/formatters.js +41 -0
- package/lib/formatter/helpers/formatters.js.map +1 -0
- package/lib/formatter/helpers/gherkin_document_parser.js +29 -42
- package/lib/formatter/helpers/gherkin_document_parser.js.map +1 -1
- package/lib/formatter/helpers/issue_helpers.d.ts +4 -4
- package/lib/formatter/helpers/issue_helpers.js +8 -9
- package/lib/formatter/helpers/issue_helpers.js.map +1 -1
- package/lib/formatter/helpers/keyword_type.js +2 -6
- package/lib/formatter/helpers/keyword_type.js.map +1 -1
- package/lib/formatter/helpers/location_helpers.js +1 -1
- package/lib/formatter/helpers/location_helpers.js.map +1 -1
- package/lib/formatter/helpers/pickle_parser.js +9 -18
- package/lib/formatter/helpers/pickle_parser.js.map +1 -1
- package/lib/formatter/helpers/step_argument_formatter.js +1 -1
- package/lib/formatter/helpers/step_argument_formatter.js.map +1 -1
- package/lib/formatter/helpers/summary_helpers.js +8 -7
- package/lib/formatter/helpers/summary_helpers.js.map +1 -1
- package/lib/formatter/helpers/test_case_attempt_formatter.d.ts +2 -2
- package/lib/formatter/helpers/test_case_attempt_formatter.js +20 -19
- package/lib/formatter/helpers/test_case_attempt_formatter.js.map +1 -1
- package/lib/formatter/helpers/test_case_attempt_parser.d.ts +1 -2
- package/lib/formatter/helpers/test_case_attempt_parser.js +18 -21
- package/lib/formatter/helpers/test_case_attempt_parser.js.map +1 -1
- package/lib/formatter/helpers/usage_helpers/index.d.ts +1 -2
- package/lib/formatter/helpers/usage_helpers/index.js +29 -43
- package/lib/formatter/helpers/usage_helpers/index.js.map +1 -1
- package/lib/formatter/html_formatter.d.ts +1 -0
- package/lib/formatter/html_formatter.js +5 -4
- package/lib/formatter/html_formatter.js.map +1 -1
- package/lib/formatter/http_stream.js +7 -7
- package/lib/formatter/http_stream.js.map +1 -1
- package/lib/formatter/index.d.ts +15 -2
- package/lib/formatter/index.js +2 -0
- package/lib/formatter/index.js.map +1 -1
- package/lib/formatter/json_formatter.d.ts +1 -0
- package/lib/formatter/json_formatter.js +25 -20
- package/lib/formatter/json_formatter.js.map +1 -1
- package/lib/formatter/message_formatter.d.ts +1 -0
- package/lib/formatter/message_formatter.js +1 -0
- package/lib/formatter/message_formatter.js.map +1 -1
- package/lib/formatter/progress_bar_formatter.d.ts +1 -0
- package/lib/formatter/progress_bar_formatter.js +18 -17
- package/lib/formatter/progress_bar_formatter.js.map +1 -1
- package/lib/formatter/progress_formatter.d.ts +1 -0
- package/lib/formatter/progress_formatter.js +3 -2
- package/lib/formatter/progress_formatter.js.map +1 -1
- package/lib/formatter/publish.d.ts +1 -0
- package/lib/formatter/publish.js +5 -0
- package/lib/formatter/publish.js.map +1 -0
- package/lib/formatter/rerun_formatter.d.ts +1 -0
- package/lib/formatter/rerun_formatter.js +15 -11
- package/lib/formatter/rerun_formatter.js.map +1 -1
- package/lib/formatter/snippets_formatter.d.ts +1 -0
- package/lib/formatter/snippets_formatter.js +3 -3
- package/lib/formatter/snippets_formatter.js.map +1 -1
- package/lib/formatter/step_definition_snippet_builder/index.js +2 -2
- package/lib/formatter/step_definition_snippet_builder/index.js.map +1 -1
- package/lib/formatter/step_definition_snippet_builder/javascript_snippet_syntax.js +3 -0
- package/lib/formatter/step_definition_snippet_builder/javascript_snippet_syntax.js.map +1 -1
- package/lib/formatter/step_definition_snippet_builder/snippet_syntax.d.ts +1 -1
- package/lib/formatter/step_definition_snippet_builder/snippet_syntax.js.map +1 -1
- package/lib/formatter/summary_formatter.d.ts +1 -0
- package/lib/formatter/summary_formatter.js +11 -11
- package/lib/formatter/summary_formatter.js.map +1 -1
- package/lib/formatter/usage_formatter.d.ts +1 -0
- package/lib/formatter/usage_formatter.js +9 -10
- package/lib/formatter/usage_formatter.js.map +1 -1
- package/lib/formatter/usage_json_formatter.d.ts +1 -0
- package/lib/formatter/usage_json_formatter.js +3 -3
- package/lib/formatter/usage_json_formatter.js.map +1 -1
- package/lib/importer.js +13 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +9 -1
- package/lib/index.js.map +1 -1
- package/lib/models/data_table.js +9 -7
- package/lib/models/data_table.js.map +1 -1
- package/lib/models/pickle_order.d.ts +1 -0
- package/lib/models/pickle_order.js +3 -0
- package/lib/models/pickle_order.js.map +1 -0
- package/lib/models/step_definition.js +4 -5
- package/lib/models/step_definition.js.map +1 -1
- package/lib/pickle_filter.js +13 -13
- package/lib/pickle_filter.js.map +1 -1
- package/lib/runtime/assemble_test_cases.js +3 -3
- package/lib/runtime/assemble_test_cases.js.map +1 -1
- package/lib/runtime/attachment_manager/index.js +4 -4
- package/lib/runtime/attachment_manager/index.js.map +1 -1
- package/lib/runtime/helpers.d.ts +1 -0
- package/lib/runtime/helpers.js +42 -4
- package/lib/runtime/helpers.js.map +1 -1
- package/lib/runtime/index.d.ts +7 -7
- package/lib/runtime/index.js +12 -65
- package/lib/runtime/index.js.map +1 -1
- package/lib/runtime/parallel/command_types.d.ts +3 -2
- package/lib/runtime/parallel/command_types.js.map +1 -1
- package/lib/runtime/parallel/coordinator.d.ts +32 -12
- package/lib/runtime/parallel/coordinator.js +82 -38
- package/lib/runtime/parallel/coordinator.js.map +1 -1
- package/lib/runtime/parallel/run_worker.js +1 -1
- package/lib/runtime/parallel/run_worker.js.map +1 -1
- package/lib/runtime/parallel/worker.d.ts +2 -4
- package/lib/runtime/parallel/worker.js +18 -33
- package/lib/runtime/parallel/worker.js.map +1 -1
- package/lib/runtime/run_test_run_hooks.d.ts +3 -0
- package/lib/runtime/run_test_run_hooks.js +28 -0
- package/lib/runtime/run_test_run_hooks.js.map +1 -0
- package/lib/runtime/step_runner.js +5 -7
- package/lib/runtime/step_runner.js.map +1 -1
- package/lib/runtime/stopwatch.js +4 -4
- package/lib/runtime/stopwatch.js.map +1 -1
- package/lib/runtime/test_case_runner.d.ts +3 -3
- package/lib/runtime/test_case_runner.js +19 -28
- package/lib/runtime/test_case_runner.js.map +1 -1
- package/lib/stack_trace_filter.js +6 -7
- package/lib/stack_trace_filter.js.map +1 -1
- package/lib/step_arguments.js +2 -2
- package/lib/step_arguments.js.map +1 -1
- package/lib/support_code_library_builder/{build_helpers.d.ts → build_parameter_type.d.ts} +0 -2
- package/lib/support_code_library_builder/build_parameter_type.js +13 -0
- package/lib/support_code_library_builder/build_parameter_type.js.map +1 -0
- package/lib/support_code_library_builder/get_definition_line_and_uri.d.ts +3 -0
- package/lib/support_code_library_builder/get_definition_line_and_uri.js +30 -0
- package/lib/support_code_library_builder/get_definition_line_and_uri.js.map +1 -0
- package/lib/support_code_library_builder/index.d.ts +4 -2
- package/lib/support_code_library_builder/index.js +43 -34
- package/lib/support_code_library_builder/index.js.map +1 -1
- package/lib/support_code_library_builder/parallel_can_assign_helpers.d.ts +2 -0
- package/lib/support_code_library_builder/parallel_can_assign_helpers.js +16 -0
- package/lib/support_code_library_builder/parallel_can_assign_helpers.js.map +1 -0
- package/lib/support_code_library_builder/types.d.ts +10 -0
- package/lib/support_code_library_builder/types.js.map +1 -1
- package/lib/support_code_library_builder/validate_arguments.js +14 -19
- package/lib/support_code_library_builder/validate_arguments.js.map +1 -1
- package/lib/time.d.ts +1 -0
- package/lib/time.js +17 -2
- package/lib/time.js.map +1 -1
- package/lib/user_code_runner.js +10 -17
- package/lib/user_code_runner.js.map +1 -1
- package/lib/value_checker.d.ts +2 -2
- package/lib/value_checker.js.map +1 -1
- package/lib/version.d.ts +1 -0
- package/lib/version.js +6 -0
- package/lib/version.js.map +1 -0
- package/lib/wrapper.mjs +42 -0
- package/package.json +98 -70
- package/lib/cli/argv_parser.d.ts +0 -51
- package/lib/cli/argv_parser.js.map +0 -1
- package/lib/cli/configuration_builder.d.ts +0 -46
- package/lib/cli/configuration_builder.js +0 -161
- package/lib/cli/configuration_builder.js.map +0 -1
- package/lib/cli/option_splitter.d.ts +0 -4
- package/lib/cli/option_splitter.js.map +0 -1
- package/lib/cli/profile_loader.d.ts +0 -6
- package/lib/cli/profile_loader.js +0 -42
- package/lib/cli/profile_loader.js.map +0 -1
- package/lib/support_code_library_builder/build_helpers.js +0 -41
- package/lib/support_code_library_builder/build_helpers.js.map +0 -1
- package/lib/support_code_library_builder/finalize_helpers.d.ts +0 -10
- package/lib/support_code_library_builder/finalize_helpers.js +0 -26
- package/lib/support_code_library_builder/finalize_helpers.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,78 +1,115 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
<h1 align="center">
|
|
2
|
+
<img src="./docs/images/logo.svg" alt="">
|
|
3
|
+
<br>
|
|
4
|
+
Cucumber
|
|
5
|
+
</h1>
|
|
6
|
+
<p align="center">
|
|
7
|
+
<b>Automated tests in plain language, for Node.js</b>
|
|
8
|
+
</p>
|
|
9
|
+
|
|
10
|
+
[](https://www.npmjs.com/package/@cucumber/cucumber)
|
|
11
|
+
[](https://github.com/cucumber/cucumber-js/actions)
|
|
12
|
+
[](https://coveralls.io/github/cucumber/cucumber-js?branch=master)
|
|
13
|
+
[](https://opencollective.com/cucumber)
|
|
14
|
+
[](https://opencollective.com/cucumber)
|
|
5
15
|
[](https://oselvar.com/github/cucumber/oselvar-github-metrics/main/cucumber/cucumber-js)
|
|
6
16
|
[](https://oselvar.com/github/cucumber/oselvar-github-metrics/main/cucumber/cucumber-js)
|
|
7
17
|
|
|
8
|
-
[](https://github.com/cucumber/cucumber-js/actions)
|
|
9
|
-
[](https://david-dm.org/cucumber/cucumber-js)
|
|
10
|
-
[](https://coveralls.io/github/cucumber/cucumber-js?branch=master)
|
|
11
|
-
|
|
12
18
|
[Cucumber](https://cucumber.io) is a tool for running automated tests written in plain language. Because they're
|
|
13
19
|
written in plain language, they can be read by anyone on your team. Because they can be
|
|
14
20
|
read by anyone, you can use them to help improve communication, collaboration and trust on
|
|
15
21
|
your team.
|
|
16
22
|
|
|
17
|
-
|
|
23
|
+
This is the JavaScript implementation of Cucumber. It runs on [maintained versions](https://github.com/nodejs/Release) of Node.js. You can [quickly try it via CodeSandbox](https://codesandbox.io/s/cucumber-js-demo-2p3vrl?file=/features/greeting.feature), or read on to get started locally in a couple of minutes.
|
|
18
24
|
|
|
19
|
-
|
|
25
|
+
Looking to contribute? Read our [code of conduct](https://github.com/cucumber/.github/blob/main/CODE_OF_CONDUCT.md) first, then check the [contributing guide](./CONTRIBUTING.md) to get up and running.
|
|
20
26
|
|
|
21
|
-
|
|
27
|
+
## Install
|
|
22
28
|
|
|
23
|
-
|
|
29
|
+
Cucumber is [available on npm](https://www.npmjs.com/package/@cucumber/cucumber):
|
|
24
30
|
|
|
25
|
-
|
|
31
|
+
```shell
|
|
32
|
+
$ npm install @cucumber/cucumber
|
|
33
|
+
```
|
|
26
34
|
|
|
27
|
-
##
|
|
35
|
+
## Get Started
|
|
28
36
|
|
|
29
|
-
|
|
37
|
+
Let's take this example of something to test:
|
|
30
38
|
|
|
31
|
-
|
|
39
|
+
```js
|
|
40
|
+
class Greeter {
|
|
41
|
+
sayHello() {
|
|
42
|
+
return 'hello'
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
```
|
|
32
46
|
|
|
33
|
-
|
|
47
|
+
First, write your feature in `features/greeting.feature`:
|
|
34
48
|
|
|
35
|
-
|
|
49
|
+
```gherkin
|
|
50
|
+
Feature: Greeting
|
|
36
51
|
|
|
37
|
-
|
|
52
|
+
Scenario: Say hello
|
|
53
|
+
When the greeter says hello
|
|
54
|
+
Then I should have heard "hello"
|
|
55
|
+
```
|
|
38
56
|
|
|
39
|
-
|
|
57
|
+
Next, implement your steps in `features/support/steps.js`:
|
|
40
58
|
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
|
|
59
|
+
```js
|
|
60
|
+
const assert = require('assert')
|
|
61
|
+
const { When, Then } = require('@cucumber/cucumber')
|
|
62
|
+
const { Greeter } = require('../../src')
|
|
44
63
|
|
|
45
|
-
|
|
64
|
+
When('the greeter says hello', function () {
|
|
65
|
+
this.whatIHeard = new Greeter().sayHello()
|
|
66
|
+
});
|
|
67
|
+
|
|
68
|
+
Then('I should have heard {string}', function (expectedResponse) {
|
|
69
|
+
assert.equal(this.whatIHeard, expectedResponse)
|
|
70
|
+
});
|
|
71
|
+
```
|
|
46
72
|
|
|
47
|
-
|
|
73
|
+
Finally, run Cucumber:
|
|
48
74
|
|
|
49
|
-
```
|
|
50
|
-
$
|
|
75
|
+
```shell
|
|
76
|
+
$ npx cucumber-js
|
|
51
77
|
```
|
|
52
78
|
|
|
79
|
+
And see the output:
|
|
80
|
+
|
|
81
|
+

|
|
82
|
+
|
|
83
|
+
If you learn best by example, we have [a repo with several example projects](https://github.com/cucumber-examples/cucumber-js-examples), that might help you get going.
|
|
84
|
+
|
|
53
85
|
## Documentation
|
|
54
86
|
|
|
55
|
-
The following documentation is for
|
|
56
|
-
|
|
57
|
-
* [CLI](
|
|
58
|
-
* [
|
|
59
|
-
*
|
|
60
|
-
* [
|
|
61
|
-
*
|
|
62
|
-
* [
|
|
63
|
-
* [
|
|
64
|
-
* [
|
|
65
|
-
* [Timeouts](docs/support_files/timeouts.md)
|
|
66
|
-
* [
|
|
67
|
-
|
|
68
|
-
* [
|
|
69
|
-
* [
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
* [
|
|
74
|
-
* [
|
|
75
|
-
* [
|
|
76
|
-
* [
|
|
77
|
-
* [
|
|
78
|
-
* [
|
|
87
|
+
The following documentation is for `main`, which might contain some unreleased features. See [documentation for older versions](./docs/older_versions.md) if you need it.
|
|
88
|
+
|
|
89
|
+
* [CLI](./docs/cli.md)
|
|
90
|
+
* [Configuration](./docs/configuration.md)
|
|
91
|
+
* Support Code
|
|
92
|
+
* [API Reference](./docs/support_files/api_reference.md)
|
|
93
|
+
* [Attachments](./docs/support_files/attachments.md)
|
|
94
|
+
* [Data Tables](./docs/support_files/data_table_interface.md)
|
|
95
|
+
* [Hooks](./docs/support_files/hooks.md)
|
|
96
|
+
* [Step Definitions](./docs/support_files/step_definitions.md)
|
|
97
|
+
* [Timeouts](./docs/support_files/timeouts.md)
|
|
98
|
+
* [World](./docs/support_files/world.md)
|
|
99
|
+
* Guides
|
|
100
|
+
* [Dry run](./docs/dry_run.md)
|
|
101
|
+
* [ES Modules](./docs/esm.md)
|
|
102
|
+
* [Failing fast](./docs/fail_fast.md)
|
|
103
|
+
* [Filtering which scenarios run](./docs/filtering.md)
|
|
104
|
+
* [Formatters for feedback and reporting](./docs/formatters.md)
|
|
105
|
+
* [Parallel running for speed](./docs/parallel.md)
|
|
106
|
+
* [Profiles for composable configuration](./docs/profiles.md)
|
|
107
|
+
* [Rerunning just failures](./docs/rerun.md)
|
|
108
|
+
* [Retrying flaky scenarios](./docs/retry.md)
|
|
109
|
+
* [Snippets for undefined steps](./docs/snippets.md)
|
|
110
|
+
* [Transpiling (from TypeScript etc)](./docs/transpiling.md)
|
|
111
|
+
* [FAQ](./docs/faq.md)
|
|
112
|
+
|
|
113
|
+
## Support
|
|
114
|
+
|
|
115
|
+
Support is [available from the community](https://cucumber.io/tools/cucumber-open/support/) if you need it.
|
package/api/index.d.ts
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.convertConfiguration = void 0;
|
|
4
|
+
const configuration_1 = require("../configuration");
|
|
5
|
+
async function convertConfiguration(flatConfiguration, env) {
|
|
6
|
+
var _a;
|
|
7
|
+
return {
|
|
8
|
+
sources: {
|
|
9
|
+
paths: flatConfiguration.paths,
|
|
10
|
+
defaultDialect: flatConfiguration.language,
|
|
11
|
+
names: flatConfiguration.name,
|
|
12
|
+
tagExpression: flatConfiguration.tags,
|
|
13
|
+
order: flatConfiguration.order,
|
|
14
|
+
},
|
|
15
|
+
support: {
|
|
16
|
+
requireModules: flatConfiguration.requireModule,
|
|
17
|
+
requirePaths: flatConfiguration.require,
|
|
18
|
+
importPaths: flatConfiguration.import,
|
|
19
|
+
},
|
|
20
|
+
runtime: {
|
|
21
|
+
dryRun: flatConfiguration.dryRun,
|
|
22
|
+
failFast: flatConfiguration.failFast,
|
|
23
|
+
filterStacktraces: !flatConfiguration.backtrace,
|
|
24
|
+
parallel: flatConfiguration.parallel,
|
|
25
|
+
retry: flatConfiguration.retry,
|
|
26
|
+
retryTagFilter: flatConfiguration.retryTagFilter,
|
|
27
|
+
strict: flatConfiguration.strict,
|
|
28
|
+
worldParameters: flatConfiguration.worldParameters,
|
|
29
|
+
},
|
|
30
|
+
formats: {
|
|
31
|
+
stdout: (_a = [...flatConfiguration.format]
|
|
32
|
+
.reverse()
|
|
33
|
+
.find((option) => !option.includes(':'))) !== null && _a !== void 0 ? _a : 'progress',
|
|
34
|
+
files: flatConfiguration.format
|
|
35
|
+
.filter((option) => option.includes(':'))
|
|
36
|
+
.reduce((mapped, item) => {
|
|
37
|
+
const [type, target] = configuration_1.OptionSplitter.split(item);
|
|
38
|
+
return {
|
|
39
|
+
...mapped,
|
|
40
|
+
[target]: type,
|
|
41
|
+
};
|
|
42
|
+
}, {}),
|
|
43
|
+
publish: makePublishConfig(flatConfiguration, env),
|
|
44
|
+
options: flatConfiguration.formatOptions,
|
|
45
|
+
},
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
exports.convertConfiguration = convertConfiguration;
|
|
49
|
+
function isPublishing(flatConfiguration, env) {
|
|
50
|
+
return (flatConfiguration.publish ||
|
|
51
|
+
(0, configuration_1.isTruthyString)(env.CUCUMBER_PUBLISH_ENABLED) ||
|
|
52
|
+
env.CUCUMBER_PUBLISH_TOKEN !== undefined);
|
|
53
|
+
}
|
|
54
|
+
function makePublishConfig(flatConfiguration, env) {
|
|
55
|
+
const enabled = isPublishing(flatConfiguration, env);
|
|
56
|
+
if (!enabled) {
|
|
57
|
+
return false;
|
|
58
|
+
}
|
|
59
|
+
return {
|
|
60
|
+
url: env.CUCUMBER_PUBLISH_URL,
|
|
61
|
+
token: env.CUCUMBER_PUBLISH_TOKEN,
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
//# sourceMappingURL=convert_configuration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"convert_configuration.js","sourceRoot":"","sources":["../../src/api/convert_configuration.ts"],"names":[],"mappings":";;;AAAA,oDAIyB;AAGlB,KAAK,UAAU,oBAAoB,CACxC,iBAAiC,EACjC,GAAsB;;IAEtB,OAAO;QACL,OAAO,EAAE;YACP,KAAK,EAAE,iBAAiB,CAAC,KAAK;YAC9B,cAAc,EAAE,iBAAiB,CAAC,QAAQ;YAC1C,KAAK,EAAE,iBAAiB,CAAC,IAAI;YAC7B,aAAa,EAAE,iBAAiB,CAAC,IAAI;YACrC,KAAK,EAAE,iBAAiB,CAAC,KAAK;SAC/B;QACD,OAAO,EAAE;YACP,cAAc,EAAE,iBAAiB,CAAC,aAAa;YAC/C,YAAY,EAAE,iBAAiB,CAAC,OAAO;YACvC,WAAW,EAAE,iBAAiB,CAAC,MAAM;SACtC;QACD,OAAO,EAAE;YACP,MAAM,EAAE,iBAAiB,CAAC,MAAM;YAChC,QAAQ,EAAE,iBAAiB,CAAC,QAAQ;YACpC,iBAAiB,EAAE,CAAC,iBAAiB,CAAC,SAAS;YAC/C,QAAQ,EAAE,iBAAiB,CAAC,QAAQ;YACpC,KAAK,EAAE,iBAAiB,CAAC,KAAK;YAC9B,cAAc,EAAE,iBAAiB,CAAC,cAAc;YAChD,MAAM,EAAE,iBAAiB,CAAC,MAAM;YAChC,eAAe,EAAE,iBAAiB,CAAC,eAAe;SACnD;QACD,OAAO,EAAE;YACP,MAAM,EACJ,MAAA,CAAC,GAAG,iBAAiB,CAAC,MAAM,CAAC;iBAC1B,OAAO,EAAE;iBACT,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,mCAAI,UAAU;YAC1D,KAAK,EAAE,iBAAiB,CAAC,MAAM;iBAC5B,MAAM,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;iBACxC,MAAM,CAAC,CAAC,MAAM,EAAE,IAAI,EAAE,EAAE;gBACvB,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,8BAAc,CAAC,KAAK,CAAC,IAAI,CAAC,CAAA;gBACjD,OAAO;oBACL,GAAG,MAAM;oBACT,CAAC,MAAM,CAAC,EAAE,IAAI;iBACf,CAAA;YACH,CAAC,EAAE,EAAE,CAAC;YACR,OAAO,EAAE,iBAAiB,CAAC,iBAAiB,EAAE,GAAG,CAAC;YAClD,OAAO,EAAE,iBAAiB,CAAC,aAAa;SACzC;KACF,CAAA;AACH,CAAC;AA7CD,oDA6CC;AAED,SAAS,YAAY,CACnB,iBAAiC,EACjC,GAAsB;IAEtB,OAAO,CACL,iBAAiB,CAAC,OAAO;QACzB,IAAA,8BAAc,EAAC,GAAG,CAAC,wBAAwB,CAAC;QAC5C,GAAG,CAAC,sBAAsB,KAAK,SAAS,CACzC,CAAA;AACH,CAAC;AAED,SAAS,iBAAiB,CACxB,iBAAiC,EACjC,GAAsB;IAEtB,MAAM,OAAO,GAAG,YAAY,CAAC,iBAAiB,EAAE,GAAG,CAAC,CAAA;IACpD,IAAI,CAAC,OAAO,EAAE;QACZ,OAAO,KAAK,CAAA;KACb;IACD,OAAO;QACL,GAAG,EAAE,GAAG,CAAC,oBAAoB;QAC7B,KAAK,EAAE,GAAG,CAAC,sBAAsB;KAClC,CAAA;AACH,CAAC","sourcesContent":["import {\n IConfiguration,\n isTruthyString,\n OptionSplitter,\n} from '../configuration'\nimport { IRunConfiguration } from './types'\n\nexport async function convertConfiguration(\n flatConfiguration: IConfiguration,\n env: NodeJS.ProcessEnv\n): Promise<IRunConfiguration> {\n return {\n sources: {\n paths: flatConfiguration.paths,\n defaultDialect: flatConfiguration.language,\n names: flatConfiguration.name,\n tagExpression: flatConfiguration.tags,\n order: flatConfiguration.order,\n },\n support: {\n requireModules: flatConfiguration.requireModule,\n requirePaths: flatConfiguration.require,\n importPaths: flatConfiguration.import,\n },\n runtime: {\n dryRun: flatConfiguration.dryRun,\n failFast: flatConfiguration.failFast,\n filterStacktraces: !flatConfiguration.backtrace,\n parallel: flatConfiguration.parallel,\n retry: flatConfiguration.retry,\n retryTagFilter: flatConfiguration.retryTagFilter,\n strict: flatConfiguration.strict,\n worldParameters: flatConfiguration.worldParameters,\n },\n formats: {\n stdout:\n [...flatConfiguration.format]\n .reverse()\n .find((option) => !option.includes(':')) ?? 'progress',\n files: flatConfiguration.format\n .filter((option) => option.includes(':'))\n .reduce((mapped, item) => {\n const [type, target] = OptionSplitter.split(item)\n return {\n ...mapped,\n [target]: type,\n }\n }, {}),\n publish: makePublishConfig(flatConfiguration, env),\n options: flatConfiguration.formatOptions,\n },\n }\n}\n\nfunction isPublishing(\n flatConfiguration: IConfiguration,\n env: NodeJS.ProcessEnv\n): boolean {\n return (\n flatConfiguration.publish ||\n isTruthyString(env.CUCUMBER_PUBLISH_ENABLED) ||\n env.CUCUMBER_PUBLISH_TOKEN !== undefined\n )\n}\n\nfunction makePublishConfig(\n flatConfiguration: IConfiguration,\n env: NodeJS.ProcessEnv\n): any {\n const enabled = isPublishing(flatConfiguration, env)\n if (!enabled) {\n return false\n }\n return {\n url: env.CUCUMBER_PUBLISH_URL,\n token: env.CUCUMBER_PUBLISH_TOKEN,\n }\n}\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.mergeEnvironment = void 0;
|
|
4
|
+
function mergeEnvironment(provided) {
|
|
5
|
+
return Object.assign({}, {
|
|
6
|
+
cwd: process.cwd(),
|
|
7
|
+
stdout: process.stdout,
|
|
8
|
+
stderr: process.stderr,
|
|
9
|
+
env: process.env,
|
|
10
|
+
}, provided);
|
|
11
|
+
}
|
|
12
|
+
exports.mergeEnvironment = mergeEnvironment;
|
|
13
|
+
//# sourceMappingURL=environment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../src/api/environment.ts"],"names":[],"mappings":";;;AAEA,SAAgB,gBAAgB,CAC9B,QAAyB;IAEzB,OAAO,MAAM,CAAC,MAAM,CAClB,EAAE,EACF;QACE,GAAG,EAAE,OAAO,CAAC,GAAG,EAAE;QAClB,MAAM,EAAE,OAAO,CAAC,MAAM;QACtB,MAAM,EAAE,OAAO,CAAC,MAAM;QACtB,GAAG,EAAE,OAAO,CAAC,GAAG;KACjB,EACD,QAAQ,CACT,CAAA;AACH,CAAC;AAbD,4CAaC","sourcesContent":["import { IRunEnvironment } from './types'\n\nexport function mergeEnvironment(\n provided: IRunEnvironment\n): Required<IRunEnvironment> {\n return Object.assign(\n {},\n {\n cwd: process.cwd(),\n stdout: process.stdout,\n stderr: process.stderr,\n env: process.env,\n },\n provided\n )\n}\n"]}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { IFormatterStream } from '../formatter';
|
|
3
|
+
import { EventEmitter } from 'events';
|
|
4
|
+
import { EventDataCollector } from '../formatter/helpers';
|
|
5
|
+
import { ISupportCodeLibrary } from '../support_code_library_builder/types';
|
|
6
|
+
import { IRunOptionsFormats } from './types';
|
|
7
|
+
export declare function initializeFormatters({ cwd, stdout, logger, onStreamError, eventBroadcaster, eventDataCollector, configuration, supportCodeLibrary, }: {
|
|
8
|
+
cwd: string;
|
|
9
|
+
stdout: IFormatterStream;
|
|
10
|
+
logger: Console;
|
|
11
|
+
onStreamError: () => void;
|
|
12
|
+
eventBroadcaster: EventEmitter;
|
|
13
|
+
eventDataCollector: EventDataCollector;
|
|
14
|
+
configuration: IRunOptionsFormats;
|
|
15
|
+
supportCodeLibrary: ISupportCodeLibrary;
|
|
16
|
+
}): Promise<() => Promise<void>>;
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.initializeFormatters = void 0;
|
|
7
|
+
const util_1 = require("util");
|
|
8
|
+
const value_checker_1 = require("../value_checker");
|
|
9
|
+
const builder_1 = __importDefault(require("../formatter/builder"));
|
|
10
|
+
const fs_1 = __importDefault(require("mz/fs"));
|
|
11
|
+
const path_1 = __importDefault(require("path"));
|
|
12
|
+
const publish_1 = require("../formatter/publish");
|
|
13
|
+
const http_stream_1 = __importDefault(require("../formatter/http_stream"));
|
|
14
|
+
const stream_1 = require("stream");
|
|
15
|
+
async function initializeFormatters({ cwd, stdout, logger, onStreamError, eventBroadcaster, eventDataCollector, configuration, supportCodeLibrary, }) {
|
|
16
|
+
async function initializeFormatter(stream, target, type) {
|
|
17
|
+
stream.on('error', (error) => {
|
|
18
|
+
logger.error(error.message);
|
|
19
|
+
onStreamError();
|
|
20
|
+
});
|
|
21
|
+
const typeOptions = {
|
|
22
|
+
cwd,
|
|
23
|
+
eventBroadcaster,
|
|
24
|
+
eventDataCollector,
|
|
25
|
+
log: stream.write.bind(stream),
|
|
26
|
+
parsedArgvOptions: configuration.options,
|
|
27
|
+
stream,
|
|
28
|
+
cleanup: stream === stdout
|
|
29
|
+
? async () => await Promise.resolve()
|
|
30
|
+
: (0, util_1.promisify)(stream.end.bind(stream)),
|
|
31
|
+
supportCodeLibrary,
|
|
32
|
+
};
|
|
33
|
+
if ((0, value_checker_1.doesNotHaveValue)(configuration.options.colorsEnabled)) {
|
|
34
|
+
typeOptions.parsedArgvOptions.colorsEnabled = stream.isTTY;
|
|
35
|
+
}
|
|
36
|
+
if (type === 'progress-bar' && !stream.isTTY) {
|
|
37
|
+
logger.warn(`Cannot use 'progress-bar' formatter for output to '${target}' as not a TTY. Switching to 'progress' formatter.`);
|
|
38
|
+
type = 'progress';
|
|
39
|
+
}
|
|
40
|
+
return await builder_1.default.build(type, typeOptions);
|
|
41
|
+
}
|
|
42
|
+
const formatters = [];
|
|
43
|
+
formatters.push(await initializeFormatter(stdout, 'stdout', configuration.stdout));
|
|
44
|
+
for (const [target, type] of Object.entries(configuration.files)) {
|
|
45
|
+
const stream = fs_1.default.createWriteStream(null, {
|
|
46
|
+
fd: await fs_1.default.open(path_1.default.resolve(cwd, target), 'w'),
|
|
47
|
+
});
|
|
48
|
+
formatters.push(await initializeFormatter(stream, target, type));
|
|
49
|
+
}
|
|
50
|
+
if (configuration.publish) {
|
|
51
|
+
const { url = publish_1.DEFAULT_CUCUMBER_PUBLISH_URL, token } = configuration.publish;
|
|
52
|
+
const headers = {};
|
|
53
|
+
if (token !== undefined) {
|
|
54
|
+
headers.Authorization = `Bearer ${token}`;
|
|
55
|
+
}
|
|
56
|
+
const stream = new http_stream_1.default(url, 'GET', headers);
|
|
57
|
+
const readerStream = new stream_1.Writable({
|
|
58
|
+
objectMode: true,
|
|
59
|
+
write: function (responseBody, encoding, writeCallback) {
|
|
60
|
+
logger.error(responseBody);
|
|
61
|
+
writeCallback();
|
|
62
|
+
},
|
|
63
|
+
});
|
|
64
|
+
stream.pipe(readerStream);
|
|
65
|
+
formatters.push(await initializeFormatter(stream, url, 'message'));
|
|
66
|
+
}
|
|
67
|
+
return async function () {
|
|
68
|
+
await Promise.all(formatters.map(async (f) => await f.finished()));
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
exports.initializeFormatters = initializeFormatters;
|
|
72
|
+
//# sourceMappingURL=formatters.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formatters.js","sourceRoot":"","sources":["../../src/api/formatters.ts"],"names":[],"mappings":"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","sourcesContent":["import Formatter, { IFormatterStream } from '../formatter'\nimport { EventEmitter } from 'events'\nimport { EventDataCollector } from '../formatter/helpers'\nimport { ISupportCodeLibrary } from '../support_code_library_builder/types'\nimport { promisify } from 'util'\nimport { doesNotHaveValue } from '../value_checker'\nimport { WriteStream as TtyWriteStream } from 'tty'\nimport FormatterBuilder from '../formatter/builder'\nimport fs from 'mz/fs'\nimport path from 'path'\nimport { DEFAULT_CUCUMBER_PUBLISH_URL } from '../formatter/publish'\nimport HttpStream from '../formatter/http_stream'\nimport { Writable } from 'stream'\nimport { IRunOptionsFormats } from './types'\n\nexport async function initializeFormatters({\n cwd,\n stdout,\n logger,\n onStreamError,\n eventBroadcaster,\n eventDataCollector,\n configuration,\n supportCodeLibrary,\n}: {\n cwd: string\n stdout: IFormatterStream\n logger: Console\n onStreamError: () => void\n eventBroadcaster: EventEmitter\n eventDataCollector: EventDataCollector\n configuration: IRunOptionsFormats\n supportCodeLibrary: ISupportCodeLibrary\n}): Promise<() => Promise<void>> {\n async function initializeFormatter(\n stream: IFormatterStream,\n target: string,\n type: string\n ): Promise<Formatter> {\n stream.on('error', (error: Error) => {\n logger.error(error.message)\n onStreamError()\n })\n const typeOptions = {\n cwd,\n eventBroadcaster,\n eventDataCollector,\n log: stream.write.bind(stream),\n parsedArgvOptions: configuration.options,\n stream,\n cleanup:\n stream === stdout\n ? async () => await Promise.resolve()\n : promisify<any>(stream.end.bind(stream)),\n supportCodeLibrary,\n }\n if (doesNotHaveValue(configuration.options.colorsEnabled)) {\n typeOptions.parsedArgvOptions.colorsEnabled = (\n stream as TtyWriteStream\n ).isTTY\n }\n if (type === 'progress-bar' && !(stream as TtyWriteStream).isTTY) {\n logger.warn(\n `Cannot use 'progress-bar' formatter for output to '${target}' as not a TTY. Switching to 'progress' formatter.`\n )\n type = 'progress'\n }\n return await FormatterBuilder.build(type, typeOptions)\n }\n\n const formatters: Formatter[] = []\n\n formatters.push(\n await initializeFormatter(stdout, 'stdout', configuration.stdout)\n )\n\n for (const [target, type] of Object.entries(configuration.files)) {\n const stream: IFormatterStream = fs.createWriteStream(null, {\n fd: await fs.open(path.resolve(cwd, target), 'w'),\n })\n formatters.push(await initializeFormatter(stream, target, type))\n }\n\n if (configuration.publish) {\n const { url = DEFAULT_CUCUMBER_PUBLISH_URL, token } = configuration.publish\n const headers: { [key: string]: string } = {}\n if (token !== undefined) {\n headers.Authorization = `Bearer ${token}`\n }\n const stream = new HttpStream(url, 'GET', headers)\n const readerStream = new Writable({\n objectMode: true,\n write: function (responseBody: string, encoding, writeCallback) {\n logger.error(responseBody)\n writeCallback()\n },\n })\n stream.pipe(readerStream)\n formatters.push(await initializeFormatter(stream, url, 'message'))\n }\n\n return async function () {\n await Promise.all(formatters.map(async (f) => await f.finished()))\n }\n}\n"]}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { Envelope, GherkinDocument, IdGenerator, Location, ParseError, Pickle } from '@cucumber/messages';
|
|
3
|
+
import { ISourcesCoordinates } from './types';
|
|
4
|
+
interface PickleWithDocument {
|
|
5
|
+
gherkinDocument: GherkinDocument;
|
|
6
|
+
location: Location;
|
|
7
|
+
pickle: Pickle;
|
|
8
|
+
}
|
|
9
|
+
export declare function getFilteredPicklesAndErrors({ newId, cwd, logger, unexpandedFeaturePaths, featurePaths, coordinates, onEnvelope, }: {
|
|
10
|
+
newId: IdGenerator.NewId;
|
|
11
|
+
cwd: string;
|
|
12
|
+
logger: Console;
|
|
13
|
+
unexpandedFeaturePaths: string[];
|
|
14
|
+
featurePaths: string[];
|
|
15
|
+
coordinates: ISourcesCoordinates;
|
|
16
|
+
onEnvelope?: (envelope: Envelope) => void;
|
|
17
|
+
}): Promise<{
|
|
18
|
+
filteredPickles: PickleWithDocument[];
|
|
19
|
+
parseErrors: ParseError[];
|
|
20
|
+
}>;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.getFilteredPicklesAndErrors = void 0;
|
|
7
|
+
const gherkin_streams_1 = require("@cucumber/gherkin-streams");
|
|
8
|
+
const gherkin_utils_1 = require("@cucumber/gherkin-utils");
|
|
9
|
+
const pickle_filter_1 = __importDefault(require("../pickle_filter"));
|
|
10
|
+
const helpers_1 = require("../cli/helpers");
|
|
11
|
+
async function getFilteredPicklesAndErrors({ newId, cwd, logger, unexpandedFeaturePaths, featurePaths, coordinates, onEnvelope, }) {
|
|
12
|
+
const gherkinQuery = new gherkin_utils_1.Query();
|
|
13
|
+
const parseErrors = [];
|
|
14
|
+
await gherkinFromPaths(featurePaths, {
|
|
15
|
+
newId,
|
|
16
|
+
relativeTo: cwd,
|
|
17
|
+
defaultDialect: coordinates.defaultDialect,
|
|
18
|
+
}, (envelope) => {
|
|
19
|
+
gherkinQuery.update(envelope);
|
|
20
|
+
if (envelope.parseError) {
|
|
21
|
+
parseErrors.push(envelope.parseError);
|
|
22
|
+
}
|
|
23
|
+
onEnvelope === null || onEnvelope === void 0 ? void 0 : onEnvelope(envelope);
|
|
24
|
+
});
|
|
25
|
+
const pickleFilter = new pickle_filter_1.default({
|
|
26
|
+
cwd,
|
|
27
|
+
featurePaths: unexpandedFeaturePaths,
|
|
28
|
+
names: coordinates.names,
|
|
29
|
+
tagExpression: coordinates.tagExpression,
|
|
30
|
+
});
|
|
31
|
+
const filteredPickles = gherkinQuery
|
|
32
|
+
.getPickles()
|
|
33
|
+
.filter((pickle) => {
|
|
34
|
+
const gherkinDocument = gherkinQuery
|
|
35
|
+
.getGherkinDocuments()
|
|
36
|
+
.find((doc) => doc.uri === pickle.uri);
|
|
37
|
+
return pickleFilter.matches({ gherkinDocument, pickle });
|
|
38
|
+
})
|
|
39
|
+
.map((pickle) => {
|
|
40
|
+
const gherkinDocument = gherkinQuery
|
|
41
|
+
.getGherkinDocuments()
|
|
42
|
+
.find((doc) => doc.uri === pickle.uri);
|
|
43
|
+
const location = gherkinQuery.getLocation(pickle.astNodeIds[pickle.astNodeIds.length - 1]);
|
|
44
|
+
return {
|
|
45
|
+
gherkinDocument,
|
|
46
|
+
location,
|
|
47
|
+
pickle,
|
|
48
|
+
};
|
|
49
|
+
});
|
|
50
|
+
(0, helpers_1.orderPickles)(filteredPickles, coordinates.order, logger);
|
|
51
|
+
return {
|
|
52
|
+
filteredPickles,
|
|
53
|
+
parseErrors,
|
|
54
|
+
};
|
|
55
|
+
}
|
|
56
|
+
exports.getFilteredPicklesAndErrors = getFilteredPicklesAndErrors;
|
|
57
|
+
async function gherkinFromPaths(paths, options, onEnvelope) {
|
|
58
|
+
return new Promise((resolve, reject) => {
|
|
59
|
+
const gherkinMessageStream = gherkin_streams_1.GherkinStreams.fromPaths(paths, options);
|
|
60
|
+
gherkinMessageStream.on('data', onEnvelope);
|
|
61
|
+
gherkinMessageStream.on('end', resolve);
|
|
62
|
+
gherkinMessageStream.on('error', reject);
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=gherkin.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gherkin.js","sourceRoot":"","sources":["../../src/api/gherkin.ts"],"names":[],"mappings":";;;;;;AAAA,+DAGkC;AASlC,2DAA+D;AAC/D,qEAA2C;AAC3C,4CAA6C;AAStC,KAAK,UAAU,2BAA2B,CAAC,EAChD,KAAK,EACL,GAAG,EACH,MAAM,EACN,sBAAsB,EACtB,YAAY,EACZ,WAAW,EACX,UAAU,GASX;IAIC,MAAM,YAAY,GAAG,IAAI,qBAAY,EAAE,CAAA;IACvC,MAAM,WAAW,GAAiB,EAAE,CAAA;IACpC,MAAM,gBAAgB,CACpB,YAAY,EACZ;QACE,KAAK;QACL,UAAU,EAAE,GAAG;QACf,cAAc,EAAE,WAAW,CAAC,cAAc;KAC3C,EACD,CAAC,QAAQ,EAAE,EAAE;QACX,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAA;QAC7B,IAAI,QAAQ,CAAC,UAAU,EAAE;YACvB,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAA;SACtC;QACD,UAAU,aAAV,UAAU,uBAAV,UAAU,CAAG,QAAQ,CAAC,CAAA;IACxB,CAAC,CACF,CAAA;IACD,MAAM,YAAY,GAAG,IAAI,uBAAY,CAAC;QACpC,GAAG;QACH,YAAY,EAAE,sBAAsB;QACpC,KAAK,EAAE,WAAW,CAAC,KAAK;QACxB,aAAa,EAAE,WAAW,CAAC,aAAa;KACzC,CAAC,CAAA;IACF,MAAM,eAAe,GAAyB,YAAY;SACvD,UAAU,EAAE;SACZ,MAAM,CAAC,CAAC,MAAM,EAAE,EAAE;QACjB,MAAM,eAAe,GAAG,YAAY;aACjC,mBAAmB,EAAE;aACrB,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,KAAK,MAAM,CAAC,GAAG,CAAC,CAAA;QACxC,OAAO,YAAY,CAAC,OAAO,CAAC,EAAE,eAAe,EAAE,MAAM,EAAE,CAAC,CAAA;IAC1D,CAAC,CAAC;SACD,GAAG,CAAC,CAAC,MAAM,EAAE,EAAE;QACd,MAAM,eAAe,GAAG,YAAY;aACjC,mBAAmB,EAAE;aACrB,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,GAAG,KAAK,MAAM,CAAC,GAAG,CAAC,CAAA;QACxC,MAAM,QAAQ,GAAG,YAAY,CAAC,WAAW,CACvC,MAAM,CAAC,UAAU,CAAC,MAAM,CAAC,UAAU,CAAC,MAAM,GAAG,CAAC,CAAC,CAChD,CAAA;QACD,OAAO;YACL,eAAe;YACf,QAAQ;YACR,MAAM;SACP,CAAA;IACH,CAAC,CAAC,CAAA;IACJ,IAAA,sBAAY,EAAC,eAAe,EAAE,WAAW,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;IACxD,OAAO;QACL,eAAe;QACf,WAAW;KACZ,CAAA;AACH,CAAC;AArED,kEAqEC;AAED,KAAK,UAAU,gBAAgB,CAC7B,KAAe,EACf,OAA8B,EAC9B,UAAwC;IAExC,OAAO,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QACrC,MAAM,oBAAoB,GAAG,gCAAc,CAAC,SAAS,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;QACrE,oBAAoB,CAAC,EAAE,CAAC,MAAM,EAAE,UAAU,CAAC,CAAA;QAC3C,oBAAoB,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,CAAA;QACvC,oBAAoB,CAAC,EAAE,CAAC,OAAO,EAAE,MAAM,CAAC,CAAA;IAC1C,CAAC,CAAC,CAAA;AACJ,CAAC","sourcesContent":["import {\n GherkinStreams,\n IGherkinStreamOptions,\n} from '@cucumber/gherkin-streams'\nimport {\n Envelope,\n GherkinDocument,\n IdGenerator,\n Location,\n ParseError,\n Pickle,\n} from '@cucumber/messages'\nimport { Query as GherkinQuery } from '@cucumber/gherkin-utils'\nimport PickleFilter from '../pickle_filter'\nimport { orderPickles } from '../cli/helpers'\nimport { ISourcesCoordinates } from './types'\n\ninterface PickleWithDocument {\n gherkinDocument: GherkinDocument\n location: Location\n pickle: Pickle\n}\n\nexport async function getFilteredPicklesAndErrors({\n newId,\n cwd,\n logger,\n unexpandedFeaturePaths,\n featurePaths,\n coordinates,\n onEnvelope,\n}: {\n newId: IdGenerator.NewId\n cwd: string\n logger: Console\n unexpandedFeaturePaths: string[]\n featurePaths: string[]\n coordinates: ISourcesCoordinates\n onEnvelope?: (envelope: Envelope) => void\n}): Promise<{\n filteredPickles: PickleWithDocument[]\n parseErrors: ParseError[]\n}> {\n const gherkinQuery = new GherkinQuery()\n const parseErrors: ParseError[] = []\n await gherkinFromPaths(\n featurePaths,\n {\n newId,\n relativeTo: cwd,\n defaultDialect: coordinates.defaultDialect,\n },\n (envelope) => {\n gherkinQuery.update(envelope)\n if (envelope.parseError) {\n parseErrors.push(envelope.parseError)\n }\n onEnvelope?.(envelope)\n }\n )\n const pickleFilter = new PickleFilter({\n cwd,\n featurePaths: unexpandedFeaturePaths,\n names: coordinates.names,\n tagExpression: coordinates.tagExpression,\n })\n const filteredPickles: PickleWithDocument[] = gherkinQuery\n .getPickles()\n .filter((pickle) => {\n const gherkinDocument = gherkinQuery\n .getGherkinDocuments()\n .find((doc) => doc.uri === pickle.uri)\n return pickleFilter.matches({ gherkinDocument, pickle })\n })\n .map((pickle) => {\n const gherkinDocument = gherkinQuery\n .getGherkinDocuments()\n .find((doc) => doc.uri === pickle.uri)\n const location = gherkinQuery.getLocation(\n pickle.astNodeIds[pickle.astNodeIds.length - 1]\n )\n return {\n gherkinDocument,\n location,\n pickle,\n }\n })\n orderPickles(filteredPickles, coordinates.order, logger)\n return {\n filteredPickles,\n parseErrors,\n }\n}\n\nasync function gherkinFromPaths(\n paths: string[],\n options: IGherkinStreamOptions,\n onEnvelope: (envelope: Envelope) => void\n): Promise<void> {\n return new Promise((resolve, reject) => {\n const gherkinMessageStream = GherkinStreams.fromPaths(paths, options)\n gherkinMessageStream.on('data', onEnvelope)\n gherkinMessageStream.on('end', resolve)\n gherkinMessageStream.on('error', reject)\n })\n}\n"]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Cucumber for JavaScript
|
|
3
|
+
*
|
|
4
|
+
* @remarks These docs cover the API used for running Cucumber programmatically. The entry point is `@cucumber/cucumber/api`.
|
|
5
|
+
* @packageDocumentation
|
|
6
|
+
*/
|
|
7
|
+
export * from './load_configuration';
|
|
8
|
+
export * from './load_sources';
|
|
9
|
+
export * from './load_support';
|
|
10
|
+
export * from './run_cucumber';
|
|
11
|
+
export * from './types';
|
package/lib/api/index.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Cucumber for JavaScript
|
|
4
|
+
*
|
|
5
|
+
* @remarks These docs cover the API used for running Cucumber programmatically. The entry point is `@cucumber/cucumber/api`.
|
|
6
|
+
* @packageDocumentation
|
|
7
|
+
*/
|
|
8
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
9
|
+
if (k2 === undefined) k2 = k;
|
|
10
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
__exportStar(require("./load_configuration"), exports);
|
|
20
|
+
__exportStar(require("./load_sources"), exports);
|
|
21
|
+
__exportStar(require("./load_support"), exports);
|
|
22
|
+
__exportStar(require("./run_cucumber"), exports);
|
|
23
|
+
__exportStar(require("./types"), exports);
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/api/index.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;;;;;;;;;;AAEH,uDAAoC;AACpC,iDAA8B;AAC9B,iDAA8B;AAC9B,iDAA8B;AAC9B,0CAAuB","sourcesContent":["/**\n * Cucumber for JavaScript\n *\n * @remarks These docs cover the API used for running Cucumber programmatically. The entry point is `@cucumber/cucumber/api`.\n * @packageDocumentation\n */\n\nexport * from './load_configuration'\nexport * from './load_sources'\nexport * from './load_support'\nexport * from './run_cucumber'\nexport * from './types'\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IRunEnvironment, IResolvedConfiguration, ILoadConfigurationOptions } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Load user-authored configuration to be used in a test run.
|
|
4
|
+
*
|
|
5
|
+
* @public
|
|
6
|
+
* @param options - Coordinates required to find configuration.
|
|
7
|
+
* @param environment - Project environment.
|
|
8
|
+
*/
|
|
9
|
+
export declare function loadConfiguration(options?: ILoadConfigurationOptions, environment?: IRunEnvironment): Promise<IResolvedConfiguration>;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.loadConfiguration = void 0;
|
|
4
|
+
const locate_file_1 = require("../configuration/locate_file");
|
|
5
|
+
const configuration_1 = require("../configuration");
|
|
6
|
+
const validate_configuration_1 = require("../configuration/validate_configuration");
|
|
7
|
+
const convert_configuration_1 = require("./convert_configuration");
|
|
8
|
+
const environment_1 = require("./environment");
|
|
9
|
+
/**
|
|
10
|
+
* Load user-authored configuration to be used in a test run.
|
|
11
|
+
*
|
|
12
|
+
* @public
|
|
13
|
+
* @param options - Coordinates required to find configuration.
|
|
14
|
+
* @param environment - Project environment.
|
|
15
|
+
*/
|
|
16
|
+
async function loadConfiguration(options = {}, environment = {}) {
|
|
17
|
+
var _a;
|
|
18
|
+
const { cwd, env } = (0, environment_1.mergeEnvironment)(environment);
|
|
19
|
+
const configFile = (_a = options.file) !== null && _a !== void 0 ? _a : (0, locate_file_1.locateFile)(cwd);
|
|
20
|
+
const profileConfiguration = configFile
|
|
21
|
+
? await (0, configuration_1.fromFile)(cwd, configFile, options.profiles)
|
|
22
|
+
: {};
|
|
23
|
+
const original = (0, configuration_1.mergeConfigurations)(configuration_1.DEFAULT_CONFIGURATION, profileConfiguration, options.provided);
|
|
24
|
+
(0, validate_configuration_1.validateConfiguration)(original);
|
|
25
|
+
const runnable = await (0, convert_configuration_1.convertConfiguration)(original, env);
|
|
26
|
+
return {
|
|
27
|
+
useConfiguration: original,
|
|
28
|
+
runConfiguration: runnable,
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
exports.loadConfiguration = loadConfiguration;
|
|
32
|
+
//# sourceMappingURL=load_configuration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"load_configuration.js","sourceRoot":"","sources":["../../src/api/load_configuration.ts"],"names":[],"mappings":";;;AAKA,8DAAyD;AACzD,oDAIyB;AACzB,oFAA+E;AAC/E,mEAA8D;AAC9D,+CAAgD;AAEhD;;;;;;GAMG;AACI,KAAK,UAAU,iBAAiB,CACrC,UAAqC,EAAE,EACvC,cAA+B,EAAE;;IAEjC,MAAM,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,IAAA,8BAAgB,EAAC,WAAW,CAAC,CAAA;IAClD,MAAM,UAAU,GAAG,MAAA,OAAO,CAAC,IAAI,mCAAI,IAAA,wBAAU,EAAC,GAAG,CAAC,CAAA;IAClD,MAAM,oBAAoB,GAAG,UAAU;QACrC,CAAC,CAAC,MAAM,IAAA,wBAAQ,EAAC,GAAG,EAAE,UAAU,EAAE,OAAO,CAAC,QAAQ,CAAC;QACnD,CAAC,CAAC,EAAE,CAAA;IACN,MAAM,QAAQ,GAAG,IAAA,mCAAmB,EAClC,qCAAqB,EACrB,oBAAoB,EACpB,OAAO,CAAC,QAAQ,CACjB,CAAA;IACD,IAAA,8CAAqB,EAAC,QAAQ,CAAC,CAAA;IAC/B,MAAM,QAAQ,GAAG,MAAM,IAAA,4CAAoB,EAAC,QAAQ,EAAE,GAAG,CAAC,CAAA;IAC1D,OAAO;QACL,gBAAgB,EAAE,QAAQ;QAC1B,gBAAgB,EAAE,QAAQ;KAC3B,CAAA;AACH,CAAC;AApBD,8CAoBC","sourcesContent":["import {\n IRunEnvironment,\n IResolvedConfiguration,\n ILoadConfigurationOptions,\n} from './types'\nimport { locateFile } from '../configuration/locate_file'\nimport {\n DEFAULT_CONFIGURATION,\n fromFile,\n mergeConfigurations,\n} from '../configuration'\nimport { validateConfiguration } from '../configuration/validate_configuration'\nimport { convertConfiguration } from './convert_configuration'\nimport { mergeEnvironment } from './environment'\n\n/**\n * Load user-authored configuration to be used in a test run.\n *\n * @public\n * @param options - Coordinates required to find configuration.\n * @param environment - Project environment.\n */\nexport async function loadConfiguration(\n options: ILoadConfigurationOptions = {},\n environment: IRunEnvironment = {}\n): Promise<IResolvedConfiguration> {\n const { cwd, env } = mergeEnvironment(environment)\n const configFile = options.file ?? locateFile(cwd)\n const profileConfiguration = configFile\n ? await fromFile(cwd, configFile, options.profiles)\n : {}\n const original = mergeConfigurations(\n DEFAULT_CONFIGURATION,\n profileConfiguration,\n options.provided\n )\n validateConfiguration(original)\n const runnable = await convertConfiguration(original, env)\n return {\n useConfiguration: original,\n runConfiguration: runnable,\n }\n}\n"]}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ILoadSourcesResult, IRunEnvironment, ISourcesCoordinates } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Load and parse features, produce a filtered and ordered test plan and/or parse errors.
|
|
4
|
+
*
|
|
5
|
+
* @public
|
|
6
|
+
* @param coordinates - Coordinates required to find features
|
|
7
|
+
* @param environment - Project environment.
|
|
8
|
+
*/
|
|
9
|
+
export declare function loadSources(coordinates: ISourcesCoordinates, environment?: IRunEnvironment): Promise<ILoadSourcesResult>;
|