mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-02 03:15:22 -08:00
Compare commits
1 Commits
v2
...
dotnet-nun
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e6a3c0ca2e |
@@ -1,4 +1,3 @@
|
|||||||
dist/
|
dist/
|
||||||
lib/
|
lib/
|
||||||
node_modules/
|
node_modules/
|
||||||
jest.config.js
|
|
||||||
117
.eslintrc.json
117
.eslintrc.json
@@ -1,68 +1,57 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["import", "jest", "@typescript-eslint"],
|
"plugins": ["jest", "@typescript-eslint"],
|
||||||
"extends": ["plugin:github/recommended"],
|
"extends": ["plugin:github/recommended"],
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"ecmaVersion": 9,
|
"ecmaVersion": 9,
|
||||||
"sourceType": "module",
|
"sourceType": "module",
|
||||||
"project": "./tsconfig.json"
|
"project": "./tsconfig.json"
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
"i18n-text/no-en": "off",
|
|
||||||
"eslint-comments/no-use": "off",
|
|
||||||
"import/no-namespace": "off",
|
|
||||||
"import/no-named-as-default": "off",
|
|
||||||
"no-shadow": "off",
|
|
||||||
"no-unused-vars": "off",
|
|
||||||
"prefer-template": "off",
|
|
||||||
"@typescript-eslint/no-unused-vars": ["error", {"varsIgnorePattern": "^_"}],
|
|
||||||
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
|
|
||||||
"@typescript-eslint/no-require-imports": "error",
|
|
||||||
"@typescript-eslint/array-type": "error",
|
|
||||||
"@typescript-eslint/await-thenable": "error",
|
|
||||||
"@typescript-eslint/ban-ts-comment": "error",
|
|
||||||
"camelcase": "off",
|
|
||||||
"@typescript-eslint/consistent-type-assertions": "error",
|
|
||||||
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
|
|
||||||
"@typescript-eslint/func-call-spacing": ["error", "never"],
|
|
||||||
"@typescript-eslint/no-array-constructor": "error",
|
|
||||||
"@typescript-eslint/no-empty-interface": "error",
|
|
||||||
"@typescript-eslint/no-explicit-any": "error",
|
|
||||||
"@typescript-eslint/no-extraneous-class": "error",
|
|
||||||
"@typescript-eslint/no-for-in-array": "error",
|
|
||||||
"@typescript-eslint/no-inferrable-types": "error",
|
|
||||||
"@typescript-eslint/no-misused-new": "error",
|
|
||||||
"@typescript-eslint/no-namespace": "error",
|
|
||||||
"@typescript-eslint/no-non-null-assertion": "warn",
|
|
||||||
"@typescript-eslint/no-unnecessary-qualifier": "error",
|
|
||||||
"@typescript-eslint/no-unnecessary-type-assertion": "error",
|
|
||||||
"@typescript-eslint/no-useless-constructor": "error",
|
|
||||||
"@typescript-eslint/no-var-requires": "error",
|
|
||||||
"@typescript-eslint/prefer-for-of": "warn",
|
|
||||||
"@typescript-eslint/prefer-function-type": "warn",
|
|
||||||
"@typescript-eslint/prefer-includes": "error",
|
|
||||||
"@typescript-eslint/prefer-string-starts-ends-with": "error",
|
|
||||||
"@typescript-eslint/promise-function-async": "error",
|
|
||||||
"@typescript-eslint/require-array-sort-compare": "error",
|
|
||||||
"@typescript-eslint/restrict-plus-operands": "error",
|
|
||||||
"semi": "off",
|
|
||||||
"@typescript-eslint/semi": ["error", "never"],
|
|
||||||
"@typescript-eslint/type-annotation-spacing": "error",
|
|
||||||
"@typescript-eslint/unbound-method": "error"
|
|
||||||
},
|
|
||||||
"env": {
|
|
||||||
"node": true,
|
|
||||||
"es6": true,
|
|
||||||
"jest/globals": true
|
|
||||||
},
|
|
||||||
"settings": {
|
|
||||||
"import/parsers": {
|
|
||||||
"@typescript-eslint/parser": [".ts", ".tsx"]
|
|
||||||
},
|
},
|
||||||
"import/resolver": {
|
"rules": {
|
||||||
"typescript": {
|
"camelcase": "off",
|
||||||
"alwaysTryTypes": true // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/unist`
|
"eslint-comments/no-use": "off",
|
||||||
}
|
"import/no-namespace": "off",
|
||||||
|
"no-shadow": "off",
|
||||||
|
"no-unused-vars": "off",
|
||||||
|
"prefer-template": "off",
|
||||||
|
"semi": [ "error", "never"],
|
||||||
|
"@typescript-eslint/explicit-member-accessibility": ["error", {"accessibility": "no-public"}],
|
||||||
|
"@typescript-eslint/array-type": "error",
|
||||||
|
"@typescript-eslint/await-thenable": "error",
|
||||||
|
"@typescript-eslint/ban-ts-comment": "error",
|
||||||
|
"@typescript-eslint/consistent-type-assertions": "error",
|
||||||
|
"@typescript-eslint/explicit-function-return-type": ["error", {"allowExpressions": true}],
|
||||||
|
"@typescript-eslint/func-call-spacing": ["error", "never"],
|
||||||
|
"@typescript-eslint/no-array-constructor": "error",
|
||||||
|
"@typescript-eslint/no-empty-interface": "error",
|
||||||
|
"@typescript-eslint/no-explicit-any": "error",
|
||||||
|
"@typescript-eslint/no-extraneous-class": "error",
|
||||||
|
"@typescript-eslint/no-for-in-array": "error",
|
||||||
|
"@typescript-eslint/no-inferrable-types": "error",
|
||||||
|
"@typescript-eslint/no-misused-new": "error",
|
||||||
|
"@typescript-eslint/no-namespace": "error",
|
||||||
|
"@typescript-eslint/no-require-imports": "error",
|
||||||
|
"@typescript-eslint/no-shadow": "error",
|
||||||
|
"@typescript-eslint/no-non-null-assertion": "warn",
|
||||||
|
"@typescript-eslint/no-unnecessary-qualifier": "error",
|
||||||
|
"@typescript-eslint/no-unnecessary-type-assertion": "error",
|
||||||
|
"@typescript-eslint/no-unused-vars": ["error", {"varsIgnorePattern": "^_"}],
|
||||||
|
"@typescript-eslint/no-useless-constructor": "error",
|
||||||
|
"@typescript-eslint/no-var-requires": "error",
|
||||||
|
"@typescript-eslint/prefer-for-of": "warn",
|
||||||
|
"@typescript-eslint/prefer-function-type": "warn",
|
||||||
|
"@typescript-eslint/prefer-includes": "error",
|
||||||
|
"@typescript-eslint/prefer-string-starts-ends-with": "error",
|
||||||
|
"@typescript-eslint/promise-function-async": "error",
|
||||||
|
"@typescript-eslint/require-array-sort-compare": "error",
|
||||||
|
"@typescript-eslint/restrict-plus-operands": "error",
|
||||||
|
"@typescript-eslint/semi": ["error", "never"],
|
||||||
|
"@typescript-eslint/type-annotation-spacing": "error",
|
||||||
|
"@typescript-eslint/unbound-method": "error"
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"node": true,
|
||||||
|
"es6": true,
|
||||||
|
"jest/globals": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
26
.github/ISSUE_TEMPLATE/bug_report.md
vendored
26
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
name: Bug report
|
|
||||||
about: Create a report to help us improve
|
|
||||||
title: ''
|
|
||||||
labels: 'bug'
|
|
||||||
assignees: 'dorny,dharmendrasha'
|
|
||||||
---
|
|
||||||
|
|
||||||
## Describe the bug
|
|
||||||
A clear and concise description of what the bug is.
|
|
||||||
|
|
||||||
## To Reproduce
|
|
||||||
Steps to reproduce the behavior:
|
|
||||||
1. Go to '...'
|
|
||||||
2. Click on '....'
|
|
||||||
3. Scroll down to '....'
|
|
||||||
4. See error
|
|
||||||
|
|
||||||
## Expected behavior
|
|
||||||
A clear and concise description of what you expected to happen.
|
|
||||||
|
|
||||||
## Screenshots
|
|
||||||
If applicable, add screenshots to help explain your problem.
|
|
||||||
|
|
||||||
## Additional context
|
|
||||||
Add any other context about the problem here.
|
|
||||||
13
.github/ISSUE_TEMPLATE/feature.md
vendored
13
.github/ISSUE_TEMPLATE/feature.md
vendored
@@ -1,13 +0,0 @@
|
|||||||
---
|
|
||||||
name: Feature Request
|
|
||||||
about: Suggest a feature
|
|
||||||
title: ''
|
|
||||||
labels: 'enhancement'
|
|
||||||
assignees: 'dorny,dharmendrasha'
|
|
||||||
---
|
|
||||||
|
|
||||||
## Describe
|
|
||||||
|
|
||||||
## Proposed solution
|
|
||||||
|
|
||||||
## Alternatives considered
|
|
||||||
10
.github/dependabot.yml
vendored
10
.github/dependabot.yml
vendored
@@ -1,10 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "npm"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
53
.github/workflows/check-dist.yml
vendored
53
.github/workflows/check-dist.yml
vendored
@@ -1,53 +0,0 @@
|
|||||||
# `dist/index.js` is a special file in Actions.
|
|
||||||
# When you reference an action with `uses:` in a workflow,
|
|
||||||
# `index.js` is the code that will run.
|
|
||||||
# For our project, we generate this file through a build process from other source files.
|
|
||||||
# We need to make sure the checked-in `index.js` actually matches what we expect it to be.
|
|
||||||
name: Check dist/
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- '**.md'
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
check-dist:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v6
|
|
||||||
|
|
||||||
- name: Set Node.js
|
|
||||||
uses: actions/setup-node@v6
|
|
||||||
with:
|
|
||||||
node-version-file: '.nvmrc'
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: npm ci
|
|
||||||
|
|
||||||
- name: Rebuild the dist/ directory
|
|
||||||
run: |
|
|
||||||
npm run build
|
|
||||||
npm run package
|
|
||||||
|
|
||||||
- name: Compare the expected and actual dist/ directories
|
|
||||||
run: |
|
|
||||||
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
|
|
||||||
echo "Detected uncommitted changes after build. See status below:"
|
|
||||||
git diff
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
id: diff
|
|
||||||
|
|
||||||
# If index.js was different than expected, upload the expected version as an artifact
|
|
||||||
- uses: actions/upload-artifact@v6
|
|
||||||
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
|
|
||||||
with:
|
|
||||||
name: dist
|
|
||||||
path: dist/
|
|
||||||
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
@@ -13,10 +13,7 @@ jobs:
|
|||||||
name: Build & Test
|
name: Build & Test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v6
|
|
||||||
with:
|
|
||||||
node-version-file: '.nvmrc'
|
|
||||||
- run: npm ci
|
- run: npm ci
|
||||||
- run: npm run build
|
- run: npm run build
|
||||||
- run: npm run format-check
|
- run: npm run format-check
|
||||||
@@ -24,8 +21,16 @@ jobs:
|
|||||||
- run: npm test
|
- run: npm test
|
||||||
|
|
||||||
- name: Upload test results
|
- name: Upload test results
|
||||||
if: ${{ !cancelled() }}
|
if: success() || failure()
|
||||||
uses: actions/upload-artifact@v6
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: test-results
|
name: test-results
|
||||||
path: __tests__/__results__/*.xml
|
path: __tests__/__results__/*.xml
|
||||||
|
|
||||||
|
- name: Create test report
|
||||||
|
uses: ./
|
||||||
|
if: success() || failure()
|
||||||
|
with:
|
||||||
|
name: JEST Tests
|
||||||
|
path: __tests__/__results__/*.xml
|
||||||
|
reporter: jest-junit
|
||||||
|
|||||||
22
.github/workflows/manual-run.yml
vendored
22
.github/workflows/manual-run.yml
vendored
@@ -1,22 +0,0 @@
|
|||||||
name: Manual run
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
check-dist:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v6
|
|
||||||
- run: npm ci
|
|
||||||
- run: npm run build
|
|
||||||
- run: npm test
|
|
||||||
|
|
||||||
- name: Create test report
|
|
||||||
uses: ./
|
|
||||||
if: ${{ !cancelled() }}
|
|
||||||
with:
|
|
||||||
name: JEST Tests
|
|
||||||
path: __tests__/__results__/*.xml
|
|
||||||
reporter: jest-junit
|
|
||||||
2
.github/workflows/test-report.yml
vendored
2
.github/workflows/test-report.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
name: Workflow test
|
name: Workflow test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v2
|
||||||
- uses: ./
|
- uses: ./
|
||||||
with:
|
with:
|
||||||
artifact: test-results
|
artifact: test-results
|
||||||
|
|||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -100,5 +100,3 @@ lib/**/*
|
|||||||
|
|
||||||
# Project specific
|
# Project specific
|
||||||
__tests__/__results__
|
__tests__/__results__
|
||||||
|
|
||||||
.idea
|
|
||||||
|
|||||||
@@ -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
|
|
||||||
}
|
|
||||||
}
|
|
||||||
96
CHANGELOG.md
96
CHANGELOG.md
@@ -1,101 +1,5 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 2.5.0
|
|
||||||
* Feature: Add Nette Tester support with `tester-junit` reporter https://github.com/dorny/test-reporter/pull/707
|
|
||||||
* Maintenance: Bump actions/upload-artifact from 5 to 6 https://github.com/dorny/test-reporter/pull/695
|
|
||||||
|
|
||||||
## 2.4.0
|
|
||||||
* Feature: Add PHPUnit support with JUnit XML dialect parser https://github.com/dorny/test-reporter/pull/422
|
|
||||||
* Feature: Add JUnit XML sample files and tests for validation https://github.com/dorny/test-reporter/pull/701
|
|
||||||
* Fix: Refactor deprecated `String.substr()` function to use `String.substring()` https://github.com/dorny/test-reporter/pull/704
|
|
||||||
|
|
||||||
## 2.3.0
|
|
||||||
* Feature: Add Python support with `python-xunit` reporter (pytest) https://github.com/dorny/test-reporter/pull/643
|
|
||||||
* Feature: Add pytest traceback parsing and `directory-mapping` option https://github.com/dorny/test-reporter/pull/238
|
|
||||||
* Performance: Update sax.js to fix large XML file parsing https://github.com/dorny/test-reporter/pull/681
|
|
||||||
* Documentation: Complete documentation for all supported reporters https://github.com/dorny/test-reporter/pull/691
|
|
||||||
* Security: Bump js-yaml and mocha in /reports/mocha (fixes prototype pollution) https://github.com/dorny/test-reporter/pull/682
|
|
||||||
|
|
||||||
## 2.2.0
|
|
||||||
* Feature: Add collapsed option to control report summary visibility https://github.com/dorny/test-reporter/pull/664
|
|
||||||
* Fix badge encoding for values including underscore and hyphens https://github.com/dorny/test-reporter/pull/672
|
|
||||||
* Fix missing `report-title` attribute in action definition https://github.com/dorny/test-reporter/pull/637
|
|
||||||
* Refactor variable names to fix shadowing issues https://github.com/dorny/test-reporter/pull/630
|
|
||||||
|
|
||||||
## 2.1.1
|
|
||||||
* Fix error when a TestMethod element does not have a className attribute in a trx file https://github.com/dorny/test-reporter/pull/623
|
|
||||||
* Add stack trace from trx to summary https://github.com/dorny/test-reporter/pull/615
|
|
||||||
* List only failed tests https://github.com/dorny/test-reporter/pull/606
|
|
||||||
* Add type definitions to `github-utils.ts` https://github.com/dorny/test-reporter/pull/604
|
|
||||||
* Avoid split on undefined https://github.com/dorny/test-reporter/pull/258
|
|
||||||
* Return links to summary report https://github.com/dorny/test-reporter/pull/588
|
|
||||||
* Add step summary short summary https://github.com/dorny/test-reporter/pull/589
|
|
||||||
* Fix for empty TRX TestDefinitions https://github.com/dorny/test-reporter/pull/582
|
|
||||||
* Increase step summary limit to 1MiB https://github.com/dorny/test-reporter/pull/581
|
|
||||||
* Fix input description for list options https://github.com/dorny/test-reporter/pull/572
|
|
||||||
|
|
||||||
## 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
|
|
||||||
* 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
|
|
||||||
* Gracefully handle empty nested testsuite elements for JUnit. by @rvdlaarschot in https://github.com/dorny/test-reporter/pull/193
|
|
||||||
* Gracefully handle empty failure tags by @haudren-woven in https://github.com/dorny/test-reporter/pull/213
|
|
||||||
* Fix #208 - java-junit: show annotations on PR changed files by @atsu85 in https://github.com/dorny/test-reporter/pull/209
|
|
||||||
* Only report failure if fail-on-error is set by @trond-snekvik in https://github.com/dorny/test-reporter/pull/214
|
|
||||||
* Improve clarity on configuring for forkable repos by @abelbraaksma in https://github.com/dorny/test-reporter/pull/211
|
|
||||||
* Suppress "Processing test results from" log by @vasanthdharmaraj in https://github.com/dorny/test-reporter/pull/179
|
|
||||||
* Skip listing of files if error parsing is disabled by @dorny in https://github.com/dorny/test-reporter/pull/216
|
|
||||||
* Correct typo in docs by @tangowithfoxtrot in https://github.com/dorny/test-reporter/pull/254
|
|
||||||
* update dependencies by @j-catania in https://github.com/dorny/test-reporter/pull/269
|
|
||||||
* Add permissions to example yml files by @TurnrDev in https://github.com/dorny/test-reporter/pull/263
|
|
||||||
* add feature fail-on-empty by @gdams in https://github.com/dorny/test-reporter/pull/243
|
|
||||||
* Add dependabot configuration by @yeikel in https://github.com/dorny/test-reporter/pull/228
|
|
||||||
* Bump ws from 7.3.1 to 7.5.9 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/265
|
|
||||||
* Bump actions/checkout from 2 to 4 by @dependabot in https://github.com/dorny/test-reporter/pull/279
|
|
||||||
* Add new output for url url html by @luisito666 in https://github.com/dorny/test-reporter/pull/242
|
|
||||||
* Update README.md by @IanMoroney in https://github.com/dorny/test-reporter/pull/158
|
|
||||||
* Update jest-Junit part of Readme by @ryancasburn-KAI in https://github.com/dorny/test-reporter/pull/176
|
|
||||||
* fix: default-valued fields are not mandatory by @TomerFi in https://github.com/dorny/test-reporter/pull/172
|
|
||||||
* Bump ansi-regex from 4.1.0 to 4.1.1 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/278
|
|
||||||
* Bump decode-uri-component from 0.2.0 to 0.2.2 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/276
|
|
||||||
* Bump minimist from 1.2.5 to 1.2.8 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/275
|
|
||||||
* Bump qs from 6.5.2 to 6.5.3 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/272
|
|
||||||
* Bump json5 from 2.1.3 to 2.2.3 in /reports/jest by @dependabot in https://github.com/dorny/test-reporter/pull/271
|
|
||||||
* Bump ansi-regex from 3.0.0 to 3.0.1 in /reports/mocha by @dependabot in https://github.com/dorny/test-reporter/pull/270
|
|
||||||
* declare 'url' and 'url_html' as action outputs by @micha-one in https://github.com/dorny/test-reporter/pull/287
|
|
||||||
* Avoid split on undefined by @cazou in https://github.com/dorny/test-reporter/pull/258
|
|
||||||
|
|
||||||
## v1.6.0
|
|
||||||
- [Update to node16 + recent versions of core and exec packages](https://github.com/dorny/test-reporter/pull/203)
|
|
||||||
- [Update all dependencies to latest versions](https://github.com/dorny/test-reporter/pull/186)
|
|
||||||
- [Fix tests on non us-EN local env](https://github.com/dorny/test-reporter/pull/185)
|
|
||||||
|
|
||||||
## v1.5.0
|
## v1.5.0
|
||||||
- [Add option to convert backslashes in path pattern to forward slashes](https://github.com/dorny/test-reporter/pull/128)
|
- [Add option to convert backslashes in path pattern to forward slashes](https://github.com/dorny/test-reporter/pull/128)
|
||||||
- [Add option to generate only the summary from processed test results files](https://github.com/dorny/test-reporter/pull/123)
|
- [Add option to generate only the summary from processed test results files](https://github.com/dorny/test-reporter/pull/123)
|
||||||
|
|||||||
171
README.md
171
README.md
@@ -2,27 +2,22 @@
|
|||||||
|
|
||||||
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/)
|
||||||
- Python / [pytest](https://docs.pytest.org/en/stable/) / [unittest](https://docs.python.org/3/library/unittest.html)
|
|
||||||
- PHP / [PHPUnit](https://phpunit.de/) / [Nette Tester](https://tester.nette.org/)
|
|
||||||
- Ruby / [RSpec](https://rspec.info/)
|
|
||||||
- Swift / xUnit
|
|
||||||
|
|
||||||
For more information see [Supported formats](#supported-formats) section.
|
For more information see [Supported formats](#supported-formats) section.
|
||||||
|
|
||||||
@@ -38,22 +33,18 @@ If that's fine for you, using this action is as simple as:
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
actions: read
|
|
||||||
checks: write
|
|
||||||
jobs:
|
jobs:
|
||||||
build-test:
|
build-test:
|
||||||
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@v2 # 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
|
||||||
@@ -67,8 +58,6 @@ To workaround this security restriction, it's required to use two separate workf
|
|||||||
1. `CI` runs in the context of the PR head branch with the read-only token. It executes the tests and uploads test results as a build artifact
|
1. `CI` runs in the context of the PR head branch with the read-only token. It executes the tests and uploads test results as a build artifact
|
||||||
2. `Test Report` runs in the context of the repository main branch with read/write token. It will download test results and create reports
|
2. `Test Report` runs in the context of the repository main branch with read/write token. It will download test results and create reports
|
||||||
|
|
||||||
The second workflow will only run after it has been merged into your default branch (typically `main` or `master`), it won't run in a PR unless after the workflow file is part of that branch.
|
|
||||||
|
|
||||||
**PR head branch:** *.github/workflows/ci.yml*
|
**PR head branch:** *.github/workflows/ci.yml*
|
||||||
```yaml
|
```yaml
|
||||||
name: 'CI'
|
name: 'CI'
|
||||||
@@ -78,11 +67,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@v2 # 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@v2 # 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
|
||||||
@@ -95,15 +84,11 @@ on:
|
|||||||
workflows: ['CI'] # runs after CI workflow
|
workflows: ['CI'] # runs after CI workflow
|
||||||
types:
|
types:
|
||||||
- completed
|
- completed
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
actions: read
|
|
||||||
checks: write
|
|
||||||
jobs:
|
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
|
||||||
@@ -114,7 +99,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
|
||||||
@@ -129,7 +114,7 @@ jobs:
|
|||||||
# Name of the Check Run which will be created
|
# Name of the Check Run which will be created
|
||||||
name: ''
|
name: ''
|
||||||
|
|
||||||
# Comma-separated list of paths to test results
|
# Coma separated list of paths to test results
|
||||||
# Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob)
|
# Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob)
|
||||||
# All matched result files must be of the same format
|
# All matched result files must be of the same format
|
||||||
path: ''
|
path: ''
|
||||||
@@ -141,17 +126,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
|
||||||
# phpunit-junit
|
|
||||||
# python-xunit
|
|
||||||
# rspec-json
|
|
||||||
# swift-xunit
|
|
||||||
reporter: ''
|
reporter: ''
|
||||||
|
|
||||||
# Allows you to generate only the summary.
|
# Allows you to generate only the summary.
|
||||||
@@ -159,23 +138,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:
|
||||||
@@ -191,9 +156,6 @@ jobs:
|
|||||||
# Set action as failed if test report contains any failed test
|
# Set action as failed if test report contains any failed test
|
||||||
fail-on-error: 'true'
|
fail-on-error: 'true'
|
||||||
|
|
||||||
# Set this action as failed if no test results were found
|
|
||||||
fail-on-empty: 'true'
|
|
||||||
|
|
||||||
# Relative path under $GITHUB_WORKSPACE where the repository was checked out.
|
# Relative path under $GITHUB_WORKSPACE where the repository was checked out.
|
||||||
working-directory: ''
|
working-directory: ''
|
||||||
|
|
||||||
@@ -210,8 +172,6 @@ jobs:
|
|||||||
| failed | Count of failed tests |
|
| failed | Count of failed tests |
|
||||||
| skipped | Count of skipped tests |
|
| skipped | Count of skipped tests |
|
||||||
| time | Test execution time [ms] |
|
| time | Test execution time [ms] |
|
||||||
| url | Check run URL |
|
|
||||||
| url_html | Check run URL HTML |
|
|
||||||
|
|
||||||
## Supported formats
|
## Supported formats
|
||||||
|
|
||||||
@@ -259,20 +219,6 @@ Supported testing frameworks:
|
|||||||
For more information see [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples)
|
For more information see [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples)
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>dotnet-nunit</summary>
|
|
||||||
|
|
||||||
Test execution must be configured to generate [NUnit3](https://docs.nunit.org/articles/nunit/technical-notes/usage/Test-Result-XML-Format.html) XML test results.
|
|
||||||
Install the [NUnit3TestAdapter](https://www.nuget.org/packages/NUnit3TestAdapter) package (required; it registers the `nunit` logger for `dotnet test`), then run tests with:
|
|
||||||
|
|
||||||
`dotnet test --logger "nunit;LogFileName=test-results.xml"`
|
|
||||||
|
|
||||||
Supported testing frameworks:
|
|
||||||
- [NUnit](https://nunit.org/)
|
|
||||||
|
|
||||||
For more information see [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples)
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>flutter-json</summary>
|
<summary>flutter-json</summary>
|
||||||
|
|
||||||
@@ -300,13 +246,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>
|
||||||
|
|
||||||
@@ -317,35 +256,14 @@ Some heuristic was necessary to figure out the mapping between the line in the s
|
|||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>phpunit-junit</summary>
|
<summary>jest-Junit</summary>
|
||||||
|
|
||||||
[PHPUnit](https://phpunit.de/) can generate JUnit XML via CLI:
|
[JEST](https://jestjs.io/) testing framework support requires the usage of [jest-Junit](https://github.com/jest-community/jest-Junit) reporter.
|
||||||
`phpunit --log-junit reports/phpunit-junit.xml`
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>tester-junit</summary>
|
|
||||||
|
|
||||||
[Nette Tester](https://tester.nette.org/) can generate JUnit XML via CLI:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
tester -s -o junit tests/ > reports/tester-junit.xml
|
|
||||||
```
|
|
||||||
|
|
||||||
**Note:** Nette Tester's JUnit output doesn't include test suite names. The parser will use the report file name as the suite name and automatically group tests by directory structure.
|
|
||||||
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>jest-junit</summary>
|
|
||||||
|
|
||||||
[JEST](https://jestjs.io/) testing framework support requires the usage of [jest-junit](https://github.com/jest-community/jest-junit) reporter.
|
|
||||||
It will create test results in Junit XML format which can be then processed by this action.
|
It will create test results in Junit XML format which can be then processed by this action.
|
||||||
You can use the following example configuration in `package.json`:
|
You can use the following example configuration in `package.json`:
|
||||||
```json
|
```json
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "jest --ci --reporters=default --reporters=jest-junit"
|
"test": "jest --ci --reporters=default --reporters=jest-Junit"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"jest": "^26.5.3",
|
"jest": "^26.5.3",
|
||||||
@@ -372,72 +290,25 @@ 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)).
|
|
||||||
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.
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
Test processing might fail if any of your tests write anything on standard output.
|
||||||
<summary>python-xunit (Experimental)</summary>
|
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)
|
||||||
Support for Python test results in xUnit format is experimental - should work but it was not extensively tested.
|
|
||||||
|
|
||||||
For **pytest** support, configure [JUnit XML output](https://docs.pytest.org/en/stable/how-to/output.html#creating-junitxml-format-files) and run with the `--junit-xml` option, which also lets you specify the output path for test results.
|
|
||||||
|
|
||||||
```shell
|
|
||||||
pytest --junit-xml=test-report.xml
|
|
||||||
```
|
|
||||||
|
|
||||||
For **unittest** support, use a test runner that outputs the JUnit report format, such as [unittest-xml-reporting](https://pypi.org/project/unittest-xml-reporting/).
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>rspec-json</summary>
|
|
||||||
|
|
||||||
[RSpec](https://rspec.info/) testing framework support requires the usage of JSON formatter.
|
|
||||||
You can configure RSpec to output JSON format by using the `--format json` option and redirecting to a file:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
rspec --format json --out rspec-results.json
|
|
||||||
```
|
|
||||||
|
|
||||||
Or configure it in `.rspec` file:
|
|
||||||
```
|
|
||||||
--format json
|
|
||||||
--out rspec-results.json
|
|
||||||
```
|
|
||||||
|
|
||||||
For more information see:
|
|
||||||
- [RSpec documentation](https://rspec.info/)
|
|
||||||
- [RSpec Formatters](https://relishapp.com/rspec/rspec-core/docs/formatters)
|
|
||||||
</details>
|
|
||||||
|
|
||||||
<details>
|
|
||||||
<summary>swift-xunit (Experimental)</summary>
|
|
||||||
|
|
||||||
Support for Swift test results in xUnit format is experimental - should work but it was not extensively tested.
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
## GitHub limitations
|
## GitHub limitations
|
||||||
|
|
||||||
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@v2` 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,17 +1,14 @@
|
|||||||

|

|
||||||
|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
|
||||||
Test 1 Test 1.1
|
Test 1 Test 1.1
|
||||||
❌ Failing test
|
❌ Failing test
|
||||||
Expected: <2>
|
Expected: <2>
|
||||||
@@ -23,9 +20,9 @@ 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.
|
||||||
⚪ Skipped test
|
✖️ Skipped test
|
||||||
```
|
```
|
||||||
@@ -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,26 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/dotnet-xunitv3.trx](#user-content-r0)|1 ✅|3 ❌||267ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dotnet-xunitv3.trx</a>
|
|
||||||
**4** tests were completed in **267ms** with **1** passed, **3** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[DotnetTests.XUnitV3Tests.FixtureTests](#user-content-r0s0)|1 ✅|1 ❌||18ms|
|
|
||||||
|[Unclassified](#user-content-r0s1)||2 ❌||0ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">DotnetTests.XUnitV3Tests.FixtureTests</a>
|
|
||||||
```
|
|
||||||
❌ Failing_Test
|
|
||||||
Assert.Null() Failure: Value is not null
|
|
||||||
Expected: null
|
|
||||||
Actual: Fixture { }
|
|
||||||
at DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test() in /_/reports/dotnet/DotnetTests.XUnitV3Tests/FixtureTests.cs:line 25
|
|
||||||
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
|
|
||||||
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)
|
|
||||||
✅ Passing_Test
|
|
||||||
```
|
|
||||||
### ❌ <a id="user-content-r0s1" href="#user-content-r0s1">Unclassified</a>
|
|
||||||
```
|
|
||||||
❌ [Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test)]
|
|
||||||
❌ [Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Passing_Test)]
|
|
||||||
```
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -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,17 +1,14 @@
|
|||||||

|

|
||||||
|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
|
||||||
Test 1 › Test 1.1
|
Test 1 › Test 1.1
|
||||||
❌ Failing test
|
❌ Failing test
|
||||||
Error: expect(received).toBeTruthy()
|
Error: expect(received).toBeTruthy()
|
||||||
@@ -21,9 +18,9 @@ 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:
|
||||||
⚪ Skipped test
|
✖️ Skipped test
|
||||||
```
|
```
|
||||||
@@ -1,16 +0,0 @@
|
|||||||

|
|
||||||
<details><summary>Expand for details</summary>
|
|
||||||
|
|
||||||
|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.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[\<Component /\>](#user-content-r0s0)|1 ✅|||798ms|
|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">\<Component /\></a>
|
|
||||||
```
|
|
||||||
✅ <Component /> should render properly
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,23 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/java/junit4-basic.xml](#user-content-r0)|5 ✅|1 ❌||16s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/java/junit4-basic.xml</a>
|
|
||||||
**6** tests were completed in **16s** with **5** passed, **1** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[Tests.Authentication](#user-content-r0s0)|2 ✅|1 ❌||9s|
|
|
||||||
|[Tests.Registration](#user-content-r0s1)|3 ✅|||7s|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">Tests.Authentication</a>
|
|
||||||
```
|
|
||||||
✅ testCase7
|
|
||||||
✅ testCase8
|
|
||||||
❌ testCase9
|
|
||||||
AssertionError: Assertion error message
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">Tests.Registration</a>
|
|
||||||
```
|
|
||||||
✅ testCase1
|
|
||||||
✅ testCase2
|
|
||||||
✅ testCase3
|
|
||||||
```
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/java/junit4-complete.xml](#user-content-r0)|5 ✅|2 ❌|1 ⚪|16s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/java/junit4-complete.xml</a>
|
|
||||||
**8** tests were completed in **16s** with **5** passed, **2** failed and **1** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[Tests.Registration](#user-content-r0s0)|5 ✅|2 ❌|1 ⚪|16s|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">Tests.Registration</a>
|
|
||||||
```
|
|
||||||
✅ testCase1
|
|
||||||
✅ testCase2
|
|
||||||
✅ testCase3
|
|
||||||
⚪ testCase4
|
|
||||||
❌ testCase5
|
|
||||||
AssertionError: Expected value did not match.
|
|
||||||
❌ testCase6
|
|
||||||
ArithmeticError: Division by zero.
|
|
||||||
✅ testCase7
|
|
||||||
✅ testCase8
|
|
||||||
```
|
|
||||||
@@ -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,17 +1,14 @@
|
|||||||

|

|
||||||
|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
|
||||||
Test 1 Test 1.1
|
Test 1 Test 1.1
|
||||||
❌ Exception in target unit
|
❌ Exception in target unit
|
||||||
Some error
|
Some error
|
||||||
@@ -24,9 +21,9 @@ 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
|
||||||
Timeout of 1ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (C:\Users\Michal\Workspace\dorny\test-reporter\reports\mocha\test\second.test.js)
|
Timeout of 1ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (C:\Users\Michal\Workspace\dorny\test-reporter\reports\mocha\test\second.test.js)
|
||||||
```
|
```
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,30 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/phpunit/junit-basic.xml](#user-content-r0)|8 ✅|1 ❌||16s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/phpunit/junit-basic.xml</a>
|
|
||||||
**9** tests were completed in **16s** with **8** passed, **1** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[Tests.Authentication](#user-content-r0s0)|2 ✅|1 ❌||9s|
|
|
||||||
|[Tests.Authentication.Login](#user-content-r0s1)|3 ✅|||4s|
|
|
||||||
|[Tests.Registration](#user-content-r0s2)|3 ✅|||7s|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">Tests.Authentication</a>
|
|
||||||
```
|
|
||||||
✅ testCase7
|
|
||||||
✅ testCase8
|
|
||||||
❌ testCase9
|
|
||||||
AssertionError: Assertion error message
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">Tests.Authentication.Login</a>
|
|
||||||
```
|
|
||||||
✅ testCase4
|
|
||||||
✅ testCase5
|
|
||||||
✅ testCase6
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">Tests.Registration</a>
|
|
||||||
```
|
|
||||||
✅ testCase1
|
|
||||||
✅ testCase2
|
|
||||||
✅ testCase3
|
|
||||||
```
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/external/phpunit/phpcheckstyle-phpunit.xml](#user-content-r0)|28 ✅|2 ❌||41ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/phpunit/phpcheckstyle-phpunit.xml</a>
|
|
||||||
**30** tests were completed in **41ms** with **28** passed, **2** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[CommentsTest](#user-content-r0s0)|3 ✅|||7ms|
|
|
||||||
|[DeprecationTest](#user-content-r0s1)|1 ✅|||1ms|
|
|
||||||
|[GoodTest](#user-content-r0s2)|4 ✅|||5ms|
|
|
||||||
|[IndentationTest](#user-content-r0s3)|8 ✅|||8ms|
|
|
||||||
|[MetricsTest](#user-content-r0s4)|1 ✅|||4ms|
|
|
||||||
|[NamingTest](#user-content-r0s5)|2 ✅|||3ms|
|
|
||||||
|[OptimizationTest](#user-content-r0s6)|1 ✅|||1ms|
|
|
||||||
|[OtherTest](#user-content-r0s7)|2 ✅|2 ❌||7ms|
|
|
||||||
|[PHPTagsTest](#user-content-r0s8)|2 ✅|||1ms|
|
|
||||||
|[ProhibitedTest](#user-content-r0s9)|1 ✅|||1ms|
|
|
||||||
|[StrictCompareTest](#user-content-r0s10)|1 ✅|||2ms|
|
|
||||||
|[UnusedTest](#user-content-r0s11)|2 ✅|||2ms|
|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">CommentsTest</a>
|
|
||||||
```
|
|
||||||
✅ testGoodDoc
|
|
||||||
✅ testComments
|
|
||||||
✅ testTODOs
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">DeprecationTest</a>
|
|
||||||
```
|
|
||||||
✅ testDeprecations
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">GoodTest</a>
|
|
||||||
```
|
|
||||||
✅ testGood
|
|
||||||
✅ testDoWhile
|
|
||||||
✅ testAnonymousFunction
|
|
||||||
✅ testException
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">IndentationTest</a>
|
|
||||||
```
|
|
||||||
✅ testTabIndentation
|
|
||||||
✅ testSpaceIndentation
|
|
||||||
✅ testSpaceIndentationArray
|
|
||||||
✅ testGoodSpaceIndentationArray
|
|
||||||
✅ testGoodIndentationNewLine
|
|
||||||
✅ testGoodIndentationSpaces
|
|
||||||
✅ testBadSpaces
|
|
||||||
✅ testBadSpaceAfterControl
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">MetricsTest</a>
|
|
||||||
```
|
|
||||||
✅ testMetrics
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">NamingTest</a>
|
|
||||||
```
|
|
||||||
✅ testNaming
|
|
||||||
✅ testFunctionNaming
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">OptimizationTest</a>
|
|
||||||
```
|
|
||||||
✅ testTextAfterClosingTag
|
|
||||||
```
|
|
||||||
### ❌ <a id="user-content-r0s7" href="#user-content-r0s7">OtherTest</a>
|
|
||||||
```
|
|
||||||
❌ testOther
|
|
||||||
PHPUnit\Framework\ExpectationFailedException
|
|
||||||
❌ testException
|
|
||||||
PHPUnit\Framework\ExpectationFailedException
|
|
||||||
✅ testEmpty
|
|
||||||
✅ testSwitchCaseNeedBreak
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">PHPTagsTest</a>
|
|
||||||
```
|
|
||||||
✅ testTextAfterClosingTag
|
|
||||||
✅ testClosingTagNotNeeded
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">ProhibitedTest</a>
|
|
||||||
```
|
|
||||||
✅ testProhibited
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">StrictCompareTest</a>
|
|
||||||
```
|
|
||||||
✅ testStrictCompare
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">UnusedTest</a>
|
|
||||||
```
|
|
||||||
✅ testGoodUnused
|
|
||||||
✅ testBadUnused
|
|
||||||
```
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/phpunit/phpunit.xml](#user-content-r0)|10 ✅|2 ❌||148ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/phpunit/phpunit.xml</a>
|
|
||||||
**12** tests were completed in **148ms** with **10** passed, **2** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[CLI Arguments](#user-content-r0s0)||2 ❌||140ms|
|
|
||||||
|[PHPUnit\Event\CollectingDispatcherTest](#user-content-r0s1)|2 ✅|||4ms|
|
|
||||||
|[PHPUnit\Event\DeferringDispatcherTest](#user-content-r0s2)|4 ✅|||3ms|
|
|
||||||
|[PHPUnit\Event\DirectDispatcherTest](#user-content-r0s3)|4 ✅|||1ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">CLI Arguments</a>
|
|
||||||
```
|
|
||||||
❌ targeting-traits-with-coversclass-attribute-is-deprecated.phpt
|
|
||||||
PHPUnit\Framework\PhptAssertionFailedError
|
|
||||||
❌ targeting-traits-with-usesclass-attribute-is-deprecated.phpt
|
|
||||||
PHPUnit\Framework\PhptAssertionFailedError
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">PHPUnit\Event\CollectingDispatcherTest</a>
|
|
||||||
```
|
|
||||||
PHPUnit.Event.CollectingDispatcherTest
|
|
||||||
✅ testHasNoCollectedEventsWhenFlushedImmediatelyAfterCreation
|
|
||||||
✅ testCollectsDispatchedEventsUntilFlushed
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">PHPUnit\Event\DeferringDispatcherTest</a>
|
|
||||||
```
|
|
||||||
PHPUnit.Event.DeferringDispatcherTest
|
|
||||||
✅ testCollectsEventsUntilFlush
|
|
||||||
✅ testFlushesCollectedEvents
|
|
||||||
✅ testSubscriberCanBeRegistered
|
|
||||||
✅ testTracerCanBeRegistered
|
|
||||||
```
|
|
||||||
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">PHPUnit\Event\DirectDispatcherTest</a>
|
|
||||||
```
|
|
||||||
PHPUnit.Event.DirectDispatcherTest
|
|
||||||
✅ testDispatchesEventToKnownSubscribers
|
|
||||||
✅ testDispatchesEventToTracers
|
|
||||||
✅ testRegisterRejectsUnknownSubscriber
|
|
||||||
✅ testDispatchRejectsUnknownEventType
|
|
||||||
```
|
|
||||||
@@ -1,373 +1,370 @@
|
|||||||

|

|
||||||
|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
|
||||||
✅ .value
|
✔️ .value
|
||||||
ListenableProvider
|
ListenableProvider
|
||||||
✅ default
|
✔️ default
|
||||||
✅ .value
|
✔️ .value
|
||||||
Provider
|
Provider
|
||||||
✅ default
|
✔️ default
|
||||||
✅ .value
|
✔️ .value
|
||||||
ProxyProvider
|
ProxyProvider
|
||||||
✅ 0
|
✔️ 0
|
||||||
✅ 1
|
✔️ 1
|
||||||
✅ 2
|
✔️ 2
|
||||||
✅ 3
|
✔️ 3
|
||||||
✅ 4
|
✔️ 4
|
||||||
✅ 5
|
✔️ 5
|
||||||
✅ 6
|
✔️ 6
|
||||||
MultiProvider
|
MultiProvider
|
||||||
✅ with 1 ChangeNotifierProvider default
|
✔️ with 1 ChangeNotifierProvider default
|
||||||
✅ with 2 ChangeNotifierProvider default
|
✔️ with 2 ChangeNotifierProvider default
|
||||||
✅ with ListenableProvider default
|
✔️ with ListenableProvider default
|
||||||
✅ with Provider default
|
✔️ with Provider default
|
||||||
✅ with ProxyProvider0
|
✔️ with ProxyProvider0
|
||||||
✅ with ProxyProvider1
|
✔️ with ProxyProvider1
|
||||||
✅ with ProxyProvider2
|
✔️ with ProxyProvider2
|
||||||
✅ with ProxyProvider3
|
✔️ with ProxyProvider3
|
||||||
✅ with ProxyProvider4
|
✔️ with ProxyProvider4
|
||||||
✅ 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
|
||||||
✅ value
|
✔️ value
|
||||||
✅ builder
|
✔️ builder
|
||||||
✅ builder1
|
✔️ builder1
|
||||||
✅ builder2
|
✔️ builder2
|
||||||
✅ builder3
|
✔️ builder3
|
||||||
✅ builder4
|
✔️ builder4
|
||||||
✅ builder5
|
✔️ builder5
|
||||||
✅ 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>
|
||||||
✅ crashed with no builder
|
✔️ crashed with no builder
|
||||||
✅ can be used inside MultiProvider
|
✔️ can be used inside MultiProvider
|
||||||
consumer2
|
consumer2
|
||||||
✅ obtains value from Provider<T>
|
✔️ obtains value from Provider<T>
|
||||||
✅ crashed with no builder
|
✔️ crashed with no builder
|
||||||
✅ can be used inside MultiProvider
|
✔️ can be used inside MultiProvider
|
||||||
consumer3
|
consumer3
|
||||||
✅ obtains value from Provider<T>
|
✔️ obtains value from Provider<T>
|
||||||
✅ crashed with no builder
|
✔️ crashed with no builder
|
||||||
✅ can be used inside MultiProvider
|
✔️ can be used inside MultiProvider
|
||||||
consumer4
|
consumer4
|
||||||
✅ obtains value from Provider<T>
|
✔️ obtains value from Provider<T>
|
||||||
✅ crashed with no builder
|
✔️ crashed with no builder
|
||||||
✅ can be used inside MultiProvider
|
✔️ can be used inside MultiProvider
|
||||||
consumer5
|
consumer5
|
||||||
✅ obtains value from Provider<T>
|
✔️ obtains value from Provider<T>
|
||||||
✅ crashed with no builder
|
✔️ crashed with no builder
|
||||||
✅ can be used inside MultiProvider
|
✔️ can be used inside MultiProvider
|
||||||
consumer6
|
consumer6
|
||||||
✅ obtains value from Provider<T>
|
✔️ obtains value from Provider<T>
|
||||||
✅ 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
|
||||||
✅ cannot select in listView
|
✔️ cannot select in listView
|
||||||
✅ watch in listView
|
✔️ watch in listView
|
||||||
✅ watch in gridView
|
✔️ watch in gridView
|
||||||
✅ clears select dependencies for all dependents
|
✔️ clears select dependencies for all dependents
|
||||||
BuildContext
|
BuildContext
|
||||||
✅ internal selected value is updated
|
✔️ internal selected value is updated
|
||||||
✅ create can use read without being lazy
|
✔️ create can use read without being lazy
|
||||||
✅ watch can be used inside InheritedProvider.update
|
✔️ watch can be used inside InheritedProvider.update
|
||||||
✅ select doesn't fail if it loads a provider that depends on other providers
|
✔️ select doesn't fail if it loads a provider that depends on other providers
|
||||||
✅ don't call old selectors if the child rebuilds individually
|
✔️ don't call old selectors if the child rebuilds individually
|
||||||
✅ selects throws inside click handlers
|
✔️ selects throws inside click handlers
|
||||||
✅ select throws if try to read dynamic
|
✔️ select throws if try to read dynamic
|
||||||
✅ select throws ProviderNotFoundException
|
✔️ select throws ProviderNotFoundException
|
||||||
✅ select throws if watch called inside the callback from build
|
✔️ select throws if watch called inside the callback from build
|
||||||
✅ select throws if read called inside the callback from build
|
✔️ select throws if read called inside the callback from build
|
||||||
✅ select throws if select called inside the callback from build
|
✔️ select throws if select called inside the callback from build
|
||||||
✅ select throws if read called inside the callback on dependency change
|
✔️ select throws if read called inside the callback on dependency change
|
||||||
✅ select throws if watch called inside the callback on dependency change
|
✔️ select throws if watch called inside the callback on dependency change
|
||||||
✅ select throws if select called inside the callback on dependency change
|
✔️ select throws if select called inside the callback on dependency change
|
||||||
✅ can call read inside didChangeDependencies
|
✔️ can call read inside didChangeDependencies
|
||||||
✅ select cannot be called inside didChangeDependencies
|
✔️ select cannot be called inside didChangeDependencies
|
||||||
✅ select in initState throws
|
✔️ select in initState throws
|
||||||
✅ watch in initState throws
|
✔️ watch in initState throws
|
||||||
✅ read in initState works
|
✔️ read in initState works
|
||||||
✅ consumer can be removed and selector stops to be called
|
✔️ consumer can be removed and selector stops to be called
|
||||||
✅ context.select deeply compares maps
|
✔️ context.select deeply compares maps
|
||||||
✅ context.select deeply compares lists
|
✔️ context.select deeply compares lists
|
||||||
✅ context.select deeply compares iterables
|
✔️ context.select deeply compares iterables
|
||||||
✅ 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
|
||||||
✅ previous future completes after transition is no-op
|
✔️ previous future completes after transition is no-op
|
||||||
✅ transition from future to future preserve state
|
✔️ transition from future to future preserve state
|
||||||
✅ throws if future has error and catchError is missing
|
✔️ throws if future has error and catchError is missing
|
||||||
✅ calls catchError if present and future has error
|
✔️ calls catchError if present and future has error
|
||||||
✅ works with null
|
✔️ works with null
|
||||||
✅ create and dispose future with builder
|
✔️ create and dispose future with builder
|
||||||
✅ FutureProvider() crashes if builder is null
|
✔️ FutureProvider() crashes if builder is null
|
||||||
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
|
||||||
✅ properly update debug flags if a create triggers another deferred create
|
✔️ properly update debug flags if a create triggers another deferred create
|
||||||
✅ properly update debug flags if a create triggers another deferred create
|
✔️ properly update debug flags if a create triggers another deferred create
|
||||||
✅ properly update debug flags if an update triggers another create/update
|
✔️ properly update debug flags if an update triggers another create/update
|
||||||
✅ properly update debug flags if a create triggers another create/update
|
✔️ properly update debug flags if a create triggers another create/update
|
||||||
✅ Provider.of(listen: false) outside of build works when it loads a provider
|
✔️ Provider.of(listen: false) outside of build works when it loads a provider
|
||||||
✅ new value is available in didChangeDependencies
|
✔️ new value is available in didChangeDependencies
|
||||||
✅ builder receives the current value and updates independently from `update`
|
✔️ builder receives the current value and updates independently from `update`
|
||||||
✅ builder can _not_ rebuild when provider updates
|
✔️ builder can _not_ rebuild when provider updates
|
||||||
✅ builder rebuilds if provider is recreated
|
✔️ builder rebuilds if provider is recreated
|
||||||
✅ provider.of throws if listen:true outside of the widget tree
|
✔️ provider.of throws if listen:true outside of the widget tree
|
||||||
✅ InheritedProvider throws if no child is provided with default constructor
|
✔️ InheritedProvider throws if no child is provided with default constructor
|
||||||
✅ InheritedProvider throws if no child is provided with value constructor
|
✔️ InheritedProvider throws if no child is provided with value constructor
|
||||||
✅ DeferredInheritedProvider throws if no child is provided with default constructor
|
✔️ DeferredInheritedProvider throws if no child is provided with default constructor
|
||||||
✅ DeferredInheritedProvider throws if no child is provided with value constructor
|
✔️ DeferredInheritedProvider throws if no child is provided with value constructor
|
||||||
✅ startListening markNeedsNotifyDependents
|
✔️ startListening markNeedsNotifyDependents
|
||||||
✅ InheritedProvider can be subclassed
|
✔️ InheritedProvider can be subclassed
|
||||||
✅ DeferredInheritedProvider can be subclassed
|
✔️ DeferredInheritedProvider can be subclassed
|
||||||
✅ can be used with MultiProvider
|
✔️ can be used with MultiProvider
|
||||||
✅ throw if the widget ctor changes
|
✔️ throw if the widget ctor changes
|
||||||
✅ InheritedProvider lazy loading can be disabled
|
✔️ InheritedProvider lazy loading can be disabled
|
||||||
✅ InheritedProvider.value lazy loading can be disabled
|
✔️ InheritedProvider.value lazy loading can be disabled
|
||||||
✅ InheritedProvider subclass don't have to specify default lazy value
|
✔️ InheritedProvider subclass don't have to specify default lazy value
|
||||||
✅ DeferredInheritedProvider lazy loading can be disabled
|
✔️ DeferredInheritedProvider lazy loading can be disabled
|
||||||
✅ DeferredInheritedProvider.value lazy loading can be disabled
|
✔️ DeferredInheritedProvider.value lazy loading can be disabled
|
||||||
✅ selector
|
✔️ selector
|
||||||
✅ can select multiple types from same provider
|
✔️ can select multiple types from same provider
|
||||||
✅ can select same type on two different providers
|
✔️ can select same type on two different providers
|
||||||
✅ can select same type twice on same provider
|
✔️ can select same type twice on same provider
|
||||||
✅ Provider.of has a proper error message if context is null
|
✔️ Provider.of has a proper error message if context is null
|
||||||
diagnostics
|
diagnostics
|
||||||
✅ InheritedProvider.value
|
✔️ InheritedProvider.value
|
||||||
✅ InheritedProvider doesn't break lazy loading
|
✔️ InheritedProvider doesn't break lazy loading
|
||||||
✅ InheritedProvider show if listening
|
✔️ InheritedProvider show if listening
|
||||||
✅ DeferredInheritedProvider.value
|
✔️ DeferredInheritedProvider.value
|
||||||
✅ DeferredInheritedProvider
|
✔️ DeferredInheritedProvider
|
||||||
InheritedProvider.value()
|
InheritedProvider.value()
|
||||||
✅ markNeedsNotifyDependents during startListening is noop
|
✔️ markNeedsNotifyDependents during startListening is noop
|
||||||
✅ startListening called again when create returns new value
|
✔️ startListening called again when create returns new value
|
||||||
✅ startListening
|
✔️ startListening
|
||||||
✅ stopListening not called twice if rebuild doesn't have listeners
|
✔️ stopListening not called twice if rebuild doesn't have listeners
|
||||||
✅ removeListener cannot be null
|
✔️ removeListener cannot be null
|
||||||
✅ pass down current value
|
✔️ pass down current value
|
||||||
✅ default updateShouldNotify
|
✔️ default updateShouldNotify
|
||||||
✅ custom updateShouldNotify
|
✔️ custom updateShouldNotify
|
||||||
InheritedProvider()
|
InheritedProvider()
|
||||||
✅ hasValue
|
✔️ hasValue
|
||||||
✅ provider calls update if rebuilding only due to didChangeDependencies
|
✔️ provider calls update if rebuilding only due to didChangeDependencies
|
||||||
✅ provider notifying dependents doesn't call update
|
✔️ provider notifying dependents doesn't call update
|
||||||
✅ update can call Provider.of with listen:true
|
✔️ update can call Provider.of with listen:true
|
||||||
✅ update lazy loaded can call Provider.of with listen:true
|
✔️ update lazy loaded can call Provider.of with listen:true
|
||||||
✅ markNeedsNotifyDependents during startListening is noop
|
✔️ markNeedsNotifyDependents during startListening is noop
|
||||||
✅ update can obtain parent of the same type than self
|
✔️ update can obtain parent of the same type than self
|
||||||
✅ _debugCheckInvalidValueType
|
✔️ _debugCheckInvalidValueType
|
||||||
✅ startListening
|
✔️ startListening
|
||||||
✅ startListening called again when create returns new value
|
✔️ startListening called again when create returns new value
|
||||||
✅ stopListening not called twice if rebuild doesn't have listeners
|
✔️ stopListening not called twice if rebuild doesn't have listeners
|
||||||
✅ removeListener cannot be null
|
✔️ removeListener cannot be null
|
||||||
✅ fails if initialValueBuilder calls inheritFromElement/inheritFromWiggetOfExactType
|
✔️ fails if initialValueBuilder calls inheritFromElement/inheritFromWiggetOfExactType
|
||||||
✅ builder is called on every rebuild and after a dependency change
|
✔️ builder is called on every rebuild and after a dependency change
|
||||||
✅ builder with no updateShouldNotify use ==
|
✔️ builder with no updateShouldNotify use ==
|
||||||
✅ builder calls updateShouldNotify callback
|
✔️ builder calls updateShouldNotify callback
|
||||||
✅ initialValue is transmitted to valueBuilder
|
✔️ initialValue is transmitted to valueBuilder
|
||||||
✅ calls builder again if dependencies change
|
✔️ calls builder again if dependencies change
|
||||||
✅ exposes initialValue if valueBuilder is null
|
✔️ exposes initialValue if valueBuilder is null
|
||||||
✅ call dispose on unmount
|
✔️ call dispose on unmount
|
||||||
✅ builder unmount, dispose not called if value never read
|
✔️ builder unmount, dispose not called if value never read
|
||||||
✅ call dispose after new value
|
✔️ call dispose after new value
|
||||||
✅ valueBuilder works without initialBuilder
|
✔️ valueBuilder works without initialBuilder
|
||||||
✅ calls initialValueBuilder lazily once
|
✔️ calls initialValueBuilder lazily once
|
||||||
✅ throws if both builder and initialBuilder are missing
|
✔️ throws if both builder and initialBuilder are missing
|
||||||
DeferredInheritedProvider.value()
|
DeferredInheritedProvider.value()
|
||||||
✅ hasValue
|
✔️ hasValue
|
||||||
✅ startListening
|
✔️ startListening
|
||||||
✅ stopListening cannot be null
|
✔️ stopListening cannot be null
|
||||||
✅ startListening doesn't need setState if already initialized
|
✔️ startListening doesn't need setState if already initialized
|
||||||
✅ setState without updateShouldNotify
|
✔️ setState without updateShouldNotify
|
||||||
✅ setState with updateShouldNotify
|
✔️ setState with updateShouldNotify
|
||||||
✅ startListening never leave the widget uninitialized
|
✔️ startListening never leave the widget uninitialized
|
||||||
✅ startListening called again on controller change
|
✔️ startListening called again on controller change
|
||||||
DeferredInheritedProvider()
|
DeferredInheritedProvider()
|
||||||
✅ create can't call inherited widgets
|
✔️ create can't call inherited widgets
|
||||||
✅ creates the value lazily
|
✔️ creates the value lazily
|
||||||
✅ 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
|
||||||
✅ asserts that the created notifier can have listeners
|
✔️ asserts that the created notifier can have listeners
|
||||||
✅ don't listen again if listenable instance doesn't change
|
✔️ don't listen again if listenable instance doesn't change
|
||||||
✅ works with null (default)
|
✔️ works with null (default)
|
||||||
✅ works with null (create)
|
✔️ works with null (create)
|
||||||
✅ stateful create called once
|
✔️ stateful create called once
|
||||||
✅ dispose called on unmount
|
✔️ dispose called on unmount
|
||||||
✅ dispose can be null
|
✔️ dispose can be null
|
||||||
✅ changing listenable rebuilds descendants
|
✔️ changing listenable rebuilds descendants
|
||||||
✅ rebuilding with the same provider don't rebuilds descendants
|
✔️ rebuilding with the same provider don't rebuilds descendants
|
||||||
✅ notifylistener rebuilds descendants
|
✔️ notifylistener rebuilds descendants
|
||||||
ListenableProvider value constructor
|
ListenableProvider value constructor
|
||||||
✅ pass down key
|
✔️ pass down key
|
||||||
✅ changing the Listenable instance rebuilds dependents
|
✔️ changing the Listenable instance rebuilds dependents
|
||||||
ListenableProvider stateful constructor
|
ListenableProvider stateful constructor
|
||||||
✅ called with context
|
✔️ called with context
|
||||||
✅ 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
|
||||||
✅ asserts that the created notifier has no listener
|
✔️ asserts that the created notifier has no listener
|
||||||
✅ asserts that the created notifier has no listener after rebuild
|
✔️ asserts that the created notifier has no listener after rebuild
|
||||||
✅ rebuilds dependendents when listeners are called
|
✔️ rebuilds dependendents when listeners are called
|
||||||
✅ update returning a new Listenable disposes the previously created value and update dependents
|
✔️ update returning a new Listenable disposes the previously created value and update dependents
|
||||||
✅ disposes of created value
|
✔️ disposes of created value
|
||||||
ListenableProxyProvider variants
|
ListenableProxyProvider variants
|
||||||
✅ ListenableProxyProvider
|
✔️ ListenableProxyProvider
|
||||||
✅ ListenableProxyProvider2
|
✔️ ListenableProxyProvider2
|
||||||
✅ ListenableProxyProvider3
|
✔️ ListenableProxyProvider3
|
||||||
✅ ListenableProxyProvider4
|
✔️ ListenableProxyProvider4
|
||||||
✅ 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
|
||||||
✅ throws if T is dynamic
|
✔️ throws if T is dynamic
|
||||||
✅ listen defaults to true when building widgets
|
✔️ listen defaults to true when building widgets
|
||||||
✅ listen defaults to false outside of the widget tree
|
✔️ listen defaults to false outside of the widget tree
|
||||||
✅ listen:false doesn't trigger rebuild
|
✔️ listen:false doesn't trigger rebuild
|
||||||
✅ listen:true outside of the widget tree throws
|
✔️ listen:true outside of the widget tree throws
|
||||||
Provider
|
Provider
|
||||||
✅ throws if the provided value is a Listenable/Stream
|
✔️ throws if the provided value is a Listenable/Stream
|
||||||
✅ debugCheckInvalidValueType can be disabled
|
✔️ debugCheckInvalidValueType can be disabled
|
||||||
✅ simple usage
|
✔️ simple usage
|
||||||
✅ 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
|
||||||
✅ debugCheckInvalidValueType can be disabled
|
✔️ debugCheckInvalidValueType can be disabled
|
||||||
✅ create creates initial value
|
✔️ create creates initial value
|
||||||
✅ consume another providers
|
✔️ consume another providers
|
||||||
✅ rebuild descendants if value change
|
✔️ rebuild descendants if value change
|
||||||
✅ call dispose when unmounted with the latest result
|
✔️ call dispose when unmounted with the latest result
|
||||||
✅ don't rebuild descendants if value doesn't change
|
✔️ don't rebuild descendants if value doesn't change
|
||||||
✅ pass down updateShouldNotify
|
✔️ pass down updateShouldNotify
|
||||||
✅ works with MultiProvider
|
✔️ works with MultiProvider
|
||||||
✅ update callback can trigger descendants setState synchronously
|
✔️ update callback can trigger descendants setState synchronously
|
||||||
✅ throws if update is null
|
✔️ throws if update is null
|
||||||
ProxyProvider variants
|
ProxyProvider variants
|
||||||
✅ ProxyProvider2
|
✔️ ProxyProvider2
|
||||||
✅ ProxyProvider3
|
✔️ ProxyProvider3
|
||||||
✅ ProxyProvider4
|
✔️ ProxyProvider4
|
||||||
✅ 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
|
||||||
✅ Deep compare iterables by default
|
✔️ Deep compare iterables by default
|
||||||
✅ Deep compare sets by default
|
✔️ Deep compare sets by default
|
||||||
✅ Deep compare lists by default
|
✔️ Deep compare lists by default
|
||||||
✅ custom shouldRebuid
|
✔️ custom shouldRebuid
|
||||||
✅ passes `child` and `key`
|
✔️ passes `child` and `key`
|
||||||
✅ calls builder if the callback changes
|
✔️ calls builder if the callback changes
|
||||||
✅ works with MultiProvider
|
✔️ works with MultiProvider
|
||||||
✅ don't call builder again if it rebuilds but selector returns the same thing
|
✔️ don't call builder again if it rebuilds but selector returns the same thing
|
||||||
✅ call builder again if it rebuilds abd selector returns the a different variable
|
✔️ call builder again if it rebuilds abd selector returns the a different variable
|
||||||
✅ Selector
|
✔️ Selector
|
||||||
✅ Selector2
|
✔️ Selector2
|
||||||
✅ Selector3
|
✔️ Selector3
|
||||||
✅ Selector4
|
✔️ Selector4
|
||||||
✅ 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
|
||||||
✅ throws if stream has error and catchError is missing
|
✔️ throws if stream has error and catchError is missing
|
||||||
✅ calls catchError if present and stream has error
|
✔️ calls catchError if present and stream has error
|
||||||
✅ works with null
|
✔️ works with null
|
||||||
✅ StreamProvider() crashes if builder is null
|
✔️ StreamProvider() crashes if builder is null
|
||||||
StreamProvider()
|
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
|
||||||
✅ don't rebuild dependents by default
|
✔️ don't rebuild dependents by default
|
||||||
✅ pass keys
|
✔️ pass keys
|
||||||
✅ don't listen again if stream instance doesn't change
|
✔️ don't listen again if stream instance doesn't change
|
||||||
❌ pass updateShouldNotify
|
❌ pass updateShouldNotify
|
||||||
The following TestFailure object was thrown running a test:
|
The following TestFailure object was thrown running a test:
|
||||||
Expected: <2>
|
Expected: <2>
|
||||||
|
|||||||
@@ -1,15 +1,12 @@
|
|||||||

|

|
||||||
|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
|
||||||
java.lang.AssertionError: expected [1.2.1] but found [1.2.0]
|
java.lang.AssertionError: expected [1.2.1] but found [1.2.0]
|
||||||
```
|
```
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,26 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/python-xunit-pytest.xml](#user-content-r0)|6 ✅|2 ❌|2 ⚪|19ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/python-xunit-pytest.xml</a>
|
|
||||||
**10** tests were completed in **19ms** with **6** passed, **2** failed and **2** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[pytest](#user-content-r0s0)|6 ✅|2 ❌|2 ⚪|19ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">pytest</a>
|
|
||||||
```
|
|
||||||
tests.test_lib
|
|
||||||
✅ test_always_pass
|
|
||||||
✅ test_with_subtests
|
|
||||||
✅ test_parameterized[param1]
|
|
||||||
✅ test_parameterized[param2]
|
|
||||||
⚪ test_always_skip
|
|
||||||
❌ test_always_fail
|
|
||||||
assert False
|
|
||||||
⚪ test_expected_failure
|
|
||||||
❌ test_error
|
|
||||||
Exception: error
|
|
||||||
✅ test_with_record_property
|
|
||||||
custom_classname
|
|
||||||
✅ test_with_record_xml_attribute
|
|
||||||
```
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/python-xunit-unittest.xml](#user-content-r0)|4 ✅|2 ❌|2 ⚪|1ms|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/python-xunit-unittest.xml</a>
|
|
||||||
**8** tests were completed in **1ms** with **4** passed, **2** failed and **2** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[TestAcme-20251114214921](#user-content-r0s0)|4 ✅|2 ❌|2 ⚪|1ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">TestAcme-20251114214921</a>
|
|
||||||
```
|
|
||||||
TestAcme
|
|
||||||
✅ test_always_pass
|
|
||||||
✅ test_parameterized_0_param1
|
|
||||||
✅ test_parameterized_1_param2
|
|
||||||
✅ test_with_subtests
|
|
||||||
❌ test_always_fail
|
|
||||||
AssertionError: failed
|
|
||||||
❌ test_error
|
|
||||||
Exception: error
|
|
||||||
⚪ test_always_skip
|
|
||||||
⚪ test_expected_failure
|
|
||||||
```
|
|
||||||
@@ -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,142 +1,136 @@
|
|||||||

|

|
||||||
<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
|
||||||
✅ CorrectlyConvertsSecureStringToString
|
✔️ CorrectlyConvertsSecureStringToString
|
||||||
✅ CorrectlyConvertsStringToSecureString
|
✔️ CorrectlyConvertsStringToSecureString
|
||||||
✅ 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
|
||||||
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
✖️ ReallyDoOpenAuthorizationPageInBrowser
|
||||||
⚪ 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
|
||||||
✅ SecureSslConnectionWorks
|
✔️ SecureSslConnectionWorks
|
||||||
✅ ThrowsWithHttpInsteadOfFtp
|
✔️ ThrowsWithHttpInsteadOfFtp
|
||||||
⚪ ThrowsWithInvalidPassword
|
✖️ ThrowsWithInvalidPassword
|
||||||
⚪ 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
|
||||||
✅ ParseStratoWebdavResponseCorrectly
|
✔️ ParseStratoWebdavResponseCorrectly
|
||||||
✅ 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
|
||||||
✅ NeedsRefreshReturnsFalseForTokenFlow
|
✔️ NeedsRefreshReturnsFalseForTokenFlow
|
||||||
✅ NeedsRefreshReturnsFalseIfNotExpired
|
✔️ NeedsRefreshReturnsFalseIfNotExpired
|
||||||
✅ NeedsRefreshReturnsTrueIfExpired
|
✔️ NeedsRefreshReturnsTrueIfExpired
|
||||||
✅ NeedsRefreshReturnsTrueIfNoExpirationDate
|
✔️ NeedsRefreshReturnsTrueIfNoExpirationDate
|
||||||
✅ SetExpiryDateBySecondsWorks
|
✔️ SetExpiryDateBySecondsWorks
|
||||||
✅ 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
|
||||||
✅ BuildAuthorizationRequestUrlThrowsWithMissingRedirectUrlForTokenFlow
|
✔️ BuildAuthorizationRequestUrlThrowsWithMissingRedirectUrlForTokenFlow
|
||||||
✅ BuildAuthorizationRequestUrlUsesAllParameters
|
✔️ BuildAuthorizationRequestUrlUsesAllParameters
|
||||||
✅ BuildAuthorizationRequestUrlUsesCodeVerifier
|
✔️ BuildAuthorizationRequestUrlUsesCodeVerifier
|
||||||
✅ ParseRealWorldDropboxRejectResponse
|
✔️ ParseRealWorldDropboxRejectResponse
|
||||||
✅ ParseRealWorldDropboxSuccessResponse
|
✔️ ParseRealWorldDropboxSuccessResponse
|
||||||
✅ 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
|
||||||
✅ FetchTokenReturnsNullForDeniedAccess
|
✔️ FetchTokenReturnsNullForDeniedAccess
|
||||||
✅ 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
|
||||||
✅ CorrectlyConvertsSecureStringToUnicodeBytes
|
✔️ CorrectlyConvertsSecureStringToUnicodeBytes
|
||||||
✅ CorrectlyConvertsSecureStringToUtf8Bytes
|
✔️ CorrectlyConvertsSecureStringToUtf8Bytes
|
||||||
✅ CorrectlyConvertsStringToSecureString
|
✔️ CorrectlyConvertsStringToSecureString
|
||||||
✅ 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
|
||||||
✅ EncryptBeforeSerializationProtectsAllNecessaryProperties
|
✔️ EncryptBeforeSerializationProtectsAllNecessaryProperties
|
||||||
✅ EncryptBeforeSerializationRespectsNullProperties
|
✔️ EncryptBeforeSerializationRespectsNullProperties
|
||||||
✅ SerializedDatacontractCanBeReadBack
|
✔️ SerializedDatacontractCanBeReadBack
|
||||||
✅ SerializedDatacontractDoesNotContainNullProperties
|
✔️ SerializedDatacontractDoesNotContainNullProperties
|
||||||
✅ SerializedDatacontractDoesNotContainPlaintextData
|
✔️ SerializedDatacontractDoesNotContainPlaintextData
|
||||||
✅ SerializedJsonCanBeReadBack
|
✔️ SerializedJsonCanBeReadBack
|
||||||
✅ SerializedJsonDoesNotContainNullProperties
|
✔️ SerializedJsonDoesNotContainNullProperties
|
||||||
✅ SerializedJsonDoesNotContainPlaintextData
|
✔️ SerializedJsonDoesNotContainPlaintextData
|
||||||
✅ SerializedXmlCanBeReadBack
|
✔️ SerializedXmlCanBeReadBack
|
||||||
✅ SerializedXmlDoesNotContainNullProperties
|
✔️ SerializedXmlDoesNotContainNullProperties
|
||||||
✅ SerializedXmlDoesNotContainPlaintextData
|
✔️ SerializedXmlDoesNotContainPlaintextData
|
||||||
```
|
```
|
||||||
</details>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[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.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[TestResults](#user-content-r0s0)|2 ✅|1 ❌||220ms|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">TestResults</a>
|
|
||||||
```
|
|
||||||
AcmeLibTests.AcmeLibTests
|
|
||||||
✅ test_always_pass
|
|
||||||
✅ test_always_skip
|
|
||||||
❌ test_always_fail
|
|
||||||
failed
|
|
||||||
```
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||

|
|
||||||
<details><summary>Expand for details</summary>
|
|
||||||
|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/nette-tester/BootstrapFormRenderer-report.xml](#user-content-r0)|4 ✅|||300ms|
|
|
||||||
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/nette-tester/BootstrapFormRenderer-report.xml</a>
|
|
||||||
**4** tests were completed in **300ms** with **4** passed, **0** failed and **0** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[BootstrapFormRenderer-report.xml](#user-content-r0s0)|4 ✅|||300ms|
|
|
||||||
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">BootstrapFormRenderer-report.xml</a>
|
|
||||||
```
|
|
||||||
KdybyTests/BootstrapFormRenderer
|
|
||||||
✅ BootstrapRendererTest.phpt::testRenderingBasics
|
|
||||||
✅ BootstrapRendererTest.phpt::testRenderingIndividual
|
|
||||||
✅ BootstrapRendererTest.phpt::testRenderingComponents
|
|
||||||
✅ BootstrapRendererTest.phpt::testMultipleFormsInTemplate
|
|
||||||
```
|
|
||||||
</details>
|
|
||||||
@@ -1,87 +0,0 @@
|
|||||||

|
|
||||||
|Report|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[fixtures/nette-tester/tester-v1.7-report.xml](#user-content-r0)|61 ✅|1 ❌|3 ⚪|2s|
|
|
||||||
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/nette-tester/tester-v1.7-report.xml</a>
|
|
||||||
**65** tests were completed in **2s** with **61** passed, **1** failed and **3** skipped.
|
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|
||||||
|:---|---:|---:|---:|---:|
|
|
||||||
|[tester-v1.7-report.xml](#user-content-r0s0)|61 ✅|1 ❌|3 ⚪|2s|
|
|
||||||
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">tester-v1.7-report.xml</a>
|
|
||||||
```
|
|
||||||
tests/Framework
|
|
||||||
⚪ Dumper.toPhp.php7.phpt
|
|
||||||
✅ Assert.contains.phpt
|
|
||||||
✅ Assert.count.phpt
|
|
||||||
✅ Assert.equal.phpt
|
|
||||||
✅ Assert.equal.recursive.phpt::testSimple
|
|
||||||
✅ Assert.equal.recursive.phpt::testMultiple
|
|
||||||
✅ Assert.equal.recursive.phpt::testDeep
|
|
||||||
✅ Assert.equal.recursive.phpt::testCross
|
|
||||||
✅ Assert.equal.recursive.phpt::testThirdParty
|
|
||||||
✅ Assert.error.phpt
|
|
||||||
✅ Assert.exception.phpt
|
|
||||||
✅ Assert.false.phpt
|
|
||||||
✅ Assert.match.phpt
|
|
||||||
✅ Assert.match.regexp.phpt
|
|
||||||
✅ Assert.nan.phpt
|
|
||||||
✅ Assert.noError.phpt
|
|
||||||
✅ Assert.same.phpt
|
|
||||||
✅ Assert.null.phpt
|
|
||||||
✅ Assert.true.phpt
|
|
||||||
✅ Assert.truthy.phpt
|
|
||||||
✅ DataProvider.load.phpt
|
|
||||||
✅ Assert.type.phpt
|
|
||||||
✅ DataProvider.parseAnnotation.phpt
|
|
||||||
✅ DataProvider.testQuery.phpt
|
|
||||||
✅ DomQuery.css2Xpath.phpt
|
|
||||||
✅ DomQuery.fromHtml.phpt
|
|
||||||
✅ DomQuery.fromXml.phpt
|
|
||||||
✅ Dumper.dumpException.phpt
|
|
||||||
✅ Dumper.color.phpt
|
|
||||||
✅ Dumper.toLine.phpt
|
|
||||||
✅ Dumper.toPhp.recursion.phpt
|
|
||||||
✅ Dumper.toPhp.phpt
|
|
||||||
✅ FileMock.phpt
|
|
||||||
✅ Helpers.escapeArg.phpt
|
|
||||||
✅ Helpers.parseDocComment.phpt
|
|
||||||
✅ TestCase.annotationThrows.phpt
|
|
||||||
✅ TestCase.annotationThrows.setUp.tearDown.phpt
|
|
||||||
✅ TestCase.annotationThrows.syntax.phpt
|
|
||||||
✅ TestCase.basic.phpt
|
|
||||||
✅ TestCase.dataProvider.generator.phpt
|
|
||||||
✅ TestCase.dataProvider.phpt
|
|
||||||
✅ TestCase.invalidMethods.phpt
|
|
||||||
✅ TestCase.invalidProvider.phpt
|
|
||||||
✅ TestCase.order.error.phpt
|
|
||||||
✅ TestCase.order.errorMuted.phpt
|
|
||||||
✅ TestCase.order.phpt
|
|
||||||
✅ Prevent loop in error handling. The #268 regression. (TestCase.ownErrorHandler.phpt)
|
|
||||||
tests/CodeCoverage
|
|
||||||
⚪ Collector.start.phpt
|
|
||||||
✅ PhpParser.parse.lines.phpt
|
|
||||||
✅ PhpParser.parse.methods.phpt
|
|
||||||
✅ CloverXMLGenerator.phpt
|
|
||||||
✅ PhpParser.parse.edge.phpt
|
|
||||||
✅ PhpParser.parse.lines-of-code.phpt
|
|
||||||
✅ PhpParser.parse.namespaces.phpt
|
|
||||||
tests/Runner
|
|
||||||
✅ CommandLine.phpt
|
|
||||||
⚪ HhvmPhpInterpreter.phpt
|
|
||||||
✅ Runner.find-tests.phpt
|
|
||||||
✅ Job.phpt
|
|
||||||
✅ ZendPhpExecutable.phpt
|
|
||||||
✅ Runner.multiple.phpt
|
|
||||||
✅ Runner.edge.phpt
|
|
||||||
✅ Runner.stop-on-fail.phpt
|
|
||||||
❌ Runner.multiple-fails.phpt
|
|
||||||
Failed: '... in /Users/izso/Developer/nette/tester/tests/Runner/multiple-fails/...' should match
|
|
||||||
... '..., unexpected end of file in %a%testcase-syntax-error.phptx on line ...'
|
|
||||||
|
|
||||||
diff '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.expected' '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.actual'
|
|
||||||
|
|
||||||
in tests/Runner/Runner.multiple-fails.phpt(78) Tester\Assert::match()
|
|
||||||
✅ Runner.annotations.phpt
|
|
||||||
tests/RunnerOutput
|
|
||||||
✅ JUnitPrinter.phpt
|
|
||||||
```
|
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`dart-json tests matches report snapshot 1`] = `
|
exports[`dart-json tests matches report snapshot 1`] = `
|
||||||
TestRunResult {
|
TestRunResult {
|
||||||
"path": "fixtures/dart-json.json",
|
"path": "fixtures/dart-json.json",
|
||||||
"suites": [
|
"suites": Array [
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "Test 1",
|
"name": "Test 1",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "Passing test",
|
"name": "Passing test",
|
||||||
@@ -19,11 +19,11 @@ TestRunResult {
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "Test 1 Test 1.1",
|
"name": "Test 1 Test 1.1",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": {
|
"error": Object {
|
||||||
"details": "package:test_api expect
|
"details": "package:test_api expect
|
||||||
test\\main_test.dart 13:9 main.<fn>.<fn>.<fn>
|
test\\\\main_test.dart 13:9 main.<fn>.<fn>.<fn>
|
||||||
",
|
",
|
||||||
"line": 13,
|
"line": 13,
|
||||||
"message": "Expected: <2>
|
"message": "Expected: <2>
|
||||||
@@ -36,9 +36,9 @@ test\\main_test.dart 13:9 main.<fn>.<fn>.<fn>
|
|||||||
"time": 20,
|
"time": 20,
|
||||||
},
|
},
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": {
|
"error": Object {
|
||||||
"details": "package:darttest/main.dart 2:3 throwError
|
"details": "package:darttest/main.dart 2:3 throwError
|
||||||
test\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
|
test\\\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
|
||||||
",
|
",
|
||||||
"line": 17,
|
"line": 17,
|
||||||
"message": "Exception: Some error",
|
"message": "Exception: Some error",
|
||||||
@@ -52,10 +52,10 @@ test\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "Test 2",
|
"name": "Test 2",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": {
|
"error": Object {
|
||||||
"details": "test\\main_test.dart 24:7 main.<fn>.<fn>
|
"details": "test\\\\main_test.dart 24:7 main.<fn>.<fn>
|
||||||
",
|
",
|
||||||
"line": 24,
|
"line": 24,
|
||||||
"message": "Exception: Some error",
|
"message": "Exception: Some error",
|
||||||
@@ -72,12 +72,12 @@ test\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": null,
|
"name": null,
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": {
|
"error": Object {
|
||||||
"details": "dart:isolate _RawReceivePortImpl._handleMessage
|
"details": "dart:isolate _RawReceivePortImpl._handleMessage
|
||||||
",
|
",
|
||||||
"line": 5,
|
"line": 5,
|
||||||
@@ -108,12 +108,12 @@ test\\main_test.dart 17:9 main.<fn>.<fn>.<fn>
|
|||||||
exports[`dart-json tests report from rrousselGit/provider test results matches snapshot 1`] = `
|
exports[`dart-json tests report from rrousselGit/provider test results matches snapshot 1`] = `
|
||||||
TestRunResult {
|
TestRunResult {
|
||||||
"path": "fixtures/external/flutter/provider-test-results.json",
|
"path": "fixtures/external/flutter/provider-test-results.json",
|
||||||
"suites": [
|
"suites": Array [
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "valueListenableProvider",
|
"name": "valueListenableProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "rebuilds when value change",
|
"name": "rebuilds when value change",
|
||||||
@@ -139,7 +139,7 @@ TestRunResult {
|
|||||||
"time": 22,
|
"time": 22,
|
||||||
},
|
},
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": {
|
"error": Object {
|
||||||
"details": "══╡ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK ╞════════════════════════════════════════════════════
|
"details": "══╡ EXCEPTION CAUGHT BY FLUTTER TEST FRAMEWORK ╞════════════════════════════════════════════════════
|
||||||
The following TestFailure object was thrown running a test:
|
The following TestFailure object was thrown running a test:
|
||||||
Expected: <2>
|
Expected: <2>
|
||||||
@@ -178,10 +178,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ListenableProvider",
|
"name": "ListenableProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "works with MultiProvider",
|
"name": "works with MultiProvider",
|
||||||
@@ -252,7 +252,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ListenableProvider value constructor",
|
"name": "ListenableProvider value constructor",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "pass down key",
|
"name": "pass down key",
|
||||||
@@ -269,7 +269,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ListenableProvider stateful constructor",
|
"name": "ListenableProvider stateful constructor",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "called with context",
|
"name": "called with context",
|
||||||
@@ -295,10 +295,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "consumer",
|
"name": "consumer",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "obtains value from Provider<T>",
|
"name": "obtains value from Provider<T>",
|
||||||
@@ -321,7 +321,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "consumer2",
|
"name": "consumer2",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "obtains value from Provider<T>",
|
"name": "obtains value from Provider<T>",
|
||||||
@@ -344,7 +344,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "consumer3",
|
"name": "consumer3",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "obtains value from Provider<T>",
|
"name": "obtains value from Provider<T>",
|
||||||
@@ -367,7 +367,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "consumer4",
|
"name": "consumer4",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "obtains value from Provider<T>",
|
"name": "obtains value from Provider<T>",
|
||||||
@@ -390,7 +390,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "consumer5",
|
"name": "consumer5",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "obtains value from Provider<T>",
|
"name": "obtains value from Provider<T>",
|
||||||
@@ -413,7 +413,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "consumer6",
|
"name": "consumer6",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "obtains value from Provider<T>",
|
"name": "obtains value from Provider<T>",
|
||||||
@@ -439,10 +439,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "Use builder property, not child",
|
"name": "Use builder property, not child",
|
||||||
@@ -453,7 +453,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ChangeNotifierProvider",
|
"name": "ChangeNotifierProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "value",
|
"name": "value",
|
||||||
@@ -515,10 +515,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ChangeNotifierProvider",
|
"name": "ChangeNotifierProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "default",
|
"name": "default",
|
||||||
@@ -535,7 +535,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ListenableProvider",
|
"name": "ListenableProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "default",
|
"name": "default",
|
||||||
@@ -552,7 +552,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "Provider",
|
"name": "Provider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "default",
|
"name": "default",
|
||||||
@@ -569,7 +569,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ProxyProvider",
|
"name": "ProxyProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "0",
|
"name": "0",
|
||||||
@@ -616,7 +616,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "MultiProvider",
|
"name": "MultiProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "with 1 ChangeNotifierProvider default",
|
"name": "with 1 ChangeNotifierProvider default",
|
||||||
@@ -690,10 +690,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "MultiProvider",
|
"name": "MultiProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "throw if providers is null",
|
"name": "throw if providers is null",
|
||||||
@@ -719,10 +719,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "works with MultiProvider",
|
"name": "works with MultiProvider",
|
||||||
@@ -763,7 +763,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "StreamProvider()",
|
"name": "StreamProvider()",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "create and dispose stream with builder",
|
"name": "create and dispose stream with builder",
|
||||||
@@ -783,10 +783,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "watch in layoutbuilder",
|
"name": "watch in layoutbuilder",
|
||||||
@@ -827,7 +827,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "BuildContext",
|
"name": "BuildContext",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "internal selected value is updated",
|
"name": "internal selected value is updated",
|
||||||
@@ -985,10 +985,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "ReassembleHandler",
|
"name": "ReassembleHandler",
|
||||||
@@ -1014,10 +1014,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "works with MultiProvider",
|
"name": "works with MultiProvider",
|
||||||
@@ -1076,7 +1076,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "FutureProvider()",
|
"name": "FutureProvider()",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "crashes if builder is null",
|
"name": "crashes if builder is null",
|
||||||
@@ -1090,10 +1090,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "works with MultiProvider",
|
"name": "works with MultiProvider",
|
||||||
@@ -1104,7 +1104,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "Provider.of",
|
"name": "Provider.of",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "throws if T is dynamic",
|
"name": "throws if T is dynamic",
|
||||||
@@ -1139,7 +1139,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "Provider",
|
"name": "Provider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "throws if the provided value is a Listenable/Stream",
|
"name": "throws if the provided value is a Listenable/Stream",
|
||||||
@@ -1177,10 +1177,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "regression test #377",
|
"name": "regression test #377",
|
||||||
@@ -1371,7 +1371,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "diagnostics",
|
"name": "diagnostics",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "InheritedProvider.value",
|
"name": "InheritedProvider.value",
|
||||||
@@ -1406,7 +1406,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "InheritedProvider.value()",
|
"name": "InheritedProvider.value()",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "markNeedsNotifyDependents during startListening is noop",
|
"name": "markNeedsNotifyDependents during startListening is noop",
|
||||||
@@ -1459,7 +1459,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "InheritedProvider()",
|
"name": "InheritedProvider()",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "hasValue",
|
"name": "hasValue",
|
||||||
@@ -1614,7 +1614,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "DeferredInheritedProvider.value()",
|
"name": "DeferredInheritedProvider.value()",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "hasValue",
|
"name": "hasValue",
|
||||||
@@ -1667,7 +1667,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "DeferredInheritedProvider()",
|
"name": "DeferredInheritedProvider()",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "create can't call inherited widgets",
|
"name": "create can't call inherited widgets",
|
||||||
@@ -1699,10 +1699,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ListenableProxyProvider",
|
"name": "ListenableProxyProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "throws if update is missing",
|
"name": "throws if update is missing",
|
||||||
@@ -1743,7 +1743,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ListenableProxyProvider variants",
|
"name": "ListenableProxyProvider variants",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "ListenableProxyProvider",
|
"name": "ListenableProxyProvider",
|
||||||
@@ -1787,10 +1787,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "asserts that builder/selector are not null",
|
"name": "asserts that builder/selector are not null",
|
||||||
@@ -1900,10 +1900,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "",
|
"name": "",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "asserts",
|
"name": "asserts",
|
||||||
@@ -1935,10 +1935,10 @@ Unexpected number of calls
|
|||||||
"totalTime": undefined,
|
"totalTime": undefined,
|
||||||
},
|
},
|
||||||
TestSuiteResult {
|
TestSuiteResult {
|
||||||
"groups": [
|
"groups": Array [
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ProxyProvider",
|
"name": "ProxyProvider",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "throws if the provided value is a Listenable/Stream",
|
"name": "throws if the provided value is a Listenable/Stream",
|
||||||
@@ -2009,7 +2009,7 @@ Unexpected number of calls
|
|||||||
},
|
},
|
||||||
TestGroupResult {
|
TestGroupResult {
|
||||||
"name": "ProxyProvider variants",
|
"name": "ProxyProvider variants",
|
||||||
"tests": [
|
"tests": Array [
|
||||||
TestCaseResult {
|
TestCaseResult {
|
||||||
"error": undefined,
|
"error": undefined,
|
||||||
"name": "ProxyProvider2",
|
"name": "ProxyProvider2",
|
||||||
|
|||||||
@@ -1,107 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
||||||
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -1,131 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
||||||
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,628 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
||||||
|
|
||||||
exports[`phpunit-junit tests report from junit-basic.xml matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/external/phpunit/junit-basic.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase1",
|
|
||||||
"result": "success",
|
|
||||||
"time": 2113.871,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase2",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1051,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase3",
|
|
||||||
"result": "success",
|
|
||||||
"time": 3441,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "Tests.Registration",
|
|
||||||
"totalTime": 6605.870999999999,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase4",
|
|
||||||
"result": "success",
|
|
||||||
"time": 2244,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase5",
|
|
||||||
"result": "success",
|
|
||||||
"time": 781,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase6",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1331,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "Tests.Authentication.Login",
|
|
||||||
"totalTime": 4356,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase7",
|
|
||||||
"result": "success",
|
|
||||||
"time": 2508,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCase8",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1230.8159999999998,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "AssertionError: Assertion error message",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "testCase9",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 982,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "Tests.Authentication",
|
|
||||||
"totalTime": 9076.816,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": 15682.687,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`phpunit-junit tests report from phpcheckstyle-phpunit.xml matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/external/phpunit/phpcheckstyle-phpunit.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testGoodDoc",
|
|
||||||
"result": "success",
|
|
||||||
"time": 5.093,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testComments",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.921,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testTODOs",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.6880000000000001,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "CommentsTest",
|
|
||||||
"totalTime": 6.702,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testDeprecations",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.9740000000000001,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "DeprecationTest",
|
|
||||||
"totalTime": 0.9740000000000001,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testGood",
|
|
||||||
"result": "success",
|
|
||||||
"time": 2.6470000000000002,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testDoWhile",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.0219999999999998,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testAnonymousFunction",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.8,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testException",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.888,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "GoodTest",
|
|
||||||
"totalTime": 5.357,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testTabIndentation",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.857,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testSpaceIndentation",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.929,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testSpaceIndentationArray",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.975,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testGoodSpaceIndentationArray",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.212,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testGoodIndentationNewLine",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.859,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testGoodIndentationSpaces",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.78,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testBadSpaces",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.1199999999999999,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testBadSpaceAfterControl",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.9219999999999999,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "IndentationTest",
|
|
||||||
"totalTime": 7.654,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testMetrics",
|
|
||||||
"result": "success",
|
|
||||||
"time": 4.146999999999999,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "MetricsTest",
|
|
||||||
"totalTime": 4.146999999999999,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testNaming",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.426,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testFunctionNaming",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.271,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "NamingTest",
|
|
||||||
"totalTime": 2.697,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testTextAfterClosingTag",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.9940000000000001,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "OptimizationTest",
|
|
||||||
"totalTime": 0.9940000000000001,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "OtherTest::testOther
|
|
||||||
We expect 20 warnings
|
|
||||||
Failed asserting that 19 matches expected 20.
|
|
||||||
|
|
||||||
/workspace/phpcheckstyle/test/OtherTest.php:24",
|
|
||||||
"line": 12,
|
|
||||||
"message": "PHPUnit\\Framework\\ExpectationFailedException",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "testOther",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 5.2509999999999994,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "OtherTest::testException
|
|
||||||
We expect 1 error
|
|
||||||
Failed asserting that 0 matches expected 1.
|
|
||||||
|
|
||||||
/workspace/phpcheckstyle/test/OtherTest.php:40",
|
|
||||||
"line": 31,
|
|
||||||
"message": "PHPUnit\\Framework\\ExpectationFailedException",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "testException",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0.751,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testEmpty",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.42700000000000005,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testSwitchCaseNeedBreak",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.901,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "OtherTest",
|
|
||||||
"totalTime": 7.329,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testTextAfterClosingTag",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.641,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testClosingTagNotNeeded",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.631,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "PHPTagsTest",
|
|
||||||
"totalTime": 1.272,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testProhibited",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.9380000000000001,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "ProhibitedTest",
|
|
||||||
"totalTime": 0.9380000000000001,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testStrictCompare",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.578,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "StrictCompareTest",
|
|
||||||
"totalTime": 1.578,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testGoodUnused",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.94,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testBadUnused",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.895,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "UnusedTest",
|
|
||||||
"totalTime": 1.835,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`phpunit-junit tests report from phpunit test results matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/phpunit/phpunit.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "PHPUnit.Event.CollectingDispatcherTest",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testHasNoCollectedEventsWhenFlushedImmediatelyAfterCreation",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.441,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCollectsDispatchedEventsUntilFlushed",
|
|
||||||
"result": "success",
|
|
||||||
"time": 2.815,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "PHPUnit\\Event\\CollectingDispatcherTest",
|
|
||||||
"totalTime": 4.256,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "PHPUnit.Event.DeferringDispatcherTest",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testCollectsEventsUntilFlush",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1.6720000000000002,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testFlushesCollectedEvents",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.661,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testSubscriberCanBeRegistered",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.33399999999999996,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testTracerCanBeRegistered",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.262,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "PHPUnit\\Event\\DeferringDispatcherTest",
|
|
||||||
"totalTime": 2.928,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "PHPUnit.Event.DirectDispatcherTest",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testDispatchesEventToKnownSubscribers",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.17,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testDispatchesEventToTracers",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.248,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testRegisterRejectsUnknownSubscriber",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.257,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "testDispatchRejectsUnknownEventType",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0.11900000000000001,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "PHPUnit\\Event\\DirectDispatcherTest",
|
|
||||||
"totalTime": 0.794,
|
|
||||||
},
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "targeting-traits-with-coversclass-attribute-is-deprecated.phptFailed asserting that string matches format description.
|
|
||||||
--- Expected
|
|
||||||
+++ Actual
|
|
||||||
@@ @@
|
|
||||||
PHPUnit Started (PHPUnit 11.2-g0c2333363 using PHP 8.2.17 (cli) on Linux)
|
|
||||||
Test Runner Configured
|
|
||||||
Test Suite Loaded (1 test)
|
|
||||||
+Test Runner Triggered Warning (No code coverage driver available)
|
|
||||||
Event Facade Sealed
|
|
||||||
Test Runner Started
|
|
||||||
Test Suite Sorted
|
|
||||||
@@ @@
|
|
||||||
Test Preparation Started (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
Test Prepared (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
Test Passed (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
-Test Runner Triggered Deprecation (Targeting a trait such as PHPUnit\\TestFixture\\CoveredTrait with #[CoversClass] is deprecated, please refactor your test to use #[CoversTrait] instead.)
|
|
||||||
Test Finished (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
Test Suite Finished (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithCoversClassTest, 1 test)
|
|
||||||
Test Runner Execution Finished
|
|
||||||
Test Runner Finished
|
|
||||||
-PHPUnit Finished (Shell Exit Code: 0)
|
|
||||||
+PHPUnit Finished (Shell Exit Code: 1)
|
|
||||||
|
|
||||||
/home/matteo/OSS/phpunit/tests/end-to-end/metadata/targeting-traits-with-coversclass-attribute-is-deprecated.phpt:28
|
|
||||||
/home/matteo/OSS/phpunit/src/Framework/TestSuite.php:369
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/TestRunner.php:62
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/Application.php:200",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "PHPUnit\\Framework\\PhptAssertionFailedError",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "targeting-traits-with-coversclass-attribute-is-deprecated.phpt",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 68.151,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "targeting-traits-with-usesclass-attribute-is-deprecated.phptFailed asserting that string matches format description.
|
|
||||||
--- Expected
|
|
||||||
+++ Actual
|
|
||||||
@@ @@
|
|
||||||
PHPUnit Started (PHPUnit 11.2-g0c2333363 using PHP 8.2.17 (cli) on Linux)
|
|
||||||
Test Runner Configured
|
|
||||||
Test Suite Loaded (1 test)
|
|
||||||
+Test Runner Triggered Warning (No code coverage driver available)
|
|
||||||
Event Facade Sealed
|
|
||||||
Test Runner Started
|
|
||||||
Test Suite Sorted
|
|
||||||
@@ @@
|
|
||||||
Test Preparation Started (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
Test Prepared (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
Test Passed (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
-Test Runner Triggered Deprecation (Targeting a trait such as PHPUnit\\TestFixture\\CoveredTrait with #[UsesClass] is deprecated, please refactor your test to use #[UsesTrait] instead.)
|
|
||||||
Test Finished (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
Test Suite Finished (PHPUnit\\DeprecatedAnnotationsTestFixture\\TraitTargetedWithUsesClassTest, 1 test)
|
|
||||||
Test Runner Execution Finished
|
|
||||||
Test Runner Finished
|
|
||||||
-PHPUnit Finished (Shell Exit Code: 0)
|
|
||||||
+PHPUnit Finished (Shell Exit Code: 1)
|
|
||||||
|
|
||||||
/home/matteo/OSS/phpunit/tests/end-to-end/metadata/targeting-traits-with-usesclass-attribute-is-deprecated.phpt:28
|
|
||||||
/home/matteo/OSS/phpunit/src/Framework/TestSuite.php:369
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/TestRunner.php:62
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/Application.php:200",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "PHPUnit\\Framework\\PhptAssertionFailedError",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "targeting-traits-with-usesclass-attribute-is-deprecated.phpt",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 64.268,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "CLI Arguments",
|
|
||||||
"totalTime": 140.397,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -1,192 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
||||||
|
|
||||||
exports[`python-xunit pytest report report from python test results matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/python-xunit-pytest.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "tests.test_lib",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_always_pass",
|
|
||||||
"result": "success",
|
|
||||||
"time": 2,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_with_subtests",
|
|
||||||
"result": "success",
|
|
||||||
"time": 5,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_parameterized[param1]",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_parameterized[param2]",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_always_skip",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "def test_always_fail():
|
|
||||||
> assert False
|
|
||||||
E assert False
|
|
||||||
|
|
||||||
tests/test_lib.py:25: AssertionError
|
|
||||||
",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "assert False",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "test_always_fail",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_expected_failure",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "def test_error():
|
|
||||||
> raise Exception("error")
|
|
||||||
E Exception: error
|
|
||||||
|
|
||||||
tests/test_lib.py:32: Exception
|
|
||||||
",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "Exception: error",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "test_error",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_with_record_property",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "custom_classname",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_with_record_xml_attribute",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "pytest",
|
|
||||||
"totalTime": 19,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`python-xunit unittest report report from python test results matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/python-xunit-unittest.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "TestAcme",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_always_pass",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_parameterized_0_param1",
|
|
||||||
"result": "success",
|
|
||||||
"time": 1,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_parameterized_1_param2",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_with_subtests",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "Traceback (most recent call last):
|
|
||||||
File "/Users/foo/Projects/python-test/tests/test_lib.py", line 24, in test_always_fail
|
|
||||||
self.fail("failed")
|
|
||||||
AssertionError: failed
|
|
||||||
",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "AssertionError: failed",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "test_always_fail",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "Traceback (most recent call last):
|
|
||||||
File "/Users/foo/Projects/python-test/tests/test_lib.py", line 31, in test_error
|
|
||||||
raise Exception("error")
|
|
||||||
Exception: error
|
|
||||||
",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "Exception: error",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "test_error",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_always_skip",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_expected_failure",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "TestAcme-20251114214921",
|
|
||||||
"totalTime": 1,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": 1,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
||||||
|
|
||||||
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,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -1,44 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
||||||
|
|
||||||
exports[`swift-xunit tests report from swift test results matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/swift-xunit.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "AcmeLibTests.AcmeLibTests",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_always_pass",
|
|
||||||
"result": "success",
|
|
||||||
"time": 36.386333,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "test_always_skip",
|
|
||||||
"result": "success",
|
|
||||||
"time": 92.039167,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": undefined,
|
|
||||||
"line": undefined,
|
|
||||||
"message": "failed",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "test_always_fail",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 92.05175,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "TestResults",
|
|
||||||
"totalTime": 220.47725000000003,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -1,485 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
|
|
||||||
|
|
||||||
exports[`tester-junit tests parses complex test names from BootstrapFormRenderer-report.xml 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/nette-tester/BootstrapFormRenderer-report.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "KdybyTests/BootstrapFormRenderer",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "BootstrapRendererTest.phpt::testRenderingBasics",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "BootstrapRendererTest.phpt::testRenderingIndividual",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "BootstrapRendererTest.phpt::testRenderingComponents",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "BootstrapRendererTest.phpt::testMultipleFormsInTemplate",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "BootstrapFormRenderer-report.xml",
|
|
||||||
"totalTime": 300,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`tester-junit tests report from tester-v1.7-report.xml matches snapshot 1`] = `
|
|
||||||
TestRunResult {
|
|
||||||
"path": "fixtures/nette-tester/tester-v1.7-report.xml",
|
|
||||||
"suites": [
|
|
||||||
TestSuiteResult {
|
|
||||||
"groups": [
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "tests/Framework",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Dumper.toPhp.php7.phpt",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.contains.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.count.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.equal.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.equal.recursive.phpt::testSimple",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.equal.recursive.phpt::testMultiple",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.equal.recursive.phpt::testDeep",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.equal.recursive.phpt::testCross",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.equal.recursive.phpt::testThirdParty",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.error.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.exception.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.false.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.match.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.match.regexp.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.nan.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.noError.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.same.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.null.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.true.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.truthy.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "DataProvider.load.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Assert.type.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "DataProvider.parseAnnotation.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "DataProvider.testQuery.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "DomQuery.css2Xpath.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "DomQuery.fromHtml.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "DomQuery.fromXml.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Dumper.dumpException.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Dumper.color.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Dumper.toLine.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Dumper.toPhp.recursion.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Dumper.toPhp.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "FileMock.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Helpers.escapeArg.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Helpers.parseDocComment.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.annotationThrows.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.annotationThrows.setUp.tearDown.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.annotationThrows.syntax.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.basic.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.dataProvider.generator.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.dataProvider.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.invalidMethods.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.invalidProvider.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.order.error.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.order.errorMuted.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "TestCase.order.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Prevent loop in error handling. The #268 regression. (TestCase.ownErrorHandler.phpt)",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "tests/CodeCoverage",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Collector.start.phpt",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "PhpParser.parse.lines.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "PhpParser.parse.methods.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "CloverXMLGenerator.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "PhpParser.parse.edge.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "PhpParser.parse.lines-of-code.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "PhpParser.parse.namespaces.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "tests/Runner",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "CommandLine.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "HhvmPhpInterpreter.phpt",
|
|
||||||
"result": "skipped",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Runner.find-tests.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Job.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "ZendPhpExecutable.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Runner.multiple.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Runner.edge.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Runner.stop-on-fail.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": {
|
|
||||||
"details": "Failed: '... in /Users/izso/Developer/nette/tester/tests/Runner/multiple-fails/...' should match
|
|
||||||
... '..., unexpected end of file in %a%testcase-syntax-error.phptx on line ...'
|
|
||||||
|
|
||||||
diff '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.expected' '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.actual'
|
|
||||||
|
|
||||||
in tests/Runner/Runner.multiple-fails.phpt(78) Tester\\Assert::match()",
|
|
||||||
"line": undefined,
|
|
||||||
"message": "Failed: '... in /Users/izso/Developer/nette/tester/tests/Runner/multiple-fails/...' should match
|
|
||||||
... '..., unexpected end of file in %a%testcase-syntax-error.phptx on line ...'
|
|
||||||
|
|
||||||
diff '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.expected' '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.actual'
|
|
||||||
|
|
||||||
in tests/Runner/Runner.multiple-fails.phpt(78) Tester\\Assert::match()",
|
|
||||||
"path": undefined,
|
|
||||||
},
|
|
||||||
"name": "Runner.multiple-fails.phpt",
|
|
||||||
"result": "failed",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "Runner.annotations.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
TestGroupResult {
|
|
||||||
"name": "tests/RunnerOutput",
|
|
||||||
"tests": [
|
|
||||||
TestCaseResult {
|
|
||||||
"error": undefined,
|
|
||||||
"name": "JUnitPrinter.phpt",
|
|
||||||
"result": "success",
|
|
||||||
"time": 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"name": "tester-v1.7-report.xml",
|
|
||||||
"totalTime": 2100,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
"totalTime": undefined,
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
@@ -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,50 +23,9 @@ 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 () => {
|
it('matches report snapshot', 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.each([['dotnet-trx'], ['dotnet-xunitv3']])('matches %s report snapshot', async reportName => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', `${reportName}.trx`)
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', `${reportName}.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',
|
|
||||||
'DotnetTests.XUnitV3Tests/FixtureTests.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 report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('matches report snapshot (only failed tests)', 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-only-failed.md')
|
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
@@ -80,12 +39,7 @@ describe('dotnet-trx tests', () => {
|
|||||||
const result = await parser.parse(filePath, fileContent)
|
const result = await parser.parse(filePath, fileContent)
|
||||||
expect(result).toMatchSnapshot()
|
expect(result).toMatchSnapshot()
|
||||||
|
|
||||||
const reportOptions: ReportOptions = {
|
const report = getReport([result])
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
listSuites: 'all',
|
|
||||||
listTests: 'failed'
|
|
||||||
}
|
|
||||||
const report = getReport([result], reportOptions)
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
@@ -129,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,60 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<TestRun id="54e29175-539e-48a3-a634-3a1855a0ed38" name="@Asterix 2025-06-22 14:17:12.022" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
|
|
||||||
<Times creation="2025-06-22T14:17:11.756535Z" queuing="2025-06-22T14:17:11.756535Z" start="2025-06-22T14:17:11.756535Z" finish="2025-06-22T14:17:12.023063Z" />
|
|
||||||
<TestSettings name="default" id="932e6c6f-3e5b-4392-ad65-e04c1ef476b5">
|
|
||||||
<Deployment runDeploymentRoot="_Asterix_2025-06-22_14_17_12.022" />
|
|
||||||
</TestSettings>
|
|
||||||
<Results>
|
|
||||||
<UnitTestResult executionId="37242a1f-ca3e-44b3-8142-71e510480975" testId="f846a1e6-0b68-2ac6-9a66-f417926e3238" testName="DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test" computerName="Asterix" duration="00:00:00.0170545" startTime="2025-06-22T14:17:11.9339840+00:00" endTime="2025-06-22T14:17:11.9750850+00:00" testType="13CDC9D9-DDB5-4fa4-A97D-D965CCFC6D4B" outcome="Failed" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" relativeResultsDirectory="37242a1f-ca3e-44b3-8142-71e510480975">
|
|
||||||
<Output>
|
|
||||||
<ErrorInfo>
|
|
||||||
<Message>Assert.Null() Failure: Value is not null
|
|
||||||
Expected: null
|
|
||||||
Actual: Fixture { }</Message>
|
|
||||||
<StackTrace> at DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test() in /_/reports/dotnet/DotnetTests.XUnitV3Tests/FixtureTests.cs:line 25
|
|
||||||
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
|
|
||||||
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)</StackTrace>
|
|
||||||
</ErrorInfo>
|
|
||||||
</Output>
|
|
||||||
</UnitTestResult>
|
|
||||||
<UnitTestResult executionId="592aaafb-4dc0-49dc-b3c7-bcd81218d58a" testId="3ee930dd-8a75-92a0-0d90-373833166db1" testName="DotnetTests.XUnitV3Tests.FixtureTests.Passing_Test" computerName="Asterix" duration="00:00:00.0008786" startTime="2025-06-22T14:17:11.9819890+00:00" endTime="2025-06-22T14:17:11.9833560+00:00" testType="13CDC9D9-DDB5-4fa4-A97D-D965CCFC6D4B" outcome="Passed" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" relativeResultsDirectory="592aaafb-4dc0-49dc-b3c7-bcd81218d58a" />
|
|
||||||
<UnitTestResult executionId="19c42d36-f4d7-4046-bcc6-dd9b85c9ca2b" testId="372fb60f-1f5b-a52e-032e-41a7556021e8" testName="[Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Passing_Test)]" computerName="Asterix" duration="00:00:00" startTime="2025-06-22T14:17:12.0320280+00:00" endTime="2025-06-22T14:17:12.0320290+00:00" testType="13CDC9D9-DDB5-4fa4-A97D-D965CCFC6D4B" outcome="Failed" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" relativeResultsDirectory="19c42d36-f4d7-4046-bcc6-dd9b85c9ca2b" />
|
|
||||||
<UnitTestResult executionId="b7f40170-1e2c-45ce-b5e4-5bf49fd4c360" testId="a69083a1-56b4-3da3-2d7c-66fda374fd8e" testName="[Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test)]" computerName="Asterix" duration="00:00:00" startTime="2025-06-22T14:17:12.0320420+00:00" endTime="2025-06-22T14:17:12.0320430+00:00" testType="13CDC9D9-DDB5-4fa4-A97D-D965CCFC6D4B" outcome="Failed" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" relativeResultsDirectory="b7f40170-1e2c-45ce-b5e4-5bf49fd4c360" />
|
|
||||||
</Results>
|
|
||||||
<TestDefinitions>
|
|
||||||
<UnitTest name="DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test" storage="~/test-reporter/reports/dotnet/dotnettests.xunitv3tests/bin/debug/net8.0/dotnettests.xunitv3tests.dll" id="f846a1e6-0b68-2ac6-9a66-f417926e3238">
|
|
||||||
<Execution id="37242a1f-ca3e-44b3-8142-71e510480975" />
|
|
||||||
<TestMethod codeBase="~/test-reporter/reports/dotnet/DotnetTests.XUnitV3Tests/bin/Debug/net8.0/DotnetTests.XUnitV3Tests.dll" adapterTypeName="executor://30ea7c6e-dd24-4152-a360-1387158cd41d/2.0.3" className="DotnetTests.XUnitV3Tests.FixtureTests" name="DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test" />
|
|
||||||
</UnitTest>
|
|
||||||
<UnitTest name="DotnetTests.XUnitV3Tests.FixtureTests.Passing_Test" storage="~/test-reporter/reports/dotnet/dotnettests.xunitv3tests/bin/debug/net8.0/dotnettests.xunitv3tests.dll" id="3ee930dd-8a75-92a0-0d90-373833166db1">
|
|
||||||
<Execution id="592aaafb-4dc0-49dc-b3c7-bcd81218d58a" />
|
|
||||||
<TestMethod codeBase="~/test-reporter/reports/dotnet/DotnetTests.XUnitV3Tests/bin/Debug/net8.0/DotnetTests.XUnitV3Tests.dll" adapterTypeName="executor://30ea7c6e-dd24-4152-a360-1387158cd41d/2.0.3" className="DotnetTests.XUnitV3Tests.FixtureTests" name="DotnetTests.XUnitV3Tests.FixtureTests.Passing_Test" />
|
|
||||||
</UnitTest>
|
|
||||||
<UnitTest name="[Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Passing_Test)]" storage="~/test-reporter/reports/dotnet/dotnettests.xunitv3tests/bin/debug/net8.0/dotnettests.xunitv3tests.dll" id="372fb60f-1f5b-a52e-032e-41a7556021e8">
|
|
||||||
<Execution id="19c42d36-f4d7-4046-bcc6-dd9b85c9ca2b" />
|
|
||||||
<TestMethod codeBase="~/test-reporter/reports/dotnet/DotnetTests.XUnitV3Tests/bin/Debug/net8.0/DotnetTests.XUnitV3Tests.dll" adapterTypeName="executor://30ea7c6e-dd24-4152-a360-1387158cd41d/2.0.3" name="[Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Passing_Test)]" />
|
|
||||||
</UnitTest>
|
|
||||||
<UnitTest name="[Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test)]" storage="~/test-reporter/reports/dotnet/dotnettests.xunitv3tests/bin/debug/net8.0/dotnettests.xunitv3tests.dll" id="a69083a1-56b4-3da3-2d7c-66fda374fd8e">
|
|
||||||
<Execution id="b7f40170-1e2c-45ce-b5e4-5bf49fd4c360" />
|
|
||||||
<TestMethod codeBase="~/test-reporter/reports/dotnet/DotnetTests.XUnitV3Tests/bin/Debug/net8.0/DotnetTests.XUnitV3Tests.dll" adapterTypeName="executor://30ea7c6e-dd24-4152-a360-1387158cd41d/2.0.3" name="[Test Class Cleanup Failure (DotnetTests.XUnitV3Tests.FixtureTests.Failing_Test)]" />
|
|
||||||
</UnitTest>
|
|
||||||
</TestDefinitions>
|
|
||||||
<TestEntries>
|
|
||||||
<TestEntry testId="f846a1e6-0b68-2ac6-9a66-f417926e3238" executionId="37242a1f-ca3e-44b3-8142-71e510480975" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" />
|
|
||||||
<TestEntry testId="3ee930dd-8a75-92a0-0d90-373833166db1" executionId="592aaafb-4dc0-49dc-b3c7-bcd81218d58a" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" />
|
|
||||||
<TestEntry testId="372fb60f-1f5b-a52e-032e-41a7556021e8" executionId="19c42d36-f4d7-4046-bcc6-dd9b85c9ca2b" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" />
|
|
||||||
<TestEntry testId="a69083a1-56b4-3da3-2d7c-66fda374fd8e" executionId="b7f40170-1e2c-45ce-b5e4-5bf49fd4c360" testListId="8C84FA94-04C1-424b-9868-57A2D4851A1D" />
|
|
||||||
</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="Failed">
|
|
||||||
<Counters total="4" executed="4" passed="1" failed="3" 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="Asterix" outcome="Error" timestamp="2025-06-22T14:17:12.033401">
|
|
||||||
<Text>Exit code indicates failure: '2'. Please refer to https://aka.ms/testingplatform/exitcodes for more information.</Text>
|
|
||||||
</RunInfo>
|
|
||||||
</RunInfos>
|
|
||||||
</ResultSummary>
|
|
||||||
</TestRun>
|
|
||||||
@@ -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,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites name="jest tests" tests="0" failures="0" errors="0" time="11.299">
|
|
||||||
<testsuite name="__tests__\main.test.js" errors="0" failures="0" skipped="0" timestamp="2020-10-27T21:39:41" time="0.486" tests="0">
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites/>
|
|
||||||
@@ -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"
|
|
||||||
}
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
<?xml version='1.0' encoding='utf-8'?>
|
|
||||||
<testsuites name="my_package.test_foo" tests="3" failures="1" errors="0" time="6.79"><testsuite name="my_package.test_foo.launch_tests" tests="3" failures="1" errors="0" skipped="0" time="6.79"><testcase classname="my_package.TestFoo" name="test_normal_case" time="2.172" /><testcase classname="my_package.TestFoo" name="test_other_case" time="4.558"><failure message="Traceback (most recent call last): File "/home/redacted/test_foo.py", line 183, in test_other_case self.assertFalse(True) AssertionError: True is not false " /></testcase><testcase classname="my_package.TestFoo" name="test_yet_another_case" time="0.06" /></testsuite></testsuites>
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--
|
|
||||||
This is a basic JUnit-style XML example to highlight the basis structure.
|
|
||||||
|
|
||||||
Example by Testmo. Copyright 2023 Testmo GmbH. All rights reserved.
|
|
||||||
Testmo test management software - https://www.testmo.com/
|
|
||||||
-->
|
|
||||||
<testsuites time="15.682687">
|
|
||||||
<testsuite name="Tests.Registration" time="6.605871">
|
|
||||||
<testcase name="testCase1" classname="Tests.Registration" time="2.113871" />
|
|
||||||
<testcase name="testCase2" classname="Tests.Registration" time="1.051" />
|
|
||||||
<testcase name="testCase3" classname="Tests.Registration" time="3.441" />
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="Tests.Authentication" time="9.076816">
|
|
||||||
<!-- Java JUni4 XML files does not nest <testsuite> elements -->
|
|
||||||
<!--
|
|
||||||
<testsuite name="Tests.Authentication.Login" time="4.356">
|
|
||||||
<testcase name="testCase4" classname="Tests.Authentication.Login" time="2.244" />
|
|
||||||
<testcase name="testCase5" classname="Tests.Authentication.Login" time="0.781" />
|
|
||||||
<testcase name="testCase6" classname="Tests.Authentication.Login" time="1.331" />
|
|
||||||
</testsuite>
|
|
||||||
-->
|
|
||||||
<testcase name="testCase7" classname="Tests.Authentication" time="2.508" />
|
|
||||||
<testcase name="testCase8" classname="Tests.Authentication" time="1.230816" />
|
|
||||||
<testcase name="testCase9" classname="Tests.Authentication" time="0.982">
|
|
||||||
<failure message="Assertion error message" type="AssertionError">
|
|
||||||
<!-- Call stack printed here -->
|
|
||||||
</failure>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
141
__tests__/fixtures/external/java/junit4-complete.xml
vendored
141
__tests__/fixtures/external/java/junit4-complete.xml
vendored
@@ -1,141 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--
|
|
||||||
This is a JUnit-style XML example with commonly used tags and attributes.
|
|
||||||
|
|
||||||
Example by Testmo. Copyright 2023 Testmo GmbH. All rights reserved.
|
|
||||||
Testmo test management software - https://www.testmo.com/
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- <testsuites> Usually the root element of a JUnit XML file. Some tools leave out
|
|
||||||
the <testsuites> element if there is only a single top-level <testsuite> element (which
|
|
||||||
is then used as the root element).
|
|
||||||
|
|
||||||
name Name of the entire test run
|
|
||||||
tests Total number of tests in this file
|
|
||||||
failures Total number of failed tests in this file
|
|
||||||
errors Total number of errored tests in this file
|
|
||||||
skipped Total number of skipped tests in this file
|
|
||||||
assertions Total number of assertions for all tests in this file
|
|
||||||
time Aggregated time of all tests in this file in seconds
|
|
||||||
timestamp Date and time of when the test run was executed (in ISO 8601 format)
|
|
||||||
-->
|
|
||||||
<testsuites name="Test run" tests="8" failures="1" errors="1" skipped="1"
|
|
||||||
assertions="20" time="16.082687" timestamp="2021-04-02T15:48:23">
|
|
||||||
|
|
||||||
<!-- <testsuite> A test suite usually represents a class, folder or group of tests.
|
|
||||||
There can be many test suites in an XML file, and there can be test suites under other
|
|
||||||
test suites.
|
|
||||||
|
|
||||||
name Name of the test suite (e.g. class name or folder name)
|
|
||||||
tests Total number of tests in this suite
|
|
||||||
failures Total number of failed tests in this suite
|
|
||||||
errors Total number of errored tests in this suite
|
|
||||||
skipped Total number of skipped tests in this suite
|
|
||||||
assertions Total number of assertions for all tests in this suite
|
|
||||||
time Aggregated time of all tests in this file in seconds
|
|
||||||
timestamp Date and time of when the test suite was executed (in ISO 8601 format)
|
|
||||||
file Source code file of this test suite
|
|
||||||
-->
|
|
||||||
<testsuite name="Tests.Registration" tests="8" failures="1" errors="1" skipped="1"
|
|
||||||
assertions="20" time="16.082687" timestamp="2021-04-02T15:48:23"
|
|
||||||
file="tests/registration.code">
|
|
||||||
|
|
||||||
<!-- <properties> Test suites (and test cases, see below) can have additional
|
|
||||||
properties such as environment variables or version numbers. -->
|
|
||||||
<properties>
|
|
||||||
<!-- <property> Each property has a name and value. Some tools also support
|
|
||||||
properties with text values instead of value attributes. -->
|
|
||||||
<property name="version" value="1.774" />
|
|
||||||
<property name="commit" value="ef7bebf" />
|
|
||||||
<property name="browser" value="Google Chrome" />
|
|
||||||
<property name="ci" value="https://github.com/actions/runs/1234" />
|
|
||||||
<property name="config">
|
|
||||||
Config line #1
|
|
||||||
Config line #2
|
|
||||||
Config line #3
|
|
||||||
</property>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
<!-- <system-out> Optionally data written to standard out for the suite.
|
|
||||||
Also supported on a test case level, see below. -->
|
|
||||||
<system-out>Data written to standard out.</system-out>
|
|
||||||
|
|
||||||
<!-- <system-err> Optionally data written to standard error for the suite.
|
|
||||||
Also supported on a test case level, see below. -->
|
|
||||||
<system-err>Data written to standard error.</system-err>
|
|
||||||
|
|
||||||
<!-- <testcase> There are one or more test cases in a test suite. A test passed
|
|
||||||
if there isn't an additional result element (skipped, failure, error).
|
|
||||||
|
|
||||||
name The name of this test case, often the method name
|
|
||||||
classname The name of the parent class/folder, often the same as the suite's name
|
|
||||||
assertions Number of assertions checked during test case execution
|
|
||||||
time Execution time of the test in seconds
|
|
||||||
file Source code file of this test case
|
|
||||||
line Source code line number of the start of this test case
|
|
||||||
-->
|
|
||||||
<testcase name="testCase1" classname="Tests.Registration" assertions="2"
|
|
||||||
time="2.436" file="tests/registration.code" line="24" />
|
|
||||||
<testcase name="testCase2" classname="Tests.Registration" assertions="6"
|
|
||||||
time="1.534" file="tests/registration.code" line="62" />
|
|
||||||
<testcase name="testCase3" classname="Tests.Registration" assertions="3"
|
|
||||||
time="0.822" file="tests/registration.code" line="102" />
|
|
||||||
|
|
||||||
<!-- Example of a test case that was skipped -->
|
|
||||||
<testcase name="testCase4" classname="Tests.Registration" assertions="0"
|
|
||||||
time="0" file="tests/registration.code" line="164">
|
|
||||||
<!-- <skipped> Indicates that the test was not executed. Can have an optional
|
|
||||||
message describing why the test was skipped. -->
|
|
||||||
<skipped message="Test was skipped." />
|
|
||||||
</testcase>
|
|
||||||
|
|
||||||
<!-- Example of a test case that failed. -->
|
|
||||||
<testcase name="testCase5" classname="Tests.Registration" assertions="2"
|
|
||||||
time="2.902412" file="tests/registration.code" line="202">
|
|
||||||
<!-- <failure> The test failed because one of the assertions/checks failed.
|
|
||||||
Can have a message and failure type, often the assertion type or class. The text
|
|
||||||
content of the element often includes the failure description or stack trace. -->
|
|
||||||
<failure message="Expected value did not match." type="AssertionError">
|
|
||||||
<!-- Failure description or stack trace -->
|
|
||||||
</failure>
|
|
||||||
</testcase>
|
|
||||||
|
|
||||||
<!-- Example of a test case that had errors. -->
|
|
||||||
<testcase name="testCase6" classname="Tests.Registration" assertions="0"
|
|
||||||
time="3.819" file="tests/registration.code" line="235">
|
|
||||||
<!-- <error> The test had an unexpected error during execution. Can have a
|
|
||||||
message and error type, often the exception type or class. The text
|
|
||||||
content of the element often includes the error description or stack trace. -->
|
|
||||||
<error message="Division by zero." type="ArithmeticError">
|
|
||||||
<!-- Error description or stack trace -->
|
|
||||||
</error>
|
|
||||||
</testcase>
|
|
||||||
|
|
||||||
<!-- Example of a test case with outputs. -->
|
|
||||||
<testcase name="testCase7" classname="Tests.Registration" assertions="3"
|
|
||||||
time="2.944" file="tests/registration.code" line="287">
|
|
||||||
<!-- <system-out> Optional data written to standard out for the test case. -->
|
|
||||||
<system-out>Data written to standard out.</system-out>
|
|
||||||
|
|
||||||
<!-- <system-err> Optional data written to standard error for the test case. -->
|
|
||||||
<system-err>Data written to standard error.</system-err>
|
|
||||||
</testcase>
|
|
||||||
|
|
||||||
<!-- Example of a test case with properties -->
|
|
||||||
<testcase name="testCase8" classname="Tests.Registration" assertions="4"
|
|
||||||
time="1.625275" file="tests/registration.code" line="302">
|
|
||||||
<!-- <properties> Some tools also support properties for test cases. -->
|
|
||||||
<properties>
|
|
||||||
<property name="priority" value="high" />
|
|
||||||
<property name="language" value="english" />
|
|
||||||
<property name="author" value="Adrian" />
|
|
||||||
<property name="attachment" value="screenshots/dashboard.png" />
|
|
||||||
<property name="attachment" value="screenshots/users.png" />
|
|
||||||
<property name="description">
|
|
||||||
This text describes the purpose of this test case and provides
|
|
||||||
an overview of what the test does and how it works.
|
|
||||||
</property>
|
|
||||||
</properties>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites name="React components test" tests="1" failures="0" errors="0" time="1.0">
|
|
||||||
<testsuite name="<Component />" errors="0" failures="0" skipped="0" timestamp="2021-01-24T19:21:45" time="0.798" tests="1">
|
|
||||||
<testcase classname="" name="<Component /> should render properly" time="0.704">
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,28 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!--
|
|
||||||
This is a basic JUnit-style XML example to highlight the basis structure.
|
|
||||||
|
|
||||||
Example by Testmo. Copyright 2023 Testmo GmbH. All rights reserved.
|
|
||||||
Testmo test management software - https://www.testmo.com/
|
|
||||||
-->
|
|
||||||
<testsuites time="15.682687">
|
|
||||||
<testsuite name="Tests.Registration" time="6.605871">
|
|
||||||
<testcase name="testCase1" classname="Tests.Registration" time="2.113871" />
|
|
||||||
<testcase name="testCase2" classname="Tests.Registration" time="1.051" />
|
|
||||||
<testcase name="testCase3" classname="Tests.Registration" time="3.441" />
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="Tests.Authentication" time="9.076816">
|
|
||||||
<testsuite name="Tests.Authentication.Login" time="4.356">
|
|
||||||
<testcase name="testCase4" classname="Tests.Authentication.Login" time="2.244" />
|
|
||||||
<testcase name="testCase5" classname="Tests.Authentication.Login" time="0.781" />
|
|
||||||
<testcase name="testCase6" classname="Tests.Authentication.Login" time="1.331" />
|
|
||||||
</testsuite>
|
|
||||||
<testcase name="testCase7" classname="Tests.Authentication" time="2.508" />
|
|
||||||
<testcase name="testCase8" classname="Tests.Authentication" time="1.230816" />
|
|
||||||
<testcase name="testCase9" classname="Tests.Authentication" time="0.982">
|
|
||||||
<failure message="Assertion error message" type="AssertionError">
|
|
||||||
<!-- Call stack printed here -->
|
|
||||||
</failure>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,212 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="/workspace/phpcheckstyle/phpunit.xml" tests="30" assertions="117" errors="0" failures="2" skipped="0" time="0.041478">
|
|
||||||
<testsuite name="PHPUnitTestSuite" tests="30" assertions="117" errors="0" failures="2" skipped="0" time="0.041478">
|
|
||||||
<testsuite name="CommentsTest" file="/workspace/phpcheckstyle/test/CommentsTest.php" tests="3" assertions="12" errors="0" failures="0" skipped="0" time="0.006702">
|
|
||||||
<testcase name="testGoodDoc" file="/workspace/phpcheckstyle/test/CommentsTest.php" line="12" class="CommentsTest" classname="CommentsTest" assertions="4" time="0.005093"/>
|
|
||||||
<testcase name="testComments" file="/workspace/phpcheckstyle/test/CommentsTest.php" line="30" class="CommentsTest" classname="CommentsTest" assertions="4" time="0.000921">
|
|
||||||
<system-out>File "./test/sample/bad_comments.php" warning, line 4 - Avoid Shell/Perl like comments.
|
|
||||||
File "./test/sample/bad_comments.php" warning, line 6 - The class Comments must have a docblock comment.
|
|
||||||
File "./test/sample/bad_comments.php" warning, line 10 - The function testComment must have a docblock comment.
|
|
||||||
File "./test/sample/bad_comments.php" warning, line 18 - The function testComment returns a value and must include @returns in its docblock.
|
|
||||||
File "./test/sample/bad_comments.php" warning, line 18 - The function testComment parameters must match those in its docblock @param.
|
|
||||||
File "./test/sample/bad_comments.php" warning, line 18 - The function testComment throws an exception and must include @throws in its docblock.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testTODOs" file="/workspace/phpcheckstyle/test/CommentsTest.php" line="48" class="CommentsTest" classname="CommentsTest" assertions="4" time="0.000688">
|
|
||||||
<system-out>File "./test/sample/todo.php" warning, line 3 - TODO: The todo message.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="DeprecationTest" file="/workspace/phpcheckstyle/test/DeprecationTest.php" tests="1" assertions="4" errors="0" failures="0" skipped="0" time="0.000974">
|
|
||||||
<testcase name="testDeprecations" file="/workspace/phpcheckstyle/test/DeprecationTest.php" line="12" class="DeprecationTest" classname="DeprecationTest" assertions="4" time="0.000974">
|
|
||||||
<system-out>File "./test/sample/bad_deprecation.php" warning, line 17 - split is deprecated since PHP 5.3. explode($pattern, $string) or preg_split('@'.$pattern.'@', $string) must be used instead.
|
|
||||||
File "./test/sample/bad_deprecation.php" warning, line 19 - ereg is deprecated since PHP 5.3. preg_match('@'.$pattern.'@', $string) must be used instead.
|
|
||||||
File "./test/sample/bad_deprecation.php" warning, line 21 - session_register is deprecated since PHP 5.3. $_SESSION must be used instead.
|
|
||||||
File "./test/sample/bad_deprecation.php" warning, line 23 - mysql_db_query is deprecated since PHP 5.3. mysql_select_db and mysql_query must be used instead.
|
|
||||||
File "./test/sample/bad_deprecation.php" warning, line 25 - $HTTP_GET_VARS is deprecated since PHP 5.3. $_GET must be used instead.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="GoodTest" file="/workspace/phpcheckstyle/test/GoodTest.php" tests="4" assertions="16" errors="0" failures="0" skipped="0" time="0.005357">
|
|
||||||
<testcase name="testGood" file="/workspace/phpcheckstyle/test/GoodTest.php" line="12" class="GoodTest" classname="GoodTest" assertions="4" time="0.002647"/>
|
|
||||||
<testcase name="testDoWhile" file="/workspace/phpcheckstyle/test/GoodTest.php" line="32" class="GoodTest" classname="GoodTest" assertions="4" time="0.001022"/>
|
|
||||||
<testcase name="testAnonymousFunction" file="/workspace/phpcheckstyle/test/GoodTest.php" line="50" class="GoodTest" classname="GoodTest" assertions="4" time="0.000800"/>
|
|
||||||
<testcase name="testException" file="/workspace/phpcheckstyle/test/GoodTest.php" line="68" class="GoodTest" classname="GoodTest" assertions="4" time="0.000888"/>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="IndentationTest" file="/workspace/phpcheckstyle/test/IndentationTest.php" tests="8" assertions="32" errors="0" failures="0" skipped="0" time="0.007654">
|
|
||||||
<testcase name="testTabIndentation" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="12" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.000857">
|
|
||||||
<system-out>File "./test/sample/bad_indentation.php" warning, line 8 - Whitespace indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 15 - Whitespace indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 17 - Whitespace indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 18 - Whitespace indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 19 - Whitespace indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 20 - Whitespace indentation must not be used.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testSpaceIndentation" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="30" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.000929">
|
|
||||||
<system-out>File "./test/sample/bad_indentation.php" warning, line 10 - Tab indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 10 - The indentation level must be 4 but was 1.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 13 - Tab indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 13 - The indentation level must be 4 but was 1.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 15 - The indentation level must be 8 but was 4.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 16 - Tab indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 16 - The indentation level must be 8 but was 1.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 17 - The indentation level must be 8 but was 3.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 18 - The indentation level must be 8 but was 5.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 19 - The indentation level must be 8 but was 6.
|
|
||||||
File "./test/sample/bad_indentation.php" warning, line 20 - The indentation level must be 4 but was 1.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testSpaceIndentationArray" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="51" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.000975">
|
|
||||||
<system-out>File "./test/sample/bad_indentation_array.php" warning, line 10 - Tab indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 10 - The indentation level must be 4 but was 1.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 13 - Tab indentation must not be used.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 13 - The indentation level must be 4 but was 1.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 16 - The indentation level must be 12 but was 8.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 24 - The indentation level must be 12 but was 8.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 29 - The indentation level must be 8 but was 12.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 15 - Undeclared or unused variable: $aVar.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 19 - Undeclared or unused variable: $bVar.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 23 - Undeclared or unused variable: $cVar.
|
|
||||||
File "./test/sample/bad_indentation_array.php" warning, line 27 - Undeclared or unused variable: $dVar.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testGoodSpaceIndentationArray" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="72" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.001212"/>
|
|
||||||
<testcase name="testGoodIndentationNewLine" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="93" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.000859"/>
|
|
||||||
<testcase name="testGoodIndentationSpaces" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="116" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.000780"/>
|
|
||||||
<testcase name="testBadSpaces" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="137" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.001120">
|
|
||||||
<system-out>File "./test/sample/bad_spaces.php" warning, line 17 - Whitespace must follow ,.
|
|
||||||
File "./test/sample/bad_spaces.php" warning, line 17 - Whitespace must precede {.
|
|
||||||
File "./test/sample/bad_spaces.php" warning, line 19 - Whitespace must follow if.
|
|
||||||
File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must precede =.
|
|
||||||
File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must follow =.
|
|
||||||
File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must precede +.
|
|
||||||
File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must follow +.
|
|
||||||
File "./test/sample/bad_spaces.php" info, line 25 - Whitespace must not precede ,.
|
|
||||||
File "./test/sample/bad_spaces.php" info, line 26 - Whitespace must not follow !.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testBadSpaceAfterControl" file="/workspace/phpcheckstyle/test/IndentationTest.php" line="155" class="IndentationTest" classname="IndentationTest" assertions="4" time="0.000922">
|
|
||||||
<system-out>File "./test/sample/bad_space_after_control.php" warning, line 19 - Whitespace must not follow if.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="MetricsTest" file="/workspace/phpcheckstyle/test/MetricsTest.php" tests="1" assertions="4" errors="0" failures="0" skipped="0" time="0.004147">
|
|
||||||
<testcase name="testMetrics" file="/workspace/phpcheckstyle/test/MetricsTest.php" line="12" class="MetricsTest" classname="MetricsTest" assertions="4" time="0.004147">
|
|
||||||
<system-out>File "./test/sample/bad_metrics.php" warning, line 21 - The function testMetrics's number of parameters (6) must not exceed 4.
|
|
||||||
File "./test/sample/bad_metrics.php" info, line 55 - Line is too long. [233/160]
|
|
||||||
File "./test/sample/bad_metrics.php" warning, line 21 - The Cyclomatic Complexity of function testMetrics is too high. [15/10]
|
|
||||||
File "./test/sample/bad_metrics.php" warning, line 244 - The testMetrics function body length is too long. [223/200]
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="NamingTest" file="/workspace/phpcheckstyle/test/NamingTest.php" tests="2" assertions="8" errors="0" failures="0" skipped="0" time="0.002697">
|
|
||||||
<testcase name="testNaming" file="/workspace/phpcheckstyle/test/NamingTest.php" line="12" class="NamingTest" classname="NamingTest" assertions="4" time="0.001426">
|
|
||||||
<system-out>File "./test/sample/_bad_naming.php" error, line 11 - Constant _badly_named_constant name should follow the pattern /^[A-Z][A-Z0-9_]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" error, line 13 - Constant bad_CONST name should follow the pattern /^[A-Z][A-Z0-9_]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" warning, line 17 - Top level variable $XXX name should follow the pattern /^[a-z_][a-zA-Z0-9]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" warning, line 20 - Variable x name length is too short.
|
|
||||||
File "./test/sample/_bad_naming.php" error, line 28 - Class badlynamedclass name should follow the pattern /^[A-Z][a-zA-Z0-9_]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" warning, line 32 - Member variable $YYY name should follow the pattern /^[a-z_][a-zA-Z0-9]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" warning, line 37 - The constructor name must be __construct().
|
|
||||||
File "./test/sample/_bad_naming.php" error, line 44 - Function Badlynamedfunction name should follow the pattern /^[a-z][a-zA-Z0-9]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" warning, line 47 - Local variable $ZZZ name should follow the pattern /^[a-z_][a-zA-Z0-9]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" error, line 54 - Protected function Badlynamedfunction2 name should follow the pattern /^[a-z][a-zA-Z0-9]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" error, line 61 - Private function badlynamedfunction3 name should follow the pattern /^_[a-z][a-zA-Z0-9]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" error, line 70 - Interface _badlynamedinterface name should follow the pattern /^[A-Z][a-zA-Z0-9_]*$/.
|
|
||||||
File "./test/sample/_bad_naming.php" error, line 75 - File _bad_naming.php name should follow the pattern /^[a-zA-Z][a-zA-Z0-9._]*$/.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testFunctionNaming" file="/workspace/phpcheckstyle/test/NamingTest.php" line="32" class="NamingTest" classname="NamingTest" assertions="4" time="0.001271"/>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="OptimizationTest" file="/workspace/phpcheckstyle/test/OptimizationTest.php" tests="1" assertions="4" errors="0" failures="0" skipped="0" time="0.000994">
|
|
||||||
<testcase name="testTextAfterClosingTag" file="/workspace/phpcheckstyle/test/OptimizationTest.php" line="12" class="OptimizationTest" classname="OptimizationTest" assertions="4" time="0.000994">
|
|
||||||
<system-out>File "./test/sample/bad_optimisation.php" warning, line 18 - count function must not be used inside a loop.
|
|
||||||
File "./test/sample/bad_optimisation.php" warning, line 23 - count function must not be used inside a loop.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="OtherTest" file="/workspace/phpcheckstyle/test/OtherTest.php" tests="4" assertions="13" errors="0" failures="2" skipped="0" time="0.007329">
|
|
||||||
<testcase name="testOther" file="/workspace/phpcheckstyle/test/OtherTest.php" line="12" class="OtherTest" classname="OtherTest" assertions="4" time="0.005251">
|
|
||||||
<failure type="PHPUnit\Framework\ExpectationFailedException">OtherTest::testOther
|
|
||||||
We expect 20 warnings
|
|
||||||
Failed asserting that 19 matches expected 20.
|
|
||||||
|
|
||||||
/workspace/phpcheckstyle/test/OtherTest.php:24</failure>
|
|
||||||
<system-out>File "./test/sample/bad_other.php" warning, line 17 - All arguments with default values must be at the end of the block or statement.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 21 - Errors must not be silenced when calling a function.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 23 - Prefer single-quoted strings when you don't need string interpolation.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 23 - Encapsed variables must not be used inside a string.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 23 - Encapsed variables must not be used inside a string.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 23 - Prefer single-quoted strings when you don't need string interpolation.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 37 - TODO: Show todos
|
|
||||||
File "./test/sample/bad_other.php" warning, line 40 - Avoid empty statements (;;).
|
|
||||||
File "./test/sample/bad_other.php" warning, line 42 - Boolean operators (&&) must be used instead of logical operators (AND).
|
|
||||||
File "./test/sample/bad_other.php" warning, line 42 - Empty if block.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 48 - Heredoc syntax must not be used.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 52 - The statement if must contain its code within a {} block.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 54 - Consider using a strict comparison operator instead of ==.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 54 - The statement while must contain its code within a {} block.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 66 - The switch statement must have a default case.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 79 - The default case of a switch statement must be located after all other cases.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 93 - Unary operators (++ or --) must not be used inside a control statement
|
|
||||||
File "./test/sample/bad_other.php" warning, line 95 - Assigments (=) must not be used inside a control statement.
|
|
||||||
File "./test/sample/bad_other.php" warning, line 106 - File ./test/sample/bad_other.php must not have multiple class declarations.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testException" file="/workspace/phpcheckstyle/test/OtherTest.php" line="31" class="OtherTest" classname="OtherTest" assertions="1" time="0.000751">
|
|
||||||
<failure type="PHPUnit\Framework\ExpectationFailedException">OtherTest::testException
|
|
||||||
We expect 1 error
|
|
||||||
Failed asserting that 0 matches expected 1.
|
|
||||||
|
|
||||||
/workspace/phpcheckstyle/test/OtherTest.php:40</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testEmpty" file="/workspace/phpcheckstyle/test/OtherTest.php" line="50" class="OtherTest" classname="OtherTest" assertions="4" time="0.000427">
|
|
||||||
<system-out>File "./test/sample/empty.php" warning, line 1 - The file ./test/sample/empty.php is empty.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testSwitchCaseNeedBreak" file="/workspace/phpcheckstyle/test/OtherTest.php" line="69" class="OtherTest" classname="OtherTest" assertions="4" time="0.000901">
|
|
||||||
<system-out>File "./test/sample/switch_multi_case.php" warning, line 10 - The case statement must contain a break.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="PHPTagsTest" file="/workspace/phpcheckstyle/test/PHPTagsTest.php" tests="2" assertions="8" errors="0" failures="0" skipped="0" time="0.001272">
|
|
||||||
<testcase name="testTextAfterClosingTag" file="/workspace/phpcheckstyle/test/PHPTagsTest.php" line="12" class="PHPTagsTest" classname="PHPTagsTest" assertions="4" time="0.000641">
|
|
||||||
<system-out>File "./test/sample/bad_php_tags_text_after_end.php" warning, line 9 - A PHP close tag must not be included at the end of the file.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testClosingTagNotNeeded" file="/workspace/phpcheckstyle/test/PHPTagsTest.php" line="30" class="PHPTagsTest" classname="PHPTagsTest" assertions="4" time="0.000631">
|
|
||||||
<system-out>File "./test/sample/bad_php_tags_end_not_needed.php" warning, line 1 - PHP tag should be at the beginning of the line.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="ProhibitedTest" file="/workspace/phpcheckstyle/test/ProhibitedTest.php" tests="1" assertions="4" errors="0" failures="0" skipped="0" time="0.000938">
|
|
||||||
<testcase name="testProhibited" file="/workspace/phpcheckstyle/test/ProhibitedTest.php" line="13" class="ProhibitedTest" classname="ProhibitedTest" assertions="4" time="0.000938">
|
|
||||||
<system-out>File "./test/sample/bad_prohibited.php" warning, line 18 - The function exec must not be called.
|
|
||||||
File "./test/sample/bad_prohibited.php" warning, line 20 - Token T_PRINT must not be used.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="StrictCompareTest" file="/workspace/phpcheckstyle/test/StrictCompareTest.php" tests="1" assertions="4" errors="0" failures="0" skipped="0" time="0.001578">
|
|
||||||
<testcase name="testStrictCompare" file="/workspace/phpcheckstyle/test/StrictCompareTest.php" line="12" class="StrictCompareTest" classname="StrictCompareTest" assertions="4" time="0.001578">
|
|
||||||
<system-out>File "./test/sample/bad_strictcompare.php" warning, line 14 - Consider using a strict comparison operator instead of ==.
|
|
||||||
File "./test/sample/bad_strictcompare.php" warning, line 19 - Consider using a strict comparison operator instead of !=.
|
|
||||||
File "./test/sample/bad_strictcompare.php" warning, line 24 - Consider using a strict comparison operator instead of ==.
|
|
||||||
File "./test/sample/bad_strictcompare.php" warning, line 29 - Consider using a strict comparison operator instead of ==.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="UnusedTest" file="/workspace/phpcheckstyle/test/UnusedTest.php" tests="2" assertions="8" errors="0" failures="0" skipped="0" time="0.001835">
|
|
||||||
<testcase name="testGoodUnused" file="/workspace/phpcheckstyle/test/UnusedTest.php" line="13" class="UnusedTest" classname="UnusedTest" assertions="4" time="0.000940"/>
|
|
||||||
<testcase name="testBadUnused" file="/workspace/phpcheckstyle/test/UnusedTest.php" line="32" class="UnusedTest" classname="UnusedTest" assertions="4" time="0.000895">
|
|
||||||
<system-out>File "./test/sample/bad_unused.php" warning, line 23 - Function _testUnused has unused code after RETURN.
|
|
||||||
File "./test/sample/bad_unused.php" warning, line 27 - The function _testUnused parameter $b is not used.
|
|
||||||
File "./test/sample/bad_unused.php" warning, line 18 - Unused private function: _testUnused.
|
|
||||||
File "./test/sample/bad_unused.php" warning, line 20 - Undeclared or unused variable: $c.
|
|
||||||
</system-out>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuite>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -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,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite errors="0" skipped="0" tests="4" time="0.3" timestamp="2026-01-01T16:36:10">
|
|
||||||
<testcase classname="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testRenderingBasics]" name="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testRenderingBasics]"/>
|
|
||||||
<testcase classname="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testRenderingIndividual]" name="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testRenderingIndividual]"/>
|
|
||||||
<testcase classname="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testRenderingComponents]" name="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testRenderingComponents]"/>
|
|
||||||
<testcase classname="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testMultipleFormsInTemplate]" name="Kdyby\BootstrapFormRenderer\BootstrapRenderer. | KdybyTests/BootstrapFormRenderer/BootstrapRendererTest.phpt [method=testMultipleFormsInTemplate]"/>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,83 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite errors="1" skipped="3" tests="65" time="2.1" timestamp="2026-01-01T16:50:52">
|
|
||||||
<testcase classname="tests/Framework/Dumper.toPhp.php7.phpt" name="tests/Framework/Dumper.toPhp.php7.phpt">
|
|
||||||
<skipped/>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests/CodeCoverage/Collector.start.phpt" name="tests/CodeCoverage/Collector.start.phpt">
|
|
||||||
<skipped/>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests/CodeCoverage/PhpParser.parse.lines.phpt" name="tests/CodeCoverage/PhpParser.parse.lines.phpt"/>
|
|
||||||
<testcase classname="tests/CodeCoverage/PhpParser.parse.methods.phpt" name="tests/CodeCoverage/PhpParser.parse.methods.phpt"/>
|
|
||||||
<testcase classname="tests/CodeCoverage/CloverXMLGenerator.phpt" name="tests/CodeCoverage/CloverXMLGenerator.phpt"/>
|
|
||||||
<testcase classname="tests/CodeCoverage/PhpParser.parse.edge.phpt" name="tests/CodeCoverage/PhpParser.parse.edge.phpt"/>
|
|
||||||
<testcase classname="tests/CodeCoverage/PhpParser.parse.lines-of-code.phpt" name="tests/CodeCoverage/PhpParser.parse.lines-of-code.phpt"/>
|
|
||||||
<testcase classname="tests/CodeCoverage/PhpParser.parse.namespaces.phpt" name="tests/CodeCoverage/PhpParser.parse.namespaces.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.contains.phpt" name="tests/Framework/Assert.contains.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.count.phpt" name="tests/Framework/Assert.count.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.equal.phpt" name="tests/Framework/Assert.equal.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.equal.recursive.phpt [method=testSimple]" name="tests/Framework/Assert.equal.recursive.phpt [method=testSimple]"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.equal.recursive.phpt [method=testMultiple]" name="tests/Framework/Assert.equal.recursive.phpt [method=testMultiple]"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.equal.recursive.phpt [method=testDeep]" name="tests/Framework/Assert.equal.recursive.phpt [method=testDeep]"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.equal.recursive.phpt [method=testCross]" name="tests/Framework/Assert.equal.recursive.phpt [method=testCross]"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.equal.recursive.phpt [method=testThirdParty]" name="tests/Framework/Assert.equal.recursive.phpt [method=testThirdParty]"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.error.phpt" name="tests/Framework/Assert.error.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.exception.phpt" name="tests/Framework/Assert.exception.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.false.phpt" name="tests/Framework/Assert.false.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.match.phpt" name="tests/Framework/Assert.match.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.match.regexp.phpt" name="tests/Framework/Assert.match.regexp.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.nan.phpt" name="tests/Framework/Assert.nan.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.noError.phpt" name="tests/Framework/Assert.noError.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.same.phpt" name="tests/Framework/Assert.same.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.null.phpt" name="tests/Framework/Assert.null.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.true.phpt" name="tests/Framework/Assert.true.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.truthy.phpt" name="tests/Framework/Assert.truthy.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/DataProvider.load.phpt" name="tests/Framework/DataProvider.load.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Assert.type.phpt" name="tests/Framework/Assert.type.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/DataProvider.parseAnnotation.phpt" name="tests/Framework/DataProvider.parseAnnotation.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/DataProvider.testQuery.phpt" name="tests/Framework/DataProvider.testQuery.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/DomQuery.css2Xpath.phpt" name="tests/Framework/DomQuery.css2Xpath.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/DomQuery.fromHtml.phpt" name="tests/Framework/DomQuery.fromHtml.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/DomQuery.fromXml.phpt" name="tests/Framework/DomQuery.fromXml.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Dumper.dumpException.phpt" name="tests/Framework/Dumper.dumpException.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Dumper.color.phpt" name="tests/Framework/Dumper.color.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Dumper.toLine.phpt" name="tests/Framework/Dumper.toLine.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Dumper.toPhp.recursion.phpt" name="tests/Framework/Dumper.toPhp.recursion.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Dumper.toPhp.phpt" name="tests/Framework/Dumper.toPhp.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/FileMock.phpt" name="tests/Framework/FileMock.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Helpers.escapeArg.phpt" name="tests/Framework/Helpers.escapeArg.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/Helpers.parseDocComment.phpt" name="tests/Framework/Helpers.parseDocComment.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.annotationThrows.phpt" name="tests/Framework/TestCase.annotationThrows.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.annotationThrows.setUp.tearDown.phpt" name="tests/Framework/TestCase.annotationThrows.setUp.tearDown.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.annotationThrows.syntax.phpt" name="tests/Framework/TestCase.annotationThrows.syntax.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.basic.phpt" name="tests/Framework/TestCase.basic.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.dataProvider.generator.phpt" name="tests/Framework/TestCase.dataProvider.generator.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.dataProvider.phpt" name="tests/Framework/TestCase.dataProvider.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.invalidMethods.phpt" name="tests/Framework/TestCase.invalidMethods.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.invalidProvider.phpt" name="tests/Framework/TestCase.invalidProvider.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.order.error.phpt" name="tests/Framework/TestCase.order.error.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.order.errorMuted.phpt" name="tests/Framework/TestCase.order.errorMuted.phpt"/>
|
|
||||||
<testcase classname="tests/Framework/TestCase.order.phpt" name="tests/Framework/TestCase.order.phpt"/>
|
|
||||||
<testcase classname="Prevent loop in error handling. The #268 regression. | tests/Framework/TestCase.ownErrorHandler.phpt" name="Prevent loop in error handling. The #268 regression. | tests/Framework/TestCase.ownErrorHandler.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/CommandLine.phpt" name="tests/Runner/CommandLine.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/HhvmPhpInterpreter.phpt" name="tests/Runner/HhvmPhpInterpreter.phpt">
|
|
||||||
<skipped/>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests/Runner/Runner.find-tests.phpt" name="tests/Runner/Runner.find-tests.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/Job.phpt" name="tests/Runner/Job.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/ZendPhpExecutable.phpt" name="tests/Runner/ZendPhpExecutable.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/Runner.multiple.phpt" name="tests/Runner/Runner.multiple.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/Runner.edge.phpt" name="tests/Runner/Runner.edge.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/Runner.stop-on-fail.phpt" name="tests/Runner/Runner.stop-on-fail.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/Runner.multiple-fails.phpt" name="tests/Runner/Runner.multiple-fails.phpt">
|
|
||||||
<failure message="Failed: '... in /Users/izso/Developer/nette/tester/tests/Runner/multiple-fails/...' should match
|
|
||||||
... '..., unexpected end of file in %a%testcase-syntax-error.phptx on line ...'
|
|
||||||
|
|
||||||
diff '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.expected' '/Users/izso/Developer/nette/tester/tests/Runner/output/Runner.multiple-fails.actual'
|
|
||||||
|
|
||||||
in tests/Runner/Runner.multiple-fails.phpt(78) Tester\Assert::match()"/>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests/RunnerOutput/JUnitPrinter.phpt" name="tests/RunnerOutput/JUnitPrinter.phpt"/>
|
|
||||||
<testcase classname="tests/Runner/Runner.annotations.phpt" name="tests/Runner/Runner.annotations.phpt"/>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="SampleSuite" tests="6" failures="6" time="0.006">
|
|
||||||
<testcase name="testFailure" classname="SampleSuite" file="/home/runner/work/repo/src/Fake.php" line="42" time="0.001">
|
|
||||||
<failure type="Exception" message="Boom">/home/runner/work/repo/src/Fake.php:42</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testStringFailure" classname="SampleSuite" file="/home/runner/work/repo/src/Other.php" line="10" time="0.001">
|
|
||||||
<failure>/home/runner/work/repo/src/Other.php:10</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testParenFailure" classname="SampleSuite" file="/home/runner/work/repo/src/Paren.php" line="123" time="0.001">
|
|
||||||
<failure>at /home/runner/work/repo/src/Paren.php(123)</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testWindowsFailure" classname="SampleSuite" file="C:\repo\src\Win.php" line="77" time="0.001">
|
|
||||||
<failure>C:\repo\src\Win.php:77</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testWindowsParenFailure" classname="SampleSuite" file="C:\repo\src\WinParen.php" line="88" time="0.001">
|
|
||||||
<failure>at C:\repo\src\WinParen.php(88)</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="testPhptFailure" classname="SampleSuite" file="/home/runner/work/repo/tests/Sample.phpt" line="12" time="0.001">
|
|
||||||
<failure>/home/runner/work/repo/tests/Sample.phpt:12</failure>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="CLI Arguments" tests="12" assertions="12" errors="0" failures="2" skipped="0" time="0.140397">
|
|
||||||
<testcase name="targeting-traits-with-coversclass-attribute-is-deprecated.phpt" file="/home/matteo/OSS/phpunit/tests/end-to-end/metadata/targeting-traits-with-coversclass-attribute-is-deprecated.phpt" assertions="1" time="0.068151">
|
|
||||||
<failure type="PHPUnit\Framework\PhptAssertionFailedError">targeting-traits-with-coversclass-attribute-is-deprecated.phptFailed asserting that string matches format description.
|
|
||||||
--- Expected
|
|
||||||
+++ Actual
|
|
||||||
@@ @@
|
|
||||||
PHPUnit Started (PHPUnit 11.2-g0c2333363 using PHP 8.2.17 (cli) on Linux)
|
|
||||||
Test Runner Configured
|
|
||||||
Test Suite Loaded (1 test)
|
|
||||||
+Test Runner Triggered Warning (No code coverage driver available)
|
|
||||||
Event Facade Sealed
|
|
||||||
Test Runner Started
|
|
||||||
Test Suite Sorted
|
|
||||||
@@ @@
|
|
||||||
Test Preparation Started (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
Test Prepared (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
Test Passed (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
-Test Runner Triggered Deprecation (Targeting a trait such as PHPUnit\TestFixture\CoveredTrait with #[CoversClass] is deprecated, please refactor your test to use #[CoversTrait] instead.)
|
|
||||||
Test Finished (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithCoversClassTest::testSomething)
|
|
||||||
Test Suite Finished (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithCoversClassTest, 1 test)
|
|
||||||
Test Runner Execution Finished
|
|
||||||
Test Runner Finished
|
|
||||||
-PHPUnit Finished (Shell Exit Code: 0)
|
|
||||||
+PHPUnit Finished (Shell Exit Code: 1)
|
|
||||||
|
|
||||||
/home/matteo/OSS/phpunit/tests/end-to-end/metadata/targeting-traits-with-coversclass-attribute-is-deprecated.phpt:28
|
|
||||||
/home/matteo/OSS/phpunit/src/Framework/TestSuite.php:369
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/TestRunner.php:62
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/Application.php:200</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase name="targeting-traits-with-usesclass-attribute-is-deprecated.phpt" file="/home/matteo/OSS/phpunit/tests/end-to-end/metadata/targeting-traits-with-usesclass-attribute-is-deprecated.phpt" assertions="1" time="0.064268">
|
|
||||||
<failure type="PHPUnit\Framework\PhptAssertionFailedError">targeting-traits-with-usesclass-attribute-is-deprecated.phptFailed asserting that string matches format description.
|
|
||||||
--- Expected
|
|
||||||
+++ Actual
|
|
||||||
@@ @@
|
|
||||||
PHPUnit Started (PHPUnit 11.2-g0c2333363 using PHP 8.2.17 (cli) on Linux)
|
|
||||||
Test Runner Configured
|
|
||||||
Test Suite Loaded (1 test)
|
|
||||||
+Test Runner Triggered Warning (No code coverage driver available)
|
|
||||||
Event Facade Sealed
|
|
||||||
Test Runner Started
|
|
||||||
Test Suite Sorted
|
|
||||||
@@ @@
|
|
||||||
Test Preparation Started (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
Test Prepared (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
Test Passed (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
-Test Runner Triggered Deprecation (Targeting a trait such as PHPUnit\TestFixture\CoveredTrait with #[UsesClass] is deprecated, please refactor your test to use #[UsesTrait] instead.)
|
|
||||||
Test Finished (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithUsesClassTest::testSomething)
|
|
||||||
Test Suite Finished (PHPUnit\DeprecatedAnnotationsTestFixture\TraitTargetedWithUsesClassTest, 1 test)
|
|
||||||
Test Runner Execution Finished
|
|
||||||
Test Runner Finished
|
|
||||||
-PHPUnit Finished (Shell Exit Code: 0)
|
|
||||||
+PHPUnit Finished (Shell Exit Code: 1)
|
|
||||||
|
|
||||||
/home/matteo/OSS/phpunit/tests/end-to-end/metadata/targeting-traits-with-usesclass-attribute-is-deprecated.phpt:28
|
|
||||||
/home/matteo/OSS/phpunit/src/Framework/TestSuite.php:369
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/TestRunner.php:62
|
|
||||||
/home/matteo/OSS/phpunit/src/TextUI/Application.php:200</failure>
|
|
||||||
</testcase>
|
|
||||||
<testsuite name="PHPUnit\Event\CollectingDispatcherTest" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/CollectingDispatcherTest.php" tests="2" assertions="2" errors="0" failures="0" skipped="0" time="0.004256">
|
|
||||||
<testcase name="testHasNoCollectedEventsWhenFlushedImmediatelyAfterCreation" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/CollectingDispatcherTest.php" line="20" class="PHPUnit\Event\CollectingDispatcherTest" classname="PHPUnit.Event.CollectingDispatcherTest" assertions="1" time="0.001441"/>
|
|
||||||
<testcase name="testCollectsDispatchedEventsUntilFlushed" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/CollectingDispatcherTest.php" line="27" class="PHPUnit\Event\CollectingDispatcherTest" classname="PHPUnit.Event.CollectingDispatcherTest" assertions="1" time="0.002815"/>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="PHPUnit\Event\DeferringDispatcherTest" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DeferringDispatcherTest.php" tests="4" assertions="4" errors="0" failures="0" skipped="0" time="0.002928">
|
|
||||||
<testcase name="testCollectsEventsUntilFlush" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DeferringDispatcherTest.php" line="22" class="PHPUnit\Event\DeferringDispatcherTest" classname="PHPUnit.Event.DeferringDispatcherTest" assertions="1" time="0.001672"/>
|
|
||||||
<testcase name="testFlushesCollectedEvents" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DeferringDispatcherTest.php" line="35" class="PHPUnit\Event\DeferringDispatcherTest" classname="PHPUnit.Event.DeferringDispatcherTest" assertions="1" time="0.000661"/>
|
|
||||||
<testcase name="testSubscriberCanBeRegistered" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DeferringDispatcherTest.php" line="53" class="PHPUnit\Event\DeferringDispatcherTest" classname="PHPUnit.Event.DeferringDispatcherTest" assertions="1" time="0.000334"/>
|
|
||||||
<testcase name="testTracerCanBeRegistered" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DeferringDispatcherTest.php" line="69" class="PHPUnit\Event\DeferringDispatcherTest" classname="PHPUnit.Event.DeferringDispatcherTest" assertions="1" time="0.000262"/>
|
|
||||||
</testsuite>
|
|
||||||
<testsuite name="PHPUnit\Event\DirectDispatcherTest" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DirectDispatcherTest.php" tests="4" assertions="4" errors="0" failures="0" skipped="0" time="0.000794">
|
|
||||||
<testcase name="testDispatchesEventToKnownSubscribers" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DirectDispatcherTest.php" line="24" class="PHPUnit\Event\DirectDispatcherTest" classname="PHPUnit.Event.DirectDispatcherTest" assertions="1" time="0.000170"/>
|
|
||||||
<testcase name="testDispatchesEventToTracers" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DirectDispatcherTest.php" line="43" class="PHPUnit\Event\DirectDispatcherTest" classname="PHPUnit.Event.DirectDispatcherTest" assertions="1" time="0.000248"/>
|
|
||||||
<testcase name="testRegisterRejectsUnknownSubscriber" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DirectDispatcherTest.php" line="62" class="PHPUnit\Event\DirectDispatcherTest" classname="PHPUnit.Event.DirectDispatcherTest" assertions="1" time="0.000257"/>
|
|
||||||
<testcase name="testDispatchRejectsUnknownEventType" file="/home/matteo/OSS/phpunit/tests/unit/Event/Dispatcher/DirectDispatcherTest.php" line="73" class="PHPUnit\Event\DirectDispatcherTest" classname="PHPUnit.Event.DirectDispatcherTest" assertions="1" time="0.000119"/>
|
|
||||||
</testsuite>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,42 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<testsuites name="pytest tests">
|
|
||||||
<testsuite name="pytest" errors="0" failures="2" skipped="2" tests="15" time="0.019"
|
|
||||||
timestamp="2025-11-15T11:51:49.548396-05:00" hostname="Mac.hsd1.va.comcast.net">
|
|
||||||
<properties>
|
|
||||||
<property name="custom_prop" value="custom_val"/>
|
|
||||||
</properties>
|
|
||||||
<testcase classname="tests.test_lib" name="test_always_pass" time="0.002"/>
|
|
||||||
<testcase classname="tests.test_lib" name="test_with_subtests" time="0.005"/>
|
|
||||||
<testcase classname="tests.test_lib" name="test_parameterized[param1]" time="0.000"/>
|
|
||||||
<testcase classname="tests.test_lib" name="test_parameterized[param2]" time="0.000"/>
|
|
||||||
<testcase classname="tests.test_lib" name="test_always_skip" time="0.000">
|
|
||||||
<skipped type="pytest.skip" message="skipped">/Users/mike/Projects/python-test/tests/test_lib.py:20: skipped
|
|
||||||
</skipped>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests.test_lib" name="test_always_fail" time="0.000">
|
|
||||||
<failure message="assert False">def test_always_fail():
|
|
||||||
> assert False
|
|
||||||
E assert False
|
|
||||||
|
|
||||||
tests/test_lib.py:25: AssertionError
|
|
||||||
</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests.test_lib" name="test_expected_failure" time="0.000">
|
|
||||||
<skipped type="pytest.xfail" message=""/>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests.test_lib" name="test_error" time="0.000">
|
|
||||||
<failure message="Exception: error">def test_error():
|
|
||||||
> raise Exception("error")
|
|
||||||
E Exception: error
|
|
||||||
|
|
||||||
tests/test_lib.py:32: Exception
|
|
||||||
</failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="tests.test_lib" name="test_with_record_property" time="0.000">
|
|
||||||
<properties>
|
|
||||||
<property name="example_key" value="1"/>
|
|
||||||
</properties>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="custom_classname" name="test_with_record_xml_attribute" time="0.000"/>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuite name="TestAcme-20251114214921" tests="8" file=".py" time="0.001" timestamp="2025-11-14T21:49:22" failures="1" errors="1" skipped="2">
|
|
||||||
<testcase classname="TestAcme" name="test_always_pass" time="0.000" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="8"/>
|
|
||||||
<testcase classname="TestAcme" name="test_parameterized_0_param1" time="0.001" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="618"/>
|
|
||||||
<testcase classname="TestAcme" name="test_parameterized_1_param2" time="0.000" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="618"/>
|
|
||||||
<testcase classname="TestAcme" name="test_with_subtests" time="0.000" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="11"/>
|
|
||||||
<testcase classname="TestAcme" name="test_always_fail" time="0.000" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="23">
|
|
||||||
<failure type="AssertionError" message="failed"><![CDATA[Traceback (most recent call last):
|
|
||||||
File "/Users/foo/Projects/python-test/tests/test_lib.py", line 24, in test_always_fail
|
|
||||||
self.fail("failed")
|
|
||||||
AssertionError: failed
|
|
||||||
]]></failure>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="TestAcme" name="test_error" time="0.000" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="30">
|
|
||||||
<error type="Exception" message="error"><![CDATA[Traceback (most recent call last):
|
|
||||||
File "/Users/foo/Projects/python-test/tests/test_lib.py", line 31, in test_error
|
|
||||||
raise Exception("error")
|
|
||||||
Exception: error
|
|
||||||
]]></error>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="TestAcme" name="test_always_skip" time="0.000" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="20">
|
|
||||||
<skipped type="skip" message="skipped"/>
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="TestAcme" name="test_expected_failure" time="0.000" timestamp="2025-11-14T21:49:22" file="tests/test_lib.py" line="26">
|
|
||||||
<skipped type="XFAIL" message="expected failure: (<class 'AssertionError'>, AssertionError('expected failure'), <traceback object at 0x100c125c0>)"/>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
@@ -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,12 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="TestResults" errors="0" tests="3" failures="1" time="0.22047725">
|
|
||||||
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_pass" time="0.036386333">
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_skip" time="0.092039167">
|
|
||||||
</testcase>
|
|
||||||
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_fail" time="0.09205175">
|
|
||||||
<failure message="failed"></failure>
|
|
||||||
</testcase>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
@@ -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', () => {
|
||||||
@@ -72,124 +72,4 @@ describe('java-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('report from testmo/junitxml basic example matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'java', 'junit4-basic.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'junit-basic.md')
|
|
||||||
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)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report from testmo/junitxml complete example matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'java', 'junit4-complete.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'junit-complete.md')
|
|
||||||
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)
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('parses empty failures in test results', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'java', 'empty_failures.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const trackedFiles: string[] = []
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new JavaJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
expect(result.result === 'failed')
|
|
||||||
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/)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -1,75 +0,0 @@
|
|||||||
import {parseStackTraceElement} from '../src/parsers/java-junit/java-stack-trace-element-parser'
|
|
||||||
|
|
||||||
describe('parseStackTraceLine tests', () => {
|
|
||||||
it('empty line is not parsed', async () => {
|
|
||||||
const line = ''
|
|
||||||
expect(parseStackTraceElement(line)).toBe(undefined)
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('java class', () => {
|
|
||||||
it('simple', async () => {
|
|
||||||
const line =
|
|
||||||
'at org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings(AddMissingPatchVersionTest.java:29)'
|
|
||||||
expect(parseStackTraceElement(line)).toEqual({
|
|
||||||
tracePath: 'org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings',
|
|
||||||
fileName: 'AddMissingPatchVersionTest.java',
|
|
||||||
lineStr: '29'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('inner class', async () => {
|
|
||||||
const line = 'at com.foo.Main$Inner.run(Main.java:29)'
|
|
||||||
expect(parseStackTraceElement(line)).toEqual({
|
|
||||||
tracePath: 'com.foo.Main$Inner.run',
|
|
||||||
fileName: 'Main.java',
|
|
||||||
lineStr: '29'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('starts with whitespaces', async () => {
|
|
||||||
const line =
|
|
||||||
' \tat org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings(AddMissingPatchVersionTest.java:29)'
|
|
||||||
expect(parseStackTraceElement(line)).toEqual({
|
|
||||||
tracePath: 'org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings',
|
|
||||||
fileName: 'AddMissingPatchVersionTest.java',
|
|
||||||
lineStr: '29'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('since Java 9', () => {
|
|
||||||
it('with classloader and module', async () => {
|
|
||||||
// Based on Java 9 StackTraceElement.toString() Doc: https://docs.oracle.com/javase/9/docs/api/java/lang/StackTraceElement.html#toString--
|
|
||||||
const line = 'at com.foo.loader/foo@9.0/com.foo.Main.run(Main.java:101)'
|
|
||||||
expect(parseStackTraceElement(line)).toEqual({
|
|
||||||
classLoader: 'com.foo.loader',
|
|
||||||
moduleNameAndVersion: 'foo@9.0',
|
|
||||||
tracePath: 'com.foo.Main.run',
|
|
||||||
fileName: 'Main.java',
|
|
||||||
lineStr: '101'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('with classloader', async () => {
|
|
||||||
const line = 'at com.foo.loader//com.foo.Main.run(Main.java:101)'
|
|
||||||
expect(parseStackTraceElement(line)).toEqual({
|
|
||||||
classLoader: 'com.foo.loader',
|
|
||||||
moduleNameAndVersion: undefined,
|
|
||||||
tracePath: 'com.foo.Main.run',
|
|
||||||
fileName: 'Main.java',
|
|
||||||
lineStr: '101'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('Kotlin class', () => {
|
|
||||||
it('method name containing whitespaces', async () => {
|
|
||||||
const line = 'at com.foo.Main.method with whitespaces(Main.kt:18)'
|
|
||||||
expect(parseStackTraceElement(line)).toEqual({
|
|
||||||
tracePath: 'com.foo.Main.method with whitespaces',
|
|
||||||
fileName: 'Main.kt',
|
|
||||||
lineStr: '18'
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -3,11 +3,11 @@ 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', () => {
|
||||||
it('produces empty test run result when there are no test cases in the testsuites element', async () => {
|
it('produces empty test run result when there are no test cases', async () => {
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'jest-junit.xml')
|
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'jest-junit.xml')
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
@@ -23,22 +23,6 @@ describe('jest-junit tests', () => {
|
|||||||
expect(result.result).toBe('success')
|
expect(result.result).toBe('success')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('produces empty test run result when there are no test cases in a nested testsuite element', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'jest-junit-empty-testsuite.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)
|
|
||||||
expect(result.tests).toBe(0)
|
|
||||||
expect(result.result).toBe('success')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report from ./reports/jest test results matches snapshot', async () => {
|
it('report from ./reports/jest test results matches snapshot', async () => {
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'jest-junit.md')
|
const outputPath = path.join(__dirname, '__outputs__', 'jest-junit.md')
|
||||||
@@ -82,268 +66,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('report from #235 testing react components named <ComponentName />', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'jest', 'jest-react-component-test-results.xml')
|
|
||||||
const trackedFilesPath = path.join(__dirname, 'fixtures', 'external', 'jest', 'files.txt')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'jest-react-component-test-results.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles
|
|
||||||
//workDir: '/home/dorny/dorny/jest/'
|
|
||||||
}
|
|
||||||
|
|
||||||
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 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/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report can be collapsed when configured', 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,
|
|
||||||
collapsed: 'always'
|
|
||||||
})
|
|
||||||
// Report should include collapsible details
|
|
||||||
expect(report).toContain('<details><summary>Expand for details</summary>')
|
|
||||||
expect(report).toContain('</details>')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report is not collapsed when configured to never', 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,
|
|
||||||
collapsed: 'never'
|
|
||||||
})
|
|
||||||
// Report should not include collapsible details
|
|
||||||
expect(report).not.toContain('<details><summary>Expand for details</summary>')
|
|
||||||
expect(report).not.toContain('</details>')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report auto-collapses when all tests pass', async () => {
|
|
||||||
// Test with a fixture that has all passing tests (no failures)
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit-eslint.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)
|
|
||||||
|
|
||||||
// Verify this fixture has no failures
|
|
||||||
expect(result.failed).toBe(0)
|
|
||||||
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
collapsed: 'auto'
|
|
||||||
})
|
|
||||||
|
|
||||||
// Should collapse when all tests pass
|
|
||||||
expect(report).toContain('<details><summary>Expand for details</summary>')
|
|
||||||
expect(report).toContain('</details>')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report does not auto-collapse when tests fail', async () => {
|
|
||||||
// Test with a fixture that has failing tests
|
|
||||||
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)
|
|
||||||
|
|
||||||
// Verify this fixture has failures
|
|
||||||
expect(result.failed).toBeGreaterThan(0)
|
|
||||||
|
|
||||||
const report = getReport([result], {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
collapsed: 'auto'
|
|
||||||
})
|
|
||||||
|
|
||||||
// Should not collapse when there are failures
|
|
||||||
expect(report).not.toContain('<details><summary>Expand for details</summary>')
|
|
||||||
expect(report).not.toContain('</details>')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes the short summary', 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 shortSummary = '1 passed, 4 failed and 1 skipped'
|
|
||||||
const report = getReport([result], DEFAULT_OPTIONS, shortSummary)
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^## 1 passed, 4 failed and 1 skipped\n/)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report includes a custom report title and short summary', 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 shortSummary = '1 passed, 4 failed and 1 skipped'
|
|
||||||
const report = getReport(
|
|
||||||
[result],
|
|
||||||
{
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
reportTitle: 'My Custom Title'
|
|
||||||
},
|
|
||||||
shortSummary
|
|
||||||
)
|
|
||||||
// Report should have the title as the first line
|
|
||||||
expect(report).toMatch(/^# My Custom Title\n## 1 passed, 4 failed and 1 skipped\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,347 +0,0 @@
|
|||||||
import * as fs from 'fs'
|
|
||||||
import * as path from 'path'
|
|
||||||
|
|
||||||
import {PhpunitJunitParser} from '../src/parsers/phpunit-junit/phpunit-junit-parser'
|
|
||||||
import {ParseOptions} from '../src/test-parser'
|
|
||||||
import {getReport} from '../src/report/get-report'
|
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
|
||||||
|
|
||||||
describe('phpunit-junit tests', () => {
|
|
||||||
it('produces empty test run result when there are no test cases', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'phpunit-empty.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result.tests).toBe(0)
|
|
||||||
expect(result.result).toBe('success')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report from phpunit test results matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'phpunit', 'phpunit.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'phpunit-test-results.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(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('parses nested test suites correctly', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'phpunit', 'phpunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Should have 4 test suites (3 nested ones plus the parent with direct testcases)
|
|
||||||
expect(result.suites.length).toBe(4)
|
|
||||||
|
|
||||||
// Verify suite names
|
|
||||||
const suiteNames = result.suites.map(s => s.name)
|
|
||||||
expect(suiteNames).toContain('PHPUnit\\Event\\CollectingDispatcherTest')
|
|
||||||
expect(suiteNames).toContain('PHPUnit\\Event\\DeferringDispatcherTest')
|
|
||||||
expect(suiteNames).toContain('PHPUnit\\Event\\DirectDispatcherTest')
|
|
||||||
expect(suiteNames).toContain('CLI Arguments')
|
|
||||||
|
|
||||||
// Verify total test count
|
|
||||||
expect(result.tests).toBe(12)
|
|
||||||
expect(result.passed).toBe(10)
|
|
||||||
expect(result.failed).toBe(2)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('extracts error details from failures', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'phpunit', 'phpunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Find the CLI Arguments suite which has failures
|
|
||||||
const cliSuite = result.suites.find(s => s.name === 'CLI Arguments')
|
|
||||||
expect(cliSuite).toBeDefined()
|
|
||||||
|
|
||||||
// Get the failed tests
|
|
||||||
const failedTests = cliSuite!.groups.flatMap(g => g.tests).filter(t => t.result === 'failed')
|
|
||||||
expect(failedTests.length).toBe(2)
|
|
||||||
|
|
||||||
// Verify error details are captured
|
|
||||||
for (const test of failedTests) {
|
|
||||||
expect(test.error).toBeDefined()
|
|
||||||
expect(test.error!.details).toContain('Failed asserting that string matches format description')
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
it('maps absolute paths to tracked files for annotations', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'phpunit', 'phpunit-paths.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: [
|
|
||||||
'src/Fake.php',
|
|
||||||
'src/Other.php',
|
|
||||||
'src/Paren.php',
|
|
||||||
'src/Win.php',
|
|
||||||
'src/WinParen.php',
|
|
||||||
'tests/Sample.phpt'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
const suite = result.suites.find(s => s.name === 'SampleSuite')
|
|
||||||
expect(suite).toBeDefined()
|
|
||||||
|
|
||||||
const tests = suite!.groups.flatMap(g => g.tests)
|
|
||||||
const fileFailure = tests.find(t => t.name === 'testFailure')
|
|
||||||
expect(fileFailure).toBeDefined()
|
|
||||||
expect(fileFailure!.error).toBeDefined()
|
|
||||||
expect(fileFailure!.error!.path).toBe('src/Fake.php')
|
|
||||||
expect(fileFailure!.error!.line).toBe(42)
|
|
||||||
|
|
||||||
const stringFailure = tests.find(t => t.name === 'testStringFailure')
|
|
||||||
expect(stringFailure).toBeDefined()
|
|
||||||
expect(stringFailure!.error).toBeDefined()
|
|
||||||
expect(stringFailure!.error!.path).toBe('src/Other.php')
|
|
||||||
expect(stringFailure!.error!.line).toBe(10)
|
|
||||||
|
|
||||||
const parenFailure = tests.find(t => t.name === 'testParenFailure')
|
|
||||||
expect(parenFailure).toBeDefined()
|
|
||||||
expect(parenFailure!.error).toBeDefined()
|
|
||||||
expect(parenFailure!.error!.path).toBe('src/Paren.php')
|
|
||||||
expect(parenFailure!.error!.line).toBe(123)
|
|
||||||
|
|
||||||
const windowsFailure = tests.find(t => t.name === 'testWindowsFailure')
|
|
||||||
expect(windowsFailure).toBeDefined()
|
|
||||||
expect(windowsFailure!.error).toBeDefined()
|
|
||||||
expect(windowsFailure!.error!.path).toBe('src/Win.php')
|
|
||||||
expect(windowsFailure!.error!.line).toBe(77)
|
|
||||||
|
|
||||||
const windowsParenFailure = tests.find(t => t.name === 'testWindowsParenFailure')
|
|
||||||
expect(windowsParenFailure).toBeDefined()
|
|
||||||
expect(windowsParenFailure!.error).toBeDefined()
|
|
||||||
expect(windowsParenFailure!.error!.path).toBe('src/WinParen.php')
|
|
||||||
expect(windowsParenFailure!.error!.line).toBe(88)
|
|
||||||
|
|
||||||
const phptFailure = tests.find(t => t.name === 'testPhptFailure')
|
|
||||||
expect(phptFailure).toBeDefined()
|
|
||||||
expect(phptFailure!.error).toBeDefined()
|
|
||||||
expect(phptFailure!.error!.path).toBe('tests/Sample.phpt')
|
|
||||||
expect(phptFailure!.error!.line).toBe(12)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('parses junit-basic.xml with nested suites and failure', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'junit-basic.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Verify test counts
|
|
||||||
expect(result.tests).toBe(9)
|
|
||||||
expect(result.passed).toBe(8)
|
|
||||||
expect(result.failed).toBe(1)
|
|
||||||
expect(result.result).toBe('failed')
|
|
||||||
|
|
||||||
// Verify suites - should have Tests.Registration, Tests.Authentication.Login, and Tests.Authentication
|
|
||||||
expect(result.suites.length).toBe(3)
|
|
||||||
|
|
||||||
const suiteNames = result.suites.map(s => s.name)
|
|
||||||
expect(suiteNames).toContain('Tests.Registration')
|
|
||||||
expect(suiteNames).toContain('Tests.Authentication.Login')
|
|
||||||
expect(suiteNames).toContain('Tests.Authentication')
|
|
||||||
|
|
||||||
// Verify the Registration suite has 3 tests
|
|
||||||
const registrationSuite = result.suites.find(s => s.name === 'Tests.Registration')
|
|
||||||
expect(registrationSuite).toBeDefined()
|
|
||||||
const registrationTests = registrationSuite!.groups.flatMap(g => g.tests)
|
|
||||||
expect(registrationTests.length).toBe(3)
|
|
||||||
|
|
||||||
// Verify the Authentication suite has 3 direct tests (not counting nested suite)
|
|
||||||
const authSuite = result.suites.find(s => s.name === 'Tests.Authentication')
|
|
||||||
expect(authSuite).toBeDefined()
|
|
||||||
const authTests = authSuite!.groups.flatMap(g => g.tests)
|
|
||||||
expect(authTests.length).toBe(3)
|
|
||||||
|
|
||||||
// Verify the Login nested suite has 3 tests
|
|
||||||
const loginSuite = result.suites.find(s => s.name === 'Tests.Authentication.Login')
|
|
||||||
expect(loginSuite).toBeDefined()
|
|
||||||
const loginTests = loginSuite!.groups.flatMap(g => g.tests)
|
|
||||||
expect(loginTests.length).toBe(3)
|
|
||||||
|
|
||||||
// Verify failure is captured
|
|
||||||
const failedTest = authTests.find(t => t.name === 'testCase9')
|
|
||||||
expect(failedTest).toBeDefined()
|
|
||||||
expect(failedTest!.result).toBe('failed')
|
|
||||||
expect(failedTest!.error).toBeDefined()
|
|
||||||
expect(failedTest!.error!.message).toBe('AssertionError: Assertion error message')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('parses phpcheckstyle-phpunit.xml with deeply nested suites', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Verify test counts from the XML: tests="30", failures="2"
|
|
||||||
expect(result.tests).toBe(30)
|
|
||||||
expect(result.passed).toBe(28)
|
|
||||||
expect(result.failed).toBe(2)
|
|
||||||
expect(result.result).toBe('failed')
|
|
||||||
|
|
||||||
// Verify the number of test suites extracted (leaf suites with testcases)
|
|
||||||
// CommentsTest, DeprecationTest, GoodTest, IndentationTest, MetricsTest,
|
|
||||||
// NamingTest, OptimizationTest, OtherTest, PHPTagsTest, ProhibitedTest,
|
|
||||||
// StrictCompareTest, UnusedTest = 12 suites
|
|
||||||
expect(result.suites.length).toBe(12)
|
|
||||||
|
|
||||||
const suiteNames = result.suites.map(s => s.name)
|
|
||||||
expect(suiteNames).toContain('CommentsTest')
|
|
||||||
expect(suiteNames).toContain('GoodTest')
|
|
||||||
expect(suiteNames).toContain('IndentationTest')
|
|
||||||
expect(suiteNames).toContain('OtherTest')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('extracts test data from phpcheckstyle-phpunit.xml', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Find the CommentsTest suite
|
|
||||||
const commentsSuite = result.suites.find(s => s.name === 'CommentsTest')
|
|
||||||
expect(commentsSuite).toBeDefined()
|
|
||||||
|
|
||||||
// Verify tests are extracted correctly
|
|
||||||
const tests = commentsSuite!.groups.flatMap(g => g.tests)
|
|
||||||
expect(tests.length).toBe(3)
|
|
||||||
|
|
||||||
const testGoodDoc = tests.find(t => t.name === 'testGoodDoc')
|
|
||||||
expect(testGoodDoc).toBeDefined()
|
|
||||||
expect(testGoodDoc!.result).toBe('success')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('captures failure details from phpcheckstyle-phpunit.xml', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Find the OtherTest suite which has failures
|
|
||||||
const otherSuite = result.suites.find(s => s.name === 'OtherTest')
|
|
||||||
expect(otherSuite).toBeDefined()
|
|
||||||
|
|
||||||
const failedTests = otherSuite!.groups.flatMap(g => g.tests).filter(t => t.result === 'failed')
|
|
||||||
expect(failedTests.length).toBe(2)
|
|
||||||
|
|
||||||
// Verify failure details
|
|
||||||
const testOther = failedTests.find(t => t.name === 'testOther')
|
|
||||||
expect(testOther).toBeDefined()
|
|
||||||
expect(testOther!.error).toBeDefined()
|
|
||||||
expect(testOther!.error!.details).toContain('We expect 20 warnings')
|
|
||||||
expect(testOther!.error!.details).toContain('Failed asserting that 19 matches expected 20')
|
|
||||||
|
|
||||||
const testException = failedTests.find(t => t.name === 'testException')
|
|
||||||
expect(testException).toBeDefined()
|
|
||||||
expect(testException!.error).toBeDefined()
|
|
||||||
expect(testException!.error!.details).toContain('We expect 1 error')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report from junit-basic.xml matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'junit-basic.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'phpunit-junit-basic-results.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(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 from phpcheckstyle-phpunit.xml matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'phpunit-phpcheckstyle-results.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PhpunitJunitParser(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)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
import * as fs from 'fs'
|
|
||||||
import * as path from 'path'
|
|
||||||
|
|
||||||
import {PythonXunitParser} from '../src/parsers/python-xunit/python-xunit-parser'
|
|
||||||
import {ParseOptions} from '../src/test-parser'
|
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
|
||||||
|
|
||||||
const defaultOpts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
describe('python-xunit unittest report', () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'python-xunit-unittest.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'python-xunit-unittest.md')
|
|
||||||
|
|
||||||
it('report from python test results matches snapshot', async () => {
|
|
||||||
const trackedFiles = ['tests/test_lib.py']
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
...defaultOpts,
|
|
||||||
trackedFiles
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PythonXunitParser(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 parser = new PythonXunitParser(defaultOpts)
|
|
||||||
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 parser = new PythonXunitParser(defaultOpts)
|
|
||||||
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 parser = new PythonXunitParser(defaultOpts)
|
|
||||||
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/)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('python-xunit pytest report', () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'python-xunit-pytest.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'python-xunit-pytest.md')
|
|
||||||
|
|
||||||
it('report from python test results matches snapshot', async () => {
|
|
||||||
const trackedFiles = ['tests/test_lib.py']
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
...defaultOpts,
|
|
||||||
trackedFiles
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new PythonXunitParser(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)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
import {getBadge, DEFAULT_OPTIONS, ReportOptions} from '../../src/report/get-report'
|
|
||||||
|
|
||||||
describe('getBadge', () => {
|
|
||||||
describe('URI encoding with special characters', () => {
|
|
||||||
it('generates correct URI with simple badge title', () => {
|
|
||||||
const options: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
badgeTitle: 'tests'
|
|
||||||
}
|
|
||||||
const badge = getBadge(5, 0, 1, options)
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('handles badge title with single hyphen', () => {
|
|
||||||
const options: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
badgeTitle: 'unit-tests'
|
|
||||||
}
|
|
||||||
const badge = getBadge(3, 0, 0, options)
|
|
||||||
// The hyphen in the badge title should be encoded as --
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('handles badge title with multiple hyphens', () => {
|
|
||||||
const options: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
badgeTitle: 'integration-api-tests'
|
|
||||||
}
|
|
||||||
const badge = getBadge(10, 0, 0, options)
|
|
||||||
// All hyphens in the title should be encoded as --
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('handles badge title with multiple underscores', () => {
|
|
||||||
const options: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
badgeTitle: 'my_integration_test'
|
|
||||||
}
|
|
||||||
const badge = getBadge(10, 0, 0, options)
|
|
||||||
// All underscores in the title should be encoded as __
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('handles badge title with version format containing hyphen', () => {
|
|
||||||
const options: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
badgeTitle: 'MariaDb 12.0-ubi database tests'
|
|
||||||
}
|
|
||||||
const badge = getBadge(1, 0, 0, options)
|
|
||||||
// The hyphen in "12.0-ubi" should be encoded as --
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('handles badge title with dots and hyphens', () => {
|
|
||||||
const options: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
badgeTitle: 'v1.2.3-beta-test'
|
|
||||||
}
|
|
||||||
const badge = getBadge(4, 1, 0, options)
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('preserves structural hyphens between label and message', () => {
|
|
||||||
const options: ReportOptions = {
|
|
||||||
...DEFAULT_OPTIONS,
|
|
||||||
badgeTitle: 'test-suite'
|
|
||||||
}
|
|
||||||
const badge = getBadge(2, 3, 1, options)
|
|
||||||
// The URI should have literal hyphens separating title-message-color
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('generates test outcome as color name for imgshields', () => {
|
|
||||||
it('uses success color when all tests pass', () => {
|
|
||||||
const options: ReportOptions = {...DEFAULT_OPTIONS}
|
|
||||||
const badge = getBadge(5, 0, 0, options)
|
|
||||||
expect(badge).toContain('-success)')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('uses critical color when tests fail', () => {
|
|
||||||
const options: ReportOptions = {...DEFAULT_OPTIONS}
|
|
||||||
const badge = getBadge(5, 2, 0, options)
|
|
||||||
expect(badge).toContain('-critical)')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('uses yellow color when no tests found', () => {
|
|
||||||
const options: ReportOptions = {...DEFAULT_OPTIONS}
|
|
||||||
const badge = getBadge(0, 0, 0, options)
|
|
||||||
expect(badge).toContain('-yellow)')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
describe('badge message composition', () => {
|
|
||||||
it('includes only passed count when no failures or skips', () => {
|
|
||||||
const options: ReportOptions = {...DEFAULT_OPTIONS}
|
|
||||||
const badge = getBadge(5, 0, 0, options)
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('includes passed and failed counts', () => {
|
|
||||||
const options: ReportOptions = {...DEFAULT_OPTIONS}
|
|
||||||
const badge = getBadge(5, 2, 0, options)
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('includes passed, failed and skipped counts', () => {
|
|
||||||
const options: ReportOptions = {...DEFAULT_OPTIONS}
|
|
||||||
const badge = getBadge(5, 2, 1, options)
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('uses "none" message when no tests', () => {
|
|
||||||
const options: ReportOptions = {...DEFAULT_OPTIONS}
|
|
||||||
const badge = getBadge(0, 0, 0, options)
|
|
||||||
expect(badge).toBe('')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
@@ -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/)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -1,92 +0,0 @@
|
|||||||
import * as fs from 'fs'
|
|
||||||
import * as path from 'path'
|
|
||||||
|
|
||||||
import {SwiftXunitParser} from '../src/parsers/swift-xunit/swift-xunit-parser'
|
|
||||||
import {ParseOptions} from '../src/test-parser'
|
|
||||||
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
|
||||||
|
|
||||||
describe('swift-xunit tests', () => {
|
|
||||||
it('report from swift test results matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'swift-xunit.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const trackedFiles = ['Package.swift', 'Sources/AcmeLib/AcmeLib.swift', 'Tests/AcmeLibTests/AcmeLibTests.swift']
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new SwiftXunitParser(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', '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/)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -1,224 +0,0 @@
|
|||||||
import * as fs from 'fs'
|
|
||||||
import * as path from 'path'
|
|
||||||
|
|
||||||
import {NetteTesterJunitParser} from '../src/parsers/tester-junit/tester-junit-parser'
|
|
||||||
import {ParseOptions} from '../src/test-parser'
|
|
||||||
import {getReport} from '../src/report/get-report'
|
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
|
||||||
|
|
||||||
describe('tester-junit tests', () => {
|
|
||||||
it('produces empty test run result when there are no test cases', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'phpunit-empty.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
expect(result.tests).toBe(0)
|
|
||||||
expect(result.result).toBe('success')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('report from tester-v1.7-report.xml matches snapshot', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'tester-v1.7-report.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'tester-v1.7-test-results.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(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('parses tester-v1.7-report.xml correctly', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'tester-v1.7-report.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Verify test counts from XML: tests="65" errors="1" skipped="3"
|
|
||||||
expect(result.tests).toBe(65)
|
|
||||||
expect(result.failed).toBe(1)
|
|
||||||
expect(result.skipped).toBe(3)
|
|
||||||
expect(result.passed).toBe(61)
|
|
||||||
|
|
||||||
// Verify suite name uses file name
|
|
||||||
expect(result.suites.length).toBe(1)
|
|
||||||
expect(result.suites[0].name).toBe('tester-v1.7-report.xml')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('groups tests by directory structure', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'tester-v1.7-report.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Get all group names
|
|
||||||
const groupNames = result.suites[0].groups.map(g => g.name)
|
|
||||||
|
|
||||||
// Verify expected directory groups exist
|
|
||||||
expect(groupNames).toContain('tests/Framework')
|
|
||||||
expect(groupNames).toContain('tests/CodeCoverage')
|
|
||||||
expect(groupNames).toContain('tests/Runner')
|
|
||||||
expect(groupNames).toContain('tests/RunnerOutput')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('parses test names with method suffixes correctly', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'tester-v1.7-report.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Find the Framework group which has tests with method suffixes
|
|
||||||
const frameworkGroup = result.suites[0].groups.find(g => g.name === 'tests/Framework')
|
|
||||||
expect(frameworkGroup).toBeDefined()
|
|
||||||
|
|
||||||
// Find tests with method suffixes
|
|
||||||
const testWithMethod = frameworkGroup!.tests.find(t => t.name.includes('::testSimple'))
|
|
||||||
expect(testWithMethod).toBeDefined()
|
|
||||||
expect(testWithMethod!.name).toBe('Assert.equal.recursive.phpt::testSimple')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('parses complex test names from BootstrapFormRenderer-report.xml', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'BootstrapFormRenderer-report.xml')
|
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'tester-bootstrap-test-results.md')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Verify test counts: 4 tests, all passed
|
|
||||||
expect(result.tests).toBe(4)
|
|
||||||
expect(result.passed).toBe(4)
|
|
||||||
expect(result.failed).toBe(0)
|
|
||||||
expect(result.skipped).toBe(0)
|
|
||||||
|
|
||||||
// Verify suite name
|
|
||||||
expect(result.suites[0].name).toBe('BootstrapFormRenderer-report.xml')
|
|
||||||
|
|
||||||
// All tests should have method names
|
|
||||||
const allTests = result.suites[0].groups.flatMap(g => g.tests)
|
|
||||||
expect(allTests.every(t => t.name.includes('::'))).toBe(true)
|
|
||||||
expect(allTests.some(t => t.name.includes('::testRenderingBasics'))).toBe(true)
|
|
||||||
expect(allTests.some(t => t.name.includes('::testRenderingIndividual'))).toBe(true)
|
|
||||||
|
|
||||||
expect(result).toMatchSnapshot()
|
|
||||||
|
|
||||||
const report = getReport([result])
|
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
|
||||||
fs.writeFileSync(outputPath, report)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('extracts error details from failures', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'tester-v1.7-report.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Find the failed test
|
|
||||||
const allTests = result.suites[0].groups.flatMap(g => g.tests)
|
|
||||||
const failedTests = allTests.filter(t => t.result === 'failed')
|
|
||||||
|
|
||||||
expect(failedTests.length).toBe(1)
|
|
||||||
|
|
||||||
// Verify error details are captured
|
|
||||||
const failedTest = failedTests[0]
|
|
||||||
expect(failedTest.error).toBeDefined()
|
|
||||||
expect(failedTest.error!.details).toContain('Failed:')
|
|
||||||
expect(failedTest.error!.details).toContain('multiple-fails')
|
|
||||||
})
|
|
||||||
|
|
||||||
it('correctly identifies skipped tests', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'tester-v1.7-report.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Find skipped tests
|
|
||||||
const allTests = result.suites[0].groups.flatMap(g => g.tests)
|
|
||||||
const skippedTests = allTests.filter(t => t.result === 'skipped')
|
|
||||||
|
|
||||||
expect(skippedTests.length).toBe(3)
|
|
||||||
|
|
||||||
// Verify some known skipped tests
|
|
||||||
expect(skippedTests.some(t => t.name.includes('Dumper.toPhp.php7.phpt'))).toBe(true)
|
|
||||||
expect(skippedTests.some(t => t.name.includes('Collector.start.phpt'))).toBe(true)
|
|
||||||
})
|
|
||||||
|
|
||||||
it('parses test with description prefix correctly', async () => {
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'nette-tester', 'tester-v1.7-report.xml')
|
|
||||||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
|
||||||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
|
||||||
|
|
||||||
const opts: ParseOptions = {
|
|
||||||
parseErrors: true,
|
|
||||||
trackedFiles: []
|
|
||||||
}
|
|
||||||
|
|
||||||
const parser = new NetteTesterJunitParser(opts)
|
|
||||||
const result = await parser.parse(filePath, fileContent)
|
|
||||||
|
|
||||||
// Find test with description prefix
|
|
||||||
const allTests = result.suites[0].groups.flatMap(g => g.tests)
|
|
||||||
// The test name is generated from the basename, and the description is shown in parentheses
|
|
||||||
const testWithDescription = allTests.find(t => t.name.includes('Prevent loop'))
|
|
||||||
|
|
||||||
expect(testWithDescription).toBeDefined()
|
|
||||||
expect(testWithDescription!.name).toContain('Prevent loop')
|
|
||||||
expect(testWithDescription!.name).toContain('TestCase.ownErrorHandler.phpt')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
@@ -32,6 +32,6 @@ describe('parseNetDuration', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('throws when string has invalid format', () => {
|
it('throws when string has invalid format', () => {
|
||||||
expect(() => parseNetDuration('12:34:56 not a duration')).toThrow(/^Invalid format/)
|
expect(() => parseNetDuration('12:34:56 not a duration')).toThrowError(/^Invalid format/)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
55
action.yml
55
action.yml
@@ -1,5 +1,6 @@
|
|||||||
name: Test Reporter
|
name: Test Reporter
|
||||||
description: Displays test results from popular testing frameworks directly in GitHub
|
description: |
|
||||||
|
Shows test results in GitHub UI: .NET (xUnit, NUnit, MSTest), Dart, Flutter, Java (JUnit), JavaScript (JEST, Mocha)
|
||||||
author: Michal Dorner <dorner.michal@gmail.com>
|
author: Michal Dorner <dorner.michal@gmail.com>
|
||||||
inputs:
|
inputs:
|
||||||
artifact:
|
artifact:
|
||||||
@@ -10,7 +11,7 @@ inputs:
|
|||||||
required: true
|
required: true
|
||||||
path:
|
path:
|
||||||
description: |
|
description: |
|
||||||
Comma-separated list of paths to test results
|
Coma separated list of paths to test results
|
||||||
Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob)
|
Supports wildcards via [fast-glob](https://github.com/mrmlnc/fast-glob)
|
||||||
All matched result files must be of same format
|
All matched result files must be of same format
|
||||||
required: true
|
required: true
|
||||||
@@ -25,56 +26,40 @@ 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
|
||||||
- golang-json
|
|
||||||
- java-junit
|
- java-junit
|
||||||
- jest-junit
|
- jest-junit
|
||||||
- mocha-json
|
- mocha-json
|
||||||
- tester-junit
|
|
||||||
- phpunit-junit
|
|
||||||
- python-xunit
|
|
||||||
- rspec-json
|
|
||||||
- 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: true
|
||||||
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: true
|
||||||
default: 'all'
|
default: 'all'
|
||||||
max-annotations:
|
max-annotations:
|
||||||
description: |
|
description: |
|
||||||
Limits number of created annotations with error message and stack trace captured during test execution.
|
Limits number of created annotations with error message and stack trace captured during test execution.
|
||||||
Must be less or equal to 50.
|
Must be less or equal to 50.
|
||||||
required: false
|
required: true
|
||||||
default: '10'
|
default: '10'
|
||||||
fail-on-error:
|
fail-on-error:
|
||||||
description: Set this action as failed if test report contain any failed test
|
description: Set this action as failed if test report contain any failed test
|
||||||
required: false
|
|
||||||
default: 'true'
|
|
||||||
fail-on-empty:
|
|
||||||
description: Set this action as failed if no test results were found
|
|
||||||
required: true
|
required: true
|
||||||
default: 'true'
|
default: 'true'
|
||||||
working-directory:
|
working-directory:
|
||||||
description: Relative path under $GITHUB_WORKSPACE where the repository was checked out
|
description: Relative path under $GITHUB_WORKSPACE where the repository was checked out
|
||||||
required: false
|
required: false
|
||||||
report-title:
|
|
||||||
description: Title for the test report summary
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
only-summary:
|
only-summary:
|
||||||
description: |
|
description: |
|
||||||
Allows you to generate only the summary.
|
Allows you to generate only the summary.
|
||||||
@@ -82,24 +67,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'
|
|
||||||
collapsed:
|
|
||||||
description: |
|
|
||||||
Controls whether test report details are collapsed or expanded. Supported options:
|
|
||||||
- auto: Collapse only if all tests pass (default behavior)
|
|
||||||
- always: Always collapse the report details
|
|
||||||
- never: Always expand the report details
|
|
||||||
required: false
|
|
||||||
default: 'auto'
|
|
||||||
token:
|
token:
|
||||||
description: GitHub Access Token
|
description: GitHub Access Token
|
||||||
required: false
|
required: false
|
||||||
@@ -118,12 +85,8 @@ outputs:
|
|||||||
description: Count of skipped tests
|
description: Count of skipped tests
|
||||||
time:
|
time:
|
||||||
description: Test execution time [ms]
|
description: Test execution time [ms]
|
||||||
url:
|
|
||||||
description: Check run URL
|
|
||||||
url_html:
|
|
||||||
description: Check run URL HTML
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node20'
|
using: 'node12'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
branding:
|
branding:
|
||||||
color: blue
|
color: blue
|
||||||
|
|||||||
48752
dist/index.js
generated
vendored
48752
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
265
dist/licenses.txt
generated
vendored
265
dist/licenses.txt
generated
vendored
@@ -12,27 +12,9 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|||||||
|
|
||||||
@actions/exec
|
@actions/exec
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright 2019 GitHub
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
@actions/github
|
@actions/github
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright 2019 GitHub
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
@actions/http-client
|
@actions/http-client
|
||||||
MIT
|
MIT
|
||||||
@@ -61,37 +43,6 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||||||
|
|
||||||
@actions/io
|
@actions/io
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright 2019 GitHub
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
@fastify/busboy
|
|
||||||
MIT
|
|
||||||
Copyright Brian White. All rights reserved.
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
@nodelib/fs.scandir
|
@nodelib/fs.scandir
|
||||||
MIT
|
MIT
|
||||||
@@ -378,6 +329,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 +573,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
|
||||||
@@ -1014,6 +975,31 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
is-plain-object
|
||||||
|
MIT
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014-2017, Jon Schlinkert.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
json-buffer
|
json-buffer
|
||||||
MIT
|
MIT
|
||||||
Copyright (c) 2013 Dominic Tarr
|
Copyright (c) 2013 Dominic Tarr
|
||||||
@@ -1042,6 +1028,28 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||||||
|
|
||||||
keyv
|
keyv
|
||||||
MIT
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2017 Luke Childs
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
lowercase-keys
|
lowercase-keys
|
||||||
MIT
|
MIT
|
||||||
@@ -1110,7 +1118,7 @@ mimic-response
|
|||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
||||||
|
|
||||||
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:
|
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:
|
||||||
|
|
||||||
@@ -1119,6 +1127,32 @@ The above copyright notice and this permission notice shall be included in all c
|
|||||||
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.
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
node-fetch
|
||||||
|
MIT
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2016 David Frank
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
normalize-url
|
normalize-url
|
||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
@@ -1213,30 +1247,6 @@ 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
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
queue-microtask
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) Feross Aboukhadijeh
|
|
||||||
|
|
||||||
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.
|
|
||||||
|
|
||||||
|
|
||||||
quick-lru
|
quick-lru
|
||||||
MIT
|
MIT
|
||||||
MIT License
|
MIT License
|
||||||
@@ -1350,62 +1360,48 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|||||||
|
|
||||||
|
|
||||||
sax
|
sax
|
||||||
BlueOak-1.0.0
|
ISC
|
||||||
# Blue Oak Model License
|
The ISC License
|
||||||
|
|
||||||
Version 1.0.0
|
Copyright (c) Isaac Z. Schlueter and Contributors
|
||||||
|
|
||||||
## Purpose
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
purpose with or without fee is hereby granted, provided that the above
|
||||||
|
copyright notice and this permission notice appear in all copies.
|
||||||
|
|
||||||
This license gives everyone as much permission to work with
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||||
this software as possible, while protecting contributors
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||||
from liability.
|
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.
|
||||||
|
|
||||||
## Acceptance
|
====
|
||||||
|
|
||||||
In order to receive this license, you must agree to its
|
`String.fromCodePoint` by Mathias Bynens used according to terms of MIT
|
||||||
rules. The rules of this license are both obligations
|
License, as follows:
|
||||||
under that agreement and conditions to your license.
|
|
||||||
You must not do anything with this software that triggers
|
|
||||||
a rule that you cannot or will not follow.
|
|
||||||
|
|
||||||
## Copyright
|
Copyright Mathias Bynens <https://mathiasbynens.be/>
|
||||||
|
|
||||||
Each contributor licenses you to do everything with this
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
software that would otherwise infringe that contributor's
|
a copy of this software and associated documentation files (the
|
||||||
copyright in it.
|
"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:
|
||||||
|
|
||||||
## Notices
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
You must ensure that everyone who gets a copy of
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
any part of this software from you, with or without
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
changes, also gets the text of this license or a link to
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
<https://blueoakcouncil.org/license/1.0.0>.
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
## Excuse
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
If anyone notifies you in writing that you have not
|
|
||||||
complied with [Notices](#notices), you can keep your
|
|
||||||
license by taking all practical steps to comply within 30
|
|
||||||
days after the notice. If you do not do so, your license
|
|
||||||
ends immediately.
|
|
||||||
|
|
||||||
## Patent
|
|
||||||
|
|
||||||
Each contributor licenses you to do everything with this
|
|
||||||
software that would otherwise infringe any patent claims
|
|
||||||
they can license or become able to license.
|
|
||||||
|
|
||||||
## Reliability
|
|
||||||
|
|
||||||
No contributor can revoke this license.
|
|
||||||
|
|
||||||
## No Liability
|
|
||||||
|
|
||||||
***As far as the law allows, this software comes as is,
|
|
||||||
without any warranty or condition, and no contributor
|
|
||||||
will be liable to anyone for any damages related to this
|
|
||||||
software or this license, under any kind of legal claim.***
|
|
||||||
|
|
||||||
|
|
||||||
to-regex-range
|
to-regex-range
|
||||||
@@ -1458,31 +1454,6 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
undici
|
|
||||||
MIT
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) Matteo Collina and Undici 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.
|
|
||||||
|
|
||||||
|
|
||||||
universal-user-agent
|
universal-user-agent
|
||||||
ISC
|
ISC
|
||||||
# [ISC License](https://spdx.org/licenses/ISC)
|
# [ISC License](https://spdx.org/licenses/ISC)
|
||||||
|
|||||||
2
dist/sourcemap-register.js
generated
vendored
2
dist/sourcemap-register.js
generated
vendored
File diff suppressed because one or more lines are too long
17253
package-lock.json
generated
17253
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
83
package.json
83
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "test-reporter",
|
"name": "test-check",
|
||||||
"version": "2.5.0",
|
"version": "0.0.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",
|
||||||
@@ -9,23 +9,18 @@
|
|||||||
"format": "prettier --write **/*.ts",
|
"format": "prettier --write **/*.ts",
|
||||||
"format-check": "prettier --check **/*.ts",
|
"format-check": "prettier --check **/*.ts",
|
||||||
"lint": "eslint src/**/*.ts",
|
"lint": "eslint src/**/*.ts",
|
||||||
"package": "ncc build --license licenses.txt && eolConverter lf 'dist/*'",
|
"package": "ncc build --source-map --license licenses.txt",
|
||||||
"version": "npm run build && npm run package && git add dist/*",
|
|
||||||
"test": "jest --ci --reporters=default --reporters=jest-junit",
|
"test": "jest --ci --reporters=default --reporters=jest-junit",
|
||||||
"jest:updatesnapshot": "jest --updateSnapshot",
|
|
||||||
"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-xunitv3-fixture": "dotnet run --project reports/dotnet/DotnetTests.XUnitV3Tests/DotnetTests.XUnitV3Tests.csproj --report-trx --report-trx-filename dotnet-xunitv3.trx --results-directory __tests__/fixtures/",
|
|
||||||
"dotnet-nunit-fixture": "nunit.exe reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml",
|
"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",
|
||||||
@@ -36,41 +31,37 @@
|
|||||||
"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.2.6",
|
||||||
"@actions/exec": "^1.1.1",
|
"@actions/exec": "^1.0.4",
|
||||||
"@actions/github": "^6.0.1",
|
"@actions/github": "^4.0.0",
|
||||||
"adm-zip": "^0.5.16",
|
"adm-zip": "^0.5.3",
|
||||||
"fast-glob": "^3.3.3",
|
"fast-glob": "^3.2.5",
|
||||||
"got": "^11.8.6",
|
"got": "^11.8.2",
|
||||||
"picomatch": "^4.0.3",
|
"picomatch": "^2.2.2",
|
||||||
"xml2js": "^0.6.2"
|
"xml2js": "^0.4.23"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@octokit/webhooks-types": "^7.6.1",
|
"@octokit/types": "^6.12.0",
|
||||||
"@types/adm-zip": "^0.5.7",
|
"@octokit/webhooks": "^7.21.0",
|
||||||
"@types/jest": "^30.0.0",
|
"@types/adm-zip": "^0.4.33",
|
||||||
"@types/node": "^20.19.23",
|
"@types/github-slugger": "^1.3.0",
|
||||||
"@types/picomatch": "^4.0.2",
|
"@types/jest": "^26.0.20",
|
||||||
"@types/xml2js": "^0.4.14",
|
"@types/node": "^14.14.20",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
"@types/picomatch": "^2.2.1",
|
||||||
"@typescript-eslint/parser": "^7.18.0",
|
"@types/xml2js": "^0.4.8",
|
||||||
"@vercel/ncc": "^0.38.4",
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
||||||
"eol-converter-cli": "^1.1.0",
|
"@typescript-eslint/parser": "^4.16.1",
|
||||||
"eslint": "^8.57.1",
|
"@vercel/ncc": "^0.27.0",
|
||||||
"eslint-import-resolver-typescript": "^3.10.1",
|
"eslint": "^7.21.0",
|
||||||
"eslint-plugin-github": "^4.10.2",
|
"eslint-plugin-github": "^4.1.2",
|
||||||
"eslint-plugin-import": "^2.32.0",
|
"eslint-plugin-jest": "^24.1.7",
|
||||||
"eslint-plugin-jest": "^28.14.0",
|
"jest": "^26.6.3",
|
||||||
"eslint-plugin-prettier": "^5.5.4",
|
"jest-circus": "^26.6.3",
|
||||||
"jest": "^30.2.0",
|
"jest-junit": "^12.0.0",
|
||||||
"jest-junit": "^16.0.0",
|
"js-yaml": "^4.0.0",
|
||||||
"js-yaml": "^4.1.1",
|
"prettier": "2.2.1",
|
||||||
"prettier": "^3.6.2",
|
"ts-jest": "^26.5.3",
|
||||||
"ts-jest": "^29.4.5",
|
"typescript": "^4.2.3"
|
||||||
"typescript": "^5.9.3"
|
|
||||||
},
|
|
||||||
"overrides": {
|
|
||||||
"sax": "^1.4.3"
|
|
||||||
},
|
},
|
||||||
"jest-junit": {
|
"jest-junit": {
|
||||||
"suiteName": "jest tests",
|
"suiteName": "jest tests",
|
||||||
@@ -81,13 +72,5 @@
|
|||||||
"suiteNameTemplate": "{filepath}",
|
"suiteNameTemplate": "{filepath}",
|
||||||
"classNameTemplate": "{classname}",
|
"classNameTemplate": "{classname}",
|
||||||
"titleTemplate": "{title}"
|
"titleTemplate": "{title}"
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=20"
|
|
||||||
},
|
|
||||||
"markdownlint-cli2": {
|
|
||||||
"ignores": [
|
|
||||||
"__tests__/**/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user