allure 3.0.0-beta.7 → 3.0.0-beta.9
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 +148 -16
- package/dist/commands/allure2.d.ts +11 -0
- package/dist/commands/allure2.js +70 -0
- package/dist/commands/index.d.ts +1 -0
- package/dist/commands/index.js +1 -0
- package/dist/commands/run.js +6 -5
- package/dist/index.js +2 -1
- package/package.json +15 -12
package/README.md
CHANGED
|
@@ -1,33 +1,165 @@
|
|
|
1
|
-
# Allure
|
|
2
|
-
|
|
1
|
+
# Allure 3
|
|
2
|
+
|
|
3
|
+
**Allure 3** is the next evolution of the Allure reporting framework, rebuilt from the ground up with a new architecture and expanded capabilities. Unlike its predecessor, **Allure 2**, this version is developed in **TypeScript** and introduces a modular plugin system for greater flexibility. A key addition is the **Awesome** plugin, which delivers an enhanced UI for better report visualization.
|
|
4
|
+
|
|
5
|
+
> 🚧 **Allure 3 is currently in beta and under active development.**
|
|
6
|
+
> Although not production-ready, we encourage users to install, explore, and share feedback with the development team.
|
|
7
|
+
|
|
8
|
+
The **Allure 3 CLI** provides a comprehensive suite of commands designed to streamline the generation, serving, and management of test reports.
|
|
9
|
+
|
|
3
10
|
[<img src="https://allurereport.org/public/img/allure-report.svg" height="85px" alt="Allure Report logo" align="right" />](https://allurereport.org "Allure Report")
|
|
4
11
|
|
|
5
12
|
- Learn more about Allure Report at https://allurereport.org
|
|
6
13
|
- 📚 [Documentation](https://allurereport.org/docs/) – discover official documentation for Allure Report
|
|
7
14
|
- ❓ [Questions and Support](https://github.com/orgs/allure-framework/discussions/categories/questions-support) – get help from the team and community
|
|
8
|
-
- 📢 [Official
|
|
15
|
+
- 📢 [Official annoucements](https://github.com/orgs/allure-framework/discussions/categories/announcements) – be in touch with the latest updates
|
|
9
16
|
- 💬 [General Discussion ](https://github.com/orgs/allure-framework/discussions/categories/general-discussion) – engage in casual conversations, share insights and ideas with the community
|
|
10
17
|
|
|
11
|
-
|
|
18
|
+
## Key Features
|
|
19
|
+
|
|
20
|
+
Allure 3 introduces several notable improvements. The framework has been entirely rewritten in **TypeScript**, making it more extensible and easier to maintain. Its **plugin system** allows you to customize and extend reporting functionality to fit your specific needs. Configuration has been simplified with a **single file** managing all report settings, making it more convenient to handle multiple reports.
|
|
21
|
+
|
|
22
|
+
One of the standout features is **real-time reporting**, which lets you view live updates during test execution using the `watch` command. The report interface itself has been redesigned to enhance usability and clarity. Moreover, Allure 3 maintains **compatibility with the entire Allure ecosystem**, supporting all major test frameworks.
|
|
23
|
+
|
|
24
|
+
> 🚧 Please note that **official CI/CD integrations and IDE plugins are not yet available** for Allure 3.
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
To install Allure 3 globally, you can use [`npm`](https://docs.npmjs.com/downloading-and-installing-packages-globally). Simply run:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm install -g allure
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
However, we recommend using `npx` for running Allure commands without needing a global installation:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npx allure run -- <test_command>
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
This approach ensures you always use the latest version without managing global dependencies.
|
|
12
41
|
|
|
13
|
-
##
|
|
42
|
+
## Commands
|
|
14
43
|
|
|
15
|
-
|
|
44
|
+
### Running Tests and Generating Reports
|
|
16
45
|
|
|
17
|
-
|
|
46
|
+
Running tests and generating a report with Allure 3 is straightforward. Using the `run` command, you can execute your test suite and automatically generate a report:
|
|
18
47
|
|
|
19
|
-
|
|
48
|
+
```bash
|
|
49
|
+
npx allure run -- <test_command>
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
For example, if you're using `npm` as your test runner, the command would be:
|
|
20
53
|
|
|
21
|
-
```
|
|
22
|
-
npm
|
|
23
|
-
yarn add allure
|
|
24
|
-
pnpm add allure
|
|
54
|
+
```bash
|
|
55
|
+
npx allure run -- npm test
|
|
25
56
|
```
|
|
26
57
|
|
|
27
|
-
|
|
58
|
+
To successfully generate a report, ensure that your test setup outputs results into an `allure-results` directory, which is automatically detected by Allure 3. This directory can be placed at any nested level within your project (e.g., `out/tests/allure-results`), provided it retains the correct name.
|
|
59
|
+
|
|
60
|
+
After the tests complete, the report is generated automatically. Existing results from previous runs are ignored, as Allure 3 focuses solely on new data to ensure accurate and up-to-date reporting.
|
|
61
|
+
|
|
62
|
+
### Generating Reports Manually
|
|
28
63
|
|
|
29
|
-
|
|
64
|
+
If you already have test results and wish to generate a report manually, use the `generate` command:
|
|
30
65
|
|
|
31
|
-
```
|
|
32
|
-
allure
|
|
66
|
+
```bash
|
|
67
|
+
npx allure generate <resultsDir>
|
|
33
68
|
```
|
|
69
|
+
|
|
70
|
+
By default, this command produces an **Allure 3 Awesome** report. You can customize output settings, such as the destination directory, through the configuration file. If you prefer a **Classic** or **Allure 2-style** report, or need to disable certain plugins, these adjustments can also be made via configuration.
|
|
71
|
+
|
|
72
|
+
### Viewing Reports
|
|
73
|
+
|
|
74
|
+
To view a previously generated report locally, the `open` command serves it in your default browser:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
npx allure open <reportDir>
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
If you’ve defined the output directory in your configuration file, specifying `<reportDir>` is optional. By default, Allure 3 looks for a directory named `allure-report`. To open the Awesome report directly, point to the nested directory:
|
|
81
|
+
|
|
82
|
+
```bash
|
|
83
|
+
npx allure open allure-report/awesome
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Real-time Report Monitoring
|
|
87
|
+
|
|
88
|
+
When you need to monitor test execution live, the `watch` command provides dynamic report updates. It continuously monitors the specified results directory for changes and refreshes the report automatically:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
npx allure watch <allureResultsDir>
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
This command is ideal for iterative development and debugging, allowing you to see immediate feedback as you modify and rerun tests. The browser tab updates seamlessly whenever new results are detected.
|
|
95
|
+
|
|
96
|
+
### Command-line Options
|
|
97
|
+
|
|
98
|
+
The Allure CLI includes several helpful global options. Use `--help` to explore available commands or get detailed usage information for a specific command:
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
npx allure run --help
|
|
102
|
+
npx allure watch --help
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
To check your installed version of Allure 3, use:
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
npx allure --version
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
## Configuration
|
|
113
|
+
|
|
114
|
+
Allure 3 uses an `allurerc.mjs` configuration file to manage report settings, including the report name, output directory, and plugin options.
|
|
115
|
+
|
|
116
|
+
> 💡 **Tip:** We recommend using the **Awesome** plugin for the best experience.
|
|
117
|
+
> Support for Classic and Allure 2-style reports is currently experimental.
|
|
118
|
+
|
|
119
|
+
### Example Configuration File
|
|
120
|
+
|
|
121
|
+
```js
|
|
122
|
+
import { defineConfig } from "allure";
|
|
123
|
+
|
|
124
|
+
export default defineConfig({
|
|
125
|
+
name: "Allure Report Example",
|
|
126
|
+
output: "./out/allure-report",
|
|
127
|
+
plugins: {
|
|
128
|
+
awesome: {
|
|
129
|
+
options: {
|
|
130
|
+
singleFile: true,
|
|
131
|
+
reportLanguage: "en",
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
},
|
|
135
|
+
});
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
In this example, the generated report is named *Allure Report Example* and saved to the `./out/allure-report` directory. The **Awesome** plugin is enabled with options to produce a single-file HTML report in English.
|
|
139
|
+
|
|
140
|
+
### Configuration Options
|
|
141
|
+
|
|
142
|
+
The configuration file allows you to fine-tune report generation. Key options include:
|
|
143
|
+
|
|
144
|
+
- **`name`**: Specifies the report’s display name.
|
|
145
|
+
- **`output`**: Defines the directory where the report will be saved.
|
|
146
|
+
- **`plugins`**: Enables and configures plugins, with each supporting various options.
|
|
147
|
+
|
|
148
|
+
### Awesome Plugin Options
|
|
149
|
+
|
|
150
|
+
The **Awesome** plugin offers several customizable options:
|
|
151
|
+
|
|
152
|
+
- **`singleFile`** *(boolean)*: If set to `true`, generates the report as a single standalone HTML file.
|
|
153
|
+
- **`reportName`** *(string)*: Overrides the default report name.
|
|
154
|
+
- **`open`** *(boolean)*: Automatically opens the report after generation if enabled.
|
|
155
|
+
- **`reportLanguage`** *(string)*: Sets the UI language of the report. Supported languages include:
|
|
156
|
+
|
|
157
|
+
`az`, `br`, `de`, `en`, `es`, `fr`, `he`, `ja`, `kr`, `nl`, `pl`, `ru`, `sv`, `tr`, `zh`.
|
|
158
|
+
|
|
159
|
+
For example, setting `"reportLanguage": "fr"` will render the report interface in French.
|
|
160
|
+
|
|
161
|
+
## Final Notes
|
|
162
|
+
|
|
163
|
+
Allure 3 represents a significant step forward in test reporting, offering improved performance, flexibility, and an enhanced user interface. While it remains in beta, the framework is stable enough for exploration and feedback. We encourage you to experiment with the **Awesome** plugin and share your insights to help us refine the experience.
|
|
164
|
+
|
|
165
|
+
Stay updated with the latest features, and don’t hesitate to contribute or report issues. Together, we can make Allure 3 the best it can be!
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type ClassicCommandOptions = {
|
|
2
|
+
output?: string;
|
|
3
|
+
reportName?: string;
|
|
4
|
+
reportLanguage?: string;
|
|
5
|
+
singleFile?: boolean;
|
|
6
|
+
historyPath?: string;
|
|
7
|
+
knownIssues?: string;
|
|
8
|
+
};
|
|
9
|
+
export declare const ClassicLegacyCommandAction: (resultsDir: string, options: ClassicCommandOptions) => Promise<void>;
|
|
10
|
+
export declare const ClassicLegacyCommand: (cli: import("cac").CAC) => void;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { AllureReport, resolveConfig } from "@allurereport/core";
|
|
2
|
+
import * as console from "node:console";
|
|
3
|
+
import { createCommand } from "../utils/commands.js";
|
|
4
|
+
export const ClassicLegacyCommandAction = async (resultsDir, options) => {
|
|
5
|
+
const before = new Date().getTime();
|
|
6
|
+
const { output, reportName: name, historyPath, knownIssues: knownIssuesPath, ...rest } = options;
|
|
7
|
+
const config = await resolveConfig({
|
|
8
|
+
output,
|
|
9
|
+
name,
|
|
10
|
+
historyPath,
|
|
11
|
+
knownIssuesPath,
|
|
12
|
+
plugins: {
|
|
13
|
+
"@allurereport/plugin-allure2": {
|
|
14
|
+
options: rest,
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
});
|
|
18
|
+
const allureReport = new AllureReport(config);
|
|
19
|
+
await allureReport.start();
|
|
20
|
+
await allureReport.readDirectory(resultsDir);
|
|
21
|
+
await allureReport.done();
|
|
22
|
+
const after = new Date().getTime();
|
|
23
|
+
console.log(`the report successfully generated (${after - before}ms)`);
|
|
24
|
+
};
|
|
25
|
+
export const ClassicLegacyCommand = createCommand({
|
|
26
|
+
name: "allure2 <resultsDir>",
|
|
27
|
+
description: "Generates Allure Classic report based on provided Allure Results",
|
|
28
|
+
options: [
|
|
29
|
+
[
|
|
30
|
+
"--output, -o <file>",
|
|
31
|
+
{
|
|
32
|
+
description: "The output directory name. Absolute paths are accepted as well",
|
|
33
|
+
default: "allure-report",
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
|
+
[
|
|
37
|
+
"--report-name, --name <string>",
|
|
38
|
+
{
|
|
39
|
+
description: "The report name",
|
|
40
|
+
default: "Allure Report",
|
|
41
|
+
},
|
|
42
|
+
],
|
|
43
|
+
[
|
|
44
|
+
"--report-language, --lang <string>",
|
|
45
|
+
{
|
|
46
|
+
description: "Default language of the report (default: OS language)",
|
|
47
|
+
},
|
|
48
|
+
],
|
|
49
|
+
[
|
|
50
|
+
"--single-file",
|
|
51
|
+
{
|
|
52
|
+
description: "Generate single file report",
|
|
53
|
+
default: false,
|
|
54
|
+
},
|
|
55
|
+
],
|
|
56
|
+
[
|
|
57
|
+
"--history-path, -h <file>",
|
|
58
|
+
{
|
|
59
|
+
description: "The path to history file",
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
[
|
|
63
|
+
"--known-issues <file>",
|
|
64
|
+
{
|
|
65
|
+
description: "Path to the known issues file. Updates the file and quarantines failed tests when specified",
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
],
|
|
69
|
+
action: ClassicLegacyCommandAction,
|
|
70
|
+
});
|
package/dist/commands/index.d.ts
CHANGED
package/dist/commands/index.js
CHANGED
package/dist/commands/run.js
CHANGED
|
@@ -54,6 +54,7 @@ const runTests = async (allureReport, cwd, command, commandArgs, environment, si
|
|
|
54
54
|
allureResultsWatchers.delete(ar);
|
|
55
55
|
}
|
|
56
56
|
await processWatcher.abort();
|
|
57
|
+
return code;
|
|
57
58
|
};
|
|
58
59
|
export const RunCommandAction = async (options) => {
|
|
59
60
|
const args = options["--"];
|
|
@@ -61,9 +62,9 @@ export const RunCommandAction = async (options) => {
|
|
|
61
62
|
throw new Error("expecting command to be specified after --, e.g. allure run -- npm run test");
|
|
62
63
|
}
|
|
63
64
|
const before = new Date().getTime();
|
|
64
|
-
process.on("exit", (
|
|
65
|
+
process.on("exit", (exitCode) => {
|
|
65
66
|
const after = new Date().getTime();
|
|
66
|
-
console.log(`exit code ${
|
|
67
|
+
console.log(`exit code ${exitCode} (${after - before}ms)`);
|
|
67
68
|
});
|
|
68
69
|
const command = args[0];
|
|
69
70
|
const commandArgs = args.slice(1);
|
|
@@ -98,7 +99,7 @@ export const RunCommandAction = async (options) => {
|
|
|
98
99
|
],
|
|
99
100
|
});
|
|
100
101
|
await allureReport.start();
|
|
101
|
-
await runTests(allureReport, cwd, command, commandArgs, {}, silent);
|
|
102
|
+
let code = await runTests(allureReport, cwd, command, commandArgs, {}, silent);
|
|
102
103
|
for (let rerun = 0; rerun < maxRerun; rerun++) {
|
|
103
104
|
const failed = await allureReport.store.failedTestResults();
|
|
104
105
|
if (failed.length === 0) {
|
|
@@ -111,7 +112,7 @@ export const RunCommandAction = async (options) => {
|
|
|
111
112
|
const tmpDir = await mkdtemp(join(tmpdir(), "allure-run-"));
|
|
112
113
|
const testPlanPath = resolve(tmpDir, `${rerun}-testplan.json`);
|
|
113
114
|
await writeFile(testPlanPath, JSON.stringify(testPlan));
|
|
114
|
-
await runTests(allureReport, cwd, command, commandArgs, {
|
|
115
|
+
code = await runTests(allureReport, cwd, command, commandArgs, {
|
|
115
116
|
ALLURE_TESTPLAN_PATH: testPlanPath,
|
|
116
117
|
ALLURE_RERUN: `${rerun}`,
|
|
117
118
|
}, silent);
|
|
@@ -120,7 +121,7 @@ export const RunCommandAction = async (options) => {
|
|
|
120
121
|
}
|
|
121
122
|
await allureReport.done();
|
|
122
123
|
await allureReport.validate();
|
|
123
|
-
process.exit(allureReport.exitCode);
|
|
124
|
+
process.exit(code ?? allureReport.exitCode);
|
|
124
125
|
};
|
|
125
126
|
export const RunCommand = createCommand({
|
|
126
127
|
name: "run",
|
package/dist/index.js
CHANGED
|
@@ -2,11 +2,12 @@ import { cac } from "cac";
|
|
|
2
2
|
import console from "node:console";
|
|
3
3
|
import { readFileSync } from "node:fs";
|
|
4
4
|
import { cwd } from "node:process";
|
|
5
|
-
import { AwesomeCommand, ClassicCommand, CsvCommand, GenerateCommand, HistoryCommand, KnownIssueCommand, LogCommand, OpenCommand, QualityGateCommand, RunCommand, SlackCommand, TestPlanCommand, WatchCommand, } from "./commands/index.js";
|
|
5
|
+
import { AwesomeCommand, ClassicCommand, ClassicLegacyCommand, CsvCommand, GenerateCommand, HistoryCommand, KnownIssueCommand, LogCommand, OpenCommand, QualityGateCommand, RunCommand, SlackCommand, TestPlanCommand, WatchCommand, } from "./commands/index.js";
|
|
6
6
|
const pkg = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
|
|
7
7
|
const cli = cac(pkg.name).usage(pkg.description).help().version(pkg.version);
|
|
8
8
|
const commands = [
|
|
9
9
|
ClassicCommand,
|
|
10
|
+
ClassicLegacyCommand,
|
|
10
11
|
AwesomeCommand,
|
|
11
12
|
CsvCommand,
|
|
12
13
|
GenerateCommand,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "allure",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.9",
|
|
4
4
|
"description": "Allure Commandline Tool",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"allure",
|
|
@@ -30,16 +30,18 @@
|
|
|
30
30
|
"test": "vitest run"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@allurereport/core": "3.0.0-beta.
|
|
34
|
-
"@allurereport/core-api": "3.0.0-beta.
|
|
35
|
-
"@allurereport/directory-watcher": "3.0.0-beta.
|
|
36
|
-
"@allurereport/plugin-
|
|
37
|
-
"@allurereport/plugin-
|
|
38
|
-
"@allurereport/plugin-
|
|
39
|
-
"@allurereport/plugin-
|
|
40
|
-
"@allurereport/plugin-
|
|
41
|
-
"@allurereport/
|
|
42
|
-
"@allurereport/
|
|
33
|
+
"@allurereport/core": "3.0.0-beta.9",
|
|
34
|
+
"@allurereport/core-api": "3.0.0-beta.9",
|
|
35
|
+
"@allurereport/directory-watcher": "3.0.0-beta.9",
|
|
36
|
+
"@allurereport/plugin-allure2": "3.0.0-beta.9",
|
|
37
|
+
"@allurereport/plugin-api": "3.0.0-beta.9",
|
|
38
|
+
"@allurereport/plugin-awesome": "3.0.0-beta.9",
|
|
39
|
+
"@allurereport/plugin-classic": "3.0.0-beta.9",
|
|
40
|
+
"@allurereport/plugin-progress": "3.0.0-beta.9",
|
|
41
|
+
"@allurereport/plugin-server-reload": "3.0.0-beta.9",
|
|
42
|
+
"@allurereport/plugin-slack": "3.0.0-beta.9",
|
|
43
|
+
"@allurereport/reader-api": "3.0.0-beta.9",
|
|
44
|
+
"@allurereport/static-server": "3.0.0-beta.9",
|
|
43
45
|
"cac": "^6.7.14",
|
|
44
46
|
"lodash.omit": "^4.5.0",
|
|
45
47
|
"yoctocolors": "^2.1.1"
|
|
@@ -52,7 +54,8 @@
|
|
|
52
54
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
53
55
|
"@typescript-eslint/parser": "^8.0.0",
|
|
54
56
|
"@vitest/runner": "^2.1.8",
|
|
55
|
-
"
|
|
57
|
+
"@vitest/snapshot": "^2.1.8",
|
|
58
|
+
"allure-vitest": "^3.0.9",
|
|
56
59
|
"eslint": "^8.57.0",
|
|
57
60
|
"eslint-config-prettier": "^9.1.0",
|
|
58
61
|
"eslint-plugin-import": "^2.29.1",
|