mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-02 11:25:21 -08:00
Compare commits
10 Commits
copilot/in
...
feature/ci
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
731829c27b | ||
|
|
f61aefcd0a | ||
|
|
1e50f0d29a | ||
|
|
3bb403de5c | ||
|
|
f6168414cd | ||
|
|
6614295132 | ||
|
|
e2d72d85c3 | ||
|
|
532f722cdf | ||
|
|
487a312548 | ||
|
|
b6a806a5fb |
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -3,7 +3,7 @@ name: Bug report
|
|||||||
about: Create a report to help us improve
|
about: Create a report to help us improve
|
||||||
title: ''
|
title: ''
|
||||||
labels: 'bug'
|
labels: 'bug'
|
||||||
assignees: 'dorny,dharmendrasha'
|
assignees: 'dorny,dharmendrasha,j-catania'
|
||||||
---
|
---
|
||||||
|
|
||||||
## Describe the bug
|
## Describe the bug
|
||||||
|
|||||||
2
.github/ISSUE_TEMPLATE/feature.md
vendored
2
.github/ISSUE_TEMPLATE/feature.md
vendored
@@ -3,7 +3,7 @@ name: Feature Request
|
|||||||
about: Suggest a feature
|
about: Suggest a feature
|
||||||
title: ''
|
title: ''
|
||||||
labels: 'enhancement'
|
labels: 'enhancement'
|
||||||
assignees: 'dorny,dharmendrasha'
|
assignees: 'dorny,dharmendrasha,j-catania'
|
||||||
---
|
---
|
||||||
|
|
||||||
## Describe
|
## Describe
|
||||||
|
|||||||
@@ -1,15 +0,0 @@
|
|||||||
---
|
|
||||||
applyTo: '**'
|
|
||||||
---
|
|
||||||
|
|
||||||
Instructions:
|
|
||||||
|
|
||||||
- Ensure Node.js 20 is installed and used for all development and CI tasks.
|
|
||||||
- Do not update the Node.js runtime to versions newer than 20.
|
|
||||||
- Install all dependencies using `npm install`.
|
|
||||||
- Use TypeScript for all source code; ensure `tsconfig.json` is present and configured.
|
|
||||||
- Use `npm test` to run tests; ensure all tests pass before committing changes.
|
|
||||||
- Validate changes by running `npm run all` before submitting pull requests or merging.
|
|
||||||
- This project is a GitHub Actions action; ensure compatibility with GitHub Actions workflows.
|
|
||||||
- After validating changes, create a new commit with the `dist/` directory included.
|
|
||||||
- Document any changes to the action's inputs, outputs, or behavior in the README.
|
|
||||||
2
.github/workflows/check-dist.yml
vendored
2
.github/workflows/check-dist.yml
vendored
@@ -46,7 +46,7 @@ jobs:
|
|||||||
id: diff
|
id: diff
|
||||||
|
|
||||||
# If index.js was different than expected, upload the expected version as an artifact
|
# If index.js was different than expected, upload the expected version as an artifact
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v3
|
||||||
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
|
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
|
||||||
with:
|
with:
|
||||||
name: dist
|
name: dist
|
||||||
|
|||||||
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -24,8 +24,8 @@ jobs:
|
|||||||
- run: npm test
|
- run: npm test
|
||||||
|
|
||||||
- name: Upload test results
|
- name: Upload test results
|
||||||
if: ${{ !cancelled() }}
|
if: success() || failure()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: test-results
|
name: test-results
|
||||||
path: __tests__/__results__/*.xml
|
path: __tests__/__results__/*.xml
|
||||||
|
|||||||
2
.github/workflows/manual-run.yml
vendored
2
.github/workflows/manual-run.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Create test report
|
- name: Create test report
|
||||||
uses: ./
|
uses: ./
|
||||||
if: ${{ !cancelled() }}
|
if: success() || failure()
|
||||||
with:
|
with:
|
||||||
name: JEST Tests
|
name: JEST Tests
|
||||||
path: __tests__/__results__/*.xml
|
path: __tests__/__results__/*.xml
|
||||||
|
|||||||
46
.github/workflows/test-all-reports.yml
vendored
Normal file
46
.github/workflows/test-all-reports.yml
vendored
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
name: Run all reports
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths-ignore: [ '**.md' ]
|
||||||
|
push:
|
||||||
|
paths-ignore: [ '**.md' ]
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
reports:
|
||||||
|
name: Run
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
reporter: [ jest-junit, mocha-json, swift-xunit, dart-json, dotnet-trx, java-junit, flutter-json ]
|
||||||
|
include:
|
||||||
|
- reporter: jest-junit
|
||||||
|
path: ./__tests__/fixtures/jest-junit.xml
|
||||||
|
- reporter: mocha-json
|
||||||
|
path: ./__tests__/fixtures/mocha-json.json
|
||||||
|
- reporter: swift-xunit
|
||||||
|
path: ./__tests__/fixtures/swift-xunit.xml
|
||||||
|
- reporter: dart-json
|
||||||
|
path: ./__tests__/fixtures/dart-json.json
|
||||||
|
- reporter: dotnet-trx
|
||||||
|
path: ./__tests__/fixtures/dotnet-trx.trx
|
||||||
|
- reporter: java-junit
|
||||||
|
path: ./__tests__/fixtures/external/java/pulsar-test-report.xml
|
||||||
|
- reporter: flutter-json
|
||||||
|
path: ./__tests__/fixtures/external/flutter/provider-test-results.json
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
name: ${{ matrix.reporter }} report
|
||||||
|
path: ${{ matrix.path }}
|
||||||
|
reporter: ${{ matrix.reporter }}
|
||||||
|
fail-on-error: false
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
{
|
|
||||||
"blanks-around-headings": false,
|
|
||||||
"blanks-around-lists": false,
|
|
||||||
"blanks-around-tables": false,
|
|
||||||
"blanks-around-fences": false,
|
|
||||||
"no-bare-urls": false,
|
|
||||||
"line-length": false,
|
|
||||||
"ul-style": false,
|
|
||||||
"no-inline-html": false,
|
|
||||||
"no-multiple-blanks": {
|
|
||||||
"maximum": 3
|
|
||||||
}
|
|
||||||
}
|
|
||||||
27
CHANGELOG.md
27
CHANGELOG.md
@@ -1,32 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 2.1.0
|
|
||||||
* Feature: Add summary title https://github.com/dorny/test-reporter/pull/568
|
|
||||||
* Feature: Add Golang test parser https://github.com/dorny/test-reporter/pull/571
|
|
||||||
* Increase step summary limit to 1MiB https://github.com/dorny/test-reporter/pull/581
|
|
||||||
* Fix for empty TRX TestDefinitions https://github.com/dorny/test-reporter/pull/582
|
|
||||||
* Fix input description for list options https://github.com/dorny/test-reporter/pull/572
|
|
||||||
* Update npm packages https://github.com/dorny/test-reporter/pull/583
|
|
||||||
|
|
||||||
## 2.0.0
|
|
||||||
* Parse JUnit report with detailed message in failure https://github.com/dorny/test-reporter/pull/559
|
|
||||||
* Support displaying test results in markdown using GitHub Actions Job Summaries https://github.com/dorny/test-reporter/pull/383
|
|
||||||
|
|
||||||
## 1.9.1
|
|
||||||
* Fix problematic retransmission of authentication token https://github.com/dorny/test-reporter/pull/438
|
|
||||||
* Report correct number of tests in Dart https://github.com/dorny/test-reporter/pull/426
|
|
||||||
* Number of completed tests mismatches passed/failed https://github.com/dorny/test-reporter/issues/319
|
|
||||||
|
|
||||||
## 1.9.0
|
|
||||||
* Add support for Rspec (Ruby) https://github.com/dorny/test-reporter/pull/398
|
|
||||||
|
|
||||||
## 1.8.0
|
|
||||||
* Add `SwiftXunitParser` class based on `JavaJunitParser` for `swift-xunit` reporter https://github.com/dorny/test-reporter/pull/317
|
|
||||||
* Use NodeJS 18 LTS as default runtime https://github.com/dorny/test-reporter/pull/332
|
|
||||||
* Escape `<>` characters in suite name https://github.com/dorny/test-reporter/pull/236
|
|
||||||
* Update actions runtime to Node20 https://github.com/dorny/test-reporter/pull/315
|
|
||||||
* Update check title and remove icon https://github.com/dorny/test-reporter/pull/144
|
|
||||||
|
|
||||||
## 1.7.0
|
## 1.7.0
|
||||||
* Fix #199: Use ✅ instead of ✔️ for better cross platform look by @petrdvorak in https://github.com/dorny/test-reporter/pull/200
|
* Fix #199: Use ✅ instead of ✔️ for better cross platform look by @petrdvorak in https://github.com/dorny/test-reporter/pull/200
|
||||||
* Verify content of dist/ folder matches build output by @dorny in https://github.com/dorny/test-reporter/pull/207
|
* Verify content of dist/ folder matches build output by @dorny in https://github.com/dorny/test-reporter/pull/207
|
||||||
|
|||||||
67
README.md
67
README.md
@@ -2,21 +2,20 @@
|
|||||||
|
|
||||||
This [Github Action](https://github.com/features/actions) displays test results from popular testing frameworks directly in GitHub.
|
This [Github Action](https://github.com/features/actions) displays test results from popular testing frameworks directly in GitHub.
|
||||||
|
|
||||||
✔️ Parses test results in XML or JSON format and creates nice report as GitHub Check Run or GitHub Actions job summaries
|
✔️ Parses test results in XML or JSON format and creates nice report as Github Check Run
|
||||||
|
|
||||||
✔️ Annotates code where it failed based on message and stack trace captured during test execution
|
✔️ Annotates code where it failed based on message and stack trace captured during test execution
|
||||||
|
|
||||||
✔️ Provides final `conclusion` and counts of `passed`, `failed` and `skipped` tests as output parameters
|
✔️ Provides final `conclusion` and counts of `passed`, `failed` and `skipped` tests as output parameters
|
||||||
|
|
||||||
**How it looks:**
|
**How it looks:**
|
||||||
|||||
|
|||||
|
||||||
|:--:|:--:|:--:|:--:|
|
|:--:|:--:|:--:|:--:|
|
||||||
|
|
||||||
**Supported languages / frameworks:**
|
**Supported languages / frameworks:**
|
||||||
- .NET / [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples) ( [xUnit](https://xunit.net/) / [NUnit](https://nunit.org/) / [MSTest](https://github.com/Microsoft/testfx-docs) )
|
- .NET / [xUnit](https://xunit.net/) / [NUnit](https://nunit.org/) / [MSTest](https://github.com/Microsoft/testfx-docs)
|
||||||
- Dart / [test](https://pub.dev/packages/test)
|
- Dart / [test](https://pub.dev/packages/test)
|
||||||
- Flutter / [test](https://pub.dev/packages/test)
|
- Flutter / [test](https://pub.dev/packages/test)
|
||||||
- Go / [go test](https://pkg.go.dev/testing)
|
|
||||||
- Java / [JUnit](https://junit.org/)
|
- Java / [JUnit](https://junit.org/)
|
||||||
- JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/)
|
- JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/)
|
||||||
- Swift / xUnit
|
- Swift / xUnit
|
||||||
@@ -44,13 +43,13 @@ jobs:
|
|||||||
name: Build & Test
|
name: Build & Test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4 # checkout the repo
|
- uses: actions/checkout@v3 # checkout the repo
|
||||||
- run: npm ci # install packages
|
- run: npm ci # install packages
|
||||||
- run: npm test # run tests (configured to use jest-junit reporter)
|
- run: npm test # run tests (configured to use jest-junit reporter)
|
||||||
|
|
||||||
- name: Test Report
|
- name: Test Report
|
||||||
uses: dorny/test-reporter@v2
|
uses: dorny/test-reporter@v1
|
||||||
if: ${{ !cancelled() }} # run this step even if previous step failed
|
if: success() || failure() # run this step even if previous step failed
|
||||||
with:
|
with:
|
||||||
name: JEST Tests # Name of the check run which will be created
|
name: JEST Tests # Name of the check run which will be created
|
||||||
path: reports/jest-*.xml # Path to test results
|
path: reports/jest-*.xml # Path to test results
|
||||||
@@ -75,11 +74,11 @@ jobs:
|
|||||||
build-test:
|
build-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4 # checkout the repo
|
- uses: actions/checkout@v3 # checkout the repo
|
||||||
- run: npm ci # install packages
|
- run: npm ci # install packages
|
||||||
- run: npm test # run tests (configured to use jest-junit reporter)
|
- run: npm test # run tests (configured to use jest-junit reporter)
|
||||||
- uses: actions/upload-artifact@v4 # upload test results
|
- uses: actions/upload-artifact@v3 # upload test results
|
||||||
if: ${{ !cancelled() }} # run this step even if previous step failed
|
if: success() || failure() # run this step even if previous step failed
|
||||||
with:
|
with:
|
||||||
name: test-results
|
name: test-results
|
||||||
path: jest-junit.xml
|
path: jest-junit.xml
|
||||||
@@ -100,7 +99,7 @@ jobs:
|
|||||||
report:
|
report:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: dorny/test-reporter@v2
|
- uses: dorny/test-reporter@v1
|
||||||
with:
|
with:
|
||||||
artifact: test-results # artifact name
|
artifact: test-results # artifact name
|
||||||
name: JEST Tests # Name of the check run which will be created
|
name: JEST Tests # Name of the check run which will be created
|
||||||
@@ -111,7 +110,7 @@ jobs:
|
|||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
- uses: dorny/test-reporter@v2
|
- uses: dorny/test-reporter@v1
|
||||||
with:
|
with:
|
||||||
|
|
||||||
# Name or regex of artifact containing test results
|
# Name or regex of artifact containing test results
|
||||||
@@ -138,14 +137,11 @@ jobs:
|
|||||||
|
|
||||||
# Format of test results. Supported options:
|
# Format of test results. Supported options:
|
||||||
# dart-json
|
# dart-json
|
||||||
# dotnet-nunit
|
|
||||||
# dotnet-trx
|
# dotnet-trx
|
||||||
# flutter-json
|
# flutter-json
|
||||||
# golang-json
|
|
||||||
# java-junit
|
# java-junit
|
||||||
# jest-junit
|
# jest-junit
|
||||||
# mocha-json
|
# mocha-json
|
||||||
# rspec-json
|
|
||||||
reporter: ''
|
reporter: ''
|
||||||
|
|
||||||
# Allows you to generate only the summary.
|
# Allows you to generate only the summary.
|
||||||
@@ -153,23 +149,9 @@ jobs:
|
|||||||
# Detailed listing of test suites and test cases will be skipped.
|
# Detailed listing of test suites and test cases will be skipped.
|
||||||
only-summary: 'false'
|
only-summary: 'false'
|
||||||
|
|
||||||
# Allows you to generate reports for Actions Summary
|
|
||||||
# https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/
|
|
||||||
use-actions-summary: 'true'
|
|
||||||
|
|
||||||
# Optionally specify a title (Heading level 1) for the report. Leading and trailing whitespace are ignored.
|
|
||||||
# This is useful for separating your test report from other sections in the build summary.
|
|
||||||
# If omitted or set to whitespace/empty, no title will be printed.
|
|
||||||
report-title: ''
|
|
||||||
|
|
||||||
# Customize the title of badges shown for each Actions Summary.
|
|
||||||
# Useful when distinguish summaries for tests ran in multiple Actions steps.
|
|
||||||
badge-title: 'tests'
|
|
||||||
|
|
||||||
# Limits which test suites are listed:
|
# Limits which test suites are listed:
|
||||||
# all
|
# all
|
||||||
# failed
|
# failed
|
||||||
# none
|
|
||||||
list-suites: 'all'
|
list-suites: 'all'
|
||||||
|
|
||||||
# Limits which test cases are listed:
|
# Limits which test cases are listed:
|
||||||
@@ -280,13 +262,6 @@ For more information see:
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>golang-json</summary>
|
|
||||||
|
|
||||||
You must use the `-json` flag and output the results to a file (ex: `go test -json > testresults.json`)
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>java-junit (Experimental)</summary>
|
<summary>java-junit (Experimental)</summary>
|
||||||
|
|
||||||
@@ -331,22 +306,16 @@ Configuration of `uniqueOutputName`, `suiteNameTemplate`, `classNameTemplate`, `
|
|||||||
- Mocha version [v7.2.0](https://github.com/mochajs/mocha/releases/tag/v7.2.0) or higher
|
- Mocha version [v7.2.0](https://github.com/mochajs/mocha/releases/tag/v7.2.0) or higher
|
||||||
- Usage of [json](https://mochajs.org/#json) reporter.
|
- Usage of [json](https://mochajs.org/#json) reporter.
|
||||||
|
|
||||||
For Mocha >= [v9.1.0](https://github.com/mochajs/mocha/releases/tag/v9.1.0), you can use the following example configuration in `package.json`:
|
You can use the following example configuration in `package.json`:
|
||||||
```json
|
|
||||||
"scripts": {
|
|
||||||
"test": "mocha --reporter json --reporter-option output=test-results.json"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
For Mocha < v9.1, the command should look like this:
|
|
||||||
```json
|
```json
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha --reporter json > test-results.json"
|
"test": "mocha --reporter json > test-results.json"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
Additionally, test processing might fail if any of your tests write anything on standard output.
|
|
||||||
Before version [v9.1.0](https://github.com/mochajs/mocha/releases/tag/v9.1.0), Mocha doesn't have the option to store `json` output directly to the file, and we have to rely on redirecting its standard output ([mocha#4607](https://github.com/mochajs/mocha/pull/4607)).
|
Test processing might fail if any of your tests write anything on standard output.
|
||||||
Please update Mocha to version [v9.1.0](https://github.com/mochajs/mocha/releases/tag/v9.1.0) or above if you encounter this issue.
|
Mocha, unfortunately, doesn't have the option to store `json` output directly to the file, and we have to rely on redirecting its standard output.
|
||||||
|
There is a work in progress to fix it: [mocha#4607](https://github.com/mochajs/mocha/pull/4607)
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
@@ -359,9 +328,9 @@ Support for Swift test results in xUnit format is experimental - should work but
|
|||||||
|
|
||||||
Unfortunately, there are some known issues and limitations caused by GitHub API:
|
Unfortunately, there are some known issues and limitations caused by GitHub API:
|
||||||
|
|
||||||
- Test report (i.e. build summary) is Markdown text. No custom styling or HTML is possible.
|
- Test report (i.e. Check Run summary) is markdown text. No custom styling or HTML is possible.
|
||||||
- Maximum report size is 65535 bytes. Input parameters `list-suites` and `list-tests` will be automatically adjusted if max size is exceeded.
|
- Maximum report size is 65535 bytes. Input parameters `list-suites` and `list-tests` will be automatically adjusted if max size is exceeded.
|
||||||
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v4` to upload them and inspect them manually.
|
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v3` to upload them and inspect them manually.
|
||||||
- Check Runs are created for specific commit SHA. It's not possible to specify under which workflow test report should belong if more
|
- Check Runs are created for specific commit SHA. It's not possible to specify under which workflow test report should belong if more
|
||||||
workflows are running for the same SHA. Thanks to this GitHub "feature" it's possible your test report will appear in an unexpected place in GitHub UI.
|
workflows are running for the same SHA. Thanks to this GitHub "feature" it's possible your test report will appear in an unexpected place in GitHub UI.
|
||||||
For more information, see [#67](https://github.com/dorny/test-reporter/issues/67).
|
For more information, see [#67](https://github.com/dorny/test-reporter/issues/67).
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||

|

|
||||||
|Report|Passed|Failed|Skipped|Time|
|
## ❌ <a id="user-content-r0" href="#r0">fixtures/dart-json.json</a>
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/dart-json.json](#user-content-r0)|1 ✅|4 ❌|1 ⚪|4s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dart-json.json</a>
|
|
||||||
**6** tests were completed in **4s** with **1** passed, **4** failed and **1** skipped.
|
**6** tests were completed in **4s** with **1** passed, **4** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test/main_test.dart](#user-content-r0s0)|1 ✅|3 ❌||74ms|
|
|[test/main_test.dart](#r0s0)|1✅|3❌||74ms|
|
||||||
|[test/second_test.dart](#user-content-r0s1)||1 ❌|1 ⚪|51ms|
|
|[test/second_test.dart](#r0s1)||1❌|1⚪|51ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">test/main_test.dart</a>
|
### ❌ <a id="user-content-r0s0" href="#r0s0">test/main_test.dart</a>
|
||||||
```
|
```
|
||||||
Test 1
|
Test 1
|
||||||
✅ Passing test
|
✅ Passing test
|
||||||
@@ -23,7 +20,7 @@ Test 2
|
|||||||
❌ Exception in test
|
❌ Exception in test
|
||||||
Exception: Some error
|
Exception: Some error
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s1" href="#user-content-r0s1">test/second_test.dart</a>
|
### ❌ <a id="user-content-r0s1" href="#r0s1">test/second_test.dart</a>
|
||||||
```
|
```
|
||||||
❌ Timeout test
|
❌ Timeout test
|
||||||
TimeoutException after 0:00:00.000001: Test timed out after 0 seconds.
|
TimeoutException after 0:00:00.000001: Test timed out after 0 seconds.
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/dotnet-nunit.xml](#user-content-r0)|3 ✅|5 ❌|1 ⚪|230ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dotnet-nunit.xml</a>
|
|
||||||
**9** tests were completed in **230ms** with **3** passed, **5** failed and **1** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[DotnetTests.NUnitV3Tests.dll.DotnetTests.XUnitTests](#user-content-r0s0)|3 ✅|5 ❌|1 ⚪|69ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">DotnetTests.NUnitV3Tests.dll.DotnetTests.XUnitTests</a>
|
|
||||||
```
|
|
||||||
CalculatorTests
|
|
||||||
✅ Is_Even_Number(2)
|
|
||||||
❌ Is_Even_Number(3)
|
|
||||||
Expected: True
|
|
||||||
But was: False
|
|
||||||
|
|
||||||
❌ Exception_In_TargetTest
|
|
||||||
System.DivideByZeroException : Attempted to divide by zero.
|
|
||||||
❌ Exception_In_Test
|
|
||||||
System.Exception : Test
|
|
||||||
❌ Failing_Test
|
|
||||||
Expected: 3
|
|
||||||
But was: 2
|
|
||||||
|
|
||||||
✅ Passing_Test
|
|
||||||
✅ Passing_Test_With_Description
|
|
||||||
⚪ Skipped_Test
|
|
||||||
❌ Timeout_Test
|
|
||||||
|
|
||||||
```
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/dotnet-trx.trx](#user-content-r0)|5 ✅|5 ❌|1 ⚪|1s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dotnet-trx.trx</a>
|
|
||||||
**11** tests were completed in **1s** with **5** passed, **5** failed and **1** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[DotnetTests.XUnitTests.CalculatorTests](#user-content-r0s0)|5 ✅|5 ❌|1 ⚪|118ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">DotnetTests.XUnitTests.CalculatorTests</a>
|
|
||||||
```
|
|
||||||
❌ Exception_In_TargetTest
|
|
||||||
System.DivideByZeroException : Attempted to divide by zero.
|
|
||||||
at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.Unit\Calculator.cs:line 9
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 33
|
|
||||||
❌ Exception_In_Test
|
|
||||||
System.Exception : Test
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 39
|
|
||||||
❌ Failing_Test
|
|
||||||
Assert.Equal() Failure
|
|
||||||
Expected: 3
|
|
||||||
Actual: 2
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 27
|
|
||||||
❌ Is_Even_Number(i: 3)
|
|
||||||
Assert.True() Failure
|
|
||||||
Expected: True
|
|
||||||
Actual: False
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 59
|
|
||||||
❌ Should be even number(i: 3)
|
|
||||||
Assert.True() Failure
|
|
||||||
Expected: True
|
|
||||||
Actual: False
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Theory_With_Custom_Name(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 67
|
|
||||||
```
|
|
||||||
@@ -1,40 +1,31 @@
|
|||||||

|

|
||||||
|Report|Passed|Failed|Skipped|Time|
|
## ❌ <a id="user-content-r0" href="#r0">fixtures/dotnet-trx.trx</a>
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/dotnet-trx.trx](#user-content-r0)|5 ✅|5 ❌|1 ⚪|1s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dotnet-trx.trx</a>
|
|
||||||
**11** tests were completed in **1s** with **5** passed, **5** failed and **1** skipped.
|
**11** tests were completed in **1s** with **5** passed, **5** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[DotnetTests.XUnitTests.CalculatorTests](#user-content-r0s0)|5 ✅|5 ❌|1 ⚪|118ms|
|
|[DotnetTests.XUnitTests.CalculatorTests](#r0s0)|5✅|5❌|1⚪|118ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">DotnetTests.XUnitTests.CalculatorTests</a>
|
### ❌ <a id="user-content-r0s0" href="#r0s0">DotnetTests.XUnitTests.CalculatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Custom Name
|
✅ Custom Name
|
||||||
❌ Exception_In_TargetTest
|
❌ Exception_In_TargetTest
|
||||||
System.DivideByZeroException : Attempted to divide by zero.
|
System.DivideByZeroException : Attempted to divide by zero.
|
||||||
at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.Unit\Calculator.cs:line 9
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 33
|
|
||||||
❌ Exception_In_Test
|
❌ Exception_In_Test
|
||||||
System.Exception : Test
|
System.Exception : Test
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 39
|
|
||||||
❌ Failing_Test
|
❌ Failing_Test
|
||||||
Assert.Equal() Failure
|
Assert.Equal() Failure
|
||||||
Expected: 3
|
Expected: 3
|
||||||
Actual: 2
|
Actual: 2
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 27
|
|
||||||
✅ Is_Even_Number(i: 2)
|
✅ Is_Even_Number(i: 2)
|
||||||
❌ Is_Even_Number(i: 3)
|
❌ Is_Even_Number(i: 3)
|
||||||
Assert.True() Failure
|
Assert.True() Failure
|
||||||
Expected: True
|
Expected: True
|
||||||
Actual: False
|
Actual: False
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 59
|
|
||||||
✅ Passing_Test
|
✅ Passing_Test
|
||||||
✅ Should be even number(i: 2)
|
✅ Should be even number(i: 2)
|
||||||
❌ Should be even number(i: 3)
|
❌ Should be even number(i: 3)
|
||||||
Assert.True() Failure
|
Assert.True() Failure
|
||||||
Expected: True
|
Expected: True
|
||||||
Actual: False
|
Actual: False
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Theory_With_Custom_Name(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.XUnitTests\CalculatorTests.cs:line 67
|
|
||||||
⚪ Skipped_Test
|
⚪ Skipped_Test
|
||||||
✅ Timeout_Test
|
✅ Timeout_Test
|
||||||
```
|
```
|
||||||
@@ -1,76 +1,71 @@
|
|||||||

|

|
||||||
<details><summary>Expand for details</summary>
|
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/FluentValidation.Tests.trx</a>
|
||||||
|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/FluentValidation.Tests.trx](#user-content-r0)|803 ✅||1 ⚪|4s|
|
|
||||||
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/external/FluentValidation.Tests.trx</a>
|
|
||||||
**804** tests were completed in **4s** with **803** passed, **0** failed and **1** skipped.
|
**804** tests were completed in **4s** with **803** passed, **0** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[FluentValidation.Tests.AbstractValidatorTester](#user-content-r0s0)|35 ✅|||12ms|
|
|[FluentValidation.Tests.AbstractValidatorTester](#r0s0)|35✅|||12ms|
|
||||||
|[FluentValidation.Tests.AccessorCacheTests](#user-content-r0s1)|4 ✅||1 ⚪|4ms|
|
|[FluentValidation.Tests.AccessorCacheTests](#r0s1)|4✅||1⚪|4ms|
|
||||||
|[FluentValidation.Tests.AssemblyScannerTester](#user-content-r0s2)|2 ✅|||2ms|
|
|[FluentValidation.Tests.AssemblyScannerTester](#r0s2)|2✅|||2ms|
|
||||||
|[FluentValidation.Tests.CascadingFailuresTester](#user-content-r0s3)|38 ✅|||23ms|
|
|[FluentValidation.Tests.CascadingFailuresTester](#r0s3)|38✅|||23ms|
|
||||||
|[FluentValidation.Tests.ChainedValidationTester](#user-content-r0s4)|13 ✅|||6ms|
|
|[FluentValidation.Tests.ChainedValidationTester](#r0s4)|13✅|||6ms|
|
||||||
|[FluentValidation.Tests.ChainingValidatorsTester](#user-content-r0s5)|3 ✅|||1ms|
|
|[FluentValidation.Tests.ChainingValidatorsTester](#r0s5)|3✅|||1ms|
|
||||||
|[FluentValidation.Tests.ChildRulesTests](#user-content-r0s6)|2 ✅|||7ms|
|
|[FluentValidation.Tests.ChildRulesTests](#r0s6)|2✅|||7ms|
|
||||||
|[FluentValidation.Tests.CollectionValidatorWithParentTests](#user-content-r0s7)|16 ✅|||13ms|
|
|[FluentValidation.Tests.CollectionValidatorWithParentTests](#r0s7)|16✅|||13ms|
|
||||||
|[FluentValidation.Tests.ComplexValidationTester](#user-content-r0s8)|17 ✅|||26ms|
|
|[FluentValidation.Tests.ComplexValidationTester](#r0s8)|17✅|||26ms|
|
||||||
|[FluentValidation.Tests.ConditionTests](#user-content-r0s9)|18 ✅|||9ms|
|
|[FluentValidation.Tests.ConditionTests](#r0s9)|18✅|||9ms|
|
||||||
|[FluentValidation.Tests.CreditCardValidatorTests](#user-content-r0s10)|2 ✅|||2ms|
|
|[FluentValidation.Tests.CreditCardValidatorTests](#r0s10)|2✅|||2ms|
|
||||||
|[FluentValidation.Tests.CustomFailureActionTester](#user-content-r0s11)|3 ✅|||1ms|
|
|[FluentValidation.Tests.CustomFailureActionTester](#r0s11)|3✅|||1ms|
|
||||||
|[FluentValidation.Tests.CustomMessageFormatTester](#user-content-r0s12)|6 ✅|||3ms|
|
|[FluentValidation.Tests.CustomMessageFormatTester](#r0s12)|6✅|||3ms|
|
||||||
|[FluentValidation.Tests.CustomValidatorTester](#user-content-r0s13)|10 ✅|||6ms|
|
|[FluentValidation.Tests.CustomValidatorTester](#r0s13)|10✅|||6ms|
|
||||||
|[FluentValidation.Tests.DefaultValidatorExtensionTester](#user-content-r0s14)|30 ✅|||38ms|
|
|[FluentValidation.Tests.DefaultValidatorExtensionTester](#r0s14)|30✅|||38ms|
|
||||||
|[FluentValidation.Tests.EmailValidatorTests](#user-content-r0s15)|36 ✅|||18ms|
|
|[FluentValidation.Tests.EmailValidatorTests](#r0s15)|36✅|||18ms|
|
||||||
|[FluentValidation.Tests.EmptyTester](#user-content-r0s16)|9 ✅|||5ms|
|
|[FluentValidation.Tests.EmptyTester](#r0s16)|9✅|||5ms|
|
||||||
|[FluentValidation.Tests.EnumValidatorTests](#user-content-r0s17)|12 ✅|||24ms|
|
|[FluentValidation.Tests.EnumValidatorTests](#r0s17)|12✅|||24ms|
|
||||||
|[FluentValidation.Tests.EqualValidatorTests](#user-content-r0s18)|10 ✅|||3ms|
|
|[FluentValidation.Tests.EqualValidatorTests](#r0s18)|10✅|||3ms|
|
||||||
|[FluentValidation.Tests.ExactLengthValidatorTester](#user-content-r0s19)|6 ✅|||2ms|
|
|[FluentValidation.Tests.ExactLengthValidatorTester](#r0s19)|6✅|||2ms|
|
||||||
|[FluentValidation.Tests.ExclusiveBetweenValidatorTests](#user-content-r0s20)|19 ✅|||6ms|
|
|[FluentValidation.Tests.ExclusiveBetweenValidatorTests](#r0s20)|19✅|||6ms|
|
||||||
|[FluentValidation.Tests.ExtensionTester](#user-content-r0s21)|4 ✅|||1ms|
|
|[FluentValidation.Tests.ExtensionTester](#r0s21)|4✅|||1ms|
|
||||||
|[FluentValidation.Tests.ForEachRuleTests](#user-content-r0s22)|34 ✅|||47ms|
|
|[FluentValidation.Tests.ForEachRuleTests](#r0s22)|34✅|||47ms|
|
||||||
|[FluentValidation.Tests.GreaterThanOrEqualToValidatorTester](#user-content-r0s23)|14 ✅|||5ms|
|
|[FluentValidation.Tests.GreaterThanOrEqualToValidatorTester](#r0s23)|14✅|||5ms|
|
||||||
|[FluentValidation.Tests.GreaterThanValidatorTester](#user-content-r0s24)|13 ✅|||4ms|
|
|[FluentValidation.Tests.GreaterThanValidatorTester](#r0s24)|13✅|||4ms|
|
||||||
|[FluentValidation.Tests.InclusiveBetweenValidatorTests](#user-content-r0s25)|18 ✅|||4ms|
|
|[FluentValidation.Tests.InclusiveBetweenValidatorTests](#r0s25)|18✅|||4ms|
|
||||||
|[FluentValidation.Tests.InheritanceValidatorTest](#user-content-r0s26)|11 ✅|||18ms|
|
|[FluentValidation.Tests.InheritanceValidatorTest](#r0s26)|11✅|||18ms|
|
||||||
|[FluentValidation.Tests.InlineValidatorTester](#user-content-r0s27)|1 ✅|||2ms|
|
|[FluentValidation.Tests.InlineValidatorTester](#r0s27)|1✅|||2ms|
|
||||||
|[FluentValidation.Tests.LanguageManagerTests](#user-content-r0s28)|21 ✅|||28ms|
|
|[FluentValidation.Tests.LanguageManagerTests](#r0s28)|21✅|||28ms|
|
||||||
|[FluentValidation.Tests.LengthValidatorTests](#user-content-r0s29)|16 ✅|||17ms|
|
|[FluentValidation.Tests.LengthValidatorTests](#r0s29)|16✅|||17ms|
|
||||||
|[FluentValidation.Tests.LessThanOrEqualToValidatorTester](#user-content-r0s30)|13 ✅|||4ms|
|
|[FluentValidation.Tests.LessThanOrEqualToValidatorTester](#r0s30)|13✅|||4ms|
|
||||||
|[FluentValidation.Tests.LessThanValidatorTester](#user-content-r0s31)|16 ✅|||6ms|
|
|[FluentValidation.Tests.LessThanValidatorTester](#r0s31)|16✅|||6ms|
|
||||||
|[FluentValidation.Tests.LocalisedMessagesTester](#user-content-r0s32)|6 ✅|||3ms|
|
|[FluentValidation.Tests.LocalisedMessagesTester](#r0s32)|6✅|||3ms|
|
||||||
|[FluentValidation.Tests.LocalisedNameTester](#user-content-r0s33)|2 ✅|||1ms|
|
|[FluentValidation.Tests.LocalisedNameTester](#r0s33)|2✅|||1ms|
|
||||||
|[FluentValidation.Tests.MemberAccessorTests](#user-content-r0s34)|9 ✅|||5ms|
|
|[FluentValidation.Tests.MemberAccessorTests](#r0s34)|9✅|||5ms|
|
||||||
|[FluentValidation.Tests.MessageFormatterTests](#user-content-r0s35)|10 ✅|||2ms|
|
|[FluentValidation.Tests.MessageFormatterTests](#r0s35)|10✅|||2ms|
|
||||||
|[FluentValidation.Tests.ModelLevelValidatorTests](#user-content-r0s36)|2 ✅|||1ms|
|
|[FluentValidation.Tests.ModelLevelValidatorTests](#r0s36)|2✅|||1ms|
|
||||||
|[FluentValidation.Tests.NameResolutionPluggabilityTester](#user-content-r0s37)|3 ✅|||2ms|
|
|[FluentValidation.Tests.NameResolutionPluggabilityTester](#r0s37)|3✅|||2ms|
|
||||||
|[FluentValidation.Tests.NotEmptyTester](#user-content-r0s38)|10 ✅|||7ms|
|
|[FluentValidation.Tests.NotEmptyTester](#r0s38)|10✅|||7ms|
|
||||||
|[FluentValidation.Tests.NotEqualValidatorTests](#user-content-r0s39)|11 ✅|||7ms|
|
|[FluentValidation.Tests.NotEqualValidatorTests](#r0s39)|11✅|||7ms|
|
||||||
|[FluentValidation.Tests.NotNullTester](#user-content-r0s40)|5 ✅|||1ms|
|
|[FluentValidation.Tests.NotNullTester](#r0s40)|5✅|||1ms|
|
||||||
|[FluentValidation.Tests.NullTester](#user-content-r0s41)|5 ✅|||2ms|
|
|[FluentValidation.Tests.NullTester](#r0s41)|5✅|||2ms|
|
||||||
|[FluentValidation.Tests.OnFailureTests](#user-content-r0s42)|10 ✅|||8ms|
|
|[FluentValidation.Tests.OnFailureTests](#r0s42)|10✅|||8ms|
|
||||||
|[FluentValidation.Tests.PredicateValidatorTester](#user-content-r0s43)|5 ✅|||2ms|
|
|[FluentValidation.Tests.PredicateValidatorTester](#r0s43)|5✅|||2ms|
|
||||||
|[FluentValidation.Tests.PropertyChainTests](#user-content-r0s44)|7 ✅|||1ms|
|
|[FluentValidation.Tests.PropertyChainTests](#r0s44)|7✅|||1ms|
|
||||||
|[FluentValidation.Tests.RegularExpressionValidatorTests](#user-content-r0s45)|15 ✅|||6ms|
|
|[FluentValidation.Tests.RegularExpressionValidatorTests](#r0s45)|15✅|||6ms|
|
||||||
|[FluentValidation.Tests.RuleBuilderTests](#user-content-r0s46)|29 ✅|||96ms|
|
|[FluentValidation.Tests.RuleBuilderTests](#r0s46)|29✅|||96ms|
|
||||||
|[FluentValidation.Tests.RuleDependencyTests](#user-content-r0s47)|14 ✅|||3s|
|
|[FluentValidation.Tests.RuleDependencyTests](#r0s47)|14✅|||3s|
|
||||||
|[FluentValidation.Tests.RulesetTests](#user-content-r0s48)|21 ✅|||14ms|
|
|[FluentValidation.Tests.RulesetTests](#r0s48)|21✅|||14ms|
|
||||||
|[FluentValidation.Tests.ScalePrecisionValidatorTests](#user-content-r0s49)|6 ✅|||4ms|
|
|[FluentValidation.Tests.ScalePrecisionValidatorTests](#r0s49)|6✅|||4ms|
|
||||||
|[FluentValidation.Tests.SharedConditionTests](#user-content-r0s50)|42 ✅|||42ms|
|
|[FluentValidation.Tests.SharedConditionTests](#r0s50)|42✅|||42ms|
|
||||||
|[FluentValidation.Tests.StandalonePropertyValidationTester](#user-content-r0s51)|1 ✅|||0ms|
|
|[FluentValidation.Tests.StandalonePropertyValidationTester](#r0s51)|1✅|||0ms|
|
||||||
|[FluentValidation.Tests.StringEnumValidatorTests](#user-content-r0s52)|10 ✅|||5ms|
|
|[FluentValidation.Tests.StringEnumValidatorTests](#r0s52)|10✅|||5ms|
|
||||||
|[FluentValidation.Tests.TrackingCollectionTests](#user-content-r0s53)|3 ✅|||2ms|
|
|[FluentValidation.Tests.TrackingCollectionTests](#r0s53)|3✅|||2ms|
|
||||||
|[FluentValidation.Tests.TransformTests](#user-content-r0s54)|4 ✅|||3ms|
|
|[FluentValidation.Tests.TransformTests](#r0s54)|4✅|||3ms|
|
||||||
|[FluentValidation.Tests.UserSeverityTester](#user-content-r0s55)|7 ✅|||3ms|
|
|[FluentValidation.Tests.UserSeverityTester](#r0s55)|7✅|||3ms|
|
||||||
|[FluentValidation.Tests.UserStateTester](#user-content-r0s56)|4 ✅|||3ms|
|
|[FluentValidation.Tests.UserStateTester](#r0s56)|4✅|||3ms|
|
||||||
|[FluentValidation.Tests.ValidateAndThrowTester](#user-content-r0s57)|14 ✅|||25ms|
|
|[FluentValidation.Tests.ValidateAndThrowTester](#r0s57)|14✅|||25ms|
|
||||||
|[FluentValidation.Tests.ValidationResultTests](#user-content-r0s58)|8 ✅|||8ms|
|
|[FluentValidation.Tests.ValidationResultTests](#r0s58)|8✅|||8ms|
|
||||||
|[FluentValidation.Tests.ValidatorDescriptorTester](#user-content-r0s59)|5 ✅|||1ms|
|
|[FluentValidation.Tests.ValidatorDescriptorTester](#r0s59)|5✅|||1ms|
|
||||||
|[FluentValidation.Tests.ValidatorSelectorTests](#user-content-r0s60)|10 ✅|||9ms|
|
|[FluentValidation.Tests.ValidatorSelectorTests](#r0s60)|10✅|||9ms|
|
||||||
|[FluentValidation.Tests.ValidatorTesterTester](#user-content-r0s61)|73 ✅|||74ms|
|
|[FluentValidation.Tests.ValidatorTesterTester](#r0s61)|73✅|||74ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">FluentValidation.Tests.AbstractValidatorTester</a>
|
### ✅ <a id="user-content-r0s0" href="#r0s0">FluentValidation.Tests.AbstractValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_replace_default_errorcode_resolver
|
✅ Can_replace_default_errorcode_resolver
|
||||||
✅ CanValidateInstancesOfType_returns_false_when_comparing_against_some_other_type
|
✅ CanValidateInstancesOfType_returns_false_when_comparing_against_some_other_type
|
||||||
@@ -108,7 +103,7 @@
|
|||||||
✅ WithName_should_override_field_name
|
✅ WithName_should_override_field_name
|
||||||
✅ WithName_should_override_field_name_with_value_from_other_property
|
✅ WithName_should_override_field_name_with_value_from_other_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">FluentValidation.Tests.AccessorCacheTests</a>
|
### ✅ <a id="user-content-r0s1" href="#r0s1">FluentValidation.Tests.AccessorCacheTests</a>
|
||||||
```
|
```
|
||||||
⚪ Benchmark
|
⚪ Benchmark
|
||||||
✅ Equality_comparison_check
|
✅ Equality_comparison_check
|
||||||
@@ -116,12 +111,12 @@
|
|||||||
✅ Gets_member_for_nested_property
|
✅ Gets_member_for_nested_property
|
||||||
✅ Identifies_if_memberexp_acts_on_model_instance
|
✅ Identifies_if_memberexp_acts_on_model_instance
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">FluentValidation.Tests.AssemblyScannerTester</a>
|
### ✅ <a id="user-content-r0s2" href="#r0s2">FluentValidation.Tests.AssemblyScannerTester</a>
|
||||||
```
|
```
|
||||||
✅ Finds_validators_for_types
|
✅ Finds_validators_for_types
|
||||||
✅ ForEach_iterates_over_types
|
✅ ForEach_iterates_over_types
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">FluentValidation.Tests.CascadingFailuresTester</a>
|
### ✅ <a id="user-content-r0s3" href="#r0s3">FluentValidation.Tests.CascadingFailuresTester</a>
|
||||||
```
|
```
|
||||||
✅ Cascade_mode_can_be_set_after_validator_instantiated
|
✅ Cascade_mode_can_be_set_after_validator_instantiated
|
||||||
✅ Cascade_mode_can_be_set_after_validator_instantiated_async
|
✅ Cascade_mode_can_be_set_after_validator_instantiated_async
|
||||||
@@ -162,7 +157,7 @@
|
|||||||
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_async_legacy
|
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_async_legacy
|
||||||
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_legacy
|
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_legacy
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">FluentValidation.Tests.ChainedValidationTester</a>
|
### ✅ <a id="user-content-r0s4" href="#r0s4">FluentValidation.Tests.ChainedValidationTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_validate_using_validator_for_base_type
|
✅ Can_validate_using_validator_for_base_type
|
||||||
✅ Chained_property_should_be_excluded
|
✅ Chained_property_should_be_excluded
|
||||||
@@ -178,18 +173,18 @@
|
|||||||
✅ Uses_explicit_ruleset
|
✅ Uses_explicit_ruleset
|
||||||
✅ Validates_chained_property
|
✅ Validates_chained_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">FluentValidation.Tests.ChainingValidatorsTester</a>
|
### ✅ <a id="user-content-r0s5" href="#r0s5">FluentValidation.Tests.ChainingValidatorsTester</a>
|
||||||
```
|
```
|
||||||
✅ Options_should_only_apply_to_current_validator
|
✅ Options_should_only_apply_to_current_validator
|
||||||
✅ Should_create_multiple_validators
|
✅ Should_create_multiple_validators
|
||||||
✅ Should_execute_multiple_validators
|
✅ Should_execute_multiple_validators
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">FluentValidation.Tests.ChildRulesTests</a>
|
### ✅ <a id="user-content-r0s6" href="#r0s6">FluentValidation.Tests.ChildRulesTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_define_nested_rules_for_collection
|
✅ Can_define_nested_rules_for_collection
|
||||||
✅ ChildRules_works_with_RuleSet
|
✅ ChildRules_works_with_RuleSet
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s7" href="#user-content-r0s7">FluentValidation.Tests.CollectionValidatorWithParentTests</a>
|
### ✅ <a id="user-content-r0s7" href="#r0s7">FluentValidation.Tests.CollectionValidatorWithParentTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_should_work_with_child_collection
|
✅ Async_condition_should_work_with_child_collection
|
||||||
✅ Can_specify_condition_for_individual_collection_elements
|
✅ Can_specify_condition_for_individual_collection_elements
|
||||||
@@ -208,7 +203,7 @@
|
|||||||
✅ Validates_collection_several_levels_deep
|
✅ Validates_collection_several_levels_deep
|
||||||
✅ Validates_collection_several_levels_deep_async
|
✅ Validates_collection_several_levels_deep_async
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">FluentValidation.Tests.ComplexValidationTester</a>
|
### ✅ <a id="user-content-r0s8" href="#r0s8">FluentValidation.Tests.ComplexValidationTester</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_should_work_with_complex_property
|
✅ Async_condition_should_work_with_complex_property
|
||||||
✅ Async_condition_should_work_with_complex_property_when_validator_invoked_synchronously
|
✅ Async_condition_should_work_with_complex_property_when_validator_invoked_synchronously
|
||||||
@@ -228,7 +223,7 @@
|
|||||||
✅ Validates_child_validator_synchronously
|
✅ Validates_child_validator_synchronously
|
||||||
✅ Validates_complex_property
|
✅ Validates_complex_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">FluentValidation.Tests.ConditionTests</a>
|
### ✅ <a id="user-content-r0s9" href="#r0s9">FluentValidation.Tests.ConditionTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_executed_synchronosuly_with_asynchronous_collection_rule
|
✅ Async_condition_executed_synchronosuly_with_asynchronous_collection_rule
|
||||||
✅ Async_condition_executed_synchronosuly_with_asynchronous_rule
|
✅ Async_condition_executed_synchronosuly_with_asynchronous_rule
|
||||||
@@ -249,18 +244,18 @@
|
|||||||
✅ Validation_should_succeed_when_condition_does_not_match
|
✅ Validation_should_succeed_when_condition_does_not_match
|
||||||
✅ Validation_should_succeed_when_condition_matches
|
✅ Validation_should_succeed_when_condition_matches
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">FluentValidation.Tests.CreditCardValidatorTests</a>
|
### ✅ <a id="user-content-r0s10" href="#r0s10">FluentValidation.Tests.CreditCardValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ IsValidTests
|
✅ IsValidTests
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">FluentValidation.Tests.CustomFailureActionTester</a>
|
### ✅ <a id="user-content-r0s11" href="#r0s11">FluentValidation.Tests.CustomFailureActionTester</a>
|
||||||
```
|
```
|
||||||
✅ Does_not_invoke_action_if_validation_success
|
✅ Does_not_invoke_action_if_validation_success
|
||||||
✅ Invokes_custom_action_on_failure
|
✅ Invokes_custom_action_on_failure
|
||||||
✅ Passes_object_being_validated_to_action
|
✅ Passes_object_being_validated_to_action
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s12" href="#user-content-r0s12">FluentValidation.Tests.CustomMessageFormatTester</a>
|
### ✅ <a id="user-content-r0s12" href="#r0s12">FluentValidation.Tests.CustomMessageFormatTester</a>
|
||||||
```
|
```
|
||||||
✅ Replaces_propertyvalue_placeholder
|
✅ Replaces_propertyvalue_placeholder
|
||||||
✅ Replaces_propertyvalue_with_empty_string_when_null
|
✅ Replaces_propertyvalue_with_empty_string_when_null
|
||||||
@@ -269,7 +264,7 @@
|
|||||||
✅ Uses_custom_delegate_for_building_message_only_for_specific_validator
|
✅ Uses_custom_delegate_for_building_message_only_for_specific_validator
|
||||||
✅ Uses_property_value_in_message
|
✅ Uses_property_value_in_message
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s13" href="#user-content-r0s13">FluentValidation.Tests.CustomValidatorTester</a>
|
### ✅ <a id="user-content-r0s13" href="#r0s13">FluentValidation.Tests.CustomValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ New_Custom_Returns_single_failure
|
✅ New_Custom_Returns_single_failure
|
||||||
✅ New_Custom_Returns_single_failure_async
|
✅ New_Custom_Returns_single_failure_async
|
||||||
@@ -282,7 +277,7 @@
|
|||||||
✅ Runs_async_rule_synchronously_when_validator_invoked_synchronously
|
✅ Runs_async_rule_synchronously_when_validator_invoked_synchronously
|
||||||
✅ Runs_sync_rule_asynchronously_when_validator_invoked_asynchronously
|
✅ Runs_sync_rule_asynchronously_when_validator_invoked_asynchronously
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s14" href="#user-content-r0s14">FluentValidation.Tests.DefaultValidatorExtensionTester</a>
|
### ✅ <a id="user-content-r0s14" href="#r0s14">FluentValidation.Tests.DefaultValidatorExtensionTester</a>
|
||||||
```
|
```
|
||||||
✅ Empty_should_create_EmptyValidator
|
✅ Empty_should_create_EmptyValidator
|
||||||
✅ Equal_should_create_EqualValidator_with_explicit_value
|
✅ Equal_should_create_EqualValidator_with_explicit_value
|
||||||
@@ -315,7 +310,7 @@
|
|||||||
✅ ScalePrecision_should_create_ScalePrecisionValidator
|
✅ ScalePrecision_should_create_ScalePrecisionValidator
|
||||||
✅ ScalePrecision_should_create_ScalePrecisionValidator_with_ignore_trailing_zeros
|
✅ ScalePrecision_should_create_ScalePrecisionValidator_with_ignore_trailing_zeros
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s15" href="#user-content-r0s15">FluentValidation.Tests.EmailValidatorTests</a>
|
### ✅ <a id="user-content-r0s15" href="#r0s15">FluentValidation.Tests.EmailValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Fails_email_validation_aspnetcore_compatible(email: " \r \t \n")
|
✅ Fails_email_validation_aspnetcore_compatible(email: " \r \t \n")
|
||||||
✅ Fails_email_validation_aspnetcore_compatible(email: "")
|
✅ Fails_email_validation_aspnetcore_compatible(email: "")
|
||||||
@@ -354,7 +349,7 @@
|
|||||||
✅ Valid_email_addresses_regex(email: "testperson+label@gmail.com")
|
✅ Valid_email_addresses_regex(email: "testperson+label@gmail.com")
|
||||||
✅ Valid_email_addresses_regex(email: null)
|
✅ Valid_email_addresses_regex(email: null)
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s16" href="#user-content-r0s16">FluentValidation.Tests.EmptyTester</a>
|
### ✅ <a id="user-content-r0s16" href="#r0s16">FluentValidation.Tests.EmptyTester</a>
|
||||||
```
|
```
|
||||||
✅ Passes_for_ienumerable_that_doesnt_implement_ICollection
|
✅ Passes_for_ienumerable_that_doesnt_implement_ICollection
|
||||||
✅ Passes_when_collection_empty
|
✅ Passes_when_collection_empty
|
||||||
@@ -366,7 +361,7 @@
|
|||||||
✅ When_value_is_null_validator_should_pass
|
✅ When_value_is_null_validator_should_pass
|
||||||
✅ When_value_is_whitespace_validation_should_pass
|
✅ When_value_is_whitespace_validation_should_pass
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s17" href="#user-content-r0s17">FluentValidation.Tests.EnumValidatorTests</a>
|
### ✅ <a id="user-content-r0s17" href="#r0s17">FluentValidation.Tests.EnumValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Flags_enum_invalid_when_using_outofrange_negative_value
|
✅ Flags_enum_invalid_when_using_outofrange_negative_value
|
||||||
✅ Flags_enum_invalid_when_using_outofrange_positive_value
|
✅ Flags_enum_invalid_when_using_outofrange_positive_value
|
||||||
@@ -381,7 +376,7 @@
|
|||||||
✅ When_the_enum_is_not_initialized_with_valid_value_then_the_validator_should_fail
|
✅ When_the_enum_is_not_initialized_with_valid_value_then_the_validator_should_fail
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s18" href="#user-content-r0s18">FluentValidation.Tests.EqualValidatorTests</a>
|
### ✅ <a id="user-content-r0s18" href="#r0s18">FluentValidation.Tests.EqualValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Should_store_comparison_type
|
✅ Should_store_comparison_type
|
||||||
@@ -394,7 +389,7 @@
|
|||||||
✅ When_the_objects_are_not_equal_validation_should_fail
|
✅ When_the_objects_are_not_equal_validation_should_fail
|
||||||
✅ When_validation_fails_the_error_should_be_set
|
✅ When_validation_fails_the_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s19" href="#user-content-r0s19">FluentValidation.Tests.ExactLengthValidatorTester</a>
|
### ✅ <a id="user-content-r0s19" href="#r0s19">FluentValidation.Tests.ExactLengthValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Min_and_max_properties_should_be_set
|
✅ Min_and_max_properties_should_be_set
|
||||||
✅ When_exact_length_rule_failes_error_should_have_exact_length_error_errorcode
|
✅ When_exact_length_rule_failes_error_should_have_exact_length_error_errorcode
|
||||||
@@ -403,7 +398,7 @@
|
|||||||
✅ When_the_text_length_is_smaller_the_validator_should_fail
|
✅ When_the_text_length_is_smaller_the_validator_should_fail
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s20" href="#user-content-r0s20">FluentValidation.Tests.ExclusiveBetweenValidatorTests</a>
|
### ✅ <a id="user-content-r0s20" href="#r0s20">FluentValidation.Tests.ExclusiveBetweenValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ To_and_from_properties_should_be_set
|
✅ To_and_from_properties_should_be_set
|
||||||
✅ To_and_from_properties_should_be_set_for_dates
|
✅ To_and_from_properties_should_be_set_for_dates
|
||||||
@@ -425,14 +420,14 @@
|
|||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s21" href="#user-content-r0s21">FluentValidation.Tests.ExtensionTester</a>
|
### ✅ <a id="user-content-r0s21" href="#r0s21">FluentValidation.Tests.ExtensionTester</a>
|
||||||
```
|
```
|
||||||
✅ Should_extract_member_from_member_expression
|
✅ Should_extract_member_from_member_expression
|
||||||
✅ Should_return_null_for_non_member_expressions
|
✅ Should_return_null_for_non_member_expressions
|
||||||
✅ Should_split_pascal_cased_member_name
|
✅ Should_split_pascal_cased_member_name
|
||||||
✅ SplitPascalCase_should_return_null_when_input_is_null
|
✅ SplitPascalCase_should_return_null_when_input_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s22" href="#user-content-r0s22">FluentValidation.Tests.ForEachRuleTests</a>
|
### ✅ <a id="user-content-r0s22" href="#r0s22">FluentValidation.Tests.ForEachRuleTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_should_work_with_child_collection
|
✅ Async_condition_should_work_with_child_collection
|
||||||
✅ Can_access_colletion_index
|
✅ Can_access_colletion_index
|
||||||
@@ -469,7 +464,7 @@
|
|||||||
✅ When_runs_outside_RuleForEach_loop
|
✅ When_runs_outside_RuleForEach_loop
|
||||||
✅ When_runs_outside_RuleForEach_loop_async
|
✅ When_runs_outside_RuleForEach_loop_async
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s23" href="#user-content-r0s23">FluentValidation.Tests.GreaterThanOrEqualToValidatorTester</a>
|
### ✅ <a id="user-content-r0s23" href="#r0s23">FluentValidation.Tests.GreaterThanOrEqualToValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_type
|
✅ Comparison_type
|
||||||
@@ -486,7 +481,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_property
|
✅ Validates_with_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s24" href="#user-content-r0s24">FluentValidation.Tests.GreaterThanValidatorTester</a>
|
### ✅ <a id="user-content-r0s24" href="#r0s24">FluentValidation.Tests.GreaterThanValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_Type
|
✅ Comparison_Type
|
||||||
@@ -502,7 +497,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_property
|
✅ Validates_with_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s25" href="#user-content-r0s25">FluentValidation.Tests.InclusiveBetweenValidatorTests</a>
|
### ✅ <a id="user-content-r0s25" href="#r0s25">FluentValidation.Tests.InclusiveBetweenValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ To_and_from_properties_should_be_set
|
✅ To_and_from_properties_should_be_set
|
||||||
✅ To_and_from_properties_should_be_set_for_strings
|
✅ To_and_from_properties_should_be_set_for_strings
|
||||||
@@ -523,7 +518,7 @@
|
|||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s26" href="#user-content-r0s26">FluentValidation.Tests.InheritanceValidatorTest</a>
|
### ✅ <a id="user-content-r0s26" href="#r0s26">FluentValidation.Tests.InheritanceValidatorTest</a>
|
||||||
```
|
```
|
||||||
✅ Can_use_custom_subclass_with_nongeneric_overload
|
✅ Can_use_custom_subclass_with_nongeneric_overload
|
||||||
✅ Validates_collection
|
✅ Validates_collection
|
||||||
@@ -537,11 +532,11 @@
|
|||||||
✅ Validates_with_callback_accepting_derived_async
|
✅ Validates_with_callback_accepting_derived_async
|
||||||
✅ Validates_with_callback_async
|
✅ Validates_with_callback_async
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s27" href="#user-content-r0s27">FluentValidation.Tests.InlineValidatorTester</a>
|
### ✅ <a id="user-content-r0s27" href="#r0s27">FluentValidation.Tests.InlineValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Uses_inline_validator_to_build_rules
|
✅ Uses_inline_validator_to_build_rules
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s28" href="#user-content-r0s28">FluentValidation.Tests.LanguageManagerTests</a>
|
### ✅ <a id="user-content-r0s28" href="#r0s28">FluentValidation.Tests.LanguageManagerTests</a>
|
||||||
```
|
```
|
||||||
✅ All_languages_should_be_loaded
|
✅ All_languages_should_be_loaded
|
||||||
✅ All_localizations_have_same_parameters_as_English
|
✅ All_localizations_have_same_parameters_as_English
|
||||||
@@ -565,7 +560,7 @@
|
|||||||
✅ Gets_translation_for_specific_culture
|
✅ Gets_translation_for_specific_culture
|
||||||
✅ Uses_error_code_as_localization_key
|
✅ Uses_error_code_as_localization_key
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s29" href="#user-content-r0s29">FluentValidation.Tests.LengthValidatorTests</a>
|
### ✅ <a id="user-content-r0s29" href="#r0s29">FluentValidation.Tests.LengthValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Min_and_max_properties_should_be_set
|
✅ Min_and_max_properties_should_be_set
|
||||||
✅ When_input_is_null_then_the_validator_should_pass
|
✅ When_input_is_null_then_the_validator_should_pass
|
||||||
@@ -584,7 +579,7 @@
|
|||||||
✅ When_the_text_is_smaller_than_the_range_then_the_validator_should_fail
|
✅ When_the_text_is_smaller_than_the_range_then_the_validator_should_fail
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s30" href="#user-content-r0s30">FluentValidation.Tests.LessThanOrEqualToValidatorTester</a>
|
### ✅ <a id="user-content-r0s30" href="#r0s30">FluentValidation.Tests.LessThanOrEqualToValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_type
|
✅ Comparison_type
|
||||||
@@ -600,7 +595,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_property
|
✅ Validates_with_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s31" href="#user-content-r0s31">FluentValidation.Tests.LessThanValidatorTester</a>
|
### ✅ <a id="user-content-r0s31" href="#r0s31">FluentValidation.Tests.LessThanValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_type
|
✅ Comparison_type
|
||||||
@@ -619,7 +614,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_nullable_when_property_null_cross_property
|
✅ Validates_with_nullable_when_property_null_cross_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s32" href="#user-content-r0s32">FluentValidation.Tests.LocalisedMessagesTester</a>
|
### ✅ <a id="user-content-r0s32" href="#r0s32">FluentValidation.Tests.LocalisedMessagesTester</a>
|
||||||
```
|
```
|
||||||
✅ Correctly_assigns_default_localized_error_message
|
✅ Correctly_assigns_default_localized_error_message
|
||||||
✅ Does_not_throw_InvalidCastException_when_using_RuleForEach
|
✅ Does_not_throw_InvalidCastException_when_using_RuleForEach
|
||||||
@@ -628,12 +623,12 @@
|
|||||||
✅ Uses_func_to_get_message
|
✅ Uses_func_to_get_message
|
||||||
✅ Uses_string_format_with_property_value
|
✅ Uses_string_format_with_property_value
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s33" href="#user-content-r0s33">FluentValidation.Tests.LocalisedNameTester</a>
|
### ✅ <a id="user-content-r0s33" href="#r0s33">FluentValidation.Tests.LocalisedNameTester</a>
|
||||||
```
|
```
|
||||||
✅ Uses_localized_name
|
✅ Uses_localized_name
|
||||||
✅ Uses_localized_name_expression
|
✅ Uses_localized_name_expression
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s34" href="#user-content-r0s34">FluentValidation.Tests.MemberAccessorTests</a>
|
### ✅ <a id="user-content-r0s34" href="#r0s34">FluentValidation.Tests.MemberAccessorTests</a>
|
||||||
```
|
```
|
||||||
✅ ComplexPropertyGet
|
✅ ComplexPropertyGet
|
||||||
✅ ComplexPropertySet
|
✅ ComplexPropertySet
|
||||||
@@ -645,7 +640,7 @@
|
|||||||
✅ SimplePropertyGet
|
✅ SimplePropertyGet
|
||||||
✅ SimplePropertySet
|
✅ SimplePropertySet
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s35" href="#user-content-r0s35">FluentValidation.Tests.MessageFormatterTests</a>
|
### ✅ <a id="user-content-r0s35" href="#r0s35">FluentValidation.Tests.MessageFormatterTests</a>
|
||||||
```
|
```
|
||||||
✅ Adds_argument_and_custom_arguments
|
✅ Adds_argument_and_custom_arguments
|
||||||
✅ Adds_formatted_argument_and_custom_arguments
|
✅ Adds_formatted_argument_and_custom_arguments
|
||||||
@@ -658,18 +653,18 @@
|
|||||||
✅ Understands_date_formats
|
✅ Understands_date_formats
|
||||||
✅ Understands_numeric_formats
|
✅ Understands_numeric_formats
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s36" href="#user-content-r0s36">FluentValidation.Tests.ModelLevelValidatorTests</a>
|
### ✅ <a id="user-content-r0s36" href="#r0s36">FluentValidation.Tests.ModelLevelValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_use_child_validator_at_model_level
|
✅ Can_use_child_validator_at_model_level
|
||||||
✅ Validates_at_model_level
|
✅ Validates_at_model_level
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s37" href="#user-content-r0s37">FluentValidation.Tests.NameResolutionPluggabilityTester</a>
|
### ✅ <a id="user-content-r0s37" href="#r0s37">FluentValidation.Tests.NameResolutionPluggabilityTester</a>
|
||||||
```
|
```
|
||||||
✅ Resolves_nested_properties
|
✅ Resolves_nested_properties
|
||||||
✅ ShouldHaveValidationError_Should_support_custom_propertynameresolver
|
✅ ShouldHaveValidationError_Should_support_custom_propertynameresolver
|
||||||
✅ Uses_custom_property_name
|
✅ Uses_custom_property_name
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s38" href="#user-content-r0s38">FluentValidation.Tests.NotEmptyTester</a>
|
### ✅ <a id="user-content-r0s38" href="#r0s38">FluentValidation.Tests.NotEmptyTester</a>
|
||||||
```
|
```
|
||||||
✅ Fails_for_array
|
✅ Fails_for_array
|
||||||
✅ Fails_for_ienumerable_that_doesnt_implement_ICollection
|
✅ Fails_for_ienumerable_that_doesnt_implement_ICollection
|
||||||
@@ -682,7 +677,7 @@
|
|||||||
✅ When_value_is_null_validator_should_fail
|
✅ When_value_is_null_validator_should_fail
|
||||||
✅ When_value_is_whitespace_validation_should_fail
|
✅ When_value_is_whitespace_validation_should_fail
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s39" href="#user-content-r0s39">FluentValidation.Tests.NotEqualValidatorTests</a>
|
### ✅ <a id="user-content-r0s39" href="#r0s39">FluentValidation.Tests.NotEqualValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Should_handle_custom_value_types_correctly
|
✅ Should_handle_custom_value_types_correctly
|
||||||
@@ -696,7 +691,7 @@
|
|||||||
✅ When_the_objects_are_not_equal_then_the_validator_should_pass
|
✅ When_the_objects_are_not_equal_then_the_validator_should_pass
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s40" href="#user-content-r0s40">FluentValidation.Tests.NotNullTester</a>
|
### ✅ <a id="user-content-r0s40" href="#r0s40">FluentValidation.Tests.NotNullTester</a>
|
||||||
```
|
```
|
||||||
✅ Fails_when_nullable_value_type_is_null
|
✅ Fails_when_nullable_value_type_is_null
|
||||||
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
||||||
@@ -704,7 +699,7 @@
|
|||||||
✅ NotNullValidator_should_pass_if_value_has_value
|
✅ NotNullValidator_should_pass_if_value_has_value
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s41" href="#user-content-r0s41">FluentValidation.Tests.NullTester</a>
|
### ✅ <a id="user-content-r0s41" href="#r0s41">FluentValidation.Tests.NullTester</a>
|
||||||
```
|
```
|
||||||
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
||||||
✅ NullValidator_should_fail_if_value_has_value
|
✅ NullValidator_should_fail_if_value_has_value
|
||||||
@@ -712,7 +707,7 @@
|
|||||||
✅ Passes_when_nullable_value_type_is_null
|
✅ Passes_when_nullable_value_type_is_null
|
||||||
✅ When_the_validator_passes_the_error_message_should_be_set
|
✅ When_the_validator_passes_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s42" href="#user-content-r0s42">FluentValidation.Tests.OnFailureTests</a>
|
### ✅ <a id="user-content-r0s42" href="#r0s42">FluentValidation.Tests.OnFailureTests</a>
|
||||||
```
|
```
|
||||||
✅ OnFailure_called_for_each_failed_rule
|
✅ OnFailure_called_for_each_failed_rule
|
||||||
✅ OnFailure_called_for_each_failed_rule_asyncAsync
|
✅ OnFailure_called_for_each_failed_rule_asyncAsync
|
||||||
@@ -725,7 +720,7 @@
|
|||||||
✅ WhenWithOnFailure_should_invoke_condition_on_async_inner_validator
|
✅ WhenWithOnFailure_should_invoke_condition_on_async_inner_validator
|
||||||
✅ WhenWithOnFailure_should_invoke_condition_on_inner_validator
|
✅ WhenWithOnFailure_should_invoke_condition_on_inner_validator
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s43" href="#user-content-r0s43">FluentValidation.Tests.PredicateValidatorTester</a>
|
### ✅ <a id="user-content-r0s43" href="#r0s43">FluentValidation.Tests.PredicateValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Should_fail_when_predicate_returns_false
|
✅ Should_fail_when_predicate_returns_false
|
||||||
✅ Should_succeed_when_predicate_returns_true
|
✅ Should_succeed_when_predicate_returns_true
|
||||||
@@ -733,7 +728,7 @@
|
|||||||
✅ When_validation_fails_metadata_should_be_set_on_failure
|
✅ When_validation_fails_metadata_should_be_set_on_failure
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s44" href="#user-content-r0s44">FluentValidation.Tests.PropertyChainTests</a>
|
### ✅ <a id="user-content-r0s44" href="#r0s44">FluentValidation.Tests.PropertyChainTests</a>
|
||||||
```
|
```
|
||||||
✅ AddIndexer_throws_when_nothing_added
|
✅ AddIndexer_throws_when_nothing_added
|
||||||
✅ Calling_ToString_should_construct_string_representation_of_chain
|
✅ Calling_ToString_should_construct_string_representation_of_chain
|
||||||
@@ -743,7 +738,7 @@
|
|||||||
✅ Should_ignore_blanks
|
✅ Should_ignore_blanks
|
||||||
✅ Should_not_be_subchain
|
✅ Should_not_be_subchain
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s45" href="#user-content-r0s45">FluentValidation.Tests.RegularExpressionValidatorTests</a>
|
### ✅ <a id="user-content-r0s45" href="#r0s45">FluentValidation.Tests.RegularExpressionValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_access_expression_in_message
|
✅ Can_access_expression_in_message
|
||||||
✅ Can_access_expression_in_message_lambda
|
✅ Can_access_expression_in_message_lambda
|
||||||
@@ -761,7 +756,7 @@
|
|||||||
✅ When_the_text_matches_the_regular_expression_then_the_validator_should_pass
|
✅ When_the_text_matches_the_regular_expression_then_the_validator_should_pass
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s46" href="#user-content-r0s46">FluentValidation.Tests.RuleBuilderTests</a>
|
### ✅ <a id="user-content-r0s46" href="#r0s46">FluentValidation.Tests.RuleBuilderTests</a>
|
||||||
```
|
```
|
||||||
✅ Adding_a_validator_should_return_builder
|
✅ Adding_a_validator_should_return_builder
|
||||||
✅ Adding_a_validator_should_store_validator
|
✅ Adding_a_validator_should_store_validator
|
||||||
@@ -793,7 +788,7 @@
|
|||||||
✅ Should_throw_when_inverse_predicate_is_null
|
✅ Should_throw_when_inverse_predicate_is_null
|
||||||
✅ Should_throw_when_predicate_is_null
|
✅ Should_throw_when_predicate_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s47" href="#user-content-r0s47">FluentValidation.Tests.RuleDependencyTests</a>
|
### ✅ <a id="user-content-r0s47" href="#r0s47">FluentValidation.Tests.RuleDependencyTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_inside_dependent_rules
|
✅ Async_inside_dependent_rules
|
||||||
✅ Async_inside_dependent_rules_when_parent_rule_not_async
|
✅ Async_inside_dependent_rules_when_parent_rule_not_async
|
||||||
@@ -810,7 +805,7 @@
|
|||||||
✅ TestAsyncWithDependentRules_SyncEntry
|
✅ TestAsyncWithDependentRules_SyncEntry
|
||||||
✅ Treats_root_level_RuleFor_call_as_dependent_rule_if_user_forgets_to_use_DependentRulesBuilder
|
✅ Treats_root_level_RuleFor_call_as_dependent_rule_if_user_forgets_to_use_DependentRulesBuilder
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s48" href="#user-content-r0s48">FluentValidation.Tests.RulesetTests</a>
|
### ✅ <a id="user-content-r0s48" href="#r0s48">FluentValidation.Tests.RulesetTests</a>
|
||||||
```
|
```
|
||||||
✅ Applies_multiple_rulesets_to_rule
|
✅ Applies_multiple_rulesets_to_rule
|
||||||
✅ Combines_rulesets_and_explicit_properties
|
✅ Combines_rulesets_and_explicit_properties
|
||||||
@@ -834,7 +829,7 @@
|
|||||||
✅ Trims_spaces
|
✅ Trims_spaces
|
||||||
✅ WithMessage_works_inside_rulesets
|
✅ WithMessage_works_inside_rulesets
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s49" href="#user-content-r0s49">FluentValidation.Tests.ScalePrecisionValidatorTests</a>
|
### ✅ <a id="user-content-r0s49" href="#r0s49">FluentValidation.Tests.ScalePrecisionValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Scale_precision_should_be_valid
|
✅ Scale_precision_should_be_valid
|
||||||
✅ Scale_precision_should_be_valid_when_ignoring_trailing_zeroes
|
✅ Scale_precision_should_be_valid_when_ignoring_trailing_zeroes
|
||||||
@@ -843,7 +838,7 @@
|
|||||||
✅ Scale_precision_should_not_be_valid_when_ignoring_trailing_zeroes
|
✅ Scale_precision_should_not_be_valid_when_ignoring_trailing_zeroes
|
||||||
✅ Scale_precision_should_not_be_valid_when_they_are_equal
|
✅ Scale_precision_should_not_be_valid_when_they_are_equal
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s50" href="#user-content-r0s50">FluentValidation.Tests.SharedConditionTests</a>
|
### ✅ <a id="user-content-r0s50" href="#r0s50">FluentValidation.Tests.SharedConditionTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_can_be_used_inside_ruleset
|
✅ Async_condition_can_be_used_inside_ruleset
|
||||||
✅ Condition_can_be_used_inside_ruleset
|
✅ Condition_can_be_used_inside_ruleset
|
||||||
@@ -888,11 +883,11 @@
|
|||||||
✅ When_condition_only_executed_once
|
✅ When_condition_only_executed_once
|
||||||
✅ WhenAsync_condition_only_executed_once
|
✅ WhenAsync_condition_only_executed_once
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s51" href="#user-content-r0s51">FluentValidation.Tests.StandalonePropertyValidationTester</a>
|
### ✅ <a id="user-content-r0s51" href="#r0s51">FluentValidation.Tests.StandalonePropertyValidationTester</a>
|
||||||
```
|
```
|
||||||
✅ Should_validate_property_value_without_instance
|
✅ Should_validate_property_value_without_instance
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s52" href="#user-content-r0s52">FluentValidation.Tests.StringEnumValidatorTests</a>
|
### ✅ <a id="user-content-r0s52" href="#r0s52">FluentValidation.Tests.StringEnumValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ IsValidTests_CaseInsensitive_CaseCorrect
|
✅ IsValidTests_CaseInsensitive_CaseCorrect
|
||||||
✅ IsValidTests_CaseInsensitive_CaseIncorrect
|
✅ IsValidTests_CaseInsensitive_CaseIncorrect
|
||||||
@@ -905,20 +900,20 @@
|
|||||||
✅ When_the_property_is_initialized_with_null_then_the_validator_should_be_valid
|
✅ When_the_property_is_initialized_with_null_then_the_validator_should_be_valid
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s53" href="#user-content-r0s53">FluentValidation.Tests.TrackingCollectionTests</a>
|
### ✅ <a id="user-content-r0s53" href="#r0s53">FluentValidation.Tests.TrackingCollectionTests</a>
|
||||||
```
|
```
|
||||||
✅ Add_AddsItem
|
✅ Add_AddsItem
|
||||||
✅ Should_not_raise_event_once_handler_detached
|
✅ Should_not_raise_event_once_handler_detached
|
||||||
✅ When_Item_Added_Raises_ItemAdded
|
✅ When_Item_Added_Raises_ItemAdded
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s54" href="#user-content-r0s54">FluentValidation.Tests.TransformTests</a>
|
### ✅ <a id="user-content-r0s54" href="#r0s54">FluentValidation.Tests.TransformTests</a>
|
||||||
```
|
```
|
||||||
✅ Transforms_collection_element
|
✅ Transforms_collection_element
|
||||||
✅ Transforms_collection_element_async
|
✅ Transforms_collection_element_async
|
||||||
✅ Transforms_property_value
|
✅ Transforms_property_value
|
||||||
✅ Transforms_property_value_to_another_type
|
✅ Transforms_property_value_to_another_type
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s55" href="#user-content-r0s55">FluentValidation.Tests.UserSeverityTester</a>
|
### ✅ <a id="user-content-r0s55" href="#r0s55">FluentValidation.Tests.UserSeverityTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_Provide_conditional_severity
|
✅ Can_Provide_conditional_severity
|
||||||
✅ Can_Provide_severity_for_item_in_collection
|
✅ Can_Provide_severity_for_item_in_collection
|
||||||
@@ -928,14 +923,14 @@
|
|||||||
✅ Stores_user_severity_against_validation_failure
|
✅ Stores_user_severity_against_validation_failure
|
||||||
✅ Throws_when_provider_is_null
|
✅ Throws_when_provider_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s56" href="#user-content-r0s56">FluentValidation.Tests.UserStateTester</a>
|
### ✅ <a id="user-content-r0s56" href="#r0s56">FluentValidation.Tests.UserStateTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_Provide_state_for_item_in_collection
|
✅ Can_Provide_state_for_item_in_collection
|
||||||
✅ Correctly_provides_object_being_validated
|
✅ Correctly_provides_object_being_validated
|
||||||
✅ Stores_user_state_against_validation_failure
|
✅ Stores_user_state_against_validation_failure
|
||||||
✅ Throws_when_provider_is_null
|
✅ Throws_when_provider_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s57" href="#user-content-r0s57">FluentValidation.Tests.ValidateAndThrowTester</a>
|
### ✅ <a id="user-content-r0s57" href="#r0s57">FluentValidation.Tests.ValidateAndThrowTester</a>
|
||||||
```
|
```
|
||||||
✅ Does_not_throw_when_valid
|
✅ Does_not_throw_when_valid
|
||||||
✅ Does_not_throw_when_valid_and_a_ruleset
|
✅ Does_not_throw_when_valid_and_a_ruleset
|
||||||
@@ -952,7 +947,7 @@
|
|||||||
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_false
|
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_false
|
||||||
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_true
|
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_true
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s58" href="#user-content-r0s58">FluentValidation.Tests.ValidationResultTests</a>
|
### ✅ <a id="user-content-r0s58" href="#r0s58">FluentValidation.Tests.ValidationResultTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_serialize_failure
|
✅ Can_serialize_failure
|
||||||
✅ Can_serialize_result
|
✅ Can_serialize_result
|
||||||
@@ -963,7 +958,7 @@
|
|||||||
✅ ToString_return_error_messages_with_given_separator
|
✅ ToString_return_error_messages_with_given_separator
|
||||||
✅ ToString_return_error_messages_with_newline_as_separator
|
✅ ToString_return_error_messages_with_newline_as_separator
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s59" href="#user-content-r0s59">FluentValidation.Tests.ValidatorDescriptorTester</a>
|
### ✅ <a id="user-content-r0s59" href="#r0s59">FluentValidation.Tests.ValidatorDescriptorTester</a>
|
||||||
```
|
```
|
||||||
✅ Does_not_throw_when_rule_declared_without_property
|
✅ Does_not_throw_when_rule_declared_without_property
|
||||||
✅ Gets_validators_for_property
|
✅ Gets_validators_for_property
|
||||||
@@ -971,7 +966,7 @@
|
|||||||
✅ Returns_empty_collection_for_property_with_no_validators
|
✅ Returns_empty_collection_for_property_with_no_validators
|
||||||
✅ Should_retrieve_name_given_to_it_pass_property_as_string
|
✅ Should_retrieve_name_given_to_it_pass_property_as_string
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s60" href="#user-content-r0s60">FluentValidation.Tests.ValidatorSelectorTests</a>
|
### ✅ <a id="user-content-r0s60" href="#r0s60">FluentValidation.Tests.ValidatorSelectorTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_use_property_with_include
|
✅ Can_use_property_with_include
|
||||||
✅ Does_not_validate_other_property
|
✅ Does_not_validate_other_property
|
||||||
@@ -984,7 +979,7 @@
|
|||||||
✅ Validates_nullable_property_with_overriden_name_when_selected
|
✅ Validates_nullable_property_with_overriden_name_when_selected
|
||||||
✅ Validates_property_using_expression
|
✅ Validates_property_using_expression
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s61" href="#user-content-r0s61">FluentValidation.Tests.ValidatorTesterTester</a>
|
### ✅ <a id="user-content-r0s61" href="#r0s61">FluentValidation.Tests.ValidatorTesterTester</a>
|
||||||
```
|
```
|
||||||
✅ Allows_only_one_failure_to_match
|
✅ Allows_only_one_failure_to_match
|
||||||
✅ Can_use_indexer_in_string_message
|
✅ Can_use_indexer_in_string_message
|
||||||
@@ -1059,5 +1054,4 @@
|
|||||||
✅ Unexpected_message_check(withoutErrMsg: "bar", errMessages: [])
|
✅ Unexpected_message_check(withoutErrMsg: "bar", errMessages: [])
|
||||||
✅ Unexpected_severity_check
|
✅ Unexpected_severity_check
|
||||||
✅ Unexpected_state_check
|
✅ Unexpected_state_check
|
||||||
```
|
```
|
||||||
</details>
|
|
||||||
@@ -1,38 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/golang-json.json](#user-content-r0)|5 ✅|6 ❌|1 ⚪|6s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/golang-json.json</a>
|
|
||||||
**12** tests were completed in **6s** with **5** passed, **6** failed and **1** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[_/home/james_t/git/test-reporter/reports/go](#user-content-r0s0)|5 ✅|6 ❌|1 ⚪|6s|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">_/home/james_t/git/test-reporter/reports/go</a>
|
|
||||||
```
|
|
||||||
✅ TestPassing
|
|
||||||
❌ TestFailing
|
|
||||||
calculator_test.go:19: expected 1+1 = 3, got 2
|
|
||||||
|
|
||||||
❌ TestPanicInsideFunction
|
|
||||||
calculator_test.go:76: caught panic: runtime error: integer divide by zero
|
|
||||||
|
|
||||||
❌ TestPanicInsideTest
|
|
||||||
calculator_test.go:76: caught panic: bad stuff
|
|
||||||
|
|
||||||
⚪ TestSkipped
|
|
||||||
calculator_test.go:45: skipping test
|
|
||||||
|
|
||||||
❌ TestCases
|
|
||||||
|
|
||||||
TestCases
|
|
||||||
✅ 1_+_2_=_3
|
|
||||||
✅ 4_+_7_=_11
|
|
||||||
❌ 2_+_3_=_4
|
|
||||||
calculator_test.go:67: expected 2 + 3 = 4, got 5
|
|
||||||
|
|
||||||
❌ 1_/_2_=_1
|
|
||||||
calculator_test.go:67: expected 1 / 2 = 1, got 0
|
|
||||||
|
|
||||||
✅ 9_/_3_=_3
|
|
||||||
✅ 14_/_7_=_2
|
|
||||||
```
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||

|
|
||||||
<details><summary>Expand for details</summary>
|
|
||||||
|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/jest-junit-eslint.xml](#user-content-r0)|1 ✅|||0ms|
|
|
||||||
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/jest-junit-eslint.xml</a>
|
|
||||||
**1** tests were completed in **0ms** with **1** passed, **0** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[test.jsx](#user-content-r0s0)|1 ✅|||0ms|
|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">test.jsx</a>
|
|
||||||
```
|
|
||||||
test
|
|
||||||
✅ test.jsx
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
@@ -1,14 +1,11 @@
|
|||||||

|

|
||||||
|Report|Passed|Failed|Skipped|Time|
|
## ❌ <a id="user-content-r0" href="#r0">fixtures/jest-junit.xml</a>
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/jest-junit.xml](#user-content-r0)|1 ✅|4 ❌|1 ⚪|1s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/jest-junit.xml</a>
|
|
||||||
**6** tests were completed in **1s** with **1** passed, **4** failed and **1** skipped.
|
**6** tests were completed in **1s** with **1** passed, **4** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[__tests__\main.test.js](#user-content-r0s0)|1 ✅|3 ❌||486ms|
|
|[__tests__\main.test.js](#r0s0)|1✅|3❌||486ms|
|
||||||
|[__tests__\second.test.js](#user-content-r0s1)||1 ❌|1 ⚪|82ms|
|
|[__tests__\second.test.js](#r0s1)||1❌|1⚪|82ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">__tests__\main.test.js</a>
|
### ❌ <a id="user-content-r0s0" href="#r0s0">__tests__\main.test.js</a>
|
||||||
```
|
```
|
||||||
Test 1
|
Test 1
|
||||||
✅ Passing test
|
✅ Passing test
|
||||||
@@ -21,7 +18,7 @@ Test 2
|
|||||||
❌ Exception in test
|
❌ Exception in test
|
||||||
Error: Some error
|
Error: Some error
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s1" href="#user-content-r0s1">__tests__\second.test.js</a>
|
### ❌ <a id="user-content-r0s1" href="#r0s1">__tests__\second.test.js</a>
|
||||||
```
|
```
|
||||||
❌ Timeout test
|
❌ Timeout test
|
||||||
: Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Error:
|
: Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Error:
|
||||||
|
|||||||
@@ -1,16 +1,10 @@
|
|||||||

|

|
||||||
<details><summary>Expand for details</summary>
|
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/jest/jest-react-component-test-results.xml</a>
|
||||||
|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/jest/jest-react-component-test-results.xml](#user-content-r0)|1 ✅|||1000ms|
|
|
||||||
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/external/jest/jest-react-component-test-results.xml</a>
|
|
||||||
**1** tests were completed in **1000ms** with **1** passed, **0** failed and **0** skipped.
|
**1** tests were completed in **1000ms** with **1** passed, **0** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[\<Component /\>](#user-content-r0s0)|1 ✅|||798ms|
|
|[\<Component /\>](#r0s0)|1✅|||798ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">\<Component /\></a>
|
### ✅ <a id="user-content-r0s0" href="#r0s0">\<Component /\></a>
|
||||||
```
|
```
|
||||||
✅ <Component /> should render properly
|
✅ <Component /> should render properly
|
||||||
```
|
```
|
||||||
</details>
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,15 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/junit-with-message.xml](#user-content-r0)||1 ❌||1ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/junit-with-message.xml</a>
|
|
||||||
**1** tests were completed in **1ms** with **0** passed, **1** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[Test](#user-content-r0s0)||1 ❌||1ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">Test</a>
|
|
||||||
```
|
|
||||||
Fails
|
|
||||||
❌ Test
|
|
||||||
error.cpp:01
|
|
||||||
```
|
|
||||||
@@ -1,14 +1,11 @@
|
|||||||

|

|
||||||
|Report|Passed|Failed|Skipped|Time|
|
## ❌ <a id="user-content-r0" href="#r0">fixtures/mocha-json.json</a>
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/mocha-json.json](#user-content-r0)|1 ✅|4 ❌|1 ⚪|12ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/mocha-json.json</a>
|
|
||||||
**6** tests were completed in **12ms** with **1** passed, **4** failed and **1** skipped.
|
**6** tests were completed in **12ms** with **1** passed, **4** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test/main.test.js](#user-content-r0s0)|1 ✅|3 ❌||1ms|
|
|[test/main.test.js](#r0s0)|1✅|3❌||1ms|
|
||||||
|[test/second.test.js](#user-content-r0s1)||1 ❌|1 ⚪|8ms|
|
|[test/second.test.js](#r0s1)||1❌|1⚪|8ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">test/main.test.js</a>
|
### ❌ <a id="user-content-r0s0" href="#r0s0">test/main.test.js</a>
|
||||||
```
|
```
|
||||||
Test 1
|
Test 1
|
||||||
✅ Passing test
|
✅ Passing test
|
||||||
@@ -24,7 +21,7 @@ Test 2
|
|||||||
❌ Exception in test
|
❌ Exception in test
|
||||||
Some error
|
Some error
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s1" href="#user-content-r0s1">test/second.test.js</a>
|
### ❌ <a id="user-content-r0s1" href="#r0s1">test/second.test.js</a>
|
||||||
```
|
```
|
||||||
⚪ Skipped test
|
⚪ Skipped test
|
||||||
❌ Timeout test
|
❌ Timeout test
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,28 +1,25 @@
|
|||||||

|

|
||||||
|Report|Passed|Failed|Skipped|Time|
|
## ❌ <a id="user-content-r0" href="#r0">fixtures/external/flutter/provider-test-results.json</a>
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/flutter/provider-test-results.json](#user-content-r0)|268 ✅|1 ❌||0ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/flutter/provider-test-results.json</a>
|
|
||||||
**269** tests were completed in **0ms** with **268** passed, **1** failed and **0** skipped.
|
**269** tests were completed in **0ms** with **268** passed, **1** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test/builder_test.dart](#user-content-r0s0)|24 ✅|||402ms|
|
|[test/builder_test.dart](#r0s0)|24✅|||402ms|
|
||||||
|[test/change_notifier_provider_test.dart](#user-content-r0s1)|10 ✅|||306ms|
|
|[test/change_notifier_provider_test.dart](#r0s1)|10✅|||306ms|
|
||||||
|[test/consumer_test.dart](#user-content-r0s2)|18 ✅|||340ms|
|
|[test/consumer_test.dart](#r0s2)|18✅|||340ms|
|
||||||
|[test/context_test.dart](#user-content-r0s3)|31 ✅|||698ms|
|
|[test/context_test.dart](#r0s3)|31✅|||698ms|
|
||||||
|[test/future_provider_test.dart](#user-content-r0s4)|10 ✅|||305ms|
|
|[test/future_provider_test.dart](#r0s4)|10✅|||305ms|
|
||||||
|[test/inherited_provider_test.dart](#user-content-r0s5)|81 ✅|||1s|
|
|[test/inherited_provider_test.dart](#r0s5)|81✅|||1s|
|
||||||
|[test/listenable_provider_test.dart](#user-content-r0s6)|16 ✅|||353ms|
|
|[test/listenable_provider_test.dart](#r0s6)|16✅|||353ms|
|
||||||
|[test/listenable_proxy_provider_test.dart](#user-content-r0s7)|12 ✅|||373ms|
|
|[test/listenable_proxy_provider_test.dart](#r0s7)|12✅|||373ms|
|
||||||
|[test/multi_provider_test.dart](#user-content-r0s8)|3 ✅|||198ms|
|
|[test/multi_provider_test.dart](#r0s8)|3✅|||198ms|
|
||||||
|[test/provider_test.dart](#user-content-r0s9)|11 ✅|||306ms|
|
|[test/provider_test.dart](#r0s9)|11✅|||306ms|
|
||||||
|[test/proxy_provider_test.dart](#user-content-r0s10)|16 ✅|||438ms|
|
|[test/proxy_provider_test.dart](#r0s10)|16✅|||438ms|
|
||||||
|[test/reassemble_test.dart](#user-content-r0s11)|3 ✅|||221ms|
|
|[test/reassemble_test.dart](#r0s11)|3✅|||221ms|
|
||||||
|[test/selector_test.dart](#user-content-r0s12)|17 ✅|||364ms|
|
|[test/selector_test.dart](#r0s12)|17✅|||364ms|
|
||||||
|[test/stateful_provider_test.dart](#user-content-r0s13)|4 ✅|||254ms|
|
|[test/stateful_provider_test.dart](#r0s13)|4✅|||254ms|
|
||||||
|[test/stream_provider_test.dart](#user-content-r0s14)|8 ✅|||282ms|
|
|[test/stream_provider_test.dart](#r0s14)|8✅|||282ms|
|
||||||
|[test/value_listenable_provider_test.dart](#user-content-r0s15)|4 ✅|1 ❌||327ms|
|
|[test/value_listenable_provider_test.dart](#r0s15)|4✅|1❌||327ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">test/builder_test.dart</a>
|
### ✅ <a id="user-content-r0s0" href="#r0s0">test/builder_test.dart</a>
|
||||||
```
|
```
|
||||||
ChangeNotifierProvider
|
ChangeNotifierProvider
|
||||||
✅ default
|
✅ default
|
||||||
@@ -54,7 +51,7 @@ MultiProvider
|
|||||||
✅ with ProxyProvider5
|
✅ with ProxyProvider5
|
||||||
✅ with ProxyProvider6
|
✅ with ProxyProvider6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">test/change_notifier_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s1" href="#r0s1">test/change_notifier_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ Use builder property, not child
|
✅ Use builder property, not child
|
||||||
ChangeNotifierProvider
|
ChangeNotifierProvider
|
||||||
@@ -68,7 +65,7 @@ ChangeNotifierProvider
|
|||||||
✅ builder6
|
✅ builder6
|
||||||
✅ builder0
|
✅ builder0
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">test/consumer_test.dart</a>
|
### ✅ <a id="user-content-r0s2" href="#r0s2">test/consumer_test.dart</a>
|
||||||
```
|
```
|
||||||
consumer
|
consumer
|
||||||
✅ obtains value from Provider<T>
|
✅ obtains value from Provider<T>
|
||||||
@@ -95,7 +92,7 @@ consumer6
|
|||||||
✅ crashed with no builder
|
✅ crashed with no builder
|
||||||
✅ can be used inside MultiProvider
|
✅ can be used inside MultiProvider
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">test/context_test.dart</a>
|
### ✅ <a id="user-content-r0s3" href="#r0s3">test/context_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ watch in layoutbuilder
|
✅ watch in layoutbuilder
|
||||||
✅ select in layoutbuilder
|
✅ select in layoutbuilder
|
||||||
@@ -130,7 +127,7 @@ BuildContext
|
|||||||
✅ context.select deeply compares sets
|
✅ context.select deeply compares sets
|
||||||
✅ context.watch listens to value changes
|
✅ context.watch listens to value changes
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">test/future_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s4" href="#r0s4">test/future_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
✅ (catchError) previous future completes after transition is no-op
|
✅ (catchError) previous future completes after transition is no-op
|
||||||
@@ -144,7 +141,7 @@ BuildContext
|
|||||||
FutureProvider()
|
FutureProvider()
|
||||||
✅ crashes if builder is null
|
✅ crashes if builder is null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">test/inherited_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s5" href="#r0s5">test/inherited_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ regression test #377
|
✅ regression test #377
|
||||||
✅ rebuild on dependency flags update
|
✅ rebuild on dependency flags update
|
||||||
@@ -233,7 +230,7 @@ DeferredInheritedProvider()
|
|||||||
✅ dispose
|
✅ dispose
|
||||||
✅ dispose no-op if never built
|
✅ dispose no-op if never built
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">test/listenable_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s6" href="#r0s6">test/listenable_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
ListenableProvider
|
ListenableProvider
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
@@ -255,7 +252,7 @@ ListenableProvider stateful constructor
|
|||||||
✅ pass down key
|
✅ pass down key
|
||||||
✅ throws if create is null
|
✅ throws if create is null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s7" href="#user-content-r0s7">test/listenable_proxy_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s7" href="#r0s7">test/listenable_proxy_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
ListenableProxyProvider
|
ListenableProxyProvider
|
||||||
✅ throws if update is missing
|
✅ throws if update is missing
|
||||||
@@ -272,14 +269,14 @@ ListenableProxyProvider variants
|
|||||||
✅ ListenableProxyProvider5
|
✅ ListenableProxyProvider5
|
||||||
✅ ListenableProxyProvider6
|
✅ ListenableProxyProvider6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">test/multi_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s8" href="#r0s8">test/multi_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
MultiProvider
|
MultiProvider
|
||||||
✅ throw if providers is null
|
✅ throw if providers is null
|
||||||
✅ MultiProvider children can only access parent providers
|
✅ MultiProvider children can only access parent providers
|
||||||
✅ MultiProvider.providers with ignored child
|
✅ MultiProvider.providers with ignored child
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">test/provider_test.dart</a>
|
### ✅ <a id="user-content-r0s9" href="#r0s9">test/provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
Provider.of
|
Provider.of
|
||||||
@@ -295,7 +292,7 @@ Provider
|
|||||||
✅ throws an error if no provider found
|
✅ throws an error if no provider found
|
||||||
✅ update should notify
|
✅ update should notify
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">test/proxy_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s10" href="#r0s10">test/proxy_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
ProxyProvider
|
ProxyProvider
|
||||||
✅ throws if the provided value is a Listenable/Stream
|
✅ throws if the provided value is a Listenable/Stream
|
||||||
@@ -316,13 +313,13 @@ ProxyProvider variants
|
|||||||
✅ ProxyProvider5
|
✅ ProxyProvider5
|
||||||
✅ ProxyProvider6
|
✅ ProxyProvider6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">test/reassemble_test.dart</a>
|
### ✅ <a id="user-content-r0s11" href="#r0s11">test/reassemble_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ ReassembleHandler
|
✅ ReassembleHandler
|
||||||
✅ unevaluated create
|
✅ unevaluated create
|
||||||
✅ unevaluated create
|
✅ unevaluated create
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s12" href="#user-content-r0s12">test/selector_test.dart</a>
|
### ✅ <a id="user-content-r0s12" href="#r0s12">test/selector_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ asserts that builder/selector are not null
|
✅ asserts that builder/selector are not null
|
||||||
✅ Deep compare maps by default
|
✅ Deep compare maps by default
|
||||||
@@ -342,14 +339,14 @@ ProxyProvider variants
|
|||||||
✅ Selector5
|
✅ Selector5
|
||||||
✅ Selector6
|
✅ Selector6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s13" href="#user-content-r0s13">test/stateful_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s13" href="#r0s13">test/stateful_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ asserts
|
✅ asserts
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
✅ calls create only once
|
✅ calls create only once
|
||||||
✅ dispose
|
✅ dispose
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s14" href="#user-content-r0s14">test/stream_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s14" href="#r0s14">test/stream_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
✅ transition from stream to stream preserve state
|
✅ transition from stream to stream preserve state
|
||||||
@@ -361,7 +358,7 @@ StreamProvider()
|
|||||||
✅ create and dispose stream with builder
|
✅ create and dispose stream with builder
|
||||||
✅ crashes if builder is null
|
✅ crashes if builder is null
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s15" href="#user-content-r0s15">test/value_listenable_provider_test.dart</a>
|
### ❌ <a id="user-content-r0s15" href="#r0s15">test/value_listenable_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
valueListenableProvider
|
valueListenableProvider
|
||||||
✅ rebuilds when value change
|
✅ rebuilds when value change
|
||||||
|
|||||||
@@ -1,13 +1,10 @@
|
|||||||

|

|
||||||
|Report|Passed|Failed|Skipped|Time|
|
## ❌ <a id="user-content-r0" href="#r0">fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml</a>
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml](#user-content-r0)||1 ❌|1 ⚪|116ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml</a>
|
|
||||||
**2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped.
|
**2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[org.apache.pulsar.AddMissingPatchVersionTest](#user-content-r0s0)||1 ❌|1 ⚪|116ms|
|
|[org.apache.pulsar.AddMissingPatchVersionTest](#r0s0)||1❌|1⚪|116ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a>
|
### ❌ <a id="user-content-r0s0" href="#r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a>
|
||||||
```
|
```
|
||||||
⚪ testVersionStrings
|
⚪ testVersionStrings
|
||||||
❌ testVersionStrings
|
❌ testVersionStrings
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,19 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/rspec-json.json](#user-content-r0)|1 ✅|1 ❌|1 ⚪|0ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/rspec-json.json</a>
|
|
||||||
**3** tests were completed in **0ms** with **1** passed, **1** failed and **1** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[./spec/config/check_env_vars_spec.rb](#user-content-r0s0)|1 ✅|1 ❌|1 ⚪|0ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">./spec/config/check_env_vars_spec.rb</a>
|
|
||||||
```
|
|
||||||
CheckEnvVars#call when all env vars are defined behaves like success load
|
|
||||||
❌ CheckEnvVars#call when all env vars are defined behaves like success load fails in assertion
|
|
||||||
(#ActiveSupport::BroadcastLogger:0x00007f1007fedf58).debug("All config env vars exist")
|
|
||||||
expected: 0 times with arguments: ("All config env vars exist")
|
|
||||||
received: 1 time with arguments: ("All config env vars exist")
|
|
||||||
✅ CheckEnvVars#call when all env vars are defined behaves like success load logs success message
|
|
||||||
⚪ CheckEnvVars#call when all env vars are defined behaves like success load skips the test
|
|
||||||
```
|
|
||||||
@@ -1,27 +1,22 @@
|
|||||||

|

|
||||||
<details><summary>Expand for details</summary>
|
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/SilentNotes.trx</a>
|
||||||
|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/SilentNotes.trx](#user-content-r0)|67 ✅||12 ⚪|1s|
|
|
||||||
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/external/SilentNotes.trx</a>
|
|
||||||
**79** tests were completed in **1s** with **67** passed, **0** failed and **12** skipped.
|
**79** tests were completed in **1s** with **67** passed, **0** failed and **12** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageCredentialsTest](#user-content-r0s0)|6 ✅|||30ms|
|
|[VanillaCloudStorageClientTest.CloudStorageCredentialsTest](#r0s0)|6✅|||30ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest](#user-content-r0s1)|2 ✅||3 ⚪|101ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest](#r0s1)|2✅||3⚪|101ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest](#user-content-r0s2)|4 ✅||3 ⚪|166ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest](#r0s2)|4✅||3⚪|166ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest](#user-content-r0s3)|2 ✅|||7ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest](#r0s3)|2✅|||7ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest](#user-content-r0s4)|1 ✅||3 ⚪|40ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest](#r0s4)|1✅||3⚪|40ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest](#user-content-r0s5)|1 ✅||3 ⚪|15ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest](#r0s5)|1✅||3⚪|15ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest](#user-content-r0s6)|5 ✅|||16ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest](#r0s6)|5✅|||16ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageTokenTest](#user-content-r0s7)|9 ✅|||0ms|
|
|[VanillaCloudStorageClientTest.CloudStorageTokenTest](#r0s7)|9✅|||0ms|
|
||||||
|[VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest](#user-content-r0s8)|3 ✅|||3ms|
|
|[VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest](#r0s8)|3✅|||3ms|
|
||||||
|[VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest](#user-content-r0s9)|9 ✅|||12ms|
|
|[VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest](#r0s9)|9✅|||12ms|
|
||||||
|[VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest](#user-content-r0s10)|5 ✅|||13ms|
|
|[VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest](#r0s10)|5✅|||13ms|
|
||||||
|[VanillaCloudStorageClientTest.SecureStringExtensionsTest](#user-content-r0s11)|7 ✅|||0ms|
|
|[VanillaCloudStorageClientTest.SecureStringExtensionsTest](#r0s11)|7✅|||0ms|
|
||||||
|[VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest](#user-content-r0s12)|13 ✅|||43ms|
|
|[VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest](#r0s12)|13✅|||43ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">VanillaCloudStorageClientTest.CloudStorageCredentialsTest</a>
|
### ✅ <a id="user-content-r0s0" href="#r0s0">VanillaCloudStorageClientTest.CloudStorageCredentialsTest</a>
|
||||||
```
|
```
|
||||||
✅ AreEqualWorksWithDifferentPassword
|
✅ AreEqualWorksWithDifferentPassword
|
||||||
✅ AreEqualWorksWithSameContent
|
✅ AreEqualWorksWithSameContent
|
||||||
@@ -30,7 +25,7 @@
|
|||||||
✅ ValidateAcceptsValidCredentials
|
✅ ValidateAcceptsValidCredentials
|
||||||
✅ ValidateRejectsInvalidCredentials
|
✅ ValidateRejectsInvalidCredentials
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s1" href="#r0s1">VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
⚪ ReallyDoFetchToken
|
⚪ ReallyDoFetchToken
|
||||||
@@ -38,7 +33,7 @@
|
|||||||
⚪ ReallyDoRefreshToken
|
⚪ ReallyDoRefreshToken
|
||||||
✅ ThrowsAccessDeniedExceptionWithInvalidToken
|
✅ ThrowsAccessDeniedExceptionWithInvalidToken
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s2" href="#r0s2">VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
✅ SanitizeCredentials_ChangesInvalidPrefix
|
✅ SanitizeCredentials_ChangesInvalidPrefix
|
||||||
@@ -48,26 +43,26 @@
|
|||||||
⚪ ThrowsWithInvalidUrl
|
⚪ ThrowsWithInvalidUrl
|
||||||
⚪ ThrowsWithInvalidUsername
|
⚪ ThrowsWithInvalidUsername
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s3" href="#r0s3">VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ ChoosesCorrectUrlForGmxComEmail
|
✅ ChoosesCorrectUrlForGmxComEmail
|
||||||
✅ ChoosesCorrectUrlForGmxNetEmail
|
✅ ChoosesCorrectUrlForGmxNetEmail
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s4" href="#r0s4">VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
⚪ ReallyDoFetchToken
|
⚪ ReallyDoFetchToken
|
||||||
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
||||||
⚪ ReallyDoRefreshToken
|
⚪ ReallyDoRefreshToken
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s5" href="#r0s5">VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
⚪ ReallyDoFetchToken
|
⚪ ReallyDoFetchToken
|
||||||
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
||||||
⚪ ReallyDoRefreshToken
|
⚪ ReallyDoRefreshToken
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s6" href="#r0s6">VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
✅ ParseGmxWebdavResponseCorrectly
|
✅ ParseGmxWebdavResponseCorrectly
|
||||||
@@ -75,7 +70,7 @@
|
|||||||
✅ ThrowsWithInvalidPath
|
✅ ThrowsWithInvalidPath
|
||||||
✅ ThrowsWithInvalidUsername
|
✅ ThrowsWithInvalidUsername
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s7" href="#user-content-r0s7">VanillaCloudStorageClientTest.CloudStorageTokenTest</a>
|
### ✅ <a id="user-content-r0s7" href="#r0s7">VanillaCloudStorageClientTest.CloudStorageTokenTest</a>
|
||||||
```
|
```
|
||||||
✅ AreEqualWorksWithNullDate
|
✅ AreEqualWorksWithNullDate
|
||||||
✅ AreEqualWorksWithSameContent
|
✅ AreEqualWorksWithSameContent
|
||||||
@@ -87,13 +82,13 @@
|
|||||||
✅ SetExpiryDateBySecondsWorksWithNull
|
✅ SetExpiryDateBySecondsWorksWithNull
|
||||||
✅ SetExpiryDateBySecondsWorksWithVeryShortPeriod
|
✅ SetExpiryDateBySecondsWorksWithVeryShortPeriod
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest</a>
|
### ✅ <a id="user-content-r0s8" href="#r0s8">VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest</a>
|
||||||
```
|
```
|
||||||
✅ ParsesAllErrorCodesCorrectly
|
✅ ParsesAllErrorCodesCorrectly
|
||||||
✅ ParsesNullErrorCodeCorrectly
|
✅ ParsesNullErrorCodeCorrectly
|
||||||
✅ ParsesUnknownErrorCodeCorrectly
|
✅ ParsesUnknownErrorCodeCorrectly
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest</a>
|
### ✅ <a id="user-content-r0s9" href="#r0s9">VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest</a>
|
||||||
```
|
```
|
||||||
✅ BuildAuthorizationRequestUrlEscapesParameters
|
✅ BuildAuthorizationRequestUrlEscapesParameters
|
||||||
✅ BuildAuthorizationRequestUrlLeavesOutOptionalParameters
|
✅ BuildAuthorizationRequestUrlLeavesOutOptionalParameters
|
||||||
@@ -105,7 +100,7 @@
|
|||||||
✅ ParseRealWorldGoogleRejectResponse
|
✅ ParseRealWorldGoogleRejectResponse
|
||||||
✅ ParseRealWorldGoogleSuccessResponse
|
✅ ParseRealWorldGoogleSuccessResponse
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s10" href="#r0s10">VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ BuildOAuth2AuthorizationRequestUrlWorks
|
✅ BuildOAuth2AuthorizationRequestUrlWorks
|
||||||
✅ FetchTokenCanInterpretGoogleResponse
|
✅ FetchTokenCanInterpretGoogleResponse
|
||||||
@@ -113,7 +108,7 @@
|
|||||||
✅ FetchTokenThrowsWithWrongState
|
✅ FetchTokenThrowsWithWrongState
|
||||||
✅ RefreshTokenCanInterpretGoogleResponse
|
✅ RefreshTokenCanInterpretGoogleResponse
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">VanillaCloudStorageClientTest.SecureStringExtensionsTest</a>
|
### ✅ <a id="user-content-r0s11" href="#r0s11">VanillaCloudStorageClientTest.SecureStringExtensionsTest</a>
|
||||||
```
|
```
|
||||||
✅ AreEqualsWorksCorrectly
|
✅ AreEqualsWorksCorrectly
|
||||||
✅ CorrectlyConvertsSecureStringToString
|
✅ CorrectlyConvertsSecureStringToString
|
||||||
@@ -123,7 +118,7 @@
|
|||||||
✅ CorrectlyConvertsUnicodeBytesToSecureString
|
✅ CorrectlyConvertsUnicodeBytesToSecureString
|
||||||
✅ CorrectlyConvertsUtf8BytesToSecureString
|
✅ CorrectlyConvertsUtf8BytesToSecureString
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s12" href="#user-content-r0s12">VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest</a>
|
### ✅ <a id="user-content-r0s12" href="#r0s12">VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest</a>
|
||||||
```
|
```
|
||||||
✅ DecryptAfterDesrializationCanReadAllPropertiesBack
|
✅ DecryptAfterDesrializationCanReadAllPropertiesBack
|
||||||
✅ DecryptAfterDesrializationRespectsNullProperties
|
✅ DecryptAfterDesrializationRespectsNullProperties
|
||||||
@@ -138,5 +133,4 @@
|
|||||||
✅ SerializedXmlCanBeReadBack
|
✅ SerializedXmlCanBeReadBack
|
||||||
✅ SerializedXmlDoesNotContainNullProperties
|
✅ SerializedXmlDoesNotContainNullProperties
|
||||||
✅ SerializedXmlDoesNotContainPlaintextData
|
✅ SerializedXmlDoesNotContainPlaintextData
|
||||||
```
|
```
|
||||||
</details>
|
|
||||||
@@ -1,17 +1,13 @@
|
|||||||

|

|
||||||
|Report|Passed|Failed|Skipped|Time|
|
## ❌ <a id="user-content-r0" href="#r0">fixtures/swift-xunit.xml</a>
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/swift-xunit.xml](#user-content-r0)|2 ✅|1 ❌||220ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/swift-xunit.xml</a>
|
|
||||||
**3** tests were completed in **220ms** with **2** passed, **1** failed and **0** skipped.
|
**3** tests were completed in **220ms** with **2** passed, **1** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[TestResults](#user-content-r0s0)|2 ✅|1 ❌||220ms|
|
|[TestResults](#r0s0)|2✅|1❌||220ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">TestResults</a>
|
### ❌ <a id="user-content-r0s0" href="#r0s0">TestResults</a>
|
||||||
```
|
```
|
||||||
AcmeLibTests.AcmeLibTests
|
AcmeLibTests.AcmeLibTests
|
||||||
✅ test_always_pass
|
✅ test_always_pass
|
||||||
✅ test_always_skip
|
✅ test_always_skip
|
||||||
❌ test_always_fail
|
❌ test_always_fail
|
||||||
failed
|
|
||||||
```
|
```
|
||||||
@@ -1,107 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
||||||
|
|
||||||
exports[`dotnet-nunit tests report from ./reports/dotnet test results matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/dotnet-nunit.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "CalculatorTests",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Is_Even_Number(2)",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.622,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": " at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.NUnitV3Tests\\CalculatorTests.cs:line 61
|
|
||||||
",
|
|
||||||
"line": undefined,
|
|
||||||
"message": " Expected: True
|
|
||||||
But was: False
|
|
||||||
",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "Is_Even_Number(3)",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 1.098,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": " at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.Unit\\Calculator.cs:line 9
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.NUnitV3Tests\\CalculatorTests.cs:line 33",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "System.DivideByZeroException : Attempted to divide by zero.",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "Exception_In_TargetTest",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 22.805,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": " at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.NUnitV3Tests\\CalculatorTests.cs:line 39",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "System.Exception : Test",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "Exception_In_Test",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0.528,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": " at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.NUnitV3Tests\\CalculatorTests.cs:line 27
|
|
||||||
",
|
|
||||||
"line": undefined,
|
|
||||||
"message": " Expected: 3
|
|
||||||
But was: 2
|
|
||||||
",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "Failing_Test",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 28.162,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Passing_Test",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.23800000000000002,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Passing_Test_With_Description",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.135,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Skipped_Test",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0.398,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "Timeout_Test",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 14.949,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "DotnetTests.NUnitV3Tests.dll.DotnetTests.XUnitTests",
|
|
||||||
"totalTime": undefined,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": 230.30800000000002,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -1,140 +1,5 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`dotnet-trx tests matches report snapshot (only failed tests) 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/dotnet-trx.trx",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": null,
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Custom Name",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.1371,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "System.DivideByZeroException : Attempted to divide by zero.
|
|
||||||
at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.Unit\\Calculator.cs:line 9
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 33",
|
|
||||||
"line": 9,
|
|
||||||
"message": "System.DivideByZeroException : Attempted to divide by zero.
|
|
||||||
at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.Unit\\Calculator.cs:line 9
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 33",
|
|
||||||
"path": "DotnetTests.Unit/Calculator.cs",
|
|
||||||
},
|
|
||||||
"name": "Exception_In_TargetTest",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0.8377,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "System.Exception : Test
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 39",
|
|
||||||
"line": 39,
|
|
||||||
"message": "System.Exception : Test
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 39",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
|
||||||
},
|
|
||||||
"name": "Exception_In_Test",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 2.5175,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "Assert.Equal() Failure
|
|
||||||
Expected: 3
|
|
||||||
Actual: 2
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 27",
|
|
||||||
"line": 27,
|
|
||||||
"message": "Assert.Equal() Failure
|
|
||||||
Expected: 3
|
|
||||||
Actual: 2
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 27",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
|
||||||
},
|
|
||||||
"name": "Failing_Test",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 3.8697,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Is_Even_Number(i: 2)",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.0078,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "Assert.True() Failure
|
|
||||||
Expected: True
|
|
||||||
Actual: False
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 59",
|
|
||||||
"line": 59,
|
|
||||||
"message": "Assert.True() Failure
|
|
||||||
Expected: True
|
|
||||||
Actual: False
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 59",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
|
||||||
},
|
|
||||||
"name": "Is_Even_Number(i: 3)",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0.41409999999999997,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Passing_Test",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.1365,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Should be even number(i: 2)",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.0097,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "Assert.True() Failure
|
|
||||||
Expected: True
|
|
||||||
Actual: False
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Theory_With_Custom_Name(Int32 i) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 67",
|
|
||||||
"line": 67,
|
|
||||||
"message": "Assert.True() Failure
|
|
||||||
Expected: True
|
|
||||||
Actual: False
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Theory_With_Custom_Name(Int32 i) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 67",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
|
||||||
},
|
|
||||||
"name": "Should be even number(i: 3)",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0.6537000000000001,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Skipped_Test",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 1,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Timeout_Test",
|
|
||||||
"result": "success",
|
|
||||||
"time": 108.42580000000001,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "DotnetTests.XUnitTests.CalculatorTests",
|
|
||||||
"totalTime": undefined,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": 1116,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`dotnet-trx tests matches report snapshot 1`] = `
|
exports[`dotnet-trx tests matches report snapshot 1`] = `
|
||||||
TestRunResult {
|
TestRunResult {
|
||||||
"path": "fixtures/dotnet-trx.trx",
|
"path": "fixtures/dotnet-trx.trx",
|
||||||
@@ -156,9 +21,7 @@ TestRunResult {
|
|||||||
at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.Unit\\Calculator.cs:line 9
|
at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.Unit\\Calculator.cs:line 9
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 33",
|
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 33",
|
||||||
"line": 9,
|
"line": 9,
|
||||||
"message": "System.DivideByZeroException : Attempted to divide by zero.
|
"message": "System.DivideByZeroException : Attempted to divide by zero.",
|
||||||
at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.Unit\\Calculator.cs:line 9
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 33",
|
|
||||||
"path": "DotnetTests.Unit/Calculator.cs",
|
"path": "DotnetTests.Unit/Calculator.cs",
|
||||||
},
|
},
|
||||||
"name": "Exception_In_TargetTest",
|
"name": "Exception_In_TargetTest",
|
||||||
@@ -170,8 +33,7 @@ TestRunResult {
|
|||||||
"details": "System.Exception : Test
|
"details": "System.Exception : Test
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 39",
|
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 39",
|
||||||
"line": 39,
|
"line": 39,
|
||||||
"message": "System.Exception : Test
|
"message": "System.Exception : Test",
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 39",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
||||||
},
|
},
|
||||||
"name": "Exception_In_Test",
|
"name": "Exception_In_Test",
|
||||||
@@ -187,8 +49,7 @@ Actual: 2
|
|||||||
"line": 27,
|
"line": 27,
|
||||||
"message": "Assert.Equal() Failure
|
"message": "Assert.Equal() Failure
|
||||||
Expected: 3
|
Expected: 3
|
||||||
Actual: 2
|
Actual: 2",
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 27",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
||||||
},
|
},
|
||||||
"name": "Failing_Test",
|
"name": "Failing_Test",
|
||||||
@@ -210,8 +71,7 @@ Actual: False
|
|||||||
"line": 59,
|
"line": 59,
|
||||||
"message": "Assert.True() Failure
|
"message": "Assert.True() Failure
|
||||||
Expected: True
|
Expected: True
|
||||||
Actual: False
|
Actual: False",
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 59",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
||||||
},
|
},
|
||||||
"name": "Is_Even_Number(i: 3)",
|
"name": "Is_Even_Number(i: 3)",
|
||||||
@@ -239,8 +99,7 @@ Actual: False
|
|||||||
"line": 67,
|
"line": 67,
|
||||||
"message": "Assert.True() Failure
|
"message": "Assert.True() Failure
|
||||||
Expected: True
|
Expected: True
|
||||||
Actual: False
|
Actual: False",
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Theory_With_Custom_Name(Int32 i) in C:\\Users\\Michal\\Workspace\\dorny\\test-reporter\\reports\\dotnet\\DotnetTests.XUnitTests\\CalculatorTests.cs:line 67",
|
|
||||||
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
"path": "DotnetTests.XUnitTests/CalculatorTests.cs",
|
||||||
},
|
},
|
||||||
"name": "Should be even number(i: 3)",
|
"name": "Should be even number(i: 3)",
|
||||||
|
|||||||
@@ -1,131 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
||||||
|
|
||||||
exports[`golang-json tests report from ./reports/dotnet test results matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/golang-json.json",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": null,
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestPassing",
|
|
||||||
"result": "success",
|
|
||||||
"time": 60,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "calculator_test.go:19: expected 1+1 = 3, got 2
|
|
||||||
",
|
|
||||||
"message": "calculator_test.go:19: expected 1+1 = 3, got 2
|
|
||||||
",
|
|
||||||
},
|
|
||||||
"name": "TestFailing",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 890,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "calculator_test.go:76: caught panic: runtime error: integer divide by zero
|
|
||||||
",
|
|
||||||
"message": "calculator_test.go:76: caught panic: runtime error: integer divide by zero
|
|
||||||
",
|
|
||||||
},
|
|
||||||
"name": "TestPanicInsideFunction",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "calculator_test.go:76: caught panic: bad stuff
|
|
||||||
",
|
|
||||||
"message": "calculator_test.go:76: caught panic: bad stuff
|
|
||||||
",
|
|
||||||
},
|
|
||||||
"name": "TestPanicInsideTest",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "calculator_test.go:45: skipping test
|
|
||||||
",
|
|
||||||
"message": "calculator_test.go:45: skipping test
|
|
||||||
",
|
|
||||||
},
|
|
||||||
"name": "TestSkipped",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 940,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "",
|
|
||||||
"message": "",
|
|
||||||
},
|
|
||||||
"name": "TestCases",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 2250,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "TestCases",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "1_+_2_=_3",
|
|
||||||
"result": "success",
|
|
||||||
"time": 400,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "4_+_7_=_11",
|
|
||||||
"result": "success",
|
|
||||||
"time": 460,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "calculator_test.go:67: expected 2 + 3 = 4, got 5
|
|
||||||
",
|
|
||||||
"message": "calculator_test.go:67: expected 2 + 3 = 4, got 5
|
|
||||||
",
|
|
||||||
},
|
|
||||||
"name": "2_+_3_=_4",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 90,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "calculator_test.go:67: expected 1 / 2 = 1, got 0
|
|
||||||
",
|
|
||||||
"message": "calculator_test.go:67: expected 1 / 2 = 1, got 0
|
|
||||||
",
|
|
||||||
},
|
|
||||||
"name": "1_/_2_=_1",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 920,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "9_/_3_=_3",
|
|
||||||
"result": "success",
|
|
||||||
"time": 340,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "14_/_7_=_2",
|
|
||||||
"result": "success",
|
|
||||||
"time": 40,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "_/home/james_t/git/test-reporter/reports/go",
|
|
||||||
"totalTime": undefined,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -41,7 +41,7 @@ at java.lang.Thread.run(Thread.java:748)
|
|||||||
|
|
||||||
",
|
",
|
||||||
"line": 29,
|
"line": 29,
|
||||||
"message": "java.lang.AssertionError: expected [1.2.1] but found [1.2.0]",
|
"message": undefined,
|
||||||
"path": "pulsar-common/src/test/java/org/apache/pulsar/AddMissingPatchVersionTest.java",
|
"path": "pulsar-common/src/test/java/org/apache/pulsar/AddMissingPatchVersionTest.java",
|
||||||
},
|
},
|
||||||
"name": "testVersionStrings",
|
"name": "testVersionStrings",
|
||||||
@@ -100,7 +100,7 @@ at java.lang.Thread.run(Thread.java:748)
|
|||||||
|
|
||||||
",
|
",
|
||||||
"line": 29,
|
"line": 29,
|
||||||
"message": "java.lang.AssertionError: expected [1.2.1] but found [1.2.0]",
|
"message": undefined,
|
||||||
"path": "pulsar-common/src/test/java/org/apache/pulsar/AddMissingPatchVersionTest.java",
|
"path": "pulsar-common/src/test/java/org/apache/pulsar/AddMissingPatchVersionTest.java",
|
||||||
},
|
},
|
||||||
"name": "testVersionStrings",
|
"name": "testVersionStrings",
|
||||||
|
|||||||
@@ -1,63 +1,5 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`jest-junit tests parsing ESLint report without timing information works - PR #134 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/jest-junit-eslint.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "test",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test.jsx",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "test.jsx",
|
|
||||||
"totalTime": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`jest-junit tests parsing junit report with message succeeds 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/junit-with-message.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "Fails",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "error.cpp:01
|
|
||||||
Expected: true
|
|
||||||
Which is: false >",
|
|
||||||
"line": undefined,
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "Test",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "Test",
|
|
||||||
"totalTime": 1,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": 1,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`jest-junit tests report from #235 testing react components named <ComponentName /> 1`] = `
|
exports[`jest-junit tests report from #235 testing react components named <ComponentName /> 1`] = `
|
||||||
TestRunResult {
|
TestRunResult {
|
||||||
"path": "fixtures/external/jest/jest-react-component-test-results.xml",
|
"path": "fixtures/external/jest/jest-react-component-test-results.xml",
|
||||||
|
|||||||
@@ -1,49 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
||||||
|
|
||||||
exports[`rspec-json tests report from ./reports/rspec-json test results matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/rspec-json.json",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "CheckEnvVars#call when all env vars are defined behaves like success load",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "/usr/local/bundle/ruby/3.3.0/gems/net-http-0.4.1/lib/net/http.rb:1603:in \`initialize'
|
|
||||||
./config/check_env_vars.rb:11:in \`call'
|
|
||||||
./spec/config/check_env_vars_spec.rb:7:in \`block (3 levels) in <top (required)>'
|
|
||||||
./spec/config/check_env_vars_spec.rb:19:in \`block (4 levels) in <top (required)>'",
|
|
||||||
"line": 11,
|
|
||||||
"message": "(#ActiveSupport::BroadcastLogger:0x00007f1007fedf58).debug("All config env vars exist")
|
|
||||||
expected: 0 times with arguments: ("All config env vars exist")
|
|
||||||
received: 1 time with arguments: ("All config env vars exist")",
|
|
||||||
"path": "./config/check_env_vars.rb",
|
|
||||||
},
|
|
||||||
"name": "CheckEnvVars#call when all env vars are defined behaves like success load fails in assertion",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0.004411051,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "CheckEnvVars#call when all env vars are defined behaves like success load logs success message",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.079159625,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "CheckEnvVars#call when all env vars are defined behaves like success load skips the test",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0.000023007,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "./spec/config/check_env_vars_spec.rb",
|
|
||||||
"totalTime": undefined,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": 0.19118387,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -25,7 +25,7 @@ TestRunResult {
|
|||||||
"error": {
|
"error": {
|
||||||
"details": undefined,
|
"details": undefined,
|
||||||
"line": undefined,
|
"line": undefined,
|
||||||
"message": "failed",
|
"message": undefined,
|
||||||
"path": undefined,
|
"path": undefined,
|
||||||
},
|
},
|
||||||
"name": "test_always_fail",
|
"name": "test_always_fail",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {DartJsonParser} from '../src/parsers/dart-json/dart-json-parser'
|
import {DartJsonParser} from '../src/parsers/dart-json/dart-json-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('dart-json tests', () => {
|
describe('dart-json tests', () => {
|
||||||
@@ -66,66 +66,4 @@ describe('dart-json tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DartJsonParser(opts, 'dart')
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DartJsonParser(opts, 'dart')
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DartJsonParser(opts, 'dart')
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,91 +0,0 @@
|
|||||||
import * as fs from 'fs'
|
|
||||||
import * as path from 'path'
|
|
||||||
|
|
||||||
import {DotnetNunitParser} from '../src/parsers/dotnet-nunit/dotnet-nunit-parser'
|
|
||||||
import {ParseOptions} from '../src/test-parser'
|
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
|
||||||
|
|
||||||
describe('dotnet-nunit tests', () => {
|
|
||||||
it('report from ./reports/dotnet test results matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-nunit.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-nunit.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: ['DotnetTests.Unit/Calculator.cs', 'DotnetTests.NUnitV3Tests/CalculatorTests.cs']
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetNunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-nunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetNunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-nunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetNunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-nunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetNunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {DotnetTrxParser} from '../src/parsers/dotnet-trx/dotnet-trx-parser'
|
import {DotnetTrxParser} from '../src/parsers/dotnet-trx/dotnet-trx-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {DEFAULT_OPTIONS, getReport, ReportOptions} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('dotnet-trx tests', () => {
|
describe('dotnet-trx tests', () => {
|
||||||
@@ -23,22 +23,6 @@ describe('dotnet-trx tests', () => {
|
|||||||
expect(result.result).toBe('success')
|
expect(result.result).toBe('success')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('produces empty test run result when TestDefinitions is empty', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'dotnet-trx-empty-test-definitions.trx')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetTrxParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result.tests).toBe(0)
|
|
||||||
expect(result.result).toBe('success')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('matches report snapshot', async () => {
|
it('matches report snapshot', async () => {
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
|
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
|
||||||
@@ -60,32 +44,6 @@ describe('dotnet-trx tests', () => {
|
|||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('matches report snapshot (only failed tests)', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx-only-failed.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: ['DotnetTests.Unit/Calculator.cs', 'DotnetTests.XUnitTests/CalculatorTests.cs']
|
|
||||||
//workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dotnet/'
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetTrxParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const reportOptions: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
listSuites: 'all',
|
|
||||||
listTests: 'failed'
|
|
||||||
}
|
|
||||||
const report = getReport([result], reportOptions)
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report from FluentValidation test results matches snapshot', async () => {
|
it('report from FluentValidation test results matches snapshot', async () => {
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'FluentValidation.Tests.trx')
|
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'FluentValidation.Tests.trx')
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'fluent-validation-test-results.md')
|
const outputPath = path.join(__dirname, '__outputs__', 'fluent-validation-test-results.md')
|
||||||
@@ -125,66 +83,4 @@ describe('dotnet-trx tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetTrxParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetTrxParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new DotnetTrxParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,112 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<test-run id="0" runstate="Runnable" testcasecount="9" result="Failed" total="9" passed="3" failed="5" inconclusive="0" skipped="1" asserts="5" engine-version="3.12.0.0" clr-version="3.1.16" start-time="2021-06-28 20:23:41Z" end-time="2021-06-28 20:23:41Z" duration="0.230308">
|
|
||||||
<command-line><![CDATA[C:\Users\Michal\.dotnet\tools\.store\nunit.consolerunner.netcore\3.12.0-beta2\nunit.consolerunner.netcore\3.12.0-beta2\tools\netcoreapp3.1\any\nunit3-console.dll reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml]]></command-line>
|
|
||||||
<test-suite type="Assembly" id="1-1011" name="DotnetTests.NUnitV3Tests.dll" fullname="C:/Users/Michal/Workspace/dorny/test-reporter/reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4594179Z" end-time="2021-06-28T20:23:41.5420313Z" duration="0.082553" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
|
|
||||||
<environment framework-version="3.13.2.0" clr-version="3.1.16" os-version="Microsoft Windows 10.0.19041" platform="Win32NT" cwd="C:\Users\Michal\Workspace\dorny\test-reporter" machine-name="DORNY-PC" user="Michal" user-domain="DORNY-PC" culture="sk-SK" uiculture="en-US" os-architecture="x64" />
|
|
||||||
<settings>
|
|
||||||
<setting name="DisposeRunners" value="True" />
|
|
||||||
<setting name="WorkDirectory" value="C:\Users\Michal\Workspace\dorny\test-reporter" />
|
|
||||||
<setting name="NumberOfTestWorkers" value="4" />
|
|
||||||
</settings>
|
|
||||||
<properties>
|
|
||||||
<property name="_PID" value="30996" />
|
|
||||||
<property name="_APPDOMAIN" value="nunit3-console" />
|
|
||||||
</properties>
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[One or more child tests had errors]]></message>
|
|
||||||
</failure>
|
|
||||||
<test-suite type="TestSuite" id="1-1012" name="DotnetTests" fullname="DotnetTests" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4647482Z" end-time="2021-06-28T20:23:41.5420271Z" duration="0.077277" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[One or more child tests had errors]]></message>
|
|
||||||
</failure>
|
|
||||||
<test-suite type="TestSuite" id="1-1013" name="XUnitTests" fullname="DotnetTests.XUnitTests" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4649710Z" end-time="2021-06-28T20:23:41.5420231Z" duration="0.077053" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[One or more child tests had errors]]></message>
|
|
||||||
</failure>
|
|
||||||
<test-suite type="TestFixture" id="1-1000" name="CalculatorTests" fullname="DotnetTests.XUnitTests.CalculatorTests" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" testcasecount="9" result="Failed" site="Child" start-time="2021-06-28T20:23:41.4661195Z" end-time="2021-06-28T20:23:41.5420143Z" duration="0.075896" total="9" passed="3" failed="5" warnings="0" inconclusive="0" skipped="1" asserts="5">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[One or more child tests had errors]]></message>
|
|
||||||
</failure>
|
|
||||||
<test-case id="1-1004" name="Exception_In_TargetTest" fullname="DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest" methodname="Exception_In_TargetTest" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="2033520428" result="Failed" label="Error" start-time="2021-06-28T20:23:41.4684284Z" end-time="2021-06-28T20:23:41.4911288Z" duration="0.022805" asserts="0">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[System.DivideByZeroException : Attempted to divide by zero.]]></message>
|
|
||||||
<stack-trace><![CDATA[ at DotnetTests.Unit.Calculator.Div(Int32 a, Int32 b) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.Unit\Calculator.cs:line 9
|
|
||||||
at DotnetTests.XUnitTests.CalculatorTests.Exception_In_TargetTest() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 33]]></stack-trace>
|
|
||||||
</failure>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1-1005" name="Exception_In_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test" methodname="Exception_In_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="145176317" result="Failed" label="Error" start-time="2021-06-28T20:23:41.4930398Z" end-time="2021-06-28T20:23:41.4935666Z" duration="0.000528" asserts="0">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[System.Exception : Test]]></message>
|
|
||||||
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Exception_In_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 39]]></stack-trace>
|
|
||||||
</failure>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1-1003" name="Failing_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Failing_Test" methodname="Failing_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="189717168" result="Failed" start-time="2021-06-28T20:23:41.4935910Z" end-time="2021-06-28T20:23:41.5217516Z" duration="0.028162" asserts="1">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[ Expected: 3
|
|
||||||
But was: 2
|
|
||||||
]]></message>
|
|
||||||
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 27
|
|
||||||
]]></stack-trace>
|
|
||||||
</failure>
|
|
||||||
<assertions>
|
|
||||||
<assertion result="Failed">
|
|
||||||
<message><![CDATA[ Expected: 3
|
|
||||||
But was: 2
|
|
||||||
]]></message>
|
|
||||||
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Failing_Test() in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 27
|
|
||||||
]]></stack-trace>
|
|
||||||
</assertion>
|
|
||||||
</assertions>
|
|
||||||
</test-case>
|
|
||||||
<test-suite type="Theory" id="1-1010" name="Is_Even_Number" fullname="DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" testcasecount="2" result="Failed" site="Child" start-time="2021-06-28T20:23:41.5217837Z" end-time="2021-06-28T20:23:41.5251025Z" duration="0.003318" total="2" passed="1" failed="1" warnings="0" inconclusive="0" skipped="0" asserts="2">
|
|
||||||
<properties>
|
|
||||||
<property name="_JOINTYPE" value="Combinatorial" />
|
|
||||||
</properties>
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[One or more child tests had errors]]></message>
|
|
||||||
</failure>
|
|
||||||
<test-case id="1-1008" name="Is_Even_Number(2)" fullname="DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(2)" methodname="Is_Even_Number" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="2002556739" result="Passed" start-time="2021-06-28T20:23:41.5222381Z" end-time="2021-06-28T20:23:41.5228607Z" duration="0.000622" asserts="1" />
|
|
||||||
<test-case id="1-1009" name="Is_Even_Number(3)" fullname="DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(3)" methodname="Is_Even_Number" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="1722214143" result="Failed" start-time="2021-06-28T20:23:41.5228803Z" end-time="2021-06-28T20:23:41.5239781Z" duration="0.001098" asserts="1">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[ Expected: True
|
|
||||||
But was: False
|
|
||||||
]]></message>
|
|
||||||
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 61
|
|
||||||
]]></stack-trace>
|
|
||||||
</failure>
|
|
||||||
<assertions>
|
|
||||||
<assertion result="Failed">
|
|
||||||
<message><![CDATA[ Expected: True
|
|
||||||
But was: False
|
|
||||||
]]></message>
|
|
||||||
<stack-trace><![CDATA[ at DotnetTests.XUnitTests.CalculatorTests.Is_Even_Number(Int32 i) in C:\Users\Michal\Workspace\dorny\test-reporter\reports\dotnet\DotnetTests.NUnitV3Tests\CalculatorTests.cs:line 61
|
|
||||||
]]></stack-trace>
|
|
||||||
</assertion>
|
|
||||||
</assertions>
|
|
||||||
</test-case>
|
|
||||||
</test-suite>
|
|
||||||
<test-case id="1-1001" name="Passing_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Passing_Test" methodname="Passing_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="550330290" result="Passed" start-time="2021-06-28T20:23:41.5260365Z" end-time="2021-06-28T20:23:41.5262756Z" duration="0.000238" asserts="1" />
|
|
||||||
<test-case id="1-1002" name="Passing_Test_With_Description" fullname="DotnetTests.XUnitTests.CalculatorTests.Passing_Test_With_Description" methodname="Passing_Test_With_Description" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="1693317298" result="Passed" start-time="2021-06-28T20:23:41.5263998Z" end-time="2021-06-28T20:23:41.5265354Z" duration="0.000135" asserts="1">
|
|
||||||
<properties>
|
|
||||||
<property name="Description" value="Some description" />
|
|
||||||
</properties>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1-1007" name="Skipped_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Skipped_Test" methodname="Skipped_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Ignored" seed="1512653931" result="Skipped" label="Ignored" start-time="2021-06-28T20:23:41.5265550Z" end-time="2021-06-28T20:23:41.5269525Z" duration="0.000398" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="_SKIPREASON" value="Skipped" />
|
|
||||||
</properties>
|
|
||||||
<reason>
|
|
||||||
<message><![CDATA[Skipped]]></message>
|
|
||||||
</reason>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1-1006" name="Timeout_Test" fullname="DotnetTests.XUnitTests.CalculatorTests.Timeout_Test" methodname="Timeout_Test" classname="DotnetTests.XUnitTests.CalculatorTests" runstate="Runnable" seed="258810529" result="Failed" label="Test exceeded Timeout value 1ms." start-time="2021-06-28T20:23:41.5269651Z" end-time="2021-06-28T20:23:41.5419118Z" duration="0.014949" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="Timeout" value="1" />
|
|
||||||
</properties>
|
|
||||||
<failure />
|
|
||||||
</test-case>
|
|
||||||
</test-suite>
|
|
||||||
</test-suite>
|
|
||||||
</test-suite>
|
|
||||||
</test-suite>
|
|
||||||
</test-run>
|
|
||||||
@@ -1,15 +1,9 @@
|
|||||||
{"protocolVersion":"0.1.1","runnerVersion":"1.25.3","pid":7103,"type":"start","time":0}
|
{"protocolVersion":"0.1.1","runnerVersion":"1.15.4","pid":21320,"type":"start","time":0}
|
||||||
{"suite":{"id":0,"platform":"vm","path":"test/second_test.dart"},"type":"suite","time":0}
|
{"suite":{"id":0,"platform":"vm","path":"test\\main_test.dart"},"type":"suite","time":0}
|
||||||
{"test":{"id":1,"name":"loading test/second_test.dart","suiteID":0,"groupIDs":[],"metadata":{"skip":false,"skipReason":null},"line":null,"column":null,"url":null},"type":"testStart","time":0}
|
{"test":{"id":1,"name":"loading test\\main_test.dart","suiteID":0,"groupIDs":[],"metadata":{"skip":false,"skipReason":null},"line":null,"column":null,"url":null},"type":"testStart","time":1}
|
||||||
{"suite":{"id":2,"platform":"vm","path":"test/main_test.dart"},"type":"suite","time":4}
|
{"suite":{"id":2,"platform":"vm","path":"test\\second_test.dart"},"type":"suite","time":11}
|
||||||
{"test":{"id":3,"name":"loading test/main_test.dart","suiteID":2,"groupIDs":[],"metadata":{"skip":false,"skipReason":null},"line":null,"column":null,"url":null},"type":"testStart","time":4}
|
{"test":{"id":3,"name":"loading test\\second_test.dart","suiteID":2,"groupIDs":[],"metadata":{"skip":false,"skipReason":null},"line":null,"column":null,"url":null},"type":"testStart","time":11}
|
||||||
{"count":2,"time":5,"type":"allSuites"}
|
{"count":2,"type":"allSuites","time":11}
|
||||||
{"testID":1,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":294}
|
{"testID":1,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":4018}
|
||||||
{"testID":3,"messageType":"print","message":"Hello from the test","type":"print","time":297}
|
{"testID":3,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":4025}
|
||||||
{"testID":3,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":321}
|
{"success":true,"type":"done","time":4029}
|
||||||
{"group":{"id":4,"suiteID":2,"parentID":null,"name":"","metadata":{"skip":false,"skipReason":null},"testCount":0,"line":null,"column":null,"url":null},"type":"group","time":322}
|
|
||||||
{"test":{"id":5,"name":"(setUpAll)","suiteID":2,"groupIDs":[4],"metadata":{"skip":false,"skipReason":null},"line":6,"column":3,"url":"file:///Users/domu/Downloads/test-reporter/reports/dart/test/main_test.dart"},"type":"testStart","time":322}
|
|
||||||
{"testID":5,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":330}
|
|
||||||
{"test":{"id":6,"name":"(tearDownAll)","suiteID":2,"groupIDs":[4],"metadata":{"skip":false,"skipReason":null},"line":7,"column":3,"url":"file:///Users/domu/Downloads/test-reporter/reports/dart/test/main_test.dart"},"type":"testStart","time":330}
|
|
||||||
{"testID":6,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":331}
|
|
||||||
{"success":true,"type":"done","time":333}
|
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<TestRun id="80e4c095-f726-4ab2-9441-416daa162672" name="..." runUser="..." xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
|
|
||||||
<Times creation="2021-02-26T10:36:33.7131022+02:00" queuing="2021-02-26T10:36:33.7131029+02:00" start="2021-02-26T10:36:33.3278956+02:00" finish="2021-02-26T10:36:33.7139830+02:00" />
|
|
||||||
<TestSettings name="default" id="863a1d8b-ee3b-45f9-86ee-1869bc4e889f">
|
|
||||||
<Deployment runDeploymentRoot="..." />
|
|
||||||
</TestSettings>
|
|
||||||
<Results />
|
|
||||||
<TestDefinitions />
|
|
||||||
<TestEntries />
|
|
||||||
<TestLists>
|
|
||||||
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
|
|
||||||
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
|
|
||||||
</TestLists>
|
|
||||||
<ResultSummary outcome="Completed">
|
|
||||||
<Counters total="0" executed="0" passed="0" failed="0" error="0" timeout="0" aborted="0" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" completed="0" inProgress="0" pending="0" />
|
|
||||||
<RunInfos>
|
|
||||||
<RunInfo computerName="..." outcome="Warning" timestamp="2021-02-26T10:36:33.6676104+02:00">
|
|
||||||
<Text>No test is available in (...). Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.</Text>
|
|
||||||
</RunInfo>
|
|
||||||
</RunInfos>
|
|
||||||
</ResultSummary>
|
|
||||||
</TestRun>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "3.13.0",
|
|
||||||
"messages": [
|
|
||||||
"No examples found."
|
|
||||||
],
|
|
||||||
"examples": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"summary": {
|
|
||||||
"duration": 0.002514266,
|
|
||||||
"example_count": 0,
|
|
||||||
"failure_count": 0,
|
|
||||||
"pending_count": 0,
|
|
||||||
"errors_outside_of_examples_count": 0
|
|
||||||
},
|
|
||||||
"summary_line": "0 examples, 0 failures"
|
|
||||||
}
|
|
||||||
125
__tests__/fixtures/external/nunit-sample.xml
vendored
125
__tests__/fixtures/external/nunit-sample.xml
vendored
@@ -1,125 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
|
||||||
<test-run id="2" name="mock-assembly.dll" fullname="D:\Dev\NUnit\nunit-3.0\work\bin\vs2008\Debug\mock-assembly.dll" testcasecount="25" result="Failed" time="0.154" total="18" passed="12" failed="2" inconclusive="1" skipped="3" asserts="2" run-date="2011-07-26" start-time="11:34:27">
|
|
||||||
<environment nunit-version="1.0.0.0" clr-version="2.0.50727.4961" os-version="Microsoft Windows NT 6.1.7600.0" platform="Win32NT" cwd="D:\Dev\NUnit\nunit-3.0\work\bin\vs2008\Debug" machine-name="CHARLIE-LAPTOP" user="charlie" user-domain="charlie-laptop" culture="en-US" uiculture="en-US" />
|
|
||||||
<test-suite type="Assembly" id="1036" name="mock-assembly.dll" fullname="D:\Dev\NUnit\nunit-3.0\work\bin\vs2008\Debug\mock-assembly.dll" testcasecount="25" result="Failed" time="0.154" total="18" passed="12" failed="2" inconclusive="1" skipped="3" asserts="2">
|
|
||||||
<properties>
|
|
||||||
<property name="_PID" value="11928" />
|
|
||||||
<property name="_APPDOMAIN" value="test-domain-mock-assembly.dll" />
|
|
||||||
</properties>
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[Child test failed]]></message>
|
|
||||||
</failure>
|
|
||||||
<test-suite type="TestFixture" id="1000" name="MockTestFixture" fullname="NUnit.Tests.Assemblies.MockTestFixture" testcasecount="11" result="Failed" time="0.119" total="10" passed="4" failed="2" inconclusive="1" skipped="3" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="Category" value="FixtureCategory" />
|
|
||||||
<property name="Description" value="Fake Test Fixture" />
|
|
||||||
</properties>
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[Child test failed]]></message>
|
|
||||||
</failure>
|
|
||||||
<test-case id="1005" name="FailingTest" fullname="NUnit.Tests.Assemblies.MockTestFixture.FailingTest" result="Failed" time="0.023" asserts="0">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[Intentional failure]]></message>
|
|
||||||
<stack-trace><![CDATA[ at NUnit.Framework.Assert.Fail(String message, Object[] args) in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\framework\Assert.cs:line 142
|
|
||||||
at NUnit.Framework.Assert.Fail(String message) in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\framework\Assert.cs:line 152
|
|
||||||
at NUnit.Tests.Assemblies.MockTestFixture.FailingTest() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 121]]></stack-trace>
|
|
||||||
</failure>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1010" name="InconclusiveTest" fullname="NUnit.Tests.Assemblies.MockTestFixture.InconclusiveTest" result="Inconclusive" time="0.001" asserts="0" />
|
|
||||||
<test-case id="1001" name="MockTest1" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest1" result="Passed" time="0.000" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="Description" value="Mock Test #1" />
|
|
||||||
</properties>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1002" name="MockTest2" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest2" result="Passed" time="0.000" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="Severity" value="Critical" />
|
|
||||||
<property name="Description" value="This is a really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really, really long description" />
|
|
||||||
<property name="Category" value="MockCategory" />
|
|
||||||
</properties>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1003" name="MockTest3" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest3" result="Passed" time="0.000" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="Category" value="AnotherCategory" />
|
|
||||||
<property name="Category" value="MockCategory" />
|
|
||||||
</properties>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1007" name="MockTest4" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest4" result="Skipped" label="Ignored" time="0.000" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="Category" value="Foo" />
|
|
||||||
<property name="_SKIPREASON" value="ignoring this test method for now" />
|
|
||||||
</properties>
|
|
||||||
<reason>
|
|
||||||
<message><![CDATA[ignoring this test method for now]]></message>
|
|
||||||
</reason>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1004" name="MockTest5" fullname="NUnit.Tests.Assemblies.MockTestFixture.MockTest5" result="Skipped" label="Invalid" time="0.000" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="_SKIPREASON" value="Method is not public" />
|
|
||||||
</properties>
|
|
||||||
<reason>
|
|
||||||
<message><![CDATA[Method is not public]]></message>
|
|
||||||
</reason>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1009" name="NotRunnableTest" fullname="NUnit.Tests.Assemblies.MockTestFixture.NotRunnableTest" result="Skipped" label="Invalid" time="0.000" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="_SKIPREASON" value="No arguments were provided" />
|
|
||||||
</properties>
|
|
||||||
<reason>
|
|
||||||
<message><![CDATA[No arguments were provided]]></message>
|
|
||||||
</reason>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1011" name="TestWithException" fullname="NUnit.Tests.Assemblies.MockTestFixture.TestWithException" result="Failed" label="Error" time="0.002" asserts="0">
|
|
||||||
<failure>
|
|
||||||
<message><![CDATA[System.ApplicationException : Intentional Exception]]></message>
|
|
||||||
<stack-trace><![CDATA[ at NUnit.Tests.Assemblies.MockTestFixture.MethodThrowsException() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 158
|
|
||||||
at NUnit.Tests.Assemblies.MockTestFixture.TestWithException() in D:\Dev\NUnit\nunit-3.0\work\NUnitFramework\src\mock-assembly\MockAssembly.cs:line 153]]></stack-trace>
|
|
||||||
</failure>
|
|
||||||
</test-case>
|
|
||||||
<test-case id="1006" name="TestWithManyProperties" fullname="NUnit.Tests.Assemblies.MockTestFixture.TestWithManyProperties" result="Passed" time="0.000" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="TargetMethod" value="SomeClassName" />
|
|
||||||
<property name="Size" value="5" />
|
|
||||||
</properties>
|
|
||||||
</test-case>
|
|
||||||
</test-suite>
|
|
||||||
<test-suite type="TestFixture" id="1023" name="BadFixture" fullname="NUnit.Tests.BadFixture" testcasecount="1" result="Skipped" label="Invalid" time="0.000" total="0" passed="0" failed="0" inconclusive="0" skipped="0" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="_SKIPREASON" value="No suitable constructor was found" />
|
|
||||||
</properties>
|
|
||||||
<reason>
|
|
||||||
<message><![CDATA[No suitable constructor was found]]></message>
|
|
||||||
</reason>
|
|
||||||
</test-suite>
|
|
||||||
<test-suite type="TestFixture" id="1025" name="FixtureWithTestCases" fullname="NUnit.Tests.FixtureWithTestCases" testcasecount="2" result="Passed" time="0.010" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="2">
|
|
||||||
<test-suite type="ParameterizedMethod" id="1026" name="MethodWithParameters" fullname="NUnit.Tests.FixtureWithTestCases.MethodWithParameters" testcasecount="2" result="Passed" time="0.009" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="2">
|
|
||||||
<test-case id="1027" name="MethodWithParameters(2,2)" fullname="NUnit.Tests.FixtureWithTestCases.MethodWithParameters(2,2)" result="Passed" time="0.006" asserts="1" />
|
|
||||||
<test-case id="1028" name="MethodWithParameters(9,11)" fullname="NUnit.Tests.FixtureWithTestCases.MethodWithParameters(9,11)" result="Passed" time="0.000" asserts="1" />
|
|
||||||
</test-suite>
|
|
||||||
</test-suite>
|
|
||||||
<test-suite type="TestFixture" id="1016" name="IgnoredFixture" fullname="NUnit.Tests.IgnoredFixture" testcasecount="3" result="Skipped" label="Ignored" time="0.000" total="0" passed="0" failed="0" inconclusive="0" skipped="0" asserts="0">
|
|
||||||
<properties>
|
|
||||||
<property name="_SKIPREASON" value="" />
|
|
||||||
</properties>
|
|
||||||
<reason>
|
|
||||||
<message><![CDATA[]]></message>
|
|
||||||
</reason>
|
|
||||||
</test-suite>
|
|
||||||
<test-suite type="ParameterizedFixture" id="1029" name="ParameterizedFixture" fullname="NUnit.Tests.ParameterizedFixture" testcasecount="4" result="Passed" time="0.007" total="4" passed="4" failed="0" inconclusive="0" skipped="0" asserts="0">
|
|
||||||
<test-suite type="TestFixture" id="1030" name="ParameterizedFixture(42)" fullname="NUnit.Tests.ParameterizedFixture(42)" testcasecount="2" result="Passed" time="0.003" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="0">
|
|
||||||
<test-case id="1031" name="Test1" fullname="NUnit.Tests.ParameterizedFixture(42).Test1" result="Passed" time="0.000" asserts="0" />
|
|
||||||
<test-case id="1032" name="Test2" fullname="NUnit.Tests.ParameterizedFixture(42).Test2" result="Passed" time="0.000" asserts="0" />
|
|
||||||
</test-suite>
|
|
||||||
<test-suite type="TestFixture" id="1033" name="ParameterizedFixture(5)" fullname="NUnit.Tests.ParameterizedFixture(5)" testcasecount="2" result="Passed" time="0.002" total="2" passed="2" failed="0" inconclusive="0" skipped="0" asserts="0">
|
|
||||||
<test-case id="1034" name="Test1" fullname="NUnit.Tests.ParameterizedFixture(5).Test1" result="Passed" time="0.000" asserts="0" />
|
|
||||||
<test-case id="1035" name="Test2" fullname="NUnit.Tests.ParameterizedFixture(5).Test2" result="Passed" time="0.000" asserts="0" />
|
|
||||||
</test-suite>
|
|
||||||
</test-suite>
|
|
||||||
<test-suite type="TestFixture" id="1012" name="OneTestCase" fullname="NUnit.Tests.Singletons.OneTestCase" testcasecount="1" result="Passed" time="0.001" total="1" passed="1" failed="0" inconclusive="0" skipped="0" asserts="0">
|
|
||||||
<test-case id="1013" name="TestCase" fullname="NUnit.Tests.Singletons.OneTestCase.TestCase" result="Passed" time="0.000" asserts="0" />
|
|
||||||
</test-suite>
|
|
||||||
<test-suite type="TestFixture" id="1014" name="MockTestFixture" fullname="NUnit.Tests.TestAssembly.MockTestFixture" testcasecount="1" result="Passed" time="0.001" total="1" passed="1" failed="0" inconclusive="0" skipped="0" asserts="0">
|
|
||||||
<test-case id="1015" name="MyTest" fullname="NUnit.Tests.TestAssembly.MockTestFixture.MyTest" result="Passed" time="0.001" asserts="0" />
|
|
||||||
</test-suite>
|
|
||||||
</test-suite>
|
|
||||||
</test-run>
|
|
||||||
@@ -1,59 +0,0 @@
|
|||||||
{"Time":"2025-04-22T08:59:55.364618802-05:00","Action":"start","Package":"_/home/james_t/git/test-reporter/reports/go"}
|
|
||||||
{"Time":"2025-04-22T08:59:55.371779289-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing"}
|
|
||||||
{"Time":"2025-04-22T08:59:55.371805677-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Output":"=== RUN TestPassing\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:55.428201983-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Output":" calculator_test.go:11: pass!\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:55.428265529-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Output":"--- PASS: TestPassing (0.06s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:55.428285649-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Elapsed":0.06}
|
|
||||||
{"Time":"2025-04-22T08:59:55.428299886-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing"}
|
|
||||||
{"Time":"2025-04-22T08:59:55.428309029-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Output":"=== RUN TestFailing\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317425091-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Output":" calculator_test.go:19: expected 1+1 = 3, got 2\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.31748077-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Output":"--- FAIL: TestFailing (0.89s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317493452-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Elapsed":0.89}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317506107-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317514487-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Output":"=== RUN TestPanicInsideFunction\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317530448-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Output":" calculator_test.go:76: caught panic: runtime error: integer divide by zero\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317541866-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Output":"--- FAIL: TestPanicInsideFunction (0.00s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317552981-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Elapsed":0}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317561057-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317568742-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Output":"=== RUN TestPanicInsideTest\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317584113-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Output":" calculator_test.go:76: caught panic: bad stuff\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317598524-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Output":"--- FAIL: TestPanicInsideTest (0.00s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317608268-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Elapsed":0}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317615472-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped"}
|
|
||||||
{"Time":"2025-04-22T08:59:56.317623959-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Output":"=== RUN TestSkipped\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.256475698-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Output":" calculator_test.go:45: skipping test\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.256536372-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Output":"--- SKIP: TestSkipped (0.94s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.256549142-05:00","Action":"skip","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Elapsed":0.94}
|
|
||||||
{"Time":"2025-04-22T08:59:57.256562053-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.256569388-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases","Output":"=== RUN TestCases\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.256580104-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.256587408-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3","Output":"=== RUN TestCases/1_+_2_=_3\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.653005399-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11"}
|
|
||||||
{"Time":"2025-04-22T08:59:57.653036336-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11","Output":"=== RUN TestCases/4_+_7_=_11\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:58.112825221-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4"}
|
|
||||||
{"Time":"2025-04-22T08:59:58.112858016-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Output":"=== RUN TestCases/2_+_3_=_4\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:58.201204209-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Output":" calculator_test.go:67: expected 2 + 3 = 4, got 5\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:58.201245827-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1"}
|
|
||||||
{"Time":"2025-04-22T08:59:58.201255566-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Output":"=== RUN TestCases/1_/_2_=_1\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.119852965-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Output":" calculator_test.go:67: expected 1 / 2 = 1, got 0\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.119877603-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.119879955-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3","Output":"=== RUN TestCases/9_/_3_=_3\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.460576385-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.460607599-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2","Output":"=== RUN TestCases/14_/_7_=_2\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.504952672-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases","Output":"--- FAIL: TestCases (2.25s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.504995938-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3","Output":" --- PASS: TestCases/1_+_2_=_3 (0.40s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505006062-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3","Elapsed":0.4}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505017551-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11","Output":" --- PASS: TestCases/4_+_7_=_11 (0.46s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505026099-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11","Elapsed":0.46}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505033963-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Output":" --- FAIL: TestCases/2_+_3_=_4 (0.09s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505042238-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Elapsed":0.09}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505050917-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Output":" --- FAIL: TestCases/1_/_2_=_1 (0.92s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505059901-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Elapsed":0.92}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505068125-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3","Output":" --- PASS: TestCases/9_/_3_=_3 (0.34s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505076976-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3","Elapsed":0.34}
|
|
||||||
{"Time":"2025-04-22T08:59:59.5050845-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2","Output":" --- PASS: TestCases/14_/_7_=_2 (0.04s)\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505091554-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2","Elapsed":0.04}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505098998-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases","Elapsed":2.25}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505107502-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Output":"FAIL\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505552861-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Output":"FAIL\t_/home/james_t/git/test-reporter/reports/go\t4.141s\n"}
|
|
||||||
{"Time":"2025-04-22T08:59:59.505584529-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Elapsed":4.141}
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite package="org.eslint" time="0" tests="1" errors="0" name="test.jsx">
|
|
||||||
<testcase time="0" name="test.jsx" classname="test" />
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites tests="1" failures="1" disabled="0" errors="0" time="0.001" name="Failure">
|
|
||||||
<testsuite name="Test" tests="6" failures="1" disabled="0" errors="0" time="0.001">
|
|
||||||
<testcase name="Test" status="run" time="0" classname="Fails">
|
|
||||||
<failure message="error" type=""><![CDATA[error.cpp:01
|
|
||||||
Expected: true
|
|
||||||
Which is: false >]]></failure>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "3.13.0",
|
|
||||||
"examples": [
|
|
||||||
{
|
|
||||||
"id": "./spec/config/check_env_vars_spec.rb[1:1:1:1:1]",
|
|
||||||
"description": "logs success message",
|
|
||||||
"full_description": "CheckEnvVars#call when all env vars are defined behaves like success load logs success message",
|
|
||||||
"status": "passed",
|
|
||||||
"file_path": "./spec/config/check_env_vars_spec.rb",
|
|
||||||
"line_number": 12,
|
|
||||||
"run_time": 0.079159625,
|
|
||||||
"pending_message": null
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "./spec/config/check_env_vars_spec.rb[1:1:1:1:2]",
|
|
||||||
"description": "fails in assertion",
|
|
||||||
"full_description": "CheckEnvVars#call when all env vars are defined behaves like success load fails in assertion",
|
|
||||||
"status": "failed",
|
|
||||||
"file_path": "./spec/config/check_env_vars_spec.rb",
|
|
||||||
"line_number": 17,
|
|
||||||
"run_time": 0.004411051,
|
|
||||||
"pending_message": null,
|
|
||||||
"exception": {
|
|
||||||
"class": "RSpec::Mocks::MockExpectationError",
|
|
||||||
"message": "(#ActiveSupport::BroadcastLogger:0x00007f1007fedf58).debug(\"All config env vars exist\")\n expected: 0 times with arguments: (\"All config env vars exist\")\n received: 1 time with arguments: (\"All config env vars exist\")",
|
|
||||||
"backtrace": [
|
|
||||||
"/usr/local/bundle/ruby/3.3.0/gems/net-http-0.4.1/lib/net/http.rb:1603:in `initialize'",
|
|
||||||
"./config/check_env_vars.rb:11:in `call'",
|
|
||||||
"./spec/config/check_env_vars_spec.rb:7:in `block (3 levels) in \u003ctop (required)\u003e'",
|
|
||||||
"./spec/config/check_env_vars_spec.rb:19:in `block (4 levels) in \u003ctop (required)\u003e'"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"id": "./spec/config/check_env_vars_spec.rb[1:1:1:1:4]",
|
|
||||||
"description": "skips the test",
|
|
||||||
"full_description": "CheckEnvVars#call when all env vars are defined behaves like success load skips the test",
|
|
||||||
"status": "pending",
|
|
||||||
"file_path": "./spec/config/check_env_vars_spec.rb",
|
|
||||||
"line_number": 27,
|
|
||||||
"run_time": 2.3007e-05,
|
|
||||||
"pending_message": "Temporarily skipped with xit"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"summary": {
|
|
||||||
"duration": 0.19118387,
|
|
||||||
"example_count": 3,
|
|
||||||
"failure_count": 1,
|
|
||||||
"pending_count": 1,
|
|
||||||
"errors_outside_of_examples_count": 0
|
|
||||||
},
|
|
||||||
"summary_line": "3 examples, 1 failures, 1 pending"
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
import * as fs from 'fs'
|
|
||||||
import * as path from 'path'
|
|
||||||
|
|
||||||
import {GolangJsonParser} from '../src/parsers/golang-json/golang-json-parser'
|
|
||||||
import {ParseOptions} from '../src/test-parser'
|
|
||||||
import {getReport} from '../src/report/get-report'
|
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
|
||||||
|
|
||||||
describe('golang-json tests', () => {
|
|
||||||
it('report from ./reports/dotnet test results matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'golang-json.json')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'golang-json.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: ['calculator.go', 'calculator_test.go']
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new GolangJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {JavaJunitParser} from '../src/parsers/java-junit/java-junit-parser'
|
import {JavaJunitParser} from '../src/parsers/java-junit/java-junit-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('java-junit tests', () => {
|
describe('java-junit tests', () => {
|
||||||
@@ -90,66 +90,4 @@ describe('java-junit tests', () => {
|
|||||||
expect(result.result === 'failed')
|
expect(result.result === 'failed')
|
||||||
expect(result.failed === 1)
|
expect(result.failed === 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'junit-with-message.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JavaJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'junit-with-message.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JavaJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'java-junit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JavaJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {JestJunitParser} from '../src/parsers/jest-junit/jest-junit-parser'
|
import {JestJunitParser} from '../src/parsers/jest-junit/jest-junit-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('jest-junit tests', () => {
|
describe('jest-junit tests', () => {
|
||||||
@@ -105,106 +105,4 @@ describe('jest-junit tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('parsing ESLint report without timing information works - PR #134', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit-eslint.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'jest-junit-eslint.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: ['test.js']
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JestJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('parsing junit report with message succeeds', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'junit-with-message.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'junit-with-message.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: ['test.js']
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JestJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JestJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JestJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JestJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {MochaJsonParser} from '../src/parsers/mocha-json/mocha-json-parser'
|
import {MochaJsonParser} from '../src/parsers/mocha-json/mocha-json-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('mocha-json tests', () => {
|
describe('mocha-json tests', () => {
|
||||||
@@ -64,66 +64,4 @@ describe('mocha-json tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'mocha-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new MochaJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'mocha-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new MochaJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'mocha-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new MochaJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,107 +0,0 @@
|
|||||||
import * as fs from 'fs'
|
|
||||||
import * as path from 'path'
|
|
||||||
|
|
||||||
import {RspecJsonParser} from '../src/parsers/rspec-json/rspec-json-parser'
|
|
||||||
import {ParseOptions} from '../src/test-parser'
|
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
|
||||||
|
|
||||||
describe('rspec-json tests', () => {
|
|
||||||
it('produces empty test run result when there are no test cases', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'rspec-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new RspecJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result.tests).toBe(0)
|
|
||||||
expect(result.result).toBe('success')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report from ./reports/rspec-json test results matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'rspec-json.json')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'rspec-json.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: ['test/main.test.js', 'test/second.test.js', 'lib/main.js']
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new RspecJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'rspec-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new RspecJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'rspec-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new RspecJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'rspec-json.json')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new RspecJsonParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {SwiftXunitParser} from '../src/parsers/swift-xunit/swift-xunit-parser'
|
import {SwiftXunitParser} from '../src/parsers/swift-xunit/swift-xunit-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('swift-xunit tests', () => {
|
describe('swift-xunit tests', () => {
|
||||||
@@ -27,66 +27,4 @@ describe('swift-xunit tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('report does not include a title by default', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new SwiftXunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result])
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it.each([
|
|
||||||
['empty string', ''],
|
|
||||||
['space', ' '],
|
|
||||||
['tab', '\t'],
|
|
||||||
['newline', '\n']
|
|
||||||
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new SwiftXunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
// Report should have the badge as the first line
|
|
||||||
expect(report).toMatch(/^!\[Tests failed]/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new SwiftXunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
})
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
17
action.yml
17
action.yml
@@ -26,28 +26,25 @@ inputs:
|
|||||||
description: |
|
description: |
|
||||||
Format of test results. Supported options:
|
Format of test results. Supported options:
|
||||||
- dart-json
|
- dart-json
|
||||||
- dotnet-nunit
|
|
||||||
- dotnet-trx
|
- dotnet-trx
|
||||||
- flutter-json
|
- flutter-json
|
||||||
- java-junit
|
- java-junit
|
||||||
- jest-junit
|
- jest-junit
|
||||||
- mocha-json
|
- mocha-json
|
||||||
- rspec-json
|
|
||||||
- swift-xunit
|
- swift-xunit
|
||||||
required: true
|
required: true
|
||||||
list-suites:
|
list-suites:
|
||||||
description: |
|
description: |
|
||||||
Limits which test suites are listed. Supported options:
|
Limits which test suites are listed. Supported options:
|
||||||
- all
|
- all
|
||||||
- failed
|
- only-failed
|
||||||
- none
|
|
||||||
required: false
|
required: false
|
||||||
default: 'all'
|
default: 'all'
|
||||||
list-tests:
|
list-tests:
|
||||||
description: |
|
description: |
|
||||||
Limits which test cases are listed. Supported options:
|
Limits which test cases are listed. Supported options:
|
||||||
- all
|
- all
|
||||||
- failed
|
- only-failed
|
||||||
- none
|
- none
|
||||||
required: false
|
required: false
|
||||||
default: 'all'
|
default: 'all'
|
||||||
@@ -75,16 +72,6 @@ inputs:
|
|||||||
Detailed listing of test suites and test cases will be skipped.
|
Detailed listing of test suites and test cases will be skipped.
|
||||||
default: 'false'
|
default: 'false'
|
||||||
required: false
|
required: false
|
||||||
use-actions-summary:
|
|
||||||
description: |
|
|
||||||
Allows you to generate reports for Actions Summary
|
|
||||||
https://github.com/orgs/github/teams/engineering/discussions/871
|
|
||||||
default: 'true'
|
|
||||||
required: false
|
|
||||||
badge-title:
|
|
||||||
description: Customize badge title
|
|
||||||
required: false
|
|
||||||
default: 'tests'
|
|
||||||
token:
|
token:
|
||||||
description: GitHub Access Token
|
description: GitHub Access Token
|
||||||
required: false
|
required: false
|
||||||
|
|||||||
7790
dist/index.js
generated
vendored
7790
dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
25
dist/licenses.txt
generated
vendored
25
dist/licenses.txt
generated
vendored
@@ -378,6 +378,16 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
@vercel/ncc
|
||||||
|
MIT
|
||||||
|
Copyright 2018 ZEIT, Inc.
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
adm-zip
|
adm-zip
|
||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
@@ -612,7 +622,7 @@ braces
|
|||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|
||||||
Copyright (c) 2014-present, Jon Schlinkert.
|
Copyright (c) 2014-2018, Jon Schlinkert.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
@@ -1480,6 +1490,19 @@ Permission to use, copy, modify, and/or distribute this software for any purpose
|
|||||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
uuid
|
||||||
|
MIT
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2010-2020 Robert Kieffer and other contributors
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
wrappy
|
wrappy
|
||||||
ISC
|
ISC
|
||||||
The ISC License
|
The ISC License
|
||||||
|
|||||||
3508
package-lock.json
generated
3508
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
68
package.json
68
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "test-reporter",
|
"name": "test-check",
|
||||||
"version": "2.1.0",
|
"version": "1.7.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Presents test results from popular testing frameworks as Github check run",
|
"description": "Presents test results from popular testing frameworks as Github check run",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
@@ -16,15 +16,12 @@
|
|||||||
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
|
||||||
"dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"",
|
"dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"",
|
||||||
"dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"",
|
"dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"",
|
||||||
"dotnet-nunit-fixture": "nunit.exe reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml",
|
|
||||||
"dotnet-nunit-legacy-fixture": "nunit-console.exe reports/dotnet-nunit-legacy/NUnitLegacy.sln --result=__tests__/fixtures/dotnet-nunit-legacy.xml",
|
|
||||||
"golang-json-fixture": "go test -v -json -timeout 5s ./reports/go | tee __tests__/fixtures/golang-json.json",
|
|
||||||
"jest-fixture": "cd \"reports/jest\" && npm test",
|
"jest-fixture": "cd \"reports/jest\" && npm test",
|
||||||
"mocha-fixture": "cd \"reports/mocha\" && npm test"
|
"mocha-fixture": "cd \"reports/mocha\" && npm test"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/dorny/test-reporter.git"
|
"url": "git+https://github.com/dorny/test-check.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"actions",
|
"actions",
|
||||||
@@ -35,39 +32,42 @@
|
|||||||
"author": "Michal Dorner <dorner.michal@gmail.com>",
|
"author": "Michal Dorner <dorner.michal@gmail.com>",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.10.1",
|
||||||
"@actions/exec": "^1.1.1",
|
"@actions/exec": "^1.1.1",
|
||||||
"@actions/github": "^6.0.1",
|
"@actions/github": "^6.0.0",
|
||||||
"adm-zip": "^0.5.16",
|
"adm-zip": "^0.5.10",
|
||||||
"fast-glob": "^3.3.3",
|
"fast-glob": "^3.3.2",
|
||||||
"got": "^11.8.6",
|
"got": "^11.8.2",
|
||||||
"picomatch": "^4.0.2",
|
"picomatch": "^3.0.1",
|
||||||
"xml2js": "^0.6.2"
|
"xml2js": "^0.6.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@octokit/webhooks-types": "^7.6.1",
|
"@octokit/types": "^12.4.0",
|
||||||
"@types/adm-zip": "^0.5.7",
|
"@octokit/webhooks": "^12.0.10",
|
||||||
"@types/jest": "^29.5.14",
|
"@octokit/webhooks-types": "^7.3.1",
|
||||||
"@types/node": "^20.19.2",
|
"@types/adm-zip": "^0.5.5",
|
||||||
"@types/picomatch": "^2.3.4",
|
"@types/github-slugger": "^1.3.0",
|
||||||
|
"@types/jest": "^29.5.11",
|
||||||
|
"@types/node": "^20.10.4",
|
||||||
|
"@types/picomatch": "^2.3.3",
|
||||||
"@types/xml2js": "^0.4.14",
|
"@types/xml2js": "^0.4.14",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
||||||
"@typescript-eslint/parser": "^7.18.0",
|
"@typescript-eslint/parser": "^6.14.0",
|
||||||
"@vercel/ncc": "^0.38.3",
|
"@vercel/ncc": "^0.38.1",
|
||||||
"eol-converter-cli": "^1.1.0",
|
"eol-converter-cli": "^1.0.8",
|
||||||
"eslint": "^8.57.1",
|
"eslint": "^8.55.0",
|
||||||
"eslint-import-resolver-typescript": "^3.10.1",
|
"eslint-import-resolver-typescript": "^3.6.1",
|
||||||
"eslint-plugin-github": "^4.10.2",
|
"eslint-plugin-github": "^4.10.1",
|
||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-import": "^2.29.0",
|
||||||
"eslint-plugin-jest": "^28.14.0",
|
"eslint-plugin-jest": "^27.6.0",
|
||||||
"eslint-plugin-prettier": "^5.5.1",
|
"eslint-plugin-prettier": "^5.0.1",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-circus": "^29.7.0",
|
"jest-circus": "^29.7.0",
|
||||||
"jest-junit": "^16.0.0",
|
"jest-junit": "^16.0.0",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "^3.1.1",
|
||||||
"ts-jest": "^29.4.0",
|
"ts-jest": "^29.1.1",
|
||||||
"typescript": "^5.8.3"
|
"typescript": "^5.3.3"
|
||||||
},
|
},
|
||||||
"jest-junit": {
|
"jest-junit": {
|
||||||
"suiteName": "jest tests",
|
"suiteName": "jest tests",
|
||||||
@@ -78,13 +78,5 @@
|
|||||||
"suiteNameTemplate": "{filepath}",
|
"suiteNameTemplate": "{filepath}",
|
||||||
"classNameTemplate": "{classname}",
|
"classNameTemplate": "{classname}",
|
||||||
"titleTemplate": "{title}"
|
"titleTemplate": "{title}"
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=20"
|
|
||||||
},
|
|
||||||
"markdownlint-cli2": {
|
|
||||||
"ignores": [
|
|
||||||
"__tests__/**/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,377 +5,344 @@ packages:
|
|||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: _fe_analyzer_shared
|
name: _fe_analyzer_shared
|
||||||
sha256: "0b2f2bd91ba804e53a61d757b986f89f1f9eaed5b11e4b2f5a2468d86d6c9fc7"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "67.0.0"
|
version: "11.0.0"
|
||||||
analyzer:
|
analyzer:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: analyzer
|
name: analyzer
|
||||||
sha256: "37577842a27e4338429a1cbc32679d508836510b056f1eedf0c8d20e39c1383d"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "6.4.1"
|
version: "0.40.4"
|
||||||
args:
|
args:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: args
|
name: args
|
||||||
sha256: "7cf60b9f0cc88203c5a190b4cd62a99feea42759a7fa695010eb5de1c0b2252a"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.5.0"
|
version: "1.6.0"
|
||||||
async:
|
async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: async
|
name: async
|
||||||
sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.11.0"
|
version: "2.4.2"
|
||||||
boolean_selector:
|
boolean_selector:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: boolean_selector
|
name: boolean_selector
|
||||||
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.1"
|
version: "2.0.0"
|
||||||
|
charcode:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: charcode
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.1.3"
|
||||||
|
cli_util:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: cli_util
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.2.0"
|
||||||
collection:
|
collection:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: collection
|
name: collection
|
||||||
sha256: ee67cb0715911d28db6bf4af1026078bd6f0128b07a5f66fb2ed94ec6783c09a
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.18.0"
|
version: "1.14.13"
|
||||||
convert:
|
convert:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: convert
|
name: convert
|
||||||
sha256: "0f08b14755d163f6e2134cb58222dd25ea2a2ee8a195e53983d57c075324d592"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.1"
|
version: "2.1.1"
|
||||||
coverage:
|
coverage:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: coverage
|
name: coverage
|
||||||
sha256: "8acabb8306b57a409bf4c83522065672ee13179297a6bb0cb9ead73948df7c76"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.7.2"
|
version: "0.14.1"
|
||||||
crypto:
|
crypto:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: crypto
|
name: crypto
|
||||||
sha256: ff625774173754681d66daaf4a448684fb04b78f902da9cb3d308c19cc5e8bab
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.3"
|
version: "2.1.5"
|
||||||
file:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: file
|
|
||||||
sha256: "5fc22d7c25582e38ad9a8515372cd9a93834027aacf1801cf01164dac0ffa08c"
|
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
|
||||||
version: "7.0.0"
|
|
||||||
frontend_server_client:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: frontend_server_client
|
|
||||||
sha256: f64a0333a82f30b0cca061bc3d143813a486dc086b574bfb233b7c1372427694
|
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
|
||||||
version: "4.0.0"
|
|
||||||
glob:
|
glob:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: glob
|
name: glob
|
||||||
sha256: "0e7014b3b7d4dac1ca4d6114f82bf1782ee86745b9b42a92c9289c23d8a0ab63"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.2"
|
version: "1.2.0"
|
||||||
|
http:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: http
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "0.12.2"
|
||||||
http_multi_server:
|
http_multi_server:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: http_multi_server
|
name: http_multi_server
|
||||||
sha256: "97486f20f9c2f7be8f514851703d0119c3596d14ea63227af6f7a481ef2b2f8b"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.2.1"
|
version: "2.2.0"
|
||||||
http_parser:
|
http_parser:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: http_parser
|
name: http_parser
|
||||||
sha256: "2aa08ce0341cc9b354a498388e30986515406668dbcc4f7c950c3e715496693b"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.0.2"
|
version: "3.1.4"
|
||||||
io:
|
io:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: io
|
name: io
|
||||||
sha256: "2ec25704aba361659e10e3e5f5d672068d332fc8ac516421d483a11e5cbd061e"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.4"
|
version: "0.3.4"
|
||||||
js:
|
js:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: js
|
name: js
|
||||||
sha256: c1b2e9b5ea78c45e1a0788d29606ba27dc5f71f019f32ca5140f61ef071838cf
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.1"
|
version: "0.6.2"
|
||||||
logging:
|
logging:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: logging
|
name: logging
|
||||||
sha256: "623a88c9594aa774443aa3eb2d41807a48486b5613e67599fb4c41c0ad47c340"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.2.0"
|
version: "0.11.4"
|
||||||
matcher:
|
matcher:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: matcher
|
name: matcher
|
||||||
sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.12.16+1"
|
version: "0.12.9"
|
||||||
meta:
|
meta:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: meta
|
name: meta
|
||||||
sha256: "25dfcaf170a0190f47ca6355bdd4552cb8924b430512ff0cafb8db9bd41fe33b"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.14.0"
|
version: "1.2.3"
|
||||||
mime:
|
mime:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: mime
|
name: mime
|
||||||
sha256: "2e123074287cc9fd6c09de8336dae606d1ddb88d9ac47358826db698c176a1f2"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.5"
|
version: "0.9.7"
|
||||||
|
node_interop:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: node_interop
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.1.1"
|
||||||
|
node_io:
|
||||||
|
dependency: transitive
|
||||||
|
description:
|
||||||
|
name: node_io
|
||||||
|
url: "https://pub.dartlang.org"
|
||||||
|
source: hosted
|
||||||
|
version: "1.1.1"
|
||||||
node_preamble:
|
node_preamble:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: node_preamble
|
name: node_preamble
|
||||||
sha256: "6e7eac89047ab8a8d26cf16127b5ed26de65209847630400f9aefd7cd5c730db"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.0.2"
|
version: "1.4.12"
|
||||||
package_config:
|
package_config:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: package_config
|
name: package_config
|
||||||
sha256: "1c5b77ccc91e4823a5af61ee74e6b972db1ef98c2ff5a18d3161c982a55448bd"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.0"
|
version: "1.9.3"
|
||||||
path:
|
path:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: path
|
name: path
|
||||||
sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.9.0"
|
version: "1.7.0"
|
||||||
pedantic:
|
pedantic:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
name: pedantic
|
name: pedantic
|
||||||
sha256: "67fc27ed9639506c856c840ccce7594d0bdcd91bc8d53d6e52359449a1d50602"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.11.1"
|
version: "1.9.2"
|
||||||
pool:
|
pool:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: pool
|
name: pool
|
||||||
sha256: "20fe868b6314b322ea036ba325e6fc0711a22948856475e2c2b6306e8ab39c2a"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.5.1"
|
version: "1.4.0"
|
||||||
pub_semver:
|
pub_semver:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: pub_semver
|
name: pub_semver
|
||||||
sha256: "40d3ab1bbd474c4c2328c91e3a7df8c6dd629b79ece4c4bd04bee496a224fb0c"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.4"
|
version: "1.4.4"
|
||||||
shelf:
|
shelf:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shelf
|
name: shelf
|
||||||
sha256: ad29c505aee705f41a4d8963641f91ac4cee3c8fad5947e033390a7bd8180fa4
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.4.1"
|
version: "0.7.9"
|
||||||
shelf_packages_handler:
|
shelf_packages_handler:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shelf_packages_handler
|
name: shelf_packages_handler
|
||||||
sha256: "89f967eca29607c933ba9571d838be31d67f53f6e4ee15147d5dc2934fee1b1e"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.2"
|
version: "2.0.0"
|
||||||
shelf_static:
|
shelf_static:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shelf_static
|
name: shelf_static
|
||||||
sha256: a41d3f53c4adf0f57480578c1d61d90342cd617de7fc8077b1304643c2d85c1e
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.2"
|
version: "0.2.8"
|
||||||
shelf_web_socket:
|
shelf_web_socket:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: shelf_web_socket
|
name: shelf_web_socket
|
||||||
sha256: "9ca081be41c60190ebcb4766b2486a7d50261db7bd0f5d9615f2d653637a84c1"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.0.4"
|
version: "0.2.3"
|
||||||
source_map_stack_trace:
|
source_map_stack_trace:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: source_map_stack_trace
|
name: source_map_stack_trace
|
||||||
sha256: "84cf769ad83aa6bb61e0aa5a18e53aea683395f196a6f39c4c881fb90ed4f7ae"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.1"
|
version: "2.0.0"
|
||||||
source_maps:
|
source_maps:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: source_maps
|
name: source_maps
|
||||||
sha256: "708b3f6b97248e5781f493b765c3337db11c5d2c81c3094f10904bfa8004c703"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.10.12"
|
version: "0.10.9"
|
||||||
source_span:
|
source_span:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: source_span
|
name: source_span
|
||||||
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.10.0"
|
version: "1.7.0"
|
||||||
stack_trace:
|
stack_trace:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: stack_trace
|
name: stack_trace
|
||||||
sha256: "73713990125a6d93122541237550ee3352a2d84baad52d375a4cad2eb9b7ce0b"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.11.1"
|
version: "1.9.5"
|
||||||
stream_channel:
|
stream_channel:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: stream_channel
|
name: stream_channel
|
||||||
sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.2"
|
version: "2.0.0"
|
||||||
string_scanner:
|
string_scanner:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: string_scanner
|
name: string_scanner
|
||||||
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.2.0"
|
version: "1.0.5"
|
||||||
term_glyph:
|
term_glyph:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: term_glyph
|
name: term_glyph
|
||||||
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.2.1"
|
version: "1.1.0"
|
||||||
test:
|
test:
|
||||||
dependency: "direct dev"
|
dependency: "direct dev"
|
||||||
description:
|
description:
|
||||||
name: test
|
name: test
|
||||||
sha256: d87214d19fb311997d8128ec501a980f77cb240ac4e7e219accf452813ff473c
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.25.3"
|
version: "1.15.4"
|
||||||
test_api:
|
test_api:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: test_api
|
name: test_api
|
||||||
sha256: "2419f20b0c8677b2d67c8ac4d1ac7372d862dc6c460cdbb052b40155408cd794"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.1"
|
version: "0.2.18"
|
||||||
test_core:
|
test_core:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: test_core
|
name: test_core
|
||||||
sha256: "2236f70be1e5ab405c675e88c36935a87dad9e05a506b57dd5c0f617f5aebcb2"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.6.1"
|
version: "0.3.11+1"
|
||||||
typed_data:
|
typed_data:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: typed_data
|
name: typed_data
|
||||||
sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.3.2"
|
version: "1.2.0"
|
||||||
vm_service:
|
vm_service:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: a75f83f14ad81d5fe4b3319710b90dec37da0e22612326b696c9e1b8f34bbf48
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.0"
|
version: "4.2.0"
|
||||||
watcher:
|
watcher:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: watcher
|
name: watcher
|
||||||
sha256: "3d2ad6751b3c16cf07c7fca317a1413b3f26530319181b37e3b9039b84fc01d8"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.1.0"
|
version: "0.9.7+15"
|
||||||
web:
|
|
||||||
dependency: transitive
|
|
||||||
description:
|
|
||||||
name: web
|
|
||||||
sha256: "97da13628db363c635202ad97068d47c5b8aa555808e7a9411963c533b449b27"
|
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
|
||||||
version: "0.5.1"
|
|
||||||
web_socket_channel:
|
web_socket_channel:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: web_socket_channel
|
name: web_socket_channel
|
||||||
sha256: "58c6666b342a38816b2e7e50ed0f1e261959630becd4c879c4f26bfa14aa5a42"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.4.5"
|
version: "1.1.0"
|
||||||
webkit_inspection_protocol:
|
webkit_inspection_protocol:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: webkit_inspection_protocol
|
name: webkit_inspection_protocol
|
||||||
sha256: "87d3f2333bb240704cd3f1c6b5b7acd8a10e7f0bc28c28dcf14e782014f4a572"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.2.1"
|
version: "0.7.3"
|
||||||
yaml:
|
yaml:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: yaml
|
name: yaml
|
||||||
sha256: "75769501ea3489fca56601ff33454fe45507ea3bfb014161abc3b43ae25989d5"
|
url: "https://pub.dartlang.org"
|
||||||
url: "https://pub.dev"
|
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.2"
|
version: "2.2.1"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.3.0 <4.0.0"
|
dart: ">=2.8.1 <3.0.0"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ name: darttest
|
|||||||
description: A simple command-line application.
|
description: A simple command-line application.
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.12.0 <3.0.0'
|
sdk: '>=2.8.1 <3.0.0'
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
pedantic: ^1.9.0
|
pedantic: ^1.9.0
|
||||||
|
|||||||
@@ -1,64 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Threading;
|
|
||||||
using DotnetTests.Unit;
|
|
||||||
using NUnit.Framework;
|
|
||||||
|
|
||||||
namespace DotnetTests.XUnitTests
|
|
||||||
{
|
|
||||||
public class CalculatorTests
|
|
||||||
{
|
|
||||||
private readonly Calculator _calculator = new Calculator();
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void Passing_Test()
|
|
||||||
{
|
|
||||||
Assert.That(_calculator.Sum(1, 1), Is.EqualTo(2));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test(Description = "Some description")]
|
|
||||||
public void Passing_Test_With_Description()
|
|
||||||
{
|
|
||||||
Assert.That(2, Is.EqualTo(2));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void Failing_Test()
|
|
||||||
{
|
|
||||||
Assert.That(_calculator.Sum(1, 1), Is.EqualTo(3));
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void Exception_In_TargetTest()
|
|
||||||
{
|
|
||||||
_calculator.Div(1, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
public void Exception_In_Test()
|
|
||||||
{
|
|
||||||
throw new Exception("Test");
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
[Timeout(1)]
|
|
||||||
public void Timeout_Test()
|
|
||||||
{
|
|
||||||
Thread.Sleep(100);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Test]
|
|
||||||
[Ignore("Skipped")]
|
|
||||||
public void Skipped_Test()
|
|
||||||
{
|
|
||||||
throw new Exception("Test");
|
|
||||||
}
|
|
||||||
|
|
||||||
[Theory]
|
|
||||||
[TestCase(2)]
|
|
||||||
[TestCase(3)]
|
|
||||||
public void Is_Even_Number(int i)
|
|
||||||
{
|
|
||||||
Assert.True(i % 2 == 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
||||||
|
|
||||||
<IsPackable>false</IsPackable>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="NUnit" Version="3.13.2" />
|
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\DotnetTests.Unit\DotnetTests.Unit.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
@@ -9,8 +9,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{BCAC3B31
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetTests.XUnitTests", "DotnetTests.XUnitTests\DotnetTests.XUnitTests.csproj", "{F8607EDB-D25D-47AA-8132-38ACA242E845}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetTests.XUnitTests", "DotnetTests.XUnitTests\DotnetTests.XUnitTests.csproj", "{F8607EDB-D25D-47AA-8132-38ACA242E845}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DotnetTests.NUnitV3Tests", "DotnetTests.NUnitV3Tests\DotnetTests.NUnitV3Tests.csproj", "{81023ED7-56CB-47E9-86C5-9125A0873C55}"
|
|
||||||
EndProject
|
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -25,17 +23,12 @@ Global
|
|||||||
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.Build.0 = Release|Any CPU
|
{F8607EDB-D25D-47AA-8132-38ACA242E845}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{81023ED7-56CB-47E9-86C5-9125A0873C55}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(NestedProjects) = preSolution
|
GlobalSection(NestedProjects) = preSolution
|
||||||
{F8607EDB-D25D-47AA-8132-38ACA242E845} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
|
{F8607EDB-D25D-47AA-8132-38ACA242E845} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
|
||||||
{81023ED7-56CB-47E9-86C5-9125A0873C55} = {BCAC3B31-ADB1-4221-9D5B-182EE868648C}
|
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
SolutionGuid = {6ED5543C-74AA-4B21-8050-943550F3F66E}
|
SolutionGuid = {6ED5543C-74AA-4B21-8050-943550F3F66E}
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import "errors"
|
|
||||||
|
|
||||||
func CalculatorSum(a, b int) int {
|
|
||||||
return a + b
|
|
||||||
}
|
|
||||||
|
|
||||||
func CalculatorDivide(a, b int) int {
|
|
||||||
return a / b
|
|
||||||
}
|
|
||||||
|
|
||||||
var ErrDivideByZero = errors.New("divide by zero")
|
|
||||||
|
|
||||||
func CalculatorSafeDivide(a, b int) (int, error) {
|
|
||||||
if b == 0 {
|
|
||||||
return 0, ErrDivideByZero
|
|
||||||
}
|
|
||||||
return a / b, nil
|
|
||||||
}
|
|
||||||
@@ -1,82 +0,0 @@
|
|||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"math/rand"
|
|
||||||
"testing"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
func TestPassing(t *testing.T) {
|
|
||||||
randomSleep()
|
|
||||||
t.Log("pass!")
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestFailing(t *testing.T) {
|
|
||||||
randomSleep()
|
|
||||||
expected := 3
|
|
||||||
actual := CalculatorSum(1, 1)
|
|
||||||
if actual != expected {
|
|
||||||
t.Fatalf("expected 1+1 = %d, got %d", expected, actual)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestPanicInsideFunction(t *testing.T) {
|
|
||||||
defer catchPanics(t)
|
|
||||||
|
|
||||||
expected := 0
|
|
||||||
actual := CalculatorDivide(1, 0)
|
|
||||||
if actual != expected {
|
|
||||||
t.Fatalf("expected 1/1 = %d, got %d", expected, actual)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestPanicInsideTest(t *testing.T) {
|
|
||||||
defer catchPanics(t)
|
|
||||||
panic("bad stuff")
|
|
||||||
}
|
|
||||||
|
|
||||||
// Timeouts cause the entire test process to end - so we can't get good output for these
|
|
||||||
// func TestTimeout(t *testing.T) {
|
|
||||||
// time.Sleep(time.Second * 5)
|
|
||||||
// }
|
|
||||||
|
|
||||||
func TestSkipped(t *testing.T) {
|
|
||||||
randomSleep()
|
|
||||||
t.Skipf("skipping test")
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestCases(t *testing.T) {
|
|
||||||
for _, tc := range []struct {
|
|
||||||
name string
|
|
||||||
fn func(int, int) int
|
|
||||||
a, b, c int
|
|
||||||
}{
|
|
||||||
{"1 + 2 = 3", CalculatorSum, 1, 2, 3},
|
|
||||||
{"4 + 7 = 11", CalculatorSum, 4, 7, 11},
|
|
||||||
{"2 + 3 = 4", CalculatorSum, 2, 3, 4},
|
|
||||||
|
|
||||||
{"1 / 2 = 1", CalculatorDivide, 1, 2, 1},
|
|
||||||
{"9 / 3 = 3", CalculatorDivide, 9, 3, 3},
|
|
||||||
{"14 / 7 = 2", CalculatorDivide, 14, 7, 2},
|
|
||||||
} {
|
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
|
||||||
randomSleep()
|
|
||||||
|
|
||||||
c := tc.fn(tc.a, tc.b)
|
|
||||||
if c != tc.c {
|
|
||||||
t.Fatalf("expected %s, got %d", tc.name, c)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func catchPanics(t *testing.T) {
|
|
||||||
err := recover()
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("caught panic: %v", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func randomSleep() {
|
|
||||||
time.Sleep(time.Duration(rand.Int63n(int64(time.Second))))
|
|
||||||
}
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
module test_reporter_example
|
|
||||||
|
|
||||||
go 1.24.2
|
|
||||||
121
src/main.ts
121
src/main.ts
@@ -11,13 +11,10 @@ import {getAnnotations} from './report/get-annotations'
|
|||||||
import {getReport} from './report/get-report'
|
import {getReport} from './report/get-report'
|
||||||
|
|
||||||
import {DartJsonParser} from './parsers/dart-json/dart-json-parser'
|
import {DartJsonParser} from './parsers/dart-json/dart-json-parser'
|
||||||
import {DotnetNunitParser} from './parsers/dotnet-nunit/dotnet-nunit-parser'
|
|
||||||
import {DotnetTrxParser} from './parsers/dotnet-trx/dotnet-trx-parser'
|
import {DotnetTrxParser} from './parsers/dotnet-trx/dotnet-trx-parser'
|
||||||
import {GolangJsonParser} from './parsers/golang-json/golang-json-parser'
|
|
||||||
import {JavaJunitParser} from './parsers/java-junit/java-junit-parser'
|
import {JavaJunitParser} from './parsers/java-junit/java-junit-parser'
|
||||||
import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser'
|
import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser'
|
||||||
import {MochaJsonParser} from './parsers/mocha-json/mocha-json-parser'
|
import {MochaJsonParser} from './parsers/mocha-json/mocha-json-parser'
|
||||||
import {RspecJsonParser} from './parsers/rspec-json/rspec-json-parser'
|
|
||||||
import {SwiftXunitParser} from './parsers/swift-xunit/swift-xunit-parser'
|
import {SwiftXunitParser} from './parsers/swift-xunit/swift-xunit-parser'
|
||||||
|
|
||||||
import {normalizeDirPath, normalizeFilePath} from './utils/path-utils'
|
import {normalizeDirPath, normalizeFilePath} from './utils/path-utils'
|
||||||
@@ -39,16 +36,13 @@ class TestReporter {
|
|||||||
readonly path = core.getInput('path', {required: true})
|
readonly path = core.getInput('path', {required: true})
|
||||||
readonly pathReplaceBackslashes = core.getInput('path-replace-backslashes', {required: false}) === 'true'
|
readonly pathReplaceBackslashes = core.getInput('path-replace-backslashes', {required: false}) === 'true'
|
||||||
readonly reporter = core.getInput('reporter', {required: true})
|
readonly reporter = core.getInput('reporter', {required: true})
|
||||||
readonly listSuites = core.getInput('list-suites', {required: true}) as 'all' | 'failed' | 'none'
|
readonly listSuites = core.getInput('list-suites', {required: true}) as 'all' | 'failed'
|
||||||
readonly listTests = core.getInput('list-tests', {required: true}) as 'all' | 'failed' | 'none'
|
readonly listTests = core.getInput('list-tests', {required: true}) as 'all' | 'failed' | 'none'
|
||||||
readonly maxAnnotations = parseInt(core.getInput('max-annotations', {required: true}))
|
readonly maxAnnotations = parseInt(core.getInput('max-annotations', {required: true}))
|
||||||
readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true'
|
readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true'
|
||||||
readonly failOnEmpty = core.getInput('fail-on-empty', {required: true}) === 'true'
|
readonly failOnEmpty = core.getInput('fail-on-empty', {required: true}) === 'true'
|
||||||
readonly workDirInput = core.getInput('working-directory', {required: false})
|
readonly workDirInput = core.getInput('working-directory', {required: false})
|
||||||
readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true'
|
readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true'
|
||||||
readonly useActionsSummary = core.getInput('use-actions-summary', {required: false}) === 'true'
|
|
||||||
readonly badgeTitle = core.getInput('badge-title', {required: false})
|
|
||||||
readonly reportTitle = core.getInput('report-title', {required: false})
|
|
||||||
readonly token = core.getInput('token', {required: true})
|
readonly token = core.getInput('token', {required: true})
|
||||||
readonly octokit: InstanceType<typeof GitHub>
|
readonly octokit: InstanceType<typeof GitHub>
|
||||||
readonly context = getCheckRunContext()
|
readonly context = getCheckRunContext()
|
||||||
@@ -56,7 +50,7 @@ class TestReporter {
|
|||||||
constructor() {
|
constructor() {
|
||||||
this.octokit = github.getOctokit(this.token)
|
this.octokit = github.getOctokit(this.token)
|
||||||
|
|
||||||
if (this.listSuites !== 'all' && this.listSuites !== 'failed' && this.listSuites !== 'none') {
|
if (this.listSuites !== 'all' && this.listSuites !== 'failed') {
|
||||||
core.setFailed(`Input parameter 'list-suites' has invalid value`)
|
core.setFailed(`Input parameter 'list-suites' has invalid value`)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -166,78 +160,51 @@ class TestReporter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const {listSuites, listTests, onlySummary, useActionsSummary, badgeTitle, reportTitle} = this
|
core.info(`Creating check run ${name}`)
|
||||||
|
const createResp = await this.octokit.rest.checks.create({
|
||||||
|
head_sha: this.context.sha,
|
||||||
|
name,
|
||||||
|
status: 'in_progress',
|
||||||
|
output: {
|
||||||
|
title: name,
|
||||||
|
summary: ''
|
||||||
|
},
|
||||||
|
...github.context.repo
|
||||||
|
})
|
||||||
|
|
||||||
|
core.info('Creating report summary')
|
||||||
|
const {listSuites, listTests, onlySummary} = this
|
||||||
|
const baseUrl = createResp.data.html_url as string
|
||||||
|
const summary = getReport(results, {listSuites, listTests, baseUrl, onlySummary})
|
||||||
|
|
||||||
|
core.info('Creating annotations')
|
||||||
|
const annotations = getAnnotations(results, this.maxAnnotations)
|
||||||
|
|
||||||
|
const isFailed = this.failOnError && results.some(tr => tr.result === 'failed')
|
||||||
|
const conclusion = isFailed ? 'failure' : 'success'
|
||||||
|
|
||||||
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
||||||
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
|
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
|
||||||
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
||||||
const shortSummary = `${passed} passed, ${failed} failed and ${skipped} skipped `
|
const shortSummary = `${passed} passed, ${failed} failed and ${skipped} skipped `
|
||||||
|
|
||||||
let baseUrl = ''
|
core.info(`Updating check run conclusion (${conclusion}) and output`)
|
||||||
if (this.useActionsSummary) {
|
const resp = await this.octokit.rest.checks.update({
|
||||||
const summary = getReport(results, {
|
check_run_id: createResp.data.id,
|
||||||
listSuites,
|
conclusion,
|
||||||
listTests,
|
status: 'completed',
|
||||||
baseUrl,
|
output: {
|
||||||
onlySummary,
|
title: shortSummary,
|
||||||
useActionsSummary,
|
summary,
|
||||||
badgeTitle,
|
annotations
|
||||||
reportTitle
|
},
|
||||||
})
|
...github.context.repo
|
||||||
|
})
|
||||||
core.info('Summary content:')
|
core.info(`Check run create response: ${resp.status}`)
|
||||||
core.info(summary)
|
core.info(`Check run URL: ${resp.data.url}`)
|
||||||
core.summary.addRaw(`# ${shortSummary}`)
|
core.info(`Check run HTML: ${resp.data.html_url}`)
|
||||||
await core.summary.addRaw(summary).write()
|
core.setOutput('url', resp.data.url)
|
||||||
} else {
|
core.setOutput('url_html', resp.data.html_url)
|
||||||
core.info(`Creating check run ${name}`)
|
|
||||||
const createResp = await this.octokit.rest.checks.create({
|
|
||||||
head_sha: this.context.sha,
|
|
||||||
name,
|
|
||||||
status: 'in_progress',
|
|
||||||
output: {
|
|
||||||
title: name,
|
|
||||||
summary: ''
|
|
||||||
},
|
|
||||||
...github.context.repo
|
|
||||||
})
|
|
||||||
|
|
||||||
core.info('Creating report summary')
|
|
||||||
baseUrl = createResp.data.html_url as string
|
|
||||||
const summary = getReport(results, {
|
|
||||||
listSuites,
|
|
||||||
listTests,
|
|
||||||
baseUrl,
|
|
||||||
onlySummary,
|
|
||||||
useActionsSummary,
|
|
||||||
badgeTitle,
|
|
||||||
reportTitle
|
|
||||||
})
|
|
||||||
|
|
||||||
core.info('Creating annotations')
|
|
||||||
const annotations = getAnnotations(results, this.maxAnnotations)
|
|
||||||
|
|
||||||
const isFailed = this.failOnError && results.some(tr => tr.result === 'failed')
|
|
||||||
const conclusion = isFailed ? 'failure' : 'success'
|
|
||||||
|
|
||||||
core.info(`Updating check run conclusion (${conclusion}) and output`)
|
|
||||||
const resp = await this.octokit.rest.checks.update({
|
|
||||||
check_run_id: createResp.data.id,
|
|
||||||
conclusion,
|
|
||||||
status: 'completed',
|
|
||||||
output: {
|
|
||||||
title: shortSummary,
|
|
||||||
summary,
|
|
||||||
annotations
|
|
||||||
},
|
|
||||||
...github.context.repo
|
|
||||||
})
|
|
||||||
core.info(`Check run create response: ${resp.status}`)
|
|
||||||
core.info(`Check run URL: ${resp.data.url}`)
|
|
||||||
core.info(`Check run HTML: ${resp.data.html_url}`)
|
|
||||||
core.setOutput('url', resp.data.url)
|
|
||||||
core.setOutput('url_html', resp.data.html_url)
|
|
||||||
}
|
|
||||||
|
|
||||||
return results
|
return results
|
||||||
}
|
}
|
||||||
@@ -246,12 +213,8 @@ class TestReporter {
|
|||||||
switch (reporter) {
|
switch (reporter) {
|
||||||
case 'dart-json':
|
case 'dart-json':
|
||||||
return new DartJsonParser(options, 'dart')
|
return new DartJsonParser(options, 'dart')
|
||||||
case 'dotnet-nunit':
|
|
||||||
return new DotnetNunitParser(options)
|
|
||||||
case 'dotnet-trx':
|
case 'dotnet-trx':
|
||||||
return new DotnetTrxParser(options)
|
return new DotnetTrxParser(options)
|
||||||
case 'golang-json':
|
|
||||||
return new GolangJsonParser(options)
|
|
||||||
case 'flutter-json':
|
case 'flutter-json':
|
||||||
return new DartJsonParser(options, 'flutter')
|
return new DartJsonParser(options, 'flutter')
|
||||||
case 'java-junit':
|
case 'java-junit':
|
||||||
@@ -260,8 +223,6 @@ class TestReporter {
|
|||||||
return new JestJunitParser(options)
|
return new JestJunitParser(options)
|
||||||
case 'mocha-json':
|
case 'mocha-json':
|
||||||
return new MochaJsonParser(options)
|
return new MochaJsonParser(options)
|
||||||
case 'rspec-json':
|
|
||||||
return new RspecJsonParser(options)
|
|
||||||
case 'swift-xunit':
|
case 'swift-xunit':
|
||||||
return new SwiftXunitParser(options)
|
return new SwiftXunitParser(options)
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ export class DartJsonParser implements TestParser {
|
|||||||
const group = suite.groups[evt.test.groupIDs[evt.test.groupIDs.length - 1]]
|
const group = suite.groups[evt.test.groupIDs[evt.test.groupIDs.length - 1]]
|
||||||
group.tests.push(test)
|
group.tests.push(test)
|
||||||
tests[evt.test.id] = test
|
tests[evt.test.id] = test
|
||||||
} else if (isTestDoneEvent(evt) && tests[evt.testID]) {
|
} else if (isTestDoneEvent(evt) && !evt.hidden && tests[evt.testID]) {
|
||||||
tests[evt.testID].testDone = evt
|
tests[evt.testID].testDone = evt
|
||||||
} else if (isErrorEvent(evt) && tests[evt.testID]) {
|
} else if (isErrorEvent(evt) && tests[evt.testID]) {
|
||||||
tests[evt.testID].error = evt
|
tests[evt.testID].error = evt
|
||||||
@@ -152,16 +152,14 @@ export class DartJsonParser implements TestParser {
|
|||||||
|
|
||||||
return groups.map(group => {
|
return groups.map(group => {
|
||||||
group.tests.sort((a, b) => (a.testStart.test.line ?? 0) - (b.testStart.test.line ?? 0))
|
group.tests.sort((a, b) => (a.testStart.test.line ?? 0) - (b.testStart.test.line ?? 0))
|
||||||
const tests = group.tests
|
const tests = group.tests.map(tc => {
|
||||||
.filter(tc => !tc.testDone?.hidden)
|
const error = this.getError(suite, tc)
|
||||||
.map(tc => {
|
const testName =
|
||||||
const error = this.getError(suite, tc)
|
group.group.name !== undefined && tc.testStart.test.name.startsWith(group.group.name)
|
||||||
const testName =
|
? tc.testStart.test.name.slice(group.group.name.length).trim()
|
||||||
group.group.name !== undefined && tc.testStart.test.name.startsWith(group.group.name)
|
: tc.testStart.test.name.trim()
|
||||||
? tc.testStart.test.name.slice(group.group.name.length).trim()
|
return new TestCaseResult(testName, tc.result, tc.time, error)
|
||||||
: tc.testStart.test.name.trim()
|
})
|
||||||
return new TestCaseResult(testName, tc.result, tc.time, error)
|
|
||||||
})
|
|
||||||
return new TestGroupResult(group.group.name, tests)
|
return new TestGroupResult(group.group.name, tests)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,151 +0,0 @@
|
|||||||
import {ParseOptions, TestParser} from '../../test-parser'
|
|
||||||
import {parseStringPromise} from 'xml2js'
|
|
||||||
|
|
||||||
import {NunitReport, TestCase, TestSuite} from './dotnet-nunit-types'
|
|
||||||
import {getExceptionSource} from '../../utils/node-utils'
|
|
||||||
import {getBasePath, normalizeFilePath} from '../../utils/path-utils'
|
|
||||||
|
|
||||||
import {
|
|
||||||
TestExecutionResult,
|
|
||||||
TestRunResult,
|
|
||||||
TestSuiteResult,
|
|
||||||
TestGroupResult,
|
|
||||||
TestCaseResult,
|
|
||||||
TestCaseError
|
|
||||||
} from '../../test-results'
|
|
||||||
|
|
||||||
export class DotnetNunitParser implements TestParser {
|
|
||||||
assumedWorkDir: string | undefined
|
|
||||||
|
|
||||||
constructor(readonly options: ParseOptions) {}
|
|
||||||
|
|
||||||
async parse(path: string, content: string): Promise<TestRunResult> {
|
|
||||||
const ju = await this.getNunitReport(path, content)
|
|
||||||
return this.getTestRunResult(path, ju)
|
|
||||||
}
|
|
||||||
|
|
||||||
private async getNunitReport(path: string, content: string): Promise<NunitReport> {
|
|
||||||
try {
|
|
||||||
return (await parseStringPromise(content)) as NunitReport
|
|
||||||
} catch (e) {
|
|
||||||
throw new Error(`Invalid XML at ${path}\n\n${e}`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTestRunResult(path: string, nunit: NunitReport): TestRunResult {
|
|
||||||
const suites: TestSuiteResult[] = []
|
|
||||||
const time = parseFloat(nunit['test-run'].$.duration) * 1000
|
|
||||||
|
|
||||||
this.populateTestCasesRecursive(suites, [], nunit['test-run']['test-suite'])
|
|
||||||
|
|
||||||
return new TestRunResult(path, suites, time)
|
|
||||||
}
|
|
||||||
|
|
||||||
private populateTestCasesRecursive(
|
|
||||||
result: TestSuiteResult[],
|
|
||||||
suitePath: TestSuite[],
|
|
||||||
testSuites: TestSuite[] | undefined
|
|
||||||
): void {
|
|
||||||
if (testSuites === undefined) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const suite of testSuites) {
|
|
||||||
suitePath.push(suite)
|
|
||||||
|
|
||||||
this.populateTestCasesRecursive(result, suitePath, suite['test-suite'])
|
|
||||||
|
|
||||||
const testcases = suite['test-case']
|
|
||||||
if (testcases !== undefined) {
|
|
||||||
for (const testcase of testcases) {
|
|
||||||
this.addTestCase(result, suitePath, testcase)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
suitePath.pop()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private addTestCase(result: TestSuiteResult[], suitePath: TestSuite[], testCase: TestCase): void {
|
|
||||||
// The last suite in the suite path is the "group".
|
|
||||||
// The rest are concatenated together to form the "suite".
|
|
||||||
// But ignore "Theory" suites.
|
|
||||||
const suitesWithoutTheories = suitePath.filter(suite => suite.$.type !== 'Theory')
|
|
||||||
const suiteName = suitesWithoutTheories
|
|
||||||
.slice(0, suitesWithoutTheories.length - 1)
|
|
||||||
.map(suite => suite.$.name)
|
|
||||||
.join('.')
|
|
||||||
const groupName = suitesWithoutTheories[suitesWithoutTheories.length - 1].$.name
|
|
||||||
|
|
||||||
let existingSuite = result.find(existingSuite => existingSuite.name === suiteName)
|
|
||||||
if (existingSuite === undefined) {
|
|
||||||
existingSuite = new TestSuiteResult(suiteName, [])
|
|
||||||
result.push(existingSuite)
|
|
||||||
}
|
|
||||||
|
|
||||||
let existingGroup = existingSuite.groups.find(existingGroup => existingGroup.name === groupName)
|
|
||||||
if (existingGroup === undefined) {
|
|
||||||
existingGroup = new TestGroupResult(groupName, [])
|
|
||||||
existingSuite.groups.push(existingGroup)
|
|
||||||
}
|
|
||||||
|
|
||||||
existingGroup.tests.push(
|
|
||||||
new TestCaseResult(
|
|
||||||
testCase.$.name,
|
|
||||||
this.getTestExecutionResult(testCase),
|
|
||||||
parseFloat(testCase.$.duration) * 1000,
|
|
||||||
this.getTestCaseError(testCase)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTestExecutionResult(test: TestCase): TestExecutionResult {
|
|
||||||
if (test.$.result === 'Failed' || test.failure) return 'failed'
|
|
||||||
if (test.$.result === 'Skipped') return 'skipped'
|
|
||||||
return 'success'
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTestCaseError(tc: TestCase): TestCaseError | undefined {
|
|
||||||
if (!this.options.parseErrors || !tc.failure || tc.failure.length === 0) {
|
|
||||||
return undefined
|
|
||||||
}
|
|
||||||
|
|
||||||
const details = tc.failure[0]
|
|
||||||
let path
|
|
||||||
let line
|
|
||||||
|
|
||||||
if (details['stack-trace'] !== undefined && details['stack-trace'].length > 0) {
|
|
||||||
const src = getExceptionSource(details['stack-trace'][0], this.options.trackedFiles, file =>
|
|
||||||
this.getRelativePath(file)
|
|
||||||
)
|
|
||||||
if (src) {
|
|
||||||
path = src.path
|
|
||||||
line = src.line
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
path,
|
|
||||||
line,
|
|
||||||
message: details.message && details.message.length > 0 ? details.message[0] : '',
|
|
||||||
details: details['stack-trace'] && details['stack-trace'].length > 0 ? details['stack-trace'][0] : ''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private getRelativePath(path: string): string {
|
|
||||||
path = normalizeFilePath(path)
|
|
||||||
const workDir = this.getWorkDir(path)
|
|
||||||
if (workDir !== undefined && path.startsWith(workDir)) {
|
|
||||||
path = path.substr(workDir.length)
|
|
||||||
}
|
|
||||||
return path
|
|
||||||
}
|
|
||||||
|
|
||||||
private getWorkDir(path: string): string | undefined {
|
|
||||||
return (
|
|
||||||
this.options.workDir ??
|
|
||||||
this.assumedWorkDir ??
|
|
||||||
(this.assumedWorkDir = getBasePath(path, this.options.trackedFiles))
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
export interface NunitReport {
|
|
||||||
'test-run': TestRun
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TestRun {
|
|
||||||
$: {
|
|
||||||
id: string
|
|
||||||
runstate: string
|
|
||||||
testcasecount: string
|
|
||||||
result: string
|
|
||||||
total: string
|
|
||||||
passed: string
|
|
||||||
failed: string
|
|
||||||
inconclusive: string
|
|
||||||
skipped: string
|
|
||||||
asserts: string
|
|
||||||
'engine-version': string
|
|
||||||
'clr-version': string
|
|
||||||
'start-time': string
|
|
||||||
'end-time': string
|
|
||||||
duration: string
|
|
||||||
}
|
|
||||||
'test-suite'?: TestSuite[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TestSuite {
|
|
||||||
$: {
|
|
||||||
name: string
|
|
||||||
type: string
|
|
||||||
}
|
|
||||||
'test-case'?: TestCase[]
|
|
||||||
'test-suite'?: TestSuite[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TestCase {
|
|
||||||
$: {
|
|
||||||
id: string
|
|
||||||
name: string
|
|
||||||
fullname: string
|
|
||||||
methodname: string
|
|
||||||
classname: string
|
|
||||||
runstate: string
|
|
||||||
seed: string
|
|
||||||
result: string
|
|
||||||
label: string
|
|
||||||
'start-time': string
|
|
||||||
'end-time': string
|
|
||||||
duration: string
|
|
||||||
asserts: string
|
|
||||||
}
|
|
||||||
failure?: TestFailure[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface TestFailure {
|
|
||||||
message?: string[]
|
|
||||||
'stack-trace'?: string[]
|
|
||||||
}
|
|
||||||
@@ -62,8 +62,7 @@ export class DotnetTrxParser implements TestParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private getTestClasses(trx: TrxReport): TestClass[] {
|
private getTestClasses(trx: TrxReport): TestClass[] {
|
||||||
if (trx.TestRun.TestDefinitions === undefined || trx.TestRun.Results === undefined ||
|
if (trx.TestRun.TestDefinitions === undefined || trx.TestRun.Results === undefined) {
|
||||||
!trx.TestRun.TestDefinitions.some(td => td.UnitTest && Array.isArray(td.UnitTest))) {
|
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -146,8 +145,8 @@ export class DotnetTrxParser implements TestParser {
|
|||||||
return undefined
|
return undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const message = test.error.Message[0]
|
||||||
const stackTrace = test.error.StackTrace[0]
|
const stackTrace = test.error.StackTrace[0]
|
||||||
const message = `${test.error.Message[0]}\n${stackTrace}`
|
|
||||||
let path
|
let path
|
||||||
let line
|
let line
|
||||||
|
|
||||||
@@ -161,7 +160,7 @@ export class DotnetTrxParser implements TestParser {
|
|||||||
path,
|
path,
|
||||||
line,
|
line,
|
||||||
message,
|
message,
|
||||||
details: `${message}`
|
details: `${message}\n${stackTrace}`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,115 +0,0 @@
|
|||||||
import { ParseOptions, TestParser } from '../../test-parser'
|
|
||||||
|
|
||||||
import { GoTestEvent } from './golang-json-types'
|
|
||||||
import { getExceptionSource } from '../../utils/node-utils'
|
|
||||||
import { getBasePath, normalizeFilePath } from '../../utils/path-utils'
|
|
||||||
|
|
||||||
import {
|
|
||||||
TestExecutionResult,
|
|
||||||
TestRunResult,
|
|
||||||
TestSuiteResult,
|
|
||||||
TestGroupResult,
|
|
||||||
TestCaseResult,
|
|
||||||
TestCaseError
|
|
||||||
} from '../../test-results'
|
|
||||||
|
|
||||||
export class GolangJsonParser implements TestParser {
|
|
||||||
assumedWorkDir: string | undefined
|
|
||||||
|
|
||||||
constructor(readonly options: ParseOptions) { }
|
|
||||||
|
|
||||||
async parse(path: string, content: string): Promise<TestRunResult> {
|
|
||||||
const events = await this.getGolangTestEvents(path, content)
|
|
||||||
return this.getTestRunResult(path, events)
|
|
||||||
}
|
|
||||||
|
|
||||||
private async getGolangTestEvents(path: string, content: string): Promise<GoTestEvent[]> {
|
|
||||||
return content.trim().split('\n').map((line, index) => {
|
|
||||||
try {
|
|
||||||
return JSON.parse(line) as GoTestEvent
|
|
||||||
} catch (e) {
|
|
||||||
throw new Error(`Invalid JSON at ${path} line ${index + 1}\n\n${e}`)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTestRunResult(path: string, events: GoTestEvent[]): TestRunResult {
|
|
||||||
const eventGroups = new Map<string, GoTestEvent[]>()
|
|
||||||
for (const event of events) {
|
|
||||||
if (!event.Test) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
const k = `${event.Package}/${event.Test}`
|
|
||||||
let g = eventGroups.get(k)
|
|
||||||
if (!g) {
|
|
||||||
g = []
|
|
||||||
eventGroups.set(k, g)
|
|
||||||
}
|
|
||||||
g.push(event)
|
|
||||||
}
|
|
||||||
|
|
||||||
const suites: TestSuiteResult[] = []
|
|
||||||
|
|
||||||
for (const eventGroup of eventGroups.values()) {
|
|
||||||
const event = eventGroup[0]
|
|
||||||
|
|
||||||
let suite = suites.find(s => s.name === event.Package)
|
|
||||||
if (!suite) {
|
|
||||||
suite = new TestSuiteResult(event.Package, [])
|
|
||||||
suites.push(suite)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!event.Test) {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
let groupName: string | null
|
|
||||||
let rest: string[]
|
|
||||||
[groupName, ...rest] = event.Test.split('/')
|
|
||||||
let testName = rest.join('/')
|
|
||||||
if (!testName) {
|
|
||||||
testName = groupName
|
|
||||||
groupName = null
|
|
||||||
}
|
|
||||||
|
|
||||||
let group = suite.groups.find(g => g.name === groupName)
|
|
||||||
if (!group) {
|
|
||||||
group = new TestGroupResult(groupName, [])
|
|
||||||
suite.groups.push(group)
|
|
||||||
}
|
|
||||||
|
|
||||||
const lastEvent = eventGroup.at(-1)!
|
|
||||||
|
|
||||||
const result: TestExecutionResult = lastEvent.Action === 'pass' ? 'success'
|
|
||||||
: lastEvent.Action === 'skip' ? 'skipped'
|
|
||||||
: 'failed'
|
|
||||||
if (lastEvent.Elapsed === undefined) {
|
|
||||||
throw new Error('missing elapsed on final test event')
|
|
||||||
}
|
|
||||||
const time: number = lastEvent.Elapsed * 1000
|
|
||||||
|
|
||||||
let error: TestCaseError | undefined = undefined
|
|
||||||
if (result !== 'success') {
|
|
||||||
const outputEvents = eventGroup
|
|
||||||
.filter(e => e.Action === 'output')
|
|
||||||
.map(e => e.Output ?? '')
|
|
||||||
// Go output prepends indentation to help group tests - remove it
|
|
||||||
.map(o => o.replace(/^ /, ''))
|
|
||||||
|
|
||||||
// First and last lines will be generic "test started" and "test finished" lines - remove them
|
|
||||||
outputEvents.splice(0, 1)
|
|
||||||
outputEvents.splice(-1, 1)
|
|
||||||
|
|
||||||
const details = outputEvents.join('')
|
|
||||||
error = {
|
|
||||||
message: details,
|
|
||||||
details: details
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
group.tests.push(new TestCaseResult(testName, result, time, error))
|
|
||||||
}
|
|
||||||
|
|
||||||
return new TestRunResult(path, suites)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
export type GoTestAction = 'start'
|
|
||||||
| 'run'
|
|
||||||
| 'pause'
|
|
||||||
| 'cont'
|
|
||||||
| 'pass'
|
|
||||||
| 'bench'
|
|
||||||
| 'fail'
|
|
||||||
| 'output'
|
|
||||||
| 'skip'
|
|
||||||
|
|
||||||
export type GoTestEvent = {
|
|
||||||
Time: string
|
|
||||||
Action: GoTestAction
|
|
||||||
Package: string
|
|
||||||
Test?: string
|
|
||||||
Elapsed?: number
|
|
||||||
Output?: string
|
|
||||||
FailedBuild?: string
|
|
||||||
}
|
|
||||||
@@ -137,18 +137,11 @@ export class JavaJunitParser implements TestParser {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let message
|
|
||||||
if (typeof failure === 'object') {
|
|
||||||
message = failure.$.message
|
|
||||||
if (failure.$?.type) {
|
|
||||||
message = failure.$.type + ': ' + message
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
path: filePath,
|
path: filePath,
|
||||||
line,
|
line,
|
||||||
details,
|
details,
|
||||||
message
|
message: typeof failure === 'object' ? failure.message : undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -40,8 +40,6 @@ export interface TestCase {
|
|||||||
|
|
||||||
export interface Failure {
|
export interface Failure {
|
||||||
_: string
|
_: string
|
||||||
$: {
|
type: string
|
||||||
type?: string
|
message: string
|
||||||
message: string
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ export class JestJunitParser implements TestParser {
|
|||||||
return sr
|
return sr
|
||||||
})
|
})
|
||||||
|
|
||||||
const time = junit.testsuites.$ && parseFloat(junit.testsuites.$.time) * 1000
|
const time = parseFloat(junit.testsuites.$.time) * 1000
|
||||||
return new TestRunResult(path, suites, time)
|
return new TestRunResult(path, suites, time)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,7 +85,7 @@ export class JestJunitParser implements TestParser {
|
|||||||
return undefined
|
return undefined
|
||||||
}
|
}
|
||||||
|
|
||||||
const details = typeof tc.failure[0] === 'string' ? tc.failure[0] : tc.failure[0]['_']
|
const details = tc.failure[0]
|
||||||
let path
|
let path
|
||||||
let line
|
let line
|
||||||
|
|
||||||
|
|||||||
@@ -1,112 +0,0 @@
|
|||||||
import {ParseOptions, TestParser} from '../../test-parser'
|
|
||||||
import {
|
|
||||||
TestCaseError,
|
|
||||||
TestCaseResult,
|
|
||||||
TestExecutionResult,
|
|
||||||
TestGroupResult,
|
|
||||||
TestRunResult,
|
|
||||||
TestSuiteResult
|
|
||||||
} from '../../test-results'
|
|
||||||
import {RspecJson, RspecExample} from './rspec-json-types'
|
|
||||||
|
|
||||||
export class RspecJsonParser implements TestParser {
|
|
||||||
assumedWorkDir: string | undefined
|
|
||||||
|
|
||||||
constructor(readonly options: ParseOptions) {}
|
|
||||||
|
|
||||||
async parse(path: string, content: string): Promise<TestRunResult> {
|
|
||||||
const mocha = this.getRspecJson(path, content)
|
|
||||||
const result = this.getTestRunResult(path, mocha)
|
|
||||||
result.sort(true)
|
|
||||||
return Promise.resolve(result)
|
|
||||||
}
|
|
||||||
|
|
||||||
private getRspecJson(path: string, content: string): RspecJson {
|
|
||||||
try {
|
|
||||||
return JSON.parse(content)
|
|
||||||
} catch (e) {
|
|
||||||
throw new Error(`Invalid JSON at ${path}\n\n${e}`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTestRunResult(resultsPath: string, rspec: RspecJson): TestRunResult {
|
|
||||||
const suitesMap: {[path: string]: TestSuiteResult} = {}
|
|
||||||
|
|
||||||
const getSuite = (test: RspecExample): TestSuiteResult => {
|
|
||||||
const path = test.file_path
|
|
||||||
return suitesMap[path] ?? (suitesMap[path] = new TestSuiteResult(path, []))
|
|
||||||
}
|
|
||||||
|
|
||||||
for (const test of rspec.examples) {
|
|
||||||
const suite = getSuite(test)
|
|
||||||
if (test.status === 'failed') {
|
|
||||||
this.processTest(suite, test, 'failed')
|
|
||||||
} else if (test.status === 'passed') {
|
|
||||||
this.processTest(suite, test, 'success')
|
|
||||||
} else if (test.status === 'pending') {
|
|
||||||
this.processTest(suite, test, 'skipped')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const suites = Object.values(suitesMap)
|
|
||||||
return new TestRunResult(resultsPath, suites, rspec.summary.duration)
|
|
||||||
}
|
|
||||||
|
|
||||||
private processTest(suite: TestSuiteResult, test: RspecExample, result: TestExecutionResult): void {
|
|
||||||
const groupName =
|
|
||||||
test.full_description !== test.description
|
|
||||||
? test.full_description.substr(0, test.full_description.length - test.description.length).trimEnd()
|
|
||||||
: null
|
|
||||||
|
|
||||||
let group = suite.groups.find(grp => grp.name === groupName)
|
|
||||||
if (group === undefined) {
|
|
||||||
group = new TestGroupResult(groupName, [])
|
|
||||||
suite.groups.push(group)
|
|
||||||
}
|
|
||||||
|
|
||||||
const error = this.getTestCaseError(test)
|
|
||||||
const testCase = new TestCaseResult(test.full_description, result, test.run_time ?? 0, error)
|
|
||||||
group.tests.push(testCase)
|
|
||||||
}
|
|
||||||
|
|
||||||
private getTestCaseError(test: RspecExample): TestCaseError | undefined {
|
|
||||||
const backtrace = test.exception?.backtrace
|
|
||||||
const message = test.exception?.message
|
|
||||||
if (backtrace === undefined) {
|
|
||||||
return undefined
|
|
||||||
}
|
|
||||||
|
|
||||||
let path
|
|
||||||
let line
|
|
||||||
const details = backtrace.join('\n')
|
|
||||||
|
|
||||||
const src = this.getExceptionSource(backtrace)
|
|
||||||
if (src) {
|
|
||||||
path = src.path
|
|
||||||
line = src.line
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
path,
|
|
||||||
line,
|
|
||||||
message,
|
|
||||||
details
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private getExceptionSource(backtrace: string[]): {path: string; line: number} | undefined {
|
|
||||||
const re = /^(.*?):(\d+):/
|
|
||||||
|
|
||||||
for (const str of backtrace) {
|
|
||||||
const match = str.match(re)
|
|
||||||
if (match !== null) {
|
|
||||||
const [_, path, lineStr] = match
|
|
||||||
if (path.startsWith('./')) {
|
|
||||||
const line = parseInt(lineStr)
|
|
||||||
return {path, line}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return undefined
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,34 +0,0 @@
|
|||||||
export interface RspecJson {
|
|
||||||
version: number
|
|
||||||
examples: RspecExample[]
|
|
||||||
summary: RspecSummary
|
|
||||||
summary_line: string
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface RspecExample {
|
|
||||||
id: string
|
|
||||||
description: string
|
|
||||||
full_description: string
|
|
||||||
status: TestStatus
|
|
||||||
file_path: string
|
|
||||||
line_number: number
|
|
||||||
run_time: number
|
|
||||||
pending_message: string | null
|
|
||||||
exception?: RspecException
|
|
||||||
}
|
|
||||||
|
|
||||||
type TestStatus = 'passed' | 'failed' | 'pending'
|
|
||||||
|
|
||||||
export interface RspecException {
|
|
||||||
class: string
|
|
||||||
message: string
|
|
||||||
backtrace: string[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface RspecSummary {
|
|
||||||
duration: number
|
|
||||||
example_count: number
|
|
||||||
failure_count: number
|
|
||||||
pending_count: number
|
|
||||||
errors_outside_of_examples_count: number
|
|
||||||
}
|
|
||||||
@@ -6,29 +6,22 @@ import {getFirstNonEmptyLine} from '../utils/parse-utils'
|
|||||||
import {slug} from '../utils/slugger'
|
import {slug} from '../utils/slugger'
|
||||||
|
|
||||||
const MAX_REPORT_LENGTH = 65535
|
const MAX_REPORT_LENGTH = 65535
|
||||||
const MAX_ACTIONS_SUMMARY_LENGTH = 1048576
|
|
||||||
|
|
||||||
export interface ReportOptions {
|
export interface ReportOptions {
|
||||||
listSuites: 'all' | 'failed' | 'none'
|
listSuites: 'all' | 'failed'
|
||||||
listTests: 'all' | 'failed' | 'none'
|
listTests: 'all' | 'failed' | 'none'
|
||||||
baseUrl: string
|
baseUrl: string
|
||||||
onlySummary: boolean
|
onlySummary: boolean
|
||||||
useActionsSummary: boolean
|
|
||||||
badgeTitle: string
|
|
||||||
reportTitle: string
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DEFAULT_OPTIONS: ReportOptions = {
|
const defaultOptions: ReportOptions = {
|
||||||
listSuites: 'all',
|
listSuites: 'all',
|
||||||
listTests: 'all',
|
listTests: 'all',
|
||||||
baseUrl: '',
|
baseUrl: '',
|
||||||
onlySummary: false,
|
onlySummary: false
|
||||||
useActionsSummary: true,
|
|
||||||
badgeTitle: 'tests',
|
|
||||||
reportTitle: ''
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getReport(results: TestRunResult[], options: ReportOptions = DEFAULT_OPTIONS): string {
|
export function getReport(results: TestRunResult[], options: ReportOptions = defaultOptions): string {
|
||||||
core.info('Generating check run summary')
|
core.info('Generating check run summary')
|
||||||
|
|
||||||
applySort(results)
|
applySort(results)
|
||||||
@@ -37,7 +30,7 @@ export function getReport(results: TestRunResult[], options: ReportOptions = DEF
|
|||||||
let lines = renderReport(results, opts)
|
let lines = renderReport(results, opts)
|
||||||
let report = lines.join('\n')
|
let report = lines.join('\n')
|
||||||
|
|
||||||
if (getByteLength(report) <= getMaxReportLength(options)) {
|
if (getByteLength(report) <= MAX_REPORT_LENGTH) {
|
||||||
return report
|
return report
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -46,24 +39,20 @@ export function getReport(results: TestRunResult[], options: ReportOptions = DEF
|
|||||||
opts.listTests = 'failed'
|
opts.listTests = 'failed'
|
||||||
lines = renderReport(results, opts)
|
lines = renderReport(results, opts)
|
||||||
report = lines.join('\n')
|
report = lines.join('\n')
|
||||||
if (getByteLength(report) <= getMaxReportLength(options)) {
|
if (getByteLength(report) <= MAX_REPORT_LENGTH) {
|
||||||
return report
|
return report
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
core.warning(`Test report summary exceeded limit of ${getMaxReportLength(options)} bytes and will be trimmed`)
|
core.warning(`Test report summary exceeded limit of ${MAX_REPORT_LENGTH} bytes and will be trimmed`)
|
||||||
return trimReport(lines, options)
|
return trimReport(lines)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getMaxReportLength(options: ReportOptions = DEFAULT_OPTIONS): number {
|
function trimReport(lines: string[]): string {
|
||||||
return options.useActionsSummary ? MAX_ACTIONS_SUMMARY_LENGTH : MAX_REPORT_LENGTH
|
|
||||||
}
|
|
||||||
|
|
||||||
function trimReport(lines: string[], options: ReportOptions): string {
|
|
||||||
const closingBlock = '```'
|
const closingBlock = '```'
|
||||||
const errorMsg = `**Report exceeded GitHub limit of ${getMaxReportLength(options)} bytes and has been trimmed**`
|
const errorMsg = `**Report exceeded GitHub limit of ${MAX_REPORT_LENGTH} bytes and has been trimmed**`
|
||||||
const maxErrorMsgLength = closingBlock.length + errorMsg.length + 2
|
const maxErrorMsgLength = closingBlock.length + errorMsg.length + 2
|
||||||
const maxReportLength = getMaxReportLength(options) - maxErrorMsgLength
|
const maxReportLength = MAX_REPORT_LENGTH - maxErrorMsgLength
|
||||||
|
|
||||||
let reportLength = 0
|
let reportLength = 0
|
||||||
let codeBlock = false
|
let codeBlock = false
|
||||||
@@ -103,13 +92,7 @@ function getByteLength(text: string): number {
|
|||||||
|
|
||||||
function renderReport(results: TestRunResult[], options: ReportOptions): string[] {
|
function renderReport(results: TestRunResult[], options: ReportOptions): string[] {
|
||||||
const sections: string[] = []
|
const sections: string[] = []
|
||||||
|
const badge = getReportBadge(results)
|
||||||
const reportTitle: string = options.reportTitle.trim()
|
|
||||||
if (reportTitle) {
|
|
||||||
sections.push(`# ${reportTitle}`)
|
|
||||||
}
|
|
||||||
|
|
||||||
const badge = getReportBadge(results, options)
|
|
||||||
sections.push(badge)
|
sections.push(badge)
|
||||||
|
|
||||||
const runs = getTestRunsReport(results, options)
|
const runs = getTestRunsReport(results, options)
|
||||||
@@ -118,14 +101,14 @@ function renderReport(results: TestRunResult[], options: ReportOptions): string[
|
|||||||
return sections
|
return sections
|
||||||
}
|
}
|
||||||
|
|
||||||
function getReportBadge(results: TestRunResult[], options: ReportOptions): string {
|
function getReportBadge(results: TestRunResult[]): string {
|
||||||
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
||||||
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
||||||
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
|
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
|
||||||
return getBadge(passed, failed, skipped, options)
|
return getBadge(passed, failed, skipped)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getBadge(passed: number, failed: number, skipped: number, options: ReportOptions): string {
|
function getBadge(passed: number, failed: number, skipped: number): string {
|
||||||
const text = []
|
const text = []
|
||||||
if (passed > 0) {
|
if (passed > 0) {
|
||||||
text.push(`${passed} passed`)
|
text.push(`${passed} passed`)
|
||||||
@@ -145,32 +128,24 @@ function getBadge(passed: number, failed: number, skipped: number, options: Repo
|
|||||||
color = 'yellow'
|
color = 'yellow'
|
||||||
}
|
}
|
||||||
const hint = failed > 0 ? 'Tests failed' : 'Tests passed successfully'
|
const hint = failed > 0 ? 'Tests failed' : 'Tests passed successfully'
|
||||||
const uri = encodeURIComponent(`${options.badgeTitle}-${message}-${color}`)
|
const uri = encodeURIComponent(`tests-${message}-${color}`)
|
||||||
return ``
|
return ``
|
||||||
}
|
}
|
||||||
|
|
||||||
function getTestRunsReport(testRuns: TestRunResult[], options: ReportOptions): string[] {
|
function getTestRunsReport(testRuns: TestRunResult[], options: ReportOptions): string[] {
|
||||||
const sections: string[] = []
|
const sections: string[] = []
|
||||||
const totalFailed = testRuns.reduce((sum, tr) => sum + tr.failed, 0)
|
|
||||||
if (totalFailed === 0) {
|
|
||||||
sections.push(`<details><summary>Expand for details</summary>`)
|
|
||||||
sections.push(` `)
|
|
||||||
}
|
|
||||||
|
|
||||||
if (testRuns.length > 0 || options.onlySummary) {
|
if (testRuns.length > 1 || options.onlySummary) {
|
||||||
const tableData = testRuns
|
const tableData = testRuns.map((tr, runIndex) => {
|
||||||
.map((tr, originalIndex) => ({tr, originalIndex}))
|
const time = formatTime(tr.time)
|
||||||
.filter(({tr}) => tr.passed > 0 || tr.failed > 0 || tr.skipped > 0)
|
const name = tr.path
|
||||||
.map(({tr, originalIndex}) => {
|
const addr = options.baseUrl + makeRunSlug(runIndex).link
|
||||||
const time = formatTime(tr.time)
|
const nameLink = link(name, addr)
|
||||||
const name = tr.path
|
const passed = tr.passed > 0 ? `${tr.passed}${Icon.success}` : ''
|
||||||
const addr = options.baseUrl + makeRunSlug(originalIndex, options).link
|
const failed = tr.failed > 0 ? `${tr.failed}${Icon.fail}` : ''
|
||||||
const nameLink = link(name, addr)
|
const skipped = tr.skipped > 0 ? `${tr.skipped}${Icon.skip}` : ''
|
||||||
const passed = tr.passed > 0 ? `${tr.passed} ${Icon.success}` : ''
|
return [nameLink, passed, failed, skipped, time]
|
||||||
const failed = tr.failed > 0 ? `${tr.failed} ${Icon.fail}` : ''
|
})
|
||||||
const skipped = tr.skipped > 0 ? `${tr.skipped} ${Icon.skip}` : ''
|
|
||||||
return [nameLink, passed, failed, skipped, time]
|
|
||||||
})
|
|
||||||
|
|
||||||
const resultsTable = table(
|
const resultsTable = table(
|
||||||
['Report', 'Passed', 'Failed', 'Skipped', 'Time'],
|
['Report', 'Passed', 'Failed', 'Skipped', 'Time'],
|
||||||
@@ -184,48 +159,42 @@ function getTestRunsReport(testRuns: TestRunResult[], options: ReportOptions): s
|
|||||||
const suitesReports = testRuns.map((tr, i) => getSuitesReport(tr, i, options)).flat()
|
const suitesReports = testRuns.map((tr, i) => getSuitesReport(tr, i, options)).flat()
|
||||||
sections.push(...suitesReports)
|
sections.push(...suitesReports)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (totalFailed === 0) {
|
|
||||||
sections.push(`</details>`)
|
|
||||||
}
|
|
||||||
return sections
|
return sections
|
||||||
}
|
}
|
||||||
|
|
||||||
function getSuitesReport(tr: TestRunResult, runIndex: number, options: ReportOptions): string[] {
|
function getSuitesReport(tr: TestRunResult, runIndex: number, options: ReportOptions): string[] {
|
||||||
const sections: string[] = []
|
const sections: string[] = []
|
||||||
|
|
||||||
|
const trSlug = makeRunSlug(runIndex)
|
||||||
|
const nameLink = `<a id="${trSlug.id}" href="${options.baseUrl + trSlug.link}">${tr.path}</a>`
|
||||||
|
const icon = getResultIcon(tr.result)
|
||||||
|
sections.push(`## ${icon}\xa0${nameLink}`)
|
||||||
|
|
||||||
|
const time = formatTime(tr.time)
|
||||||
|
const headingLine2 =
|
||||||
|
tr.tests > 0
|
||||||
|
? `**${tr.tests}** tests were completed in **${time}** with **${tr.passed}** passed, **${tr.failed}** failed and **${tr.skipped}** skipped.`
|
||||||
|
: 'No tests found'
|
||||||
|
sections.push(headingLine2)
|
||||||
|
|
||||||
const suites = options.listSuites === 'failed' ? tr.failedSuites : tr.suites
|
const suites = options.listSuites === 'failed' ? tr.failedSuites : tr.suites
|
||||||
|
if (suites.length > 0) {
|
||||||
if (options.listSuites !== 'none') {
|
const suitesTable = table(
|
||||||
const trSlug = makeRunSlug(runIndex, options)
|
['Test suite', 'Passed', 'Failed', 'Skipped', 'Time'],
|
||||||
const nameLink = `<a id="${trSlug.id}" href="${options.baseUrl + trSlug.link}">${tr.path}</a>`
|
[Align.Left, Align.Right, Align.Right, Align.Right, Align.Right],
|
||||||
const icon = getResultIcon(tr.result)
|
...suites.map((s, suiteIndex) => {
|
||||||
sections.push(`## ${icon}\xa0${nameLink}`)
|
const tsTime = formatTime(s.time)
|
||||||
|
const tsName = s.name
|
||||||
const time = formatTime(tr.time)
|
const skipLink = options.listTests === 'none' || (options.listTests === 'failed' && s.result !== 'failed')
|
||||||
const headingLine2 =
|
const tsAddr = options.baseUrl + makeSuiteSlug(runIndex, suiteIndex).link
|
||||||
tr.tests > 0
|
const tsNameLink = skipLink ? tsName : link(tsName, tsAddr)
|
||||||
? `**${tr.tests}** tests were completed in **${time}** with **${tr.passed}** passed, **${tr.failed}** failed and **${tr.skipped}** skipped.`
|
const passed = s.passed > 0 ? `${s.passed}${Icon.success}` : ''
|
||||||
: 'No tests found'
|
const failed = s.failed > 0 ? `${s.failed}${Icon.fail}` : ''
|
||||||
sections.push(headingLine2)
|
const skipped = s.skipped > 0 ? `${s.skipped}${Icon.skip}` : ''
|
||||||
|
return [tsNameLink, passed, failed, skipped, tsTime]
|
||||||
if (suites.length > 0) {
|
})
|
||||||
const suitesTable = table(
|
)
|
||||||
['Test suite', 'Passed', 'Failed', 'Skipped', 'Time'],
|
sections.push(suitesTable)
|
||||||
[Align.Left, Align.Right, Align.Right, Align.Right, Align.Right],
|
|
||||||
...suites.map((s, suiteIndex) => {
|
|
||||||
const tsTime = formatTime(s.time)
|
|
||||||
const tsName = s.name
|
|
||||||
const skipLink = options.listTests === 'none' || (options.listTests === 'failed' && s.result !== 'failed')
|
|
||||||
const tsAddr = options.baseUrl + makeSuiteSlug(runIndex, suiteIndex, options).link
|
|
||||||
const tsNameLink = skipLink ? tsName : link(tsName, tsAddr)
|
|
||||||
const passed = s.passed > 0 ? `${s.passed} ${Icon.success}` : ''
|
|
||||||
const failed = s.failed > 0 ? `${s.failed} ${Icon.fail}` : ''
|
|
||||||
const skipped = s.skipped > 0 ? `${s.skipped} ${Icon.skip}` : ''
|
|
||||||
return [tsNameLink, passed, failed, skipped, tsTime]
|
|
||||||
})
|
|
||||||
)
|
|
||||||
sections.push(suitesTable)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.listTests !== 'none') {
|
if (options.listTests !== 'none') {
|
||||||
@@ -251,7 +220,7 @@ function getTestsReport(ts: TestSuiteResult, runIndex: number, suiteIndex: numbe
|
|||||||
const sections: string[] = []
|
const sections: string[] = []
|
||||||
|
|
||||||
const tsName = ts.name
|
const tsName = ts.name
|
||||||
const tsSlug = makeSuiteSlug(runIndex, suiteIndex, options)
|
const tsSlug = makeSuiteSlug(runIndex, suiteIndex)
|
||||||
const tsNameLink = `<a id="${tsSlug.id}" href="${options.baseUrl + tsSlug.link}">${tsName}</a>`
|
const tsNameLink = `<a id="${tsSlug.id}" href="${options.baseUrl + tsSlug.link}">${tsName}</a>`
|
||||||
const icon = getResultIcon(ts.result)
|
const icon = getResultIcon(ts.result)
|
||||||
sections.push(`### ${icon}\xa0${tsNameLink}`)
|
sections.push(`### ${icon}\xa0${tsNameLink}`)
|
||||||
@@ -263,9 +232,6 @@ function getTestsReport(ts: TestSuiteResult, runIndex: number, suiteIndex: numbe
|
|||||||
}
|
}
|
||||||
const space = grp.name ? ' ' : ''
|
const space = grp.name ? ' ' : ''
|
||||||
for (const tc of grp.tests) {
|
for (const tc of grp.tests) {
|
||||||
if (options.listTests === 'failed' && tc.result !== 'failed') {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
const result = getResultIcon(tc.result)
|
const result = getResultIcon(tc.result)
|
||||||
sections.push(`${space}${result} ${tc.name}`)
|
sections.push(`${space}${result} ${tc.name}`)
|
||||||
if (tc.error) {
|
if (tc.error) {
|
||||||
@@ -283,14 +249,14 @@ function getTestsReport(ts: TestSuiteResult, runIndex: number, suiteIndex: numbe
|
|||||||
return sections
|
return sections
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeRunSlug(runIndex: number, options: ReportOptions): {id: string; link: string} {
|
function makeRunSlug(runIndex: number): {id: string; link: string} {
|
||||||
// use prefix to avoid slug conflicts after escaping the paths
|
// use prefix to avoid slug conflicts after escaping the paths
|
||||||
return slug(`r${runIndex}`, options)
|
return slug(`r${runIndex}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeSuiteSlug(runIndex: number, suiteIndex: number, options: ReportOptions): {id: string; link: string} {
|
function makeSuiteSlug(runIndex: number, suiteIndex: number): {id: string; link: string} {
|
||||||
// use prefix to avoid slug conflicts after escaping the paths
|
// use prefix to avoid slug conflicts after escaping the paths
|
||||||
return slug(`r${runIndex}s${suiteIndex}`, options)
|
return slug(`r${runIndex}s${suiteIndex}`)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getResultIcon(result: TestExecutionResult): string {
|
function getResultIcon(result: TestExecutionResult): string {
|
||||||
|
|||||||
@@ -2,17 +2,16 @@ import {createWriteStream} from 'fs'
|
|||||||
import * as core from '@actions/core'
|
import * as core from '@actions/core'
|
||||||
import * as github from '@actions/github'
|
import * as github from '@actions/github'
|
||||||
import {GitHub} from '@actions/github/lib/utils'
|
import {GitHub} from '@actions/github/lib/utils'
|
||||||
import type {PullRequest, WorkflowRunEvent} from '@octokit/webhooks-types'
|
import type {PullRequest} from '@octokit/webhooks-types'
|
||||||
import {IncomingMessage} from 'http'
|
|
||||||
import * as stream from 'stream'
|
import * as stream from 'stream'
|
||||||
import {promisify} from 'util'
|
import {promisify} from 'util'
|
||||||
import got, {Progress} from 'got'
|
import got from 'got'
|
||||||
const asyncStream = promisify(stream.pipeline)
|
const asyncStream = promisify(stream.pipeline)
|
||||||
|
|
||||||
export function getCheckRunContext(): {sha: string; runId: number} {
|
export function getCheckRunContext(): {sha: string; runId: number} {
|
||||||
if (github.context.eventName === 'workflow_run') {
|
if (github.context.eventName === 'workflow_run') {
|
||||||
core.info('Action was triggered by workflow_run: using SHA and RUN_ID from triggering workflow')
|
core.info('Action was triggered by workflow_run: using SHA and RUN_ID from triggering workflow')
|
||||||
const event = github.context.payload as WorkflowRunEvent
|
const event = github.context.payload
|
||||||
if (!event.workflow_run) {
|
if (!event.workflow_run) {
|
||||||
throw new Error("Event of type 'workflow_run' is missing 'workflow_run' field")
|
throw new Error("Event of type 'workflow_run' is missing 'workflow_run' field")
|
||||||
}
|
}
|
||||||
@@ -51,17 +50,33 @@ export async function downloadArtifact(
|
|||||||
const headers = {
|
const headers = {
|
||||||
Authorization: `Bearer ${token}`
|
Authorization: `Bearer ${token}`
|
||||||
}
|
}
|
||||||
|
const resp = await got(req.url, {
|
||||||
|
headers,
|
||||||
|
followRedirect: false
|
||||||
|
})
|
||||||
|
|
||||||
const downloadStream = got.stream(req.url, {headers})
|
core.info(`Fetch artifact URL: ${resp.statusCode} ${resp.statusMessage}`)
|
||||||
|
if (resp.statusCode !== 302) {
|
||||||
|
throw new Error('Fetch artifact URL failed: received unexpected status code')
|
||||||
|
}
|
||||||
|
|
||||||
|
const url = resp.headers.location
|
||||||
|
if (url === undefined) {
|
||||||
|
const receivedHeaders = Object.keys(resp.headers)
|
||||||
|
core.info(`Received headers: ${receivedHeaders.join(', ')}`)
|
||||||
|
throw new Error('Location header was not found in API response')
|
||||||
|
}
|
||||||
|
if (typeof url !== 'string') {
|
||||||
|
throw new Error(`Location header has unexpected value: ${url}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const downloadStream = got.stream(url, {headers})
|
||||||
const fileWriterStream = createWriteStream(fileName)
|
const fileWriterStream = createWriteStream(fileName)
|
||||||
|
|
||||||
downloadStream.on('redirect', (response: IncomingMessage) => {
|
core.info(`Downloading ${url}`)
|
||||||
core.info(`Downloading ${response.headers.location}`)
|
downloadStream.on('downloadProgress', ({transferred}) => {
|
||||||
|
core.info(`Progress: ${transferred} B`)
|
||||||
})
|
})
|
||||||
downloadStream.on('downloadProgress', (progress: Progress) => {
|
|
||||||
core.info(`Progress: ${progress.transferred} B`)
|
|
||||||
})
|
|
||||||
|
|
||||||
await asyncStream(downloadStream, fileWriterStream)
|
await asyncStream(downloadStream, fileWriterStream)
|
||||||
} finally {
|
} finally {
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
// Returns HTML element id and href link usable as manual anchor links
|
// Returns HTML element id and href link usable as manual anchor links
|
||||||
// This is needed because Github in check run summary doesn't automatically
|
// This is needed because Github in check run summary doesn't automatically
|
||||||
// create links out of headings as it normally does for other markdown content
|
// create links out of headings as it normally does for other markdown content
|
||||||
import {ReportOptions} from '../report/get-report'
|
export function slug(name: string): {id: string; link: string} {
|
||||||
|
|
||||||
export function slug(name: string, options: ReportOptions): {id: string; link: string} {
|
|
||||||
const slugId = name
|
const slugId = name
|
||||||
.trim()
|
.trim()
|
||||||
.replace(/_/g, '')
|
.replace(/_/g, '')
|
||||||
@@ -11,7 +9,6 @@ export function slug(name: string, options: ReportOptions): {id: string; link: s
|
|||||||
.replace(/[^\w-]/g, '')
|
.replace(/[^\w-]/g, '')
|
||||||
|
|
||||||
const id = `user-content-${slugId}`
|
const id = `user-content-${slugId}`
|
||||||
// When using the Action Summary for display, links must include the "user-content-" prefix.
|
const link = `#${slugId}`
|
||||||
const link = options.useActionsSummary ? `#${id}` : `#${slugId}`
|
|
||||||
return {id, link}
|
return {id, link}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,12 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"lib": ["es2023"],
|
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
|
||||||
"module": "node16",
|
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
||||||
"target": "es2022",
|
"outDir": "./lib", /* Redirect output structure to the directory. */
|
||||||
|
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
||||||
"strict": true,
|
"strict": true, /* Enable all strict type-checking options. */
|
||||||
"esModuleInterop": true,
|
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
|
||||||
"skipLibCheck": true,
|
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
|
||||||
"moduleResolution": "node16",
|
|
||||||
"isolatedModules": true,
|
|
||||||
|
|
||||||
"outDir": "./lib",
|
|
||||||
"rootDir": "./src",
|
|
||||||
},
|
},
|
||||||
"exclude": ["node_modules", "**/*.test.ts"]
|
"exclude": ["node_modules", "**/*.test.ts"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user