forked from Klaveness-Digital/cypress-cucumber-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress-tags.js
executable file
·137 lines (119 loc) · 4.27 KB
/
cypress-tags.js
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/env node
const { Parser } = require("gherkin");
const glob = require("glob");
const fs = require("fs");
const { execFileSync } = require("child_process");
const {
parseArgsOrDefault,
stripCLIArguments,
getGlobArg,
} = require("./lib/cypressTagsHelpers");
const { shouldProceedCurrentStep } = require("./lib/tagsHelper");
const debug = (message, ...rest) =>
process.env.DEBUG
? // eslint-disable-next-line no-console
console.log(`DEBUG: ${message}`, rest.length ? rest : "")
: null;
const envGlob = getGlobArg();
const envTags = parseArgsOrDefault("TAGS", "");
let specGlob = envGlob || "cypress/integration/**/*.feature";
let ignoreGlob = "";
let usingCypressConf = false;
let cypressExecutable;
if (!envGlob) {
try {
// TODO : curently we don't allow the override of the cypress.json path
// maybe we can set this path in the plugin conf (package.json : "cypressConf": "test/cypress.json")
// eslint-disable-next-line import/no-unresolved,global-require
const cypressConf = require("../../cypress.json");
const integrationFolder =
cypressConf && cypressConf.integrationFolder
? cypressConf.integrationFolder.replace(/\/$/, "")
: "cypress/integration";
if (cypressConf && cypressConf.ignoreTestFiles) {
ignoreGlob = cypressConf.ignoreTestFiles;
}
if (cypressConf && cypressConf.testFiles) {
let testFiles = !Array.isArray(cypressConf.testFiles)
? cypressConf.testFiles.split(",")
: cypressConf.testFiles;
testFiles = testFiles.map((pattern) => `${integrationFolder}/${pattern}`);
specGlob =
testFiles.length > 1 ? `{${testFiles.join(",")}}` : testFiles[0];
} else {
specGlob = `${integrationFolder}/**/*.feature`;
}
console.log("Using cypress.json configuration:");
console.log("Spec files: ", specGlob);
if (ignoreGlob) console.log("Ignored files: ", ignoreGlob);
if (cypressConf && cypressConf.cypressExecutable) {
cypressExecutable = cypressConf.cypressExecutable;
}
} catch (err) {
usingCypressConf = false;
specGlob = "cypress/integration/**/*.feature";
console.log("Failed to read cypress.json, using default configuration");
console.log("Spec files: ", specGlob);
}
}
debug("Found glob", specGlob);
debug("Found tag expression", envTags);
const paths = glob
.sync(specGlob, {
nodir: true,
ignore: usingCypressConf ? ignoreGlob : "",
})
.filter((pathName) => pathName.endsWith(".feature"));
const featuresToRun = [];
paths.forEach((featurePath) => {
const spec = `${fs.readFileSync(featurePath)}`;
const parsedFeature = new Parser().parse(spec);
if (!parsedFeature.feature) {
debug(`Feature: ${featurePath} is empty`);
return;
}
const featureTags = parsedFeature.feature.tags;
const featureShouldRun = shouldProceedCurrentStep(featureTags, envTags);
const taggedScenarioShouldRun = parsedFeature.feature.children.some(
(section) =>
section.tags &&
section.tags.length &&
shouldProceedCurrentStep(section.tags.concat(featureTags), envTags)
);
debug(
`Feature: ${featurePath}, featureShouldRun: ${featureShouldRun}, taggedScenarioShouldRun: ${taggedScenarioShouldRun}`
);
if (featureShouldRun || taggedScenarioShouldRun) {
featuresToRun.push(featurePath);
}
});
function getOsSpecificExecutable(command) {
return process.platform === "win32" ? `${command}.cmd` : command;
}
function getCypressExecutable() {
// check, if path to cypress-executable has been provided through cypress.json.
let command = cypressExecutable;
if (!command || !fs.existsSync(command)) {
command = getOsSpecificExecutable(`${__dirname}/../.bin/cypress`);
}
// fallback to the globally installed cypress instead
return fs.existsSync(command) ? command : getOsSpecificExecutable("cypress");
}
try {
if (featuresToRun.length || envTags === "") {
execFileSync(
getCypressExecutable(),
[...stripCLIArguments(["g", "glob"]), "--spec", featuresToRun.join(",")],
{
stdio: [process.stdin, process.stdout, process.stderr],
}
);
} else {
// eslint-disable-next-line no-console
console.log("No matching tags found");
process.exit(0);
}
} catch (e) {
debug("Error while running cypress (or just a test failure)", e);
process.exit(1);
}