mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-02 03:15:22 -08:00
Compare commits
68 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2c87efac07 | ||
|
|
383ae3ef8c | ||
|
|
8a00817999 | ||
|
|
bab8ddc2ca | ||
|
|
10268d2d6d | ||
|
|
d29a37e78a | ||
|
|
faaff05398 | ||
|
|
d5e42b8d57 | ||
|
|
40df4133f9 | ||
|
|
3a0bb833dc | ||
|
|
c0e7f7f7dc | ||
|
|
51956bab1c | ||
|
|
91834cafdf | ||
|
|
6a5f75601b | ||
|
|
16adfe9b7e | ||
|
|
4129c2a0bf | ||
|
|
eb581e7b54 | ||
|
|
a97bdcb7b7 | ||
|
|
dfa0da9b1a | ||
|
|
68c7ff8b71 | ||
|
|
88650b55e1 | ||
|
|
1c5d09f75b | ||
|
|
0758b46a5b | ||
|
|
4c5f847d99 | ||
|
|
1b9fa8f9ac | ||
|
|
237022c326 | ||
|
|
7ad22e7671 | ||
|
|
14c7be9d90 | ||
|
|
d0fc401052 | ||
|
|
20f80b843b | ||
|
|
7fad82f9b9 | ||
|
|
ce3f80a032 | ||
|
|
3719b10aa6 | ||
|
|
17e90d1765 | ||
|
|
a0650bfb43 | ||
|
|
fa4ff78218 | ||
|
|
8a8131cd8a | ||
|
|
a9749e3840 | ||
|
|
a1cbedbccb | ||
|
|
cf4814e8de | ||
|
|
073a4b9a03 | ||
|
|
953bdcc20a | ||
|
|
f285c4c6d7 | ||
|
|
85275e49c9 | ||
|
|
7faecedf78 | ||
|
|
32f5b23752 | ||
|
|
603e84536d | ||
|
|
9a38483bcc | ||
|
|
4e1eb73eb5 | ||
|
|
577cc333e8 | ||
|
|
3340176ee8 | ||
|
|
8efb156d28 | ||
|
|
93c3964547 | ||
|
|
96237b3119 | ||
|
|
c5671cf48a | ||
|
|
09d1ac9fc3 | ||
|
|
e31d426ac4 | ||
|
|
323e750ca2 | ||
|
|
89f214d9f3 | ||
|
|
e356ffe9d0 | ||
|
|
1ae86a176d | ||
|
|
da9cc2c0d9 | ||
|
|
8819b4b3d4 | ||
|
|
52024f70c3 | ||
|
|
1f5bb98685 | ||
|
|
064a15c405 | ||
|
|
075144b122 | ||
|
|
3510d9ac27 |
15
.github/workflows/ci.yml
vendored
15
.github/workflows/ci.yml
vendored
@@ -1,9 +1,9 @@
|
|||||||
name: 'build-test'
|
name: 'CI'
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
paths-ignore: [ 'README.md' ]
|
paths-ignore: [ '**.md' ]
|
||||||
push:
|
push:
|
||||||
paths-ignore: [ 'README.md' ]
|
paths-ignore: [ '**.md' ]
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@@ -19,9 +19,16 @@ jobs:
|
|||||||
- run: npm run format-check
|
- run: npm run format-check
|
||||||
- run: npm run lint
|
- run: npm run lint
|
||||||
- run: npm test
|
- run: npm test
|
||||||
|
|
||||||
|
- name: Upload test results
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: test-results
|
||||||
|
path: __tests__/__results__/*.xml
|
||||||
|
|
||||||
- name: Create test report
|
- name: Create test report
|
||||||
if: success() || failure()
|
|
||||||
uses: ./
|
uses: ./
|
||||||
|
if: success() || failure()
|
||||||
with:
|
with:
|
||||||
name: JEST Tests
|
name: JEST Tests
|
||||||
path: __tests__/__results__/*.xml
|
path: __tests__/__results__/*.xml
|
||||||
|
|||||||
20
.github/workflows/test-report.yml
vendored
Normal file
20
.github/workflows/test-report.yml
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
name: Test Report
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ['CI']
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
report:
|
||||||
|
name: Workflow test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: ./
|
||||||
|
with:
|
||||||
|
artifact: test-results
|
||||||
|
name: Workflow Report
|
||||||
|
path: '*.xml'
|
||||||
|
reporter: jest-junit
|
||||||
24
CHANGELOG.md
Normal file
24
CHANGELOG.md
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## v1.3.1
|
||||||
|
- [Fix: parsing of .NET duration string without milliseconds](https://github.com/dorny/test-reporter/pull/84)
|
||||||
|
- [Fix: dart-json - remove group name from test case names](https://github.com/dorny/test-reporter/pull/85)
|
||||||
|
- [Fix: net-trx parser crashing on missing duration attribute](https://github.com/dorny/test-reporter/pull/86)
|
||||||
|
|
||||||
|
## v1.3.0
|
||||||
|
- [Add support for java-junit](https://github.com/dorny/test-reporter/pull/80)
|
||||||
|
- [Fix: Handle test reports with no test cases](https://github.com/dorny/test-reporter/pull/70)
|
||||||
|
- [Fix: Reduce number of API calls to get list of files tracked by GitHub](https://github.com/dorny/test-reporter/pull/69)
|
||||||
|
|
||||||
|
## v1.2.0
|
||||||
|
- [Set `listTests` and `listSuites` to lower detail if report is too big](https://github.com/dorny/test-reporter/pull/60)
|
||||||
|
|
||||||
|
## v1.1.0
|
||||||
|
- [Support public repo PR workflow](https://github.com/dorny/test-reporter/pull/56)
|
||||||
|
|
||||||
|
## v1.0.0
|
||||||
|
Supported languages / frameworks:
|
||||||
|
- .NET / xUnit / NUnit / MSTest
|
||||||
|
- Dart / test
|
||||||
|
- Flutter / test
|
||||||
|
- JavaScript / JEST
|
||||||
104
README.md
104
README.md
@@ -8,7 +8,6 @@ This [Github Action](https://github.com/features/actions) displays test results
|
|||||||
|
|
||||||
✔️ 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:**
|
||||||
|||||
|
|||||
|
||||||
|:--:|:--:|:--:|:--:|
|
|:--:|:--:|:--:|:--:|
|
||||||
@@ -18,18 +17,22 @@ This [Github Action](https://github.com/features/actions) displays test results
|
|||||||
- 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)
|
||||||
- JavaScript / [JEST](https://jestjs.io/)
|
- JavaScript / [JEST](https://jestjs.io/)
|
||||||
|
- Java / [JUnit](https://junit.org/)
|
||||||
|
|
||||||
For more information see [Supported formats](#supported-formats) section.
|
For more information see [Supported formats](#supported-formats) section.
|
||||||
|
|
||||||
**Support is planned for:**
|
|
||||||
- Java / [JUnit 5](https://junit.org/junit5/)
|
|
||||||
|
|
||||||
Do you miss support for your favorite language or framework?
|
Do you miss support for your favorite language or framework?
|
||||||
Please create [Issue](https://github.com/dorny/test-reporter/issues/new) or contribute with PR.
|
Please create [Issue](https://github.com/dorny/test-reporter/issues/new) or contribute with PR.
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
Following setup does not work in workflows triggered by pull request from forked repository.
|
||||||
|
If that's fine for you, using this action is as simple as:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
jobs:
|
jobs:
|
||||||
build-test:
|
build-test:
|
||||||
name: Build & Test
|
name: Build & Test
|
||||||
@@ -44,8 +47,53 @@ jobs:
|
|||||||
if: success() || failure() # 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 report
|
path: reports/jest-*.xml # Path to test results
|
||||||
reporter: jest-junit # Format of test report
|
reporter: jest-junit # Format of test results
|
||||||
|
```
|
||||||
|
|
||||||
|
## Recommended setup for public repositories
|
||||||
|
|
||||||
|
Workflows triggered by pull requests from forked repositories are executed with read-only token and therefore can't create check runs.
|
||||||
|
To workaround this security restriction it's required to use two separate workflows:
|
||||||
|
1. `CI` runs in the context of PR head branch with read-only token. It executes the tests and uploads test results as build artifact
|
||||||
|
2. `Test Report` runs in the context of repository main branch with read/write token. It will download test results and create reports
|
||||||
|
|
||||||
|
**PR head branch:** *.github/workflows/ci.yml*
|
||||||
|
```yaml
|
||||||
|
name: 'CI'
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
jobs:
|
||||||
|
build-test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2 # checkout the repo
|
||||||
|
- run: npm ci # install packages
|
||||||
|
- run: npm test # run tests (configured to use jest-junit reporter)
|
||||||
|
- uses: actions/upload-artifact@v2 # upload test results
|
||||||
|
if: success() || failure() # run this step even if previous step failed
|
||||||
|
with:
|
||||||
|
name: test-results
|
||||||
|
path: jest-junit.xml
|
||||||
|
```
|
||||||
|
**default branch:** *.github/workflows/test-report.yml*
|
||||||
|
```yaml
|
||||||
|
name: 'Test Report'
|
||||||
|
on:
|
||||||
|
workflow_run:
|
||||||
|
workflows: ['CI'] # runs after CI workflow
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
jobs:
|
||||||
|
report:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: dorny/test-reporter@v1
|
||||||
|
with:
|
||||||
|
artifact: test-results # artifact name
|
||||||
|
name: JEST Tests # Name of the check run which will be created
|
||||||
|
path: '*.xml' # Path to test results (inside artifact .zip)
|
||||||
|
reporter: jest-junit # Format of test results
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
@@ -54,18 +102,28 @@ jobs:
|
|||||||
- uses: dorny/test-reporter@v1
|
- uses: dorny/test-reporter@v1
|
||||||
with:
|
with:
|
||||||
|
|
||||||
|
# Name or regex of artifact containing test results
|
||||||
|
# Regular expression must be enclosed in '/'.
|
||||||
|
# Values from captured groups will replace occurrences of $N in report name.
|
||||||
|
# Example:
|
||||||
|
# artifact: /test-results-(.*)/
|
||||||
|
# name: 'Test report $1'
|
||||||
|
# -> Artifact 'test-result-ubuntu' would create report 'Test report ubuntu'
|
||||||
|
artifact: ''
|
||||||
|
|
||||||
# Name of the Check Run which will be created
|
# Name of the Check Run which will be created
|
||||||
name: ''
|
name: ''
|
||||||
|
|
||||||
# Coma separated list of paths to test reports
|
# 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
|
||||||
path: ''
|
path: ''
|
||||||
|
|
||||||
# Format of test report. Supported options:
|
# Format of test results. Supported options:
|
||||||
# dart-json
|
# dart-json
|
||||||
# dotnet-trx
|
# dotnet-trx
|
||||||
# flutter-json
|
# flutter-json
|
||||||
|
# java-junit
|
||||||
# jest-junit
|
# jest-junit
|
||||||
reporter: ''
|
reporter: ''
|
||||||
|
|
||||||
@@ -178,14 +236,23 @@ For more information see:
|
|||||||
</details>
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>jest-junit</summary>
|
<summary>java-junit (Experimental)</summary>
|
||||||
|
|
||||||
[JEST](https://jestjs.io/) testing framework support requires usage of [jest-junit](https://github.com/jest-community/jest-junit) reporter.
|
Support for [JUnit](https://Junit.org/) XML is experimental - should work but it was not extensively tested.
|
||||||
It will create test results in junit XML format which can be then processed by this action.
|
To have code annotations working properly it's required your directory structure matches package name.
|
||||||
|
This is due to the fact Java stacktraces doesn't contains full path to the source file.
|
||||||
|
Some heuristic was necessary to figure out mapping between line in stack trace and actual source file.
|
||||||
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>jest-Junit</summary>
|
||||||
|
|
||||||
|
[JEST](https://jestjs.io/) testing framework support requires 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.
|
||||||
You can use following example configuration in `package.json`:
|
You can use 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",
|
||||||
@@ -205,9 +272,20 @@ You can use following example configuration in `package.json`:
|
|||||||
Configuration of `uniqueOutputName`, `suiteNameTemplate`, `classNameTemplate`, `titleTemplate` is important for proper visualization of test results.
|
Configuration of `uniqueOutputName`, `suiteNameTemplate`, `classNameTemplate`, `titleTemplate` is important for proper visualization of test results.
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
## GitHub limitations
|
||||||
|
|
||||||
|
Unfortunately there are some known issues and limitations caused by GitHub API:
|
||||||
|
|
||||||
|
- 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.
|
||||||
|
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v2` to upload them and inspect manually.
|
||||||
|
- Check Runs are created for specific commit SHA. it's not possible to specify under which workflow test report should belong if there are more
|
||||||
|
workflows running for same SHA. Thanks to this GitHub "feature" it's possible your test report will appear in unexpected place in GitHub UI.
|
||||||
|
For more information see [#67](https://github.com/dorny/test-reporter/issues/67).
|
||||||
|
|
||||||
## See also
|
## See also
|
||||||
- [paths-filter](https://github.com/dorny/paths-filter) - Conditionally run actions based on files modified by PR, feature branch or pushed commits
|
- [paths-filter](https://github.com/dorny/paths-filter) - Conditionally run actions based on files modified by PR, feature branch or pushed commits
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
The scripts and documentation in this project are released under the [MIT License](https://github.com/dorny/test-reporter/blob/master/LICENSE)
|
The scripts and documentation in this project are released under the [MIT License](https://github.com/dorny/test-reporter/blob/main/LICENSE)
|
||||||
|
|||||||
@@ -11,18 +11,18 @@
|
|||||||
**Test 1**
|
**Test 1**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|Test 1 Passing test|36ms|
|
|✔️|Passing test|36ms|
|
||||||
|
|
||||||
**Test 1 Test 1.1**
|
**Test 1 Test 1.1**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|❌|Test 1 Test 1.1 Failing test|20ms|
|
|❌|Failing test|20ms|
|
||||||
|❌|Test 1 Test 1.1 Exception in target unit|6ms|
|
|❌|Exception in target unit|6ms|
|
||||||
|
|
||||||
**Test 2**
|
**Test 2**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|❌|Test 2 Exception in test|12ms|
|
|❌|Exception in test|12ms|
|
||||||
### <a id="user-content-r0s1" href="#r0s1">test/second_test.dart</a> ❌
|
### <a id="user-content-r0s1" href="#r0s1">test/second_test.dart</a> ❌
|
||||||
**2** tests were completed in **51ms** with **0** passed, **1** failed and **1** skipped.
|
**2** tests were completed in **51ms** with **0** passed, **1** failed and **1** skipped.
|
||||||
|
|
||||||
|
|||||||
@@ -25,46 +25,46 @@
|
|||||||
**ChangeNotifierProvider**
|
**ChangeNotifierProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ChangeNotifierProvider default|189ms|
|
|✔️|default|189ms|
|
||||||
|✔️|ChangeNotifierProvider .value|10ms|
|
|✔️|.value|10ms|
|
||||||
|
|
||||||
**ListenableProvider**
|
**ListenableProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ListenableProvider default|9ms|
|
|✔️|default|9ms|
|
||||||
|✔️|ListenableProvider .value|16ms|
|
|✔️|.value|16ms|
|
||||||
|
|
||||||
**Provider**
|
**Provider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|Provider default|11ms|
|
|✔️|default|11ms|
|
||||||
|✔️|Provider .value|8ms|
|
|✔️|.value|8ms|
|
||||||
|
|
||||||
**ProxyProvider**
|
**ProxyProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ProxyProvider 0|11ms|
|
|✔️|0|11ms|
|
||||||
|✔️|ProxyProvider 1|10ms|
|
|✔️|1|10ms|
|
||||||
|✔️|ProxyProvider 2|8ms|
|
|✔️|2|8ms|
|
||||||
|✔️|ProxyProvider 3|10ms|
|
|✔️|3|10ms|
|
||||||
|✔️|ProxyProvider 4|9ms|
|
|✔️|4|9ms|
|
||||||
|✔️|ProxyProvider 5|9ms|
|
|✔️|5|9ms|
|
||||||
|✔️|ProxyProvider 6|9ms|
|
|✔️|6|9ms|
|
||||||
|
|
||||||
**MultiProvider**
|
**MultiProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|MultiProvider with 1 ChangeNotifierProvider default|9ms|
|
|✔️|with 1 ChangeNotifierProvider default|9ms|
|
||||||
|✔️|MultiProvider with 2 ChangeNotifierProvider default|9ms|
|
|✔️|with 2 ChangeNotifierProvider default|9ms|
|
||||||
|✔️|MultiProvider with ListenableProvider default|12ms|
|
|✔️|with ListenableProvider default|12ms|
|
||||||
|✔️|MultiProvider with Provider default|8ms|
|
|✔️|with Provider default|8ms|
|
||||||
|✔️|MultiProvider with ProxyProvider0|7ms|
|
|✔️|with ProxyProvider0|7ms|
|
||||||
|✔️|MultiProvider with ProxyProvider1|9ms|
|
|✔️|with ProxyProvider1|9ms|
|
||||||
|✔️|MultiProvider with ProxyProvider2|7ms|
|
|✔️|with ProxyProvider2|7ms|
|
||||||
|✔️|MultiProvider with ProxyProvider3|9ms|
|
|✔️|with ProxyProvider3|9ms|
|
||||||
|✔️|MultiProvider with ProxyProvider4|9ms|
|
|✔️|with ProxyProvider4|9ms|
|
||||||
|✔️|MultiProvider with ProxyProvider5|7ms|
|
|✔️|with ProxyProvider5|7ms|
|
||||||
|✔️|MultiProvider with ProxyProvider6|7ms|
|
|✔️|with ProxyProvider6|7ms|
|
||||||
### <a id="user-content-r0s1" href="#r0s1">test/change_notifier_provider_test.dart</a> ✔️
|
### <a id="user-content-r0s1" href="#r0s1">test/change_notifier_provider_test.dart</a> ✔️
|
||||||
**10** tests were completed in **306ms** with **10** passed, **0** failed and **0** skipped.
|
**10** tests were completed in **306ms** with **10** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
@@ -75,59 +75,59 @@
|
|||||||
**ChangeNotifierProvider**
|
**ChangeNotifierProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ChangeNotifierProvider value|185ms|
|
|✔️|value|185ms|
|
||||||
|✔️|ChangeNotifierProvider builder|18ms|
|
|✔️|builder|18ms|
|
||||||
|✔️|ChangeNotifierProvider builder1|12ms|
|
|✔️|builder1|12ms|
|
||||||
|✔️|ChangeNotifierProvider builder2|12ms|
|
|✔️|builder2|12ms|
|
||||||
|✔️|ChangeNotifierProvider builder3|19ms|
|
|✔️|builder3|19ms|
|
||||||
|✔️|ChangeNotifierProvider builder4|14ms|
|
|✔️|builder4|14ms|
|
||||||
|✔️|ChangeNotifierProvider builder5|15ms|
|
|✔️|builder5|15ms|
|
||||||
|✔️|ChangeNotifierProvider builder6|11ms|
|
|✔️|builder6|11ms|
|
||||||
|✔️|ChangeNotifierProvider builder0|10ms|
|
|✔️|builder0|10ms|
|
||||||
### <a id="user-content-r0s2" href="#r0s2">test/consumer_test.dart</a> ✔️
|
### <a id="user-content-r0s2" href="#r0s2">test/consumer_test.dart</a> ✔️
|
||||||
**18** tests were completed in **340ms** with **18** passed, **0** failed and **0** skipped.
|
**18** tests were completed in **340ms** with **18** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
**consumer**
|
**consumer**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|consumer obtains value from Provider<T>|181ms|
|
|✔️|obtains value from Provider<T>|181ms|
|
||||||
|✔️|consumer crashed with no builder|11ms|
|
|✔️|crashed with no builder|11ms|
|
||||||
|✔️|consumer can be used inside MultiProvider|16ms|
|
|✔️|can be used inside MultiProvider|16ms|
|
||||||
|
|
||||||
**consumer2**
|
**consumer2**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|consumer2 obtains value from Provider<T>|22ms|
|
|✔️|obtains value from Provider<T>|22ms|
|
||||||
|✔️|consumer2 crashed with no builder|8ms|
|
|✔️|crashed with no builder|8ms|
|
||||||
|✔️|consumer2 can be used inside MultiProvider|9ms|
|
|✔️|can be used inside MultiProvider|9ms|
|
||||||
|
|
||||||
**consumer3**
|
**consumer3**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|consumer3 obtains value from Provider<T>|9ms|
|
|✔️|obtains value from Provider<T>|9ms|
|
||||||
|✔️|consumer3 crashed with no builder|7ms|
|
|✔️|crashed with no builder|7ms|
|
||||||
|✔️|consumer3 can be used inside MultiProvider|8ms|
|
|✔️|can be used inside MultiProvider|8ms|
|
||||||
|
|
||||||
**consumer4**
|
**consumer4**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|consumer4 obtains value from Provider<T>|8ms|
|
|✔️|obtains value from Provider<T>|8ms|
|
||||||
|✔️|consumer4 crashed with no builder|6ms|
|
|✔️|crashed with no builder|6ms|
|
||||||
|✔️|consumer4 can be used inside MultiProvider|8ms|
|
|✔️|can be used inside MultiProvider|8ms|
|
||||||
|
|
||||||
**consumer5**
|
**consumer5**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|consumer5 obtains value from Provider<T>|8ms|
|
|✔️|obtains value from Provider<T>|8ms|
|
||||||
|✔️|consumer5 crashed with no builder|6ms|
|
|✔️|crashed with no builder|6ms|
|
||||||
|✔️|consumer5 can be used inside MultiProvider|9ms|
|
|✔️|can be used inside MultiProvider|9ms|
|
||||||
|
|
||||||
**consumer6**
|
**consumer6**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|consumer6 obtains value from Provider<T>|8ms|
|
|✔️|obtains value from Provider<T>|8ms|
|
||||||
|✔️|consumer6 crashed with no builder|8ms|
|
|✔️|crashed with no builder|8ms|
|
||||||
|✔️|consumer6 can be used inside MultiProvider|8ms|
|
|✔️|can be used inside MultiProvider|8ms|
|
||||||
### <a id="user-content-r0s3" href="#r0s3">test/context_test.dart</a> ✔️
|
### <a id="user-content-r0s3" href="#r0s3">test/context_test.dart</a> ✔️
|
||||||
**31** tests were completed in **698ms** with **31** passed, **0** failed and **0** skipped.
|
**31** tests were completed in **698ms** with **31** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
@@ -143,31 +143,31 @@
|
|||||||
**BuildContext**
|
**BuildContext**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|BuildContext internal selected value is updated|32ms|
|
|✔️|internal selected value is updated|32ms|
|
||||||
|✔️|BuildContext create can use read without being lazy|11ms|
|
|✔️|create can use read without being lazy|11ms|
|
||||||
|✔️|BuildContext watch can be used inside InheritedProvider.update|10ms|
|
|✔️|watch can be used inside InheritedProvider.update|10ms|
|
||||||
|✔️|BuildContext select doesn't fail if it loads a provider that depends on other providers|9ms|
|
|✔️|select doesn't fail if it loads a provider that depends on other providers|9ms|
|
||||||
|✔️|BuildContext don't call old selectors if the child rebuilds individually|21ms|
|
|✔️|don't call old selectors if the child rebuilds individually|21ms|
|
||||||
|✔️|BuildContext selects throws inside click handlers|40ms|
|
|✔️|selects throws inside click handlers|40ms|
|
||||||
|✔️|BuildContext select throws if try to read dynamic|9ms|
|
|✔️|select throws if try to read dynamic|9ms|
|
||||||
|✔️|BuildContext select throws ProviderNotFoundException|9ms|
|
|✔️|select throws ProviderNotFoundException|9ms|
|
||||||
|✔️|BuildContext select throws if watch called inside the callback from build|6ms|
|
|✔️|select throws if watch called inside the callback from build|6ms|
|
||||||
|✔️|BuildContext select throws if read called inside the callback from build|9ms|
|
|✔️|select throws if read called inside the callback from build|9ms|
|
||||||
|✔️|BuildContext select throws if select called inside the callback from build|8ms|
|
|✔️|select throws if select called inside the callback from build|8ms|
|
||||||
|✔️|BuildContext select throws if read called inside the callback on dependency change|10ms|
|
|✔️|select throws if read called inside the callback on dependency change|10ms|
|
||||||
|✔️|BuildContext select throws if watch called inside the callback on dependency change|17ms|
|
|✔️|select throws if watch called inside the callback on dependency change|17ms|
|
||||||
|✔️|BuildContext select throws if select called inside the callback on dependency change|9ms|
|
|✔️|select throws if select called inside the callback on dependency change|9ms|
|
||||||
|✔️|BuildContext can call read inside didChangeDependencies|9ms|
|
|✔️|can call read inside didChangeDependencies|9ms|
|
||||||
|✔️|BuildContext select cannot be called inside didChangeDependencies|6ms|
|
|✔️|select cannot be called inside didChangeDependencies|6ms|
|
||||||
|✔️|BuildContext select in initState throws|6ms|
|
|✔️|select in initState throws|6ms|
|
||||||
|✔️|BuildContext watch in initState throws|10ms|
|
|✔️|watch in initState throws|10ms|
|
||||||
|✔️|BuildContext read in initState works|6ms|
|
|✔️|read in initState works|6ms|
|
||||||
|✔️|BuildContext consumer can be removed and selector stops to be called|7ms|
|
|✔️|consumer can be removed and selector stops to be called|7ms|
|
||||||
|✔️|BuildContext context.select deeply compares maps|15ms|
|
|✔️|context.select deeply compares maps|15ms|
|
||||||
|✔️|BuildContext context.select deeply compares lists|8ms|
|
|✔️|context.select deeply compares lists|8ms|
|
||||||
|✔️|BuildContext context.select deeply compares iterables|8ms|
|
|✔️|context.select deeply compares iterables|8ms|
|
||||||
|✔️|BuildContext context.select deeply compares sets|11ms|
|
|✔️|context.select deeply compares sets|11ms|
|
||||||
|✔️|BuildContext context.watch listens to value changes|10ms|
|
|✔️|context.watch listens to value changes|10ms|
|
||||||
### <a id="user-content-r0s4" href="#r0s4">test/future_provider_test.dart</a> ✔️
|
### <a id="user-content-r0s4" href="#r0s4">test/future_provider_test.dart</a> ✔️
|
||||||
**10** tests were completed in **305ms** with **10** passed, **0** failed and **0** skipped.
|
**10** tests were completed in **305ms** with **10** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
@@ -186,7 +186,7 @@
|
|||||||
**FutureProvider()**
|
**FutureProvider()**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|FutureProvider() crashes if builder is null|3ms|
|
|✔️|crashes if builder is null|3ms|
|
||||||
### <a id="user-content-r0s5" href="#r0s5">test/inherited_provider_test.dart</a> ✔️
|
### <a id="user-content-r0s5" href="#r0s5">test/inherited_provider_test.dart</a> ✔️
|
||||||
**81** tests were completed in **1.117s** with **81** passed, **0** failed and **0** skipped.
|
**81** tests were completed in **1.117s** with **81** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
@@ -227,133 +227,133 @@
|
|||||||
**diagnostics**
|
**diagnostics**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|diagnostics InheritedProvider.value|11ms|
|
|✔️|InheritedProvider.value|11ms|
|
||||||
|✔️|diagnostics InheritedProvider doesn't break lazy loading|7ms|
|
|✔️|InheritedProvider doesn't break lazy loading|7ms|
|
||||||
|✔️|diagnostics InheritedProvider show if listening|7ms|
|
|✔️|InheritedProvider show if listening|7ms|
|
||||||
|✔️|diagnostics DeferredInheritedProvider.value|6ms|
|
|✔️|DeferredInheritedProvider.value|6ms|
|
||||||
|✔️|diagnostics DeferredInheritedProvider|16ms|
|
|✔️|DeferredInheritedProvider|16ms|
|
||||||
|
|
||||||
**InheritedProvider.value()**
|
**InheritedProvider.value()**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|InheritedProvider.value() markNeedsNotifyDependents during startListening is noop|8ms|
|
|✔️|markNeedsNotifyDependents during startListening is noop|8ms|
|
||||||
|✔️|InheritedProvider.value() startListening called again when create returns new value|27ms|
|
|✔️|startListening called again when create returns new value|27ms|
|
||||||
|✔️|InheritedProvider.value() startListening|19ms|
|
|✔️|startListening|19ms|
|
||||||
|✔️|InheritedProvider.value() stopListening not called twice if rebuild doesn't have listeners|16ms|
|
|✔️|stopListening not called twice if rebuild doesn't have listeners|16ms|
|
||||||
|✔️|InheritedProvider.value() removeListener cannot be null|22ms|
|
|✔️|removeListener cannot be null|22ms|
|
||||||
|✔️|InheritedProvider.value() pass down current value|17ms|
|
|✔️|pass down current value|17ms|
|
||||||
|✔️|InheritedProvider.value() default updateShouldNotify|8ms|
|
|✔️|default updateShouldNotify|8ms|
|
||||||
|✔️|InheritedProvider.value() custom updateShouldNotify|32ms|
|
|✔️|custom updateShouldNotify|32ms|
|
||||||
|
|
||||||
**InheritedProvider()**
|
**InheritedProvider()**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|InheritedProvider() hasValue|16ms|
|
|✔️|hasValue|16ms|
|
||||||
|✔️|InheritedProvider() provider calls update if rebuilding only due to didChangeDependencies|9ms|
|
|✔️|provider calls update if rebuilding only due to didChangeDependencies|9ms|
|
||||||
|✔️|InheritedProvider() provider notifying dependents doesn't call update|11ms|
|
|✔️|provider notifying dependents doesn't call update|11ms|
|
||||||
|✔️|InheritedProvider() update can call Provider.of with listen:true|7ms|
|
|✔️|update can call Provider.of with listen:true|7ms|
|
||||||
|✔️|InheritedProvider() update lazy loaded can call Provider.of with listen:true|10ms|
|
|✔️|update lazy loaded can call Provider.of with listen:true|10ms|
|
||||||
|✔️|InheritedProvider() markNeedsNotifyDependents during startListening is noop|22ms|
|
|✔️|markNeedsNotifyDependents during startListening is noop|22ms|
|
||||||
|✔️|InheritedProvider() update can obtain parent of the same type than self|15ms|
|
|✔️|update can obtain parent of the same type than self|15ms|
|
||||||
|✔️|InheritedProvider() _debugCheckInvalidValueType|22ms|
|
|✔️|_debugCheckInvalidValueType|22ms|
|
||||||
|✔️|InheritedProvider() startListening|18ms|
|
|✔️|startListening|18ms|
|
||||||
|✔️|InheritedProvider() startListening called again when create returns new value|20ms|
|
|✔️|startListening called again when create returns new value|20ms|
|
||||||
|✔️|InheritedProvider() stopListening not called twice if rebuild doesn't have listeners|18ms|
|
|✔️|stopListening not called twice if rebuild doesn't have listeners|18ms|
|
||||||
|✔️|InheritedProvider() removeListener cannot be null|16ms|
|
|✔️|removeListener cannot be null|16ms|
|
||||||
|✔️|InheritedProvider() fails if initialValueBuilder calls inheritFromElement/inheritFromWiggetOfExactType|17ms|
|
|✔️|fails if initialValueBuilder calls inheritFromElement/inheritFromWiggetOfExactType|17ms|
|
||||||
|✔️|InheritedProvider() builder is called on every rebuild and after a dependency change|11ms|
|
|✔️|builder is called on every rebuild and after a dependency change|11ms|
|
||||||
|✔️|InheritedProvider() builder with no updateShouldNotify use ==|8ms|
|
|✔️|builder with no updateShouldNotify use ==|8ms|
|
||||||
|✔️|InheritedProvider() builder calls updateShouldNotify callback|8ms|
|
|✔️|builder calls updateShouldNotify callback|8ms|
|
||||||
|✔️|InheritedProvider() initialValue is transmitted to valueBuilder|8ms|
|
|✔️|initialValue is transmitted to valueBuilder|8ms|
|
||||||
|✔️|InheritedProvider() calls builder again if dependencies change|22ms|
|
|✔️|calls builder again if dependencies change|22ms|
|
||||||
|✔️|InheritedProvider() exposes initialValue if valueBuilder is null|20ms|
|
|✔️|exposes initialValue if valueBuilder is null|20ms|
|
||||||
|✔️|InheritedProvider() call dispose on unmount|22ms|
|
|✔️|call dispose on unmount|22ms|
|
||||||
|✔️|InheritedProvider() builder unmount, dispose not called if value never read|11ms|
|
|✔️|builder unmount, dispose not called if value never read|11ms|
|
||||||
|✔️|InheritedProvider() call dispose after new value|9ms|
|
|✔️|call dispose after new value|9ms|
|
||||||
|✔️|InheritedProvider() valueBuilder works without initialBuilder|11ms|
|
|✔️|valueBuilder works without initialBuilder|11ms|
|
||||||
|✔️|InheritedProvider() calls initialValueBuilder lazily once|7ms|
|
|✔️|calls initialValueBuilder lazily once|7ms|
|
||||||
|✔️|InheritedProvider() throws if both builder and initialBuilder are missing|5ms|
|
|✔️|throws if both builder and initialBuilder are missing|5ms|
|
||||||
|
|
||||||
**DeferredInheritedProvider.value()**
|
**DeferredInheritedProvider.value()**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|DeferredInheritedProvider.value() hasValue|6ms|
|
|✔️|hasValue|6ms|
|
||||||
|✔️|DeferredInheritedProvider.value() startListening|9ms|
|
|✔️|startListening|9ms|
|
||||||
|✔️|DeferredInheritedProvider.value() stopListening cannot be null|9ms|
|
|✔️|stopListening cannot be null|9ms|
|
||||||
|✔️|DeferredInheritedProvider.value() startListening doesn't need setState if already initialized|8ms|
|
|✔️|startListening doesn't need setState if already initialized|8ms|
|
||||||
|✔️|DeferredInheritedProvider.value() setState without updateShouldNotify|8ms|
|
|✔️|setState without updateShouldNotify|8ms|
|
||||||
|✔️|DeferredInheritedProvider.value() setState with updateShouldNotify|9ms|
|
|✔️|setState with updateShouldNotify|9ms|
|
||||||
|✔️|DeferredInheritedProvider.value() startListening never leave the widget uninitialized|8ms|
|
|✔️|startListening never leave the widget uninitialized|8ms|
|
||||||
|✔️|DeferredInheritedProvider.value() startListening called again on controller change|10ms|
|
|✔️|startListening called again on controller change|10ms|
|
||||||
|
|
||||||
**DeferredInheritedProvider()**
|
**DeferredInheritedProvider()**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|DeferredInheritedProvider() create can't call inherited widgets|7ms|
|
|✔️|create can't call inherited widgets|7ms|
|
||||||
|✔️|DeferredInheritedProvider() creates the value lazily|7ms|
|
|✔️|creates the value lazily|7ms|
|
||||||
|✔️|DeferredInheritedProvider() dispose|7ms|
|
|✔️|dispose|7ms|
|
||||||
|✔️|DeferredInheritedProvider() dispose no-op if never built|7ms|
|
|✔️|dispose no-op if never built|7ms|
|
||||||
### <a id="user-content-r0s6" href="#r0s6">test/listenable_provider_test.dart</a> ✔️
|
### <a id="user-content-r0s6" href="#r0s6">test/listenable_provider_test.dart</a> ✔️
|
||||||
**16** tests were completed in **353ms** with **16** passed, **0** failed and **0** skipped.
|
**16** tests were completed in **353ms** with **16** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
**ListenableProvider**
|
**ListenableProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ListenableProvider works with MultiProvider|173ms|
|
|✔️|works with MultiProvider|173ms|
|
||||||
|✔️|ListenableProvider asserts that the created notifier can have listeners|12ms|
|
|✔️|asserts that the created notifier can have listeners|12ms|
|
||||||
|✔️|ListenableProvider don't listen again if listenable instance doesn't change|12ms|
|
|✔️|don't listen again if listenable instance doesn't change|12ms|
|
||||||
|✔️|ListenableProvider works with null (default)|7ms|
|
|✔️|works with null (default)|7ms|
|
||||||
|✔️|ListenableProvider works with null (create)|7ms|
|
|✔️|works with null (create)|7ms|
|
||||||
|✔️|ListenableProvider stateful create called once|11ms|
|
|✔️|stateful create called once|11ms|
|
||||||
|✔️|ListenableProvider dispose called on unmount|13ms|
|
|✔️|dispose called on unmount|13ms|
|
||||||
|✔️|ListenableProvider dispose can be null|8ms|
|
|✔️|dispose can be null|8ms|
|
||||||
|✔️|ListenableProvider changing listenable rebuilds descendants|12ms|
|
|✔️|changing listenable rebuilds descendants|12ms|
|
||||||
|✔️|ListenableProvider rebuilding with the same provider don't rebuilds descendants|11ms|
|
|✔️|rebuilding with the same provider don't rebuilds descendants|11ms|
|
||||||
|✔️|ListenableProvider notifylistener rebuilds descendants|9ms|
|
|✔️|notifylistener rebuilds descendants|9ms|
|
||||||
|
|
||||||
**ListenableProvider value constructor**
|
**ListenableProvider value constructor**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ListenableProvider value constructor pass down key|17ms|
|
|✔️|pass down key|17ms|
|
||||||
|✔️|ListenableProvider value constructor changing the Listenable instance rebuilds dependents|29ms|
|
|✔️|changing the Listenable instance rebuilds dependents|29ms|
|
||||||
|
|
||||||
**ListenableProvider stateful constructor**
|
**ListenableProvider stateful constructor**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ListenableProvider stateful constructor called with context|8ms|
|
|✔️|called with context|8ms|
|
||||||
|✔️|ListenableProvider stateful constructor pass down key|20ms|
|
|✔️|pass down key|20ms|
|
||||||
|✔️|ListenableProvider stateful constructor throws if create is null|4ms|
|
|✔️|throws if create is null|4ms|
|
||||||
### <a id="user-content-r0s7" href="#r0s7">test/listenable_proxy_provider_test.dart</a> ✔️
|
### <a id="user-content-r0s7" href="#r0s7">test/listenable_proxy_provider_test.dart</a> ✔️
|
||||||
**12** tests were completed in **373ms** with **12** passed, **0** failed and **0** skipped.
|
**12** tests were completed in **373ms** with **12** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
**ListenableProxyProvider**
|
**ListenableProxyProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ListenableProxyProvider throws if update is missing|43ms|
|
|✔️|throws if update is missing|43ms|
|
||||||
|✔️|ListenableProxyProvider asserts that the created notifier has no listener|177ms|
|
|✔️|asserts that the created notifier has no listener|177ms|
|
||||||
|✔️|ListenableProxyProvider asserts that the created notifier has no listener after rebuild|18ms|
|
|✔️|asserts that the created notifier has no listener after rebuild|18ms|
|
||||||
|✔️|ListenableProxyProvider rebuilds dependendents when listeners are called|20ms|
|
|✔️|rebuilds dependendents when listeners are called|20ms|
|
||||||
|✔️|ListenableProxyProvider update returning a new Listenable disposes the previously created value and update dependents|25ms|
|
|✔️|update returning a new Listenable disposes the previously created value and update dependents|25ms|
|
||||||
|✔️|ListenableProxyProvider disposes of created value|13ms|
|
|✔️|disposes of created value|13ms|
|
||||||
|
|
||||||
**ListenableProxyProvider variants**
|
**ListenableProxyProvider variants**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ListenableProxyProvider variants ListenableProxyProvider|13ms|
|
|✔️|ListenableProxyProvider|13ms|
|
||||||
|✔️|ListenableProxyProvider variants ListenableProxyProvider2|9ms|
|
|✔️|ListenableProxyProvider2|9ms|
|
||||||
|✔️|ListenableProxyProvider variants ListenableProxyProvider3|9ms|
|
|✔️|ListenableProxyProvider3|9ms|
|
||||||
|✔️|ListenableProxyProvider variants ListenableProxyProvider4|17ms|
|
|✔️|ListenableProxyProvider4|17ms|
|
||||||
|✔️|ListenableProxyProvider variants ListenableProxyProvider5|12ms|
|
|✔️|ListenableProxyProvider5|12ms|
|
||||||
|✔️|ListenableProxyProvider variants ListenableProxyProvider6|17ms|
|
|✔️|ListenableProxyProvider6|17ms|
|
||||||
### <a id="user-content-r0s8" href="#r0s8">test/multi_provider_test.dart</a> ✔️
|
### <a id="user-content-r0s8" href="#r0s8">test/multi_provider_test.dart</a> ✔️
|
||||||
**3** tests were completed in **198ms** with **3** passed, **0** failed and **0** skipped.
|
**3** tests were completed in **198ms** with **3** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
**MultiProvider**
|
**MultiProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|MultiProvider throw if providers is null|30ms|
|
|✔️|throw if providers is null|30ms|
|
||||||
|✔️|MultiProvider MultiProvider children can only access parent providers|160ms|
|
|✔️|MultiProvider children can only access parent providers|160ms|
|
||||||
|✔️|MultiProvider MultiProvider.providers with ignored child|8ms|
|
|✔️|MultiProvider.providers with ignored child|8ms|
|
||||||
### <a id="user-content-r0s9" href="#r0s9">test/provider_test.dart</a> ✔️
|
### <a id="user-content-r0s9" href="#r0s9">test/provider_test.dart</a> ✔️
|
||||||
**11** tests were completed in **306ms** with **11** passed, **0** failed and **0** skipped.
|
**11** tests were completed in **306ms** with **11** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
@@ -364,46 +364,46 @@
|
|||||||
**Provider.of**
|
**Provider.of**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|Provider.of throws if T is dynamic|26ms|
|
|✔️|throws if T is dynamic|26ms|
|
||||||
|✔️|Provider.of listen defaults to true when building widgets|13ms|
|
|✔️|listen defaults to true when building widgets|13ms|
|
||||||
|✔️|Provider.of listen defaults to false outside of the widget tree|9ms|
|
|✔️|listen defaults to false outside of the widget tree|9ms|
|
||||||
|✔️|Provider.of listen:false doesn't trigger rebuild|10ms|
|
|✔️|listen:false doesn't trigger rebuild|10ms|
|
||||||
|✔️|Provider.of listen:true outside of the widget tree throws|11ms|
|
|✔️|listen:true outside of the widget tree throws|11ms|
|
||||||
|
|
||||||
**Provider**
|
**Provider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|Provider throws if the provided value is a Listenable/Stream|28ms|
|
|✔️|throws if the provided value is a Listenable/Stream|28ms|
|
||||||
|✔️|Provider debugCheckInvalidValueType can be disabled|9ms|
|
|✔️|debugCheckInvalidValueType can be disabled|9ms|
|
||||||
|✔️|Provider simple usage|9ms|
|
|✔️|simple usage|9ms|
|
||||||
|✔️|Provider throws an error if no provider found|11ms|
|
|✔️|throws an error if no provider found|11ms|
|
||||||
|✔️|Provider update should notify|8ms|
|
|✔️|update should notify|8ms|
|
||||||
### <a id="user-content-r0s10" href="#r0s10">test/proxy_provider_test.dart</a> ✔️
|
### <a id="user-content-r0s10" href="#r0s10">test/proxy_provider_test.dart</a> ✔️
|
||||||
**16** tests were completed in **438ms** with **16** passed, **0** failed and **0** skipped.
|
**16** tests were completed in **438ms** with **16** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
**ProxyProvider**
|
**ProxyProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ProxyProvider throws if the provided value is a Listenable/Stream|209ms|
|
|✔️|throws if the provided value is a Listenable/Stream|209ms|
|
||||||
|✔️|ProxyProvider debugCheckInvalidValueType can be disabled|13ms|
|
|✔️|debugCheckInvalidValueType can be disabled|13ms|
|
||||||
|✔️|ProxyProvider create creates initial value|23ms|
|
|✔️|create creates initial value|23ms|
|
||||||
|✔️|ProxyProvider consume another providers|18ms|
|
|✔️|consume another providers|18ms|
|
||||||
|✔️|ProxyProvider rebuild descendants if value change|13ms|
|
|✔️|rebuild descendants if value change|13ms|
|
||||||
|✔️|ProxyProvider call dispose when unmounted with the latest result|11ms|
|
|✔️|call dispose when unmounted with the latest result|11ms|
|
||||||
|✔️|ProxyProvider don't rebuild descendants if value doesn't change|12ms|
|
|✔️|don't rebuild descendants if value doesn't change|12ms|
|
||||||
|✔️|ProxyProvider pass down updateShouldNotify|19ms|
|
|✔️|pass down updateShouldNotify|19ms|
|
||||||
|✔️|ProxyProvider works with MultiProvider|16ms|
|
|✔️|works with MultiProvider|16ms|
|
||||||
|✔️|ProxyProvider update callback can trigger descendants setState synchronously|24ms|
|
|✔️|update callback can trigger descendants setState synchronously|24ms|
|
||||||
|✔️|ProxyProvider throws if update is null|7ms|
|
|✔️|throws if update is null|7ms|
|
||||||
|
|
||||||
**ProxyProvider variants**
|
**ProxyProvider variants**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|ProxyProvider variants ProxyProvider2|18ms|
|
|✔️|ProxyProvider2|18ms|
|
||||||
|✔️|ProxyProvider variants ProxyProvider3|16ms|
|
|✔️|ProxyProvider3|16ms|
|
||||||
|✔️|ProxyProvider variants ProxyProvider4|9ms|
|
|✔️|ProxyProvider4|9ms|
|
||||||
|✔️|ProxyProvider variants ProxyProvider5|20ms|
|
|✔️|ProxyProvider5|20ms|
|
||||||
|✔️|ProxyProvider variants ProxyProvider6|10ms|
|
|✔️|ProxyProvider6|10ms|
|
||||||
### <a id="user-content-r0s11" href="#r0s11">test/reassemble_test.dart</a> ✔️
|
### <a id="user-content-r0s11" href="#r0s11">test/reassemble_test.dart</a> ✔️
|
||||||
**3** tests were completed in **221ms** with **3** passed, **0** failed and **0** skipped.
|
**3** tests were completed in **221ms** with **3** passed, **0** failed and **0** skipped.
|
||||||
|
|
||||||
@@ -458,16 +458,16 @@
|
|||||||
**StreamProvider()**
|
**StreamProvider()**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|StreamProvider() create and dispose stream with builder|11ms|
|
|✔️|create and dispose stream with builder|11ms|
|
||||||
|✔️|StreamProvider() crashes if builder is null|4ms|
|
|✔️|crashes if builder is null|4ms|
|
||||||
### <a id="user-content-r0s15" href="#r0s15">test/value_listenable_provider_test.dart</a> ❌
|
### <a id="user-content-r0s15" href="#r0s15">test/value_listenable_provider_test.dart</a> ❌
|
||||||
**5** tests were completed in **327ms** with **4** passed, **1** failed and **0** skipped.
|
**5** tests were completed in **327ms** with **4** passed, **1** failed and **0** skipped.
|
||||||
|
|
||||||
**valueListenableProvider**
|
**valueListenableProvider**
|
||||||
|Result|Test|Time|
|
|Result|Test|Time|
|
||||||
|:---:|:---|---:|
|
|:---:|:---|---:|
|
||||||
|✔️|valueListenableProvider rebuilds when value change|200ms|
|
|✔️|rebuilds when value change|200ms|
|
||||||
|✔️|valueListenableProvider don't rebuild dependents by default|26ms|
|
|✔️|don't rebuild dependents by default|26ms|
|
||||||
|✔️|valueListenableProvider pass keys|10ms|
|
|✔️|pass keys|10ms|
|
||||||
|✔️|valueListenableProvider don't listen again if stream instance doesn't change|22ms|
|
|✔️|don't listen again if stream instance doesn't change|22ms|
|
||||||
|❌|valueListenableProvider pass updateShouldNotify|69ms|
|
|❌|pass updateShouldNotify|69ms|
|
||||||
13
__tests__/__outputs__/pulsar-test-results-no-merge.md
Normal file
13
__tests__/__outputs__/pulsar-test-results-no-merge.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|

|
||||||
|
## <a id="user-content-r0" href="#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.
|
||||||
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|
|:---|---:|---:|---:|---:|
|
||||||
|
|[org.apache.pulsar.AddMissingPatchVersionTest](#r0s0)||1❌|1✖️|116ms|
|
||||||
|
### <a id="user-content-r0s0" href="#r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a> ❌
|
||||||
|
**2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped.
|
||||||
|
|
||||||
|
|Result|Test|Time|
|
||||||
|
|:---:|:---|---:|
|
||||||
|
|✖️|testVersionStrings|99ms|
|
||||||
|
|❌|testVersionStrings|17ms|
|
||||||
188
__tests__/__outputs__/pulsar-test-results.md
Normal file
188
__tests__/__outputs__/pulsar-test-results.md
Normal file
@@ -0,0 +1,188 @@
|
|||||||
|

|
||||||
|
## <a id="user-content-r0" href="#r0">fixtures/external/java/pulsar-test-report.xml</a> ❌
|
||||||
|
**808** tests were completed in **2126.531s** with **793** passed, **1** failed and **14** skipped.
|
||||||
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|
|:---|---:|---:|---:|---:|
|
||||||
|
|[org.apache.pulsar.AddMissingPatchVersionTest](#r0s0)||1❌|1✖️|116ms|
|
||||||
|
|org.apache.pulsar.broker.admin.AdminApiOffloadTest|7✔️|||18.584s|
|
||||||
|
|org.apache.pulsar.broker.auth.AuthenticationServiceTest|2✔️|||185ms|
|
||||||
|
|org.apache.pulsar.broker.auth.AuthLogsTest|2✔️|||1.389s|
|
||||||
|
|org.apache.pulsar.broker.auth.AuthorizationTest|1✔️|||2.384s|
|
||||||
|
|org.apache.pulsar.broker.lookup.http.HttpTopicLookupv2Test|4✔️|||1.930s|
|
||||||
|
|org.apache.pulsar.broker.namespace.NamespaceCreateBundlesTest|2✔️|||33.168s|
|
||||||
|
|org.apache.pulsar.broker.namespace.NamespaceOwnershipListenerTests|2✔️|||32.357s|
|
||||||
|
|org.apache.pulsar.broker.namespace.NamespaceServiceTest|10✔️|||75.272s|
|
||||||
|
|org.apache.pulsar.broker.namespace.NamespaceUnloadingTest|2✔️|||13.704s|
|
||||||
|
|org.apache.pulsar.broker.namespace.OwnerShipCacheForCurrentServerTest|1✔️|||15.709s|
|
||||||
|
|org.apache.pulsar.broker.namespace.OwnershipCacheTest|8✔️|||15.750s|
|
||||||
|
|org.apache.pulsar.broker.protocol.ProtocolHandlersTest|6✔️|||946ms|
|
||||||
|
|org.apache.pulsar.broker.protocol.ProtocolHandlerUtilsTest|3✔️|||7.398s|
|
||||||
|
|org.apache.pulsar.broker.protocol.ProtocolHandlerWithClassLoaderTest|1✔️|||15ms|
|
||||||
|
|org.apache.pulsar.broker.PulsarServiceTest|2✔️|||96ms|
|
||||||
|
|org.apache.pulsar.broker.service.MessagePublishBufferThrottleTest|3✔️|||13.830s|
|
||||||
|
|org.apache.pulsar.broker.service.ReplicatorTest|22✔️|||40.154s|
|
||||||
|
|org.apache.pulsar.broker.service.TopicOwnerTest|8✔️|||114.278s|
|
||||||
|
|org.apache.pulsar.broker.SLAMonitoringTest|4✔️|||9.185s|
|
||||||
|
|org.apache.pulsar.broker.stats.BookieClientsStatsGeneratorTest|2✔️|||49ms|
|
||||||
|
|org.apache.pulsar.broker.stats.ConsumerStatsTest|3✔️|||21.164s|
|
||||||
|
|org.apache.pulsar.broker.stats.ManagedCursorMetricsTest|1✔️|||281ms|
|
||||||
|
|org.apache.pulsar.broker.stats.ManagedLedgerMetricsTest|1✔️|||285ms|
|
||||||
|
|org.apache.pulsar.broker.stats.prometheus.AggregatedNamespaceStatsTest|1✔️|||40ms|
|
||||||
|
|org.apache.pulsar.broker.stats.PrometheusMetricsTest|15✔️|||83.145s|
|
||||||
|
|org.apache.pulsar.broker.stats.SubscriptionStatsTest|2✔️|||1.806s|
|
||||||
|
|org.apache.pulsar.broker.systopic.NamespaceEventsSystemTopicServiceTest|1✔️|||1.043s|
|
||||||
|
|org.apache.pulsar.broker.transaction.buffer.InMemTransactionBufferReaderTest|3✔️|||28ms|
|
||||||
|
|org.apache.pulsar.broker.transaction.buffer.TransactionBufferClientTest|4✔️|||93ms|
|
||||||
|
|org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest|7✔️|||81ms|
|
||||||
|
|org.apache.pulsar.broker.transaction.buffer.TransactionEntryImplTest|1✔️|||14ms|
|
||||||
|
|org.apache.pulsar.broker.transaction.buffer.TransactionLowWaterMarkTest|2✔️|||37.577s|
|
||||||
|
|org.apache.pulsar.broker.transaction.buffer.TransactionStablePositionTest|2✔️||1✖️|49.067s|
|
||||||
|
|org.apache.pulsar.broker.transaction.coordinator.TransactionCoordinatorClientTest|3✔️|||95ms|
|
||||||
|
|org.apache.pulsar.broker.transaction.coordinator.TransactionMetaStoreAssignmentTest|1✔️|||1.151s|
|
||||||
|
|org.apache.pulsar.broker.transaction.pendingack.PendingAckInMemoryDeleteTest|2✔️||1✖️|57.293s|
|
||||||
|
|org.apache.pulsar.broker.transaction.TransactionConsumeTest|2✔️|||29.646s|
|
||||||
|
|org.apache.pulsar.broker.web.RestExceptionTest|3✔️|||37ms|
|
||||||
|
|org.apache.pulsar.broker.web.WebServiceTest|9✔️|||27.442s|
|
||||||
|
|org.apache.pulsar.client.impl.AdminApiKeyStoreTlsAuthTest|4✔️|||8.297s|
|
||||||
|
|org.apache.pulsar.client.impl.BatchMessageIdImplSerializationTest|4✔️|||30ms|
|
||||||
|
|org.apache.pulsar.client.impl.BatchMessageIndexAckDisableTest|4✔️|||13.732s|
|
||||||
|
|org.apache.pulsar.client.impl.BatchMessageIndexAckTest|5✔️|||43.856s|
|
||||||
|
|org.apache.pulsar.client.impl.BrokerClientIntegrationTest|15✔️|||148.203s|
|
||||||
|
|org.apache.pulsar.client.impl.CompactedOutBatchMessageTest|1✔️|||1.385s|
|
||||||
|
|org.apache.pulsar.client.impl.ConsumerAckResponseTest|1✔️|||549ms|
|
||||||
|
|org.apache.pulsar.client.impl.ConsumerConfigurationTest|4✔️|||12.164s|
|
||||||
|
|org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate|7✔️|||3.522s|
|
||||||
|
|org.apache.pulsar.client.impl.ConsumerUnsubscribeTest|1✔️|||129ms|
|
||||||
|
|org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithAuth|3✔️|||23.461s|
|
||||||
|
|org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithoutAuth|3✔️|||7.675s|
|
||||||
|
|org.apache.pulsar.client.impl.KeyStoreTlsTest|1✔️|||183ms|
|
||||||
|
|org.apache.pulsar.client.impl.MessageChecksumTest|3✔️|||46.690s|
|
||||||
|
|org.apache.pulsar.client.impl.MessageChunkingTest|8✔️||1✖️|73.214s|
|
||||||
|
|org.apache.pulsar.client.impl.MessageParserTest|2✔️|||5.485s|
|
||||||
|
|org.apache.pulsar.client.impl.MultiTopicsReaderTest|8✔️|||35.143s|
|
||||||
|
|org.apache.pulsar.client.impl.NegativeAcksTest|32✔️|||10.662s|
|
||||||
|
|org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest|11✔️|||62.620s|
|
||||||
|
|org.apache.pulsar.client.impl.PerMessageUnAcknowledgedRedeliveryTest|5✔️|||33.504s|
|
||||||
|
|org.apache.pulsar.client.impl.PulsarMultiHostClientTest|3✔️|||15.314s|
|
||||||
|
|org.apache.pulsar.client.impl.RawMessageSerDeserTest|1✔️|||10ms|
|
||||||
|
|org.apache.pulsar.client.impl.SchemaDeleteTest|1✔️|||1.937s|
|
||||||
|
|org.apache.pulsar.client.impl.SequenceIdWithErrorTest|3✔️||2✖️|17.976s|
|
||||||
|
|org.apache.pulsar.client.impl.TopicDoesNotExistsTest|2✔️|||4.053s|
|
||||||
|
|org.apache.pulsar.client.impl.TopicFromMessageTest|5✔️|||13.659s|
|
||||||
|
|org.apache.pulsar.client.impl.TopicsConsumerImplTest|17✔️|||133.445s|
|
||||||
|
|org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest|7✔️|||43.828s|
|
||||||
|
|org.apache.pulsar.client.impl.ZeroQueueSizeTest|14✔️|||15.712s|
|
||||||
|
|org.apache.pulsar.common.api.raw.RawMessageImplTest|1✔️|||316ms|
|
||||||
|
|org.apache.pulsar.common.compression.CommandsTest|1✔️|||30ms|
|
||||||
|
|org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest|6✔️|||223ms|
|
||||||
|
|org.apache.pulsar.common.compression.CompressorCodecTest|45✔️|||737ms|
|
||||||
|
|org.apache.pulsar.common.compression.Crc32cChecksumTest|6✔️|||5.403s|
|
||||||
|
|org.apache.pulsar.common.lookup.data.LookupDataTest|4✔️|||1.530s|
|
||||||
|
|org.apache.pulsar.common.naming.MetadataTests|2✔️|||161ms|
|
||||||
|
|org.apache.pulsar.common.naming.NamespaceBundlesTest|5✔️|||99ms|
|
||||||
|
|org.apache.pulsar.common.naming.NamespaceBundleTest|6✔️|||64ms|
|
||||||
|
|org.apache.pulsar.common.naming.NamespaceNameTest|2✔️|||207ms|
|
||||||
|
|org.apache.pulsar.common.naming.ServiceConfigurationTest|4✔️|||48ms|
|
||||||
|
|org.apache.pulsar.common.naming.TopicNameTest|4✔️|||529ms|
|
||||||
|
|org.apache.pulsar.common.net.ServiceURITest|21✔️|||237ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.AutoFailoverPolicyDataTest|1✔️|||15ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.AutoFailoverPolicyTypeTest|1✔️|||19ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest|6✔️|||64ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.BacklogQuotaTest|1✔️|||12ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.ClusterDataTest|1✔️|||9ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.ConsumerStatsTest|1✔️|||8ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.EnsemblePlacementPolicyConfigTest|2✔️|||948ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.LocalPolicesTest|1✔️|||48ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.NamespaceIsolationDataTest|1✔️|||76ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.NamespaceOwnershipStatusTest|1✔️|||45ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.OffloadPoliciesTest|6✔️|||216ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.PartitionedTopicStatsTest|1✔️|||12ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.PersistencePoliciesTest|1✔️|||19ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.PersistentOfflineTopicStatsTest|1✔️|||29ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.PersistentTopicStatsTest|2✔️|||51ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.PoliciesDataTest|4✔️|||1.386s|
|
||||||
|
|org.apache.pulsar.common.policies.data.PublisherStatsTest|2✔️|||37ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.ReplicatorStatsTest|2✔️|||30ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.ResourceQuotaTest|2✔️|||45ms|
|
||||||
|
|org.apache.pulsar.common.policies.data.RetentionPolicesTest|1✔️|||8ms|
|
||||||
|
|org.apache.pulsar.common.policies.impl.AutoFailoverPolicyFactoryTest|1✔️|||22ms|
|
||||||
|
|org.apache.pulsar.common.policies.impl.MinAvailablePolicyTest|1✔️|||1ms|
|
||||||
|
|org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest|7✔️|||265ms|
|
||||||
|
|org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest|7✔️|||309ms|
|
||||||
|
|org.apache.pulsar.common.protocol.ByteBufPairTest|2✔️|||4.999s|
|
||||||
|
|org.apache.pulsar.common.protocol.CommandUtilsTests|7✔️|||2.812s|
|
||||||
|
|org.apache.pulsar.common.protocol.MarkersTest|6✔️|||3.233s|
|
||||||
|
|org.apache.pulsar.common.protocol.PulsarDecoderTest|1✔️|||3.690s|
|
||||||
|
|org.apache.pulsar.common.stats.JvmDefaultGCMetricsLoggerTest|1✔️|||82ms|
|
||||||
|
|org.apache.pulsar.common.util.collections.BitSetRecyclableRecyclableTest|2✔️|||13ms|
|
||||||
|
|org.apache.pulsar.common.util.collections.ConcurrentBitSetRecyclableTest|2✔️|||63ms|
|
||||||
|
|org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest|13✔️|||28.351s|
|
||||||
|
|org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest|15✔️|||1.519s|
|
||||||
|
|org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest|12✔️|||9.241s|
|
||||||
|
|org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest|11✔️|||7.115s|
|
||||||
|
|org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest|13✔️|||1.356s|
|
||||||
|
|org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest|9✔️|||342ms|
|
||||||
|
|org.apache.pulsar.common.util.collections.FieldParserTest|2✔️|||64ms|
|
||||||
|
|org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest|6✔️|||350ms|
|
||||||
|
|org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest|15✔️|||3.093s|
|
||||||
|
|org.apache.pulsar.common.util.collections.TripleLongPriorityQueueTest|3✔️|||238ms|
|
||||||
|
|org.apache.pulsar.common.util.FieldParserTest|1✔️|||242ms|
|
||||||
|
|org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest|6✔️|||6.161s|
|
||||||
|
|org.apache.pulsar.common.util.netty.ChannelFuturesTest|5✔️|||1.549s|
|
||||||
|
|org.apache.pulsar.common.util.RateLimiterTest|11✔️|||7.200s|
|
||||||
|
|org.apache.pulsar.common.util.ReflectionsTest|12✔️|||172ms|
|
||||||
|
|org.apache.pulsar.common.util.RelativeTimeUtilTest|1✔️|||39ms|
|
||||||
|
|org.apache.pulsar.discovery.service.web.DiscoveryServiceWebTest|1✔️|||4.904s|
|
||||||
|
|org.apache.pulsar.functions.worker.PulsarFunctionE2ESecurityTest|2✔️|||27.527s|
|
||||||
|
|org.apache.pulsar.functions.worker.PulsarFunctionPublishTest|3✔️|||42.238s|
|
||||||
|
|org.apache.pulsar.functions.worker.PulsarFunctionTlsTest|1✔️|||12.012s|
|
||||||
|
|org.apache.pulsar.io.PulsarFunctionTlsTest|1✔️|||30.213s|
|
||||||
|
|org.apache.pulsar.proxy.server.AdminProxyHandlerTest|1✔️|||474ms|
|
||||||
|
|org.apache.pulsar.proxy.server.AuthedAdminProxyHandlerTest|1✔️|||2.159s|
|
||||||
|
|org.apache.pulsar.proxy.server.FunctionWorkerRoutingTest|1✔️|||10ms|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyAdditionalServletTest|1✔️|||125ms|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyAuthenticatedProducerConsumerTest|1✔️|||2.279s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyAuthenticationTest|1✔️|||16.696s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyConnectionThrottlingTest|1✔️|||1.792s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyEnableHAProxyProtocolTest|1✔️|||511ms|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyForwardAuthDataTest|1✔️|||31.924s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest|10✔️|||1.660s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithAuth|3✔️|||6.701s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithoutAuth|3✔️|||7.220s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyLookupThrottlingTest|1✔️|||2.568s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyParserTest|5✔️|||1.346s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyRolesEnforcementTest|1✔️|||10.403s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyStatsTest|3✔️|||533ms|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyTest|6✔️|||2.947s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyTlsTest|2✔️|||414ms|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyTlsTestWithAuth|1✔️|||4ms|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyWithAuthorizationNegTest|1✔️|||2.128s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest|13✔️|||32.897s|
|
||||||
|
|org.apache.pulsar.proxy.server.ProxyWithoutServiceDiscoveryTest|1✔️|||2.045s|
|
||||||
|
|org.apache.pulsar.proxy.server.SuperUserAuthedAdminProxyHandlerTest|3✔️|||8.235s|
|
||||||
|
|org.apache.pulsar.proxy.server.UnauthedAdminProxyHandlerTest|2✔️|||114ms|
|
||||||
|
|org.apache.pulsar.PulsarBrokerStarterTest|9✔️|||591ms|
|
||||||
|
|org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest|23✔️|||107.437s|
|
||||||
|
|org.apache.pulsar.schema.PartitionedTopicSchemaTest|1✔️|||29.041s|
|
||||||
|
|org.apache.pulsar.schema.SchemaTest|3✔️|||30.859s|
|
||||||
|
|org.apache.pulsar.stats.client.PulsarBrokerStatsClientTest|2✔️|||40.752s|
|
||||||
|
|org.apache.pulsar.tests.EnumValuesDataProviderTest|6✔️|||23ms|
|
||||||
|
|org.apache.pulsar.tests.TestRetrySupportBeforeMethodRetryTest|1✔️||4✖️|36ms|
|
||||||
|
|org.apache.pulsar.tests.TestRetrySupportRetryTest|1✔️||4✖️|27ms|
|
||||||
|
|org.apache.pulsar.tests.TestRetrySupportSuccessTest|3✔️|||1ms|
|
||||||
|
|org.apache.pulsar.tests.ThreadDumpUtilTest|2✔️|||17ms|
|
||||||
|
|org.apache.pulsar.utils.SimpleTextOutputStreamTest|4✔️|||50ms|
|
||||||
|
|org.apache.pulsar.utils.StatsOutputStreamTest|6✔️|||59ms|
|
||||||
|
|org.apache.pulsar.websocket.proxy.ProxyAuthenticationTest|4✔️|||28.904s|
|
||||||
|
|org.apache.pulsar.websocket.proxy.ProxyAuthorizationTest|1✔️|||1.263s|
|
||||||
|
|org.apache.pulsar.websocket.proxy.ProxyConfigurationTest|2✔️|||8.943s|
|
||||||
|
|org.apache.pulsar.websocket.proxy.ProxyPublishConsumeTlsTest|1✔️|||10.821s|
|
||||||
|
|org.apache.pulsar.websocket.proxy.ProxyPublishConsumeWithoutZKTest|1✔️|||7.280s|
|
||||||
|
|org.apache.pulsar.websocket.proxy.v1.V1_ProxyAuthenticationTest|4✔️|||29.941s|
|
||||||
|
### <a id="user-content-r0s0" href="#r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a> ❌
|
||||||
|
**2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped.
|
||||||
|
|
||||||
|
|Result|Test|Time|
|
||||||
|
|:---:|:---|---:|
|
||||||
|
|✖️|testVersionStrings|99ms|
|
||||||
|
|❌|testVersionStrings|17ms|
|
||||||
File diff suppressed because it is too large
Load Diff
6880
__tests__/__snapshots__/java-junit.test.ts.snap
Normal file
6880
__tests__/__snapshots__/java-junit.test.ts.snap
Normal file
File diff suppressed because it is too large
Load Diff
@@ -4,14 +4,30 @@ 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 {getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/file-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('dart-json tests', () => {
|
describe('dart-json tests', () => {
|
||||||
|
it('produces empty test run result when there are no test cases', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'empty', '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)
|
||||||
|
expect(result.tests).toBe(0)
|
||||||
|
expect(result.result).toBe('success')
|
||||||
|
})
|
||||||
|
|
||||||
it('matches report snapshot', async () => {
|
it('matches report snapshot', async () => {
|
||||||
const opts: ParseOptions = {
|
const opts: ParseOptions = {
|
||||||
parseErrors: true,
|
parseErrors: true,
|
||||||
trackedFiles: ['lib/main.dart', 'test/main_test.dart', 'test/second_test.dart'],
|
trackedFiles: ['lib/main.dart', 'test/main_test.dart', 'test/second_test.dart']
|
||||||
workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dart/'
|
//workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dart/'
|
||||||
}
|
}
|
||||||
|
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
||||||
@@ -38,8 +54,8 @@ describe('dart-json tests', () => {
|
|||||||
const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
|
const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
|
||||||
const opts: ParseOptions = {
|
const opts: ParseOptions = {
|
||||||
trackedFiles,
|
trackedFiles,
|
||||||
parseErrors: true,
|
parseErrors: true
|
||||||
workDir: '/__w/provider/provider/'
|
//workDir: '/__w/provider/provider/'
|
||||||
}
|
}
|
||||||
|
|
||||||
const parser = new DartJsonParser(opts, 'flutter')
|
const parser = new DartJsonParser(opts, 'flutter')
|
||||||
|
|||||||
@@ -4,9 +4,25 @@ 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 {getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/file-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('dotnet-trx tests', () => {
|
describe('dotnet-trx tests', () => {
|
||||||
|
it('produces empty test run result when there are no test cases', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'empty', '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)
|
||||||
|
expect(result.tests).toBe(0)
|
||||||
|
expect(result.result).toBe('success')
|
||||||
|
})
|
||||||
|
|
||||||
it('matches report snapshot', async () => {
|
it('matches report snapshot', async () => {
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
|
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
|
||||||
@@ -15,8 +31,8 @@ describe('dotnet-trx tests', () => {
|
|||||||
|
|
||||||
const opts: ParseOptions = {
|
const opts: ParseOptions = {
|
||||||
parseErrors: true,
|
parseErrors: true,
|
||||||
trackedFiles: ['DotnetTests.Unit/Calculator.cs', 'DotnetTests.XUnitTests/CalculatorTests.cs'],
|
trackedFiles: ['DotnetTests.Unit/Calculator.cs', 'DotnetTests.XUnitTests/CalculatorTests.cs']
|
||||||
workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dotnet/'
|
//workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/dotnet/'
|
||||||
}
|
}
|
||||||
|
|
||||||
const parser = new DotnetTrxParser(opts)
|
const parser = new DotnetTrxParser(opts)
|
||||||
@@ -36,15 +52,14 @@ describe('dotnet-trx tests', () => {
|
|||||||
|
|
||||||
const opts: ParseOptions = {
|
const opts: ParseOptions = {
|
||||||
trackedFiles: [],
|
trackedFiles: [],
|
||||||
parseErrors: true,
|
parseErrors: true
|
||||||
workDir: ''
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const parser = new DotnetTrxParser(opts)
|
const parser = new DotnetTrxParser(opts)
|
||||||
const result = await parser.parse(filePath, fileContent)
|
const result = await parser.parse(filePath, fileContent)
|
||||||
expect(result).toMatchSnapshot()
|
expect(result).toMatchSnapshot()
|
||||||
|
|
||||||
const report = getReport([result], {listTests: 'failed'})
|
const report = getReport([result])
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|||||||
9
__tests__/fixtures/empty/dart-json.json
Normal file
9
__tests__/fixtures/empty/dart-json.json
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{"protocolVersion":"0.1.1","runnerVersion":"1.15.4","pid":21320,"type":"start","time":0}
|
||||||
|
{"suite":{"id":0,"platform":"vm","path":"test\\main_test.dart"},"type":"suite","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\\second_test.dart"},"type":"suite","time":11}
|
||||||
|
{"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,"type":"allSuites","time":11}
|
||||||
|
{"testID":1,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":4018}
|
||||||
|
{"testID":3,"result":"success","skipped":false,"hidden":true,"type":"testDone","time":4025}
|
||||||
|
{"success":true,"type":"done","time":4029}
|
||||||
19
__tests__/fixtures/empty/dotnet-trx.trx
Normal file
19
__tests__/fixtures/empty/dotnet-trx.trx
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?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>
|
||||||
|
<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>
|
||||||
3
__tests__/fixtures/empty/java-junit.xml
Normal file
3
__tests__/fixtures/empty/java-junit.xml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<testsuite skipped="0" hostname="fv-az96-723" name="org.apache.pulsar.AddMissingPatchVersionTest" tests="0" failures="0" timestamp="2021-03-07T10:36:56 UTC" time="0.116" errors="0">
|
||||||
|
</testsuite>
|
||||||
3
__tests__/fixtures/empty/jest-junit.xml
Normal file
3
__tests__/fixtures/empty/jest-junit.xml
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<testsuites name="jest tests" tests="0" failures="0" errors="0" time="11.299">
|
||||||
|
</testsuites>
|
||||||
34
__tests__/fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml
vendored
Normal file
34
__tests__/fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml
vendored
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!-- Generated by org.testng.reporters.JUnitReportReporter -->
|
||||||
|
<testsuite skipped="1" hostname="fv-az96-723" name="org.apache.pulsar.AddMissingPatchVersionTest" tests="2" failures="1" timestamp="2021-03-07T10:36:56 UTC" time="0.116" errors="0">
|
||||||
|
<testcase name="testVersionStrings" time="0.099" classname="org.apache.pulsar.AddMissingPatchVersionTest">
|
||||||
|
<skipped/>
|
||||||
|
</testcase> <!-- testVersionStrings -->
|
||||||
|
<system-out/>
|
||||||
|
<testcase name="testVersionStrings" time="0.017" classname="org.apache.pulsar.AddMissingPatchVersionTest">
|
||||||
|
<failure type="java.lang.AssertionError" message="expected [1.2.1] but found [1.2.0]">
|
||||||
|
<![CDATA[java.lang.AssertionError: expected [1.2.1] but found [1.2.0]
|
||||||
|
at org.testng.Assert.fail(Assert.java:99)
|
||||||
|
at org.testng.Assert.failNotEquals(Assert.java:1037)
|
||||||
|
at org.testng.Assert.assertEqualsImpl(Assert.java:140)
|
||||||
|
at org.testng.Assert.assertEquals(Assert.java:122)
|
||||||
|
at org.testng.Assert.assertEquals(Assert.java:629)
|
||||||
|
at org.testng.Assert.assertEquals(Assert.java:639)
|
||||||
|
at org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings(AddMissingPatchVersionTest.java:29)
|
||||||
|
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
|
||||||
|
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
|
||||||
|
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
|
||||||
|
at java.lang.reflect.Method.invoke(Method.java:498)
|
||||||
|
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:132)
|
||||||
|
at org.testng.internal.InvokeMethodRunnable.runOne(InvokeMethodRunnable.java:45)
|
||||||
|
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:73)
|
||||||
|
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:11)
|
||||||
|
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
|
||||||
|
at java.lang.Thread.run(Thread.java:748)
|
||||||
|
]]>
|
||||||
|
</failure>
|
||||||
|
</testcase> <!-- testVersionStrings -->
|
||||||
|
<system-out/>
|
||||||
|
</testsuite> <!-- org.apache.pulsar.AddMissingPatchVersionTest -->
|
||||||
5873
__tests__/fixtures/external/java/files.txt
vendored
Normal file
5873
__tests__/fixtures/external/java/files.txt
vendored
Normal file
File diff suppressed because it is too large
Load Diff
862
__tests__/fixtures/external/java/pulsar-test-report.xml
vendored
Normal file
862
__tests__/fixtures/external/java/pulsar-test-report.xml
vendored
Normal file
@@ -0,0 +1,862 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<testsuites tests="808" failures="1" errors="0" skipped="14" time="2126.5310000000004"><testsuite name="org.apache.pulsar.AddMissingPatchVersionTest" tests="2" errors="0" failures="1" skipped="1" time="0.116"><testcase name="testVersionStrings" time="0.099" classname="org.apache.pulsar.AddMissingPatchVersionTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="testVersionStrings" time="0.017" classname="org.apache.pulsar.AddMissingPatchVersionTest">
|
||||||
|
<failure type="java.lang.AssertionError" message="expected [1.2.1] but found [1.2.0]">
|
||||||
|
java.lang.AssertionError: expected [1.2.1] but found [1.2.0]
|
||||||
|
at org.testng.Assert.fail(Assert.java:99)
|
||||||
|
at org.testng.Assert.failNotEquals(Assert.java:1037)
|
||||||
|
at org.testng.Assert.assertEqualsImpl(Assert.java:140)
|
||||||
|
at org.testng.Assert.assertEquals(Assert.java:122)
|
||||||
|
at org.testng.Assert.assertEquals(Assert.java:629)
|
||||||
|
at org.testng.Assert.assertEquals(Assert.java:639)
|
||||||
|
at org.apache.pulsar.AddMissingPatchVersionTest.testVersionStrings(AddMissingPatchVersionTest.java:29)
|
||||||
|
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
|
||||||
|
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
|
||||||
|
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
|
||||||
|
at java.lang.reflect.Method.invoke(Method.java:498)
|
||||||
|
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:132)
|
||||||
|
at org.testng.internal.InvokeMethodRunnable.runOne(InvokeMethodRunnable.java:45)
|
||||||
|
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:73)
|
||||||
|
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:11)
|
||||||
|
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
|
||||||
|
at java.lang.Thread.run(Thread.java:748)
|
||||||
|
|
||||||
|
</failure>
|
||||||
|
</testcase>
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.PulsarBrokerStarterTest" tests="9" errors="0" failures="0" skipped="0" time="0.5910000000000001"><testcase name="testMainRunBookieNoConfig" time="0.028" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testLoadConfigWithException" time="0.034" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testMainWithNoArgument" time="0.004" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testLoadBalancerConfig" time="0.019" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testGlobalZooKeeperConfig" time="0.046" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testMainRunBookieRecoveryNoConfig" time="0.015" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testLoadConfig" time="0.024" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testMainEnableRunBookieThroughBrokerConfig" time="0.366" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
<testcase name="testMainRunBookieAndAutoRecoveryNoConfig" time="0.055" classname="org.apache.pulsar.PulsarBrokerStarterTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.PulsarServiceTest" tests="2" errors="0" failures="0" skipped="0" time="0.096"><testcase name="testGetWorkerService" time="0.083" classname="org.apache.pulsar.broker.PulsarServiceTest" />
|
||||||
|
<testcase name="testGetWorkerServiceException" time="0.013" classname="org.apache.pulsar.broker.PulsarServiceTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.SLAMonitoringTest" tests="4" errors="0" failures="0" skipped="0" time="9.184999999999999"><testcase name="testOwnedNamespaces" time="1.171" classname="org.apache.pulsar.broker.SLAMonitoringTest" />
|
||||||
|
<testcase name="testOwnershipAfterSetup" time="0.016" classname="org.apache.pulsar.broker.SLAMonitoringTest" />
|
||||||
|
<testcase name="testUnloadIfBrokerCrashes" time="7.923" classname="org.apache.pulsar.broker.SLAMonitoringTest" />
|
||||||
|
<testcase name="testOwnershipViaAdminAfterSetup" time="0.075" classname="org.apache.pulsar.broker.SLAMonitoringTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.admin.AdminApiOffloadTest" tests="7" errors="0" failures="0" skipped="0" time="18.584000000000003"><testcase name="testOffloadPoliciesAppliedApi" time="1.869" classname="org.apache.pulsar.broker.admin.AdminApiOffloadTest" />
|
||||||
|
<testcase name="testOffloadV2" time="1.614" classname="org.apache.pulsar.broker.admin.AdminApiOffloadTest" />
|
||||||
|
<testcase name="testTopicLevelOffloadNonPartitioned" time="2.481" classname="org.apache.pulsar.broker.admin.AdminApiOffloadTest" />
|
||||||
|
<testcase name="testTopicLevelOffloadPartitioned" time="1.749" classname="org.apache.pulsar.broker.admin.AdminApiOffloadTest" />
|
||||||
|
<testcase name="testOffloadV1" time="7.216" classname="org.apache.pulsar.broker.admin.AdminApiOffloadTest" />
|
||||||
|
<testcase name="testOffloadPolicies" time="1.283" classname="org.apache.pulsar.broker.admin.AdminApiOffloadTest" />
|
||||||
|
<testcase name="testOffloadPoliciesApi" time="2.372" classname="org.apache.pulsar.broker.admin.AdminApiOffloadTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.auth.AuthLogsTest" tests="2" errors="0" failures="0" skipped="0" time="1.389"><testcase name="httpEndpoint" time="0.881" classname="org.apache.pulsar.broker.auth.AuthLogsTest" />
|
||||||
|
<testcase name="binaryEndpoint" time="0.508" classname="org.apache.pulsar.broker.auth.AuthLogsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.auth.AuthenticationServiceTest" tests="2" errors="0" failures="0" skipped="0" time="0.185"><testcase name="testAuthentication" time="0.005" classname="org.apache.pulsar.broker.auth.AuthenticationServiceTest" />
|
||||||
|
<testcase name="testAuthenticationHttp" time="0.180" classname="org.apache.pulsar.broker.auth.AuthenticationServiceTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.auth.AuthorizationTest" tests="1" errors="0" failures="0" skipped="0" time="2.384"><testcase name="simple" time="2.384" classname="org.apache.pulsar.broker.auth.AuthorizationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.lookup.http.HttpTopicLookupv2Test" tests="4" errors="0" failures="0" skipped="0" time="1.93"><testcase name="crossColoLookup" time="0.329" classname="org.apache.pulsar.broker.lookup.http.HttpTopicLookupv2Test" />
|
||||||
|
<testcase name="testNotEnoughLookupPermits" time="0.015" classname="org.apache.pulsar.broker.lookup.http.HttpTopicLookupv2Test" />
|
||||||
|
<testcase name="testValidateReplicationSettingsOnNamespace" time="1.575" classname="org.apache.pulsar.broker.lookup.http.HttpTopicLookupv2Test" />
|
||||||
|
<testcase name="testDataPojo" time="0.011" classname="org.apache.pulsar.broker.lookup.http.HttpTopicLookupv2Test" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.namespace.NamespaceCreateBundlesTest" tests="2" errors="0" failures="0" skipped="0" time="33.168"><testcase name="testCreateNamespaceWithDefaultBundles" time="23.401" classname="org.apache.pulsar.broker.namespace.NamespaceCreateBundlesTest" />
|
||||||
|
<testcase name="testSplitBundleUpdatesLocalPoliciesWithoutOverwriting" time="9.767" classname="org.apache.pulsar.broker.namespace.NamespaceCreateBundlesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.namespace.NamespaceOwnershipListenerTests" tests="2" errors="0" failures="0" skipped="0" time="32.357"><testcase name="testGetAllPartitions" time="23.274" classname="org.apache.pulsar.broker.namespace.NamespaceOwnershipListenerTests" />
|
||||||
|
<testcase name="testNamespaceBundleOwnershipListener" time="9.083" classname="org.apache.pulsar.broker.namespace.NamespaceOwnershipListenerTests" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.namespace.NamespaceServiceTest" tests="10" errors="0" failures="0" skipped="0" time="75.27199999999999"><testcase name="testSplitMapWithRefreshedStatMap" time="4.509" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testRemoveOwnershipNamespaceBundle" time="4.119" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testIsServiceUnitDisabled" time="5.056" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testLoadReportDeserialize" time="24.622" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testCreateLookupResult" time="6.452" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testUnloadNamespaceBundleWithStuckTopic" time="4.463" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testUnloadNamespaceBundleFailure" time="7.650" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testSplitAndOwnBundles" time="5.071" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testCreateNamespaceWithDefaultNumberOfBundles" time="7.515" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
<testcase name="testRemoveOwnershipAndSplitBundle" time="5.815" classname="org.apache.pulsar.broker.namespace.NamespaceServiceTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.namespace.NamespaceUnloadingTest" tests="2" errors="0" failures="0" skipped="0" time="13.704"><testcase name="testUnloadNotLoadedNamespace" time="7.094" classname="org.apache.pulsar.broker.namespace.NamespaceUnloadingTest" />
|
||||||
|
<testcase name="testUnloadPartiallyLoadedNamespace" time="6.610" classname="org.apache.pulsar.broker.namespace.NamespaceUnloadingTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.namespace.OwnerShipCacheForCurrentServerTest" tests="1" errors="0" failures="0" skipped="0" time="15.709"><testcase name="testOwnershipForCurrentServer" time="15.709" classname="org.apache.pulsar.broker.namespace.OwnerShipCacheForCurrentServerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.namespace.OwnershipCacheTest" tests="8" errors="0" failures="0" skipped="0" time="15.749999999999998"><testcase name="testGetOwnedServiceUnits" time="9.397" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
<testcase name="testRemoveOwnership" time="1.482" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
<testcase name="testGetOwnedServiceUnit" time="1.036" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
<testcase name="testGetOrSetOwner" time="1.708" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
<testcase name="testConstructor" time="0.471" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
<testcase name="testGetOwner" time="0.492" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
<testcase name="testDisableOwnership" time="0.669" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
<testcase name="testReestablishOwnership" time="0.495" classname="org.apache.pulsar.broker.namespace.OwnershipCacheTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.protocol.ProtocolHandlerUtilsTest" tests="3" errors="0" failures="0" skipped="0" time="7.398000000000001"><testcase name="testLoadProtocolHandler" time="7.332" classname="org.apache.pulsar.broker.protocol.ProtocolHandlerUtilsTest" />
|
||||||
|
<testcase name="testLoadProtocolHandlerBlankHandlerClass" time="0.025" classname="org.apache.pulsar.broker.protocol.ProtocolHandlerUtilsTest" />
|
||||||
|
<testcase name="testLoadProtocolHandlerWrongHandlerClass" time="0.041" classname="org.apache.pulsar.broker.protocol.ProtocolHandlerUtilsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.protocol.ProtocolHandlerWithClassLoaderTest" tests="1" errors="0" failures="0" skipped="0" time="0.015"><testcase name="testWrapper" time="0.015" classname="org.apache.pulsar.broker.protocol.ProtocolHandlerWithClassLoaderTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.protocol.ProtocolHandlersTest" tests="6" errors="0" failures="0" skipped="0" time="0.9460000000000001"><testcase name="testStart" time="0.626" classname="org.apache.pulsar.broker.protocol.ProtocolHandlersTest" />
|
||||||
|
<testcase name="testGetProtocol" time="0.014" classname="org.apache.pulsar.broker.protocol.ProtocolHandlersTest" />
|
||||||
|
<testcase name="testNewChannelInitializersSuccess" time="0.010" classname="org.apache.pulsar.broker.protocol.ProtocolHandlersTest" />
|
||||||
|
<testcase name="testInitialize" time="0.020" classname="org.apache.pulsar.broker.protocol.ProtocolHandlersTest" />
|
||||||
|
<testcase name="testNewChannelInitializersOverlapped" time="0.260" classname="org.apache.pulsar.broker.protocol.ProtocolHandlersTest" />
|
||||||
|
<testcase name="testGetProtocolDataToAdvertise" time="0.016" classname="org.apache.pulsar.broker.protocol.ProtocolHandlersTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.service.MessagePublishBufferThrottleTest" tests="3" errors="0" failures="0" skipped="0" time="13.83"><testcase name="testMessagePublishBufferThrottleEnable" time="2.305" classname="org.apache.pulsar.broker.service.MessagePublishBufferThrottleTest" />
|
||||||
|
<testcase name="testBlockByPublishRateLimiting" time="9.449" classname="org.apache.pulsar.broker.service.MessagePublishBufferThrottleTest" />
|
||||||
|
<testcase name="testMessagePublishBufferThrottleDisabled" time="2.076" classname="org.apache.pulsar.broker.service.MessagePublishBufferThrottleTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.service.ReplicatorTest" tests="22" errors="0" failures="0" skipped="0" time="40.154"><testcase name="testResumptionAfterBacklogRelaxed" time="19.914" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicationOverrides" time="2.910" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testResetCursorNotFail" time="0.218" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testUpdateGlobalTopicPartition" time="0.667" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplication" time="0.429" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicatorOnPartitionedTopic" time="0.172" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testConcurrentReplicator" time="4.271" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testTopicReplicatedAndProducerCreate" time="0.240" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testDeleteReplicatorFailure" time="0.172" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicatorOnPartitionedTopic" time="0.145" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicationForBatchMessages" time="0.324" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicatorClearBacklog" time="0.428" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="verifyChecksumAfterReplication" time="0.259" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testCloseReplicatorStartProducer" time="0.369" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="activeBrokerParse" time="0.212" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicatePeekAndSkip" time="0.241" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplication" time="0.406" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicatedCluster" time="1.481" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testTopicReplicatedAndProducerCreate" time="0.372" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testConfigChange" time="4.446" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testFailures" time="0.097" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
<testcase name="testReplicatorProducerClosing" time="2.381" classname="org.apache.pulsar.broker.service.ReplicatorTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.service.TopicOwnerTest" tests="8" errors="0" failures="0" skipped="0" time="114.278"><testcase name="testReleaseOwnershipWithZookeeperDisconnectedBeforeOwnershipNodeDeleted" time="13.006" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
<testcase name="testAcquireOwnershipWithZookeeperDisconnectedAfterOwnershipNodeCreated" time="23.726" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
<testcase name="testConnectToInvalidateBundleCacheBroker" time="13.213" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
<testcase name="testAcquireOwnershipWithZookeeperDisconnectedBeforeOwnershipNodeCreated" time="12.847" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
<testcase name="testLookupPartitionedTopic" time="12.435" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
<testcase name="testListNonPersistentTopic" time="13.123" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
<testcase name="testReleaseOwnershipWithZookeeperDisconnectedAfterOwnershipNodeDeleted" time="14.539" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
<testcase name="testReestablishOwnershipAfterInvalidateCache" time="11.389" classname="org.apache.pulsar.broker.service.TopicOwnerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.stats.BookieClientsStatsGeneratorTest" tests="2" errors="0" failures="0" skipped="0" time="0.049"><testcase name="testJvmDirectMemoryUsedMetric" time="0.010" classname="org.apache.pulsar.broker.stats.BookieClientsStatsGeneratorTest" />
|
||||||
|
<testcase name="testBookieClientStatsGenerator" time="0.039" classname="org.apache.pulsar.broker.stats.BookieClientsStatsGeneratorTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.stats.ConsumerStatsTest" tests="3" errors="0" failures="0" skipped="0" time="21.163999999999998"><testcase name="testAckStatsOnPartitionedTopicForExclusiveSubscription" time="7.634" classname="org.apache.pulsar.broker.stats.ConsumerStatsTest" />
|
||||||
|
<testcase name="testConsumerStatsOnZeroMaxUnackedMessagesPerConsumer" time="8.842" classname="org.apache.pulsar.broker.stats.ConsumerStatsTest" />
|
||||||
|
<testcase name="testUpdateStatsForActiveConsumerAndSubscription" time="4.688" classname="org.apache.pulsar.broker.stats.ConsumerStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.stats.ManagedCursorMetricsTest" tests="1" errors="0" failures="0" skipped="0" time="0.281"><testcase name="testManagedCursorMetrics" time="0.281" classname="org.apache.pulsar.broker.stats.ManagedCursorMetricsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.stats.ManagedLedgerMetricsTest" tests="1" errors="0" failures="0" skipped="0" time="0.285"><testcase name="testManagedLedgerMetrics" time="0.285" classname="org.apache.pulsar.broker.stats.ManagedLedgerMetricsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.stats.PrometheusMetricsTest" tests="15" errors="0" failures="0" skipped="0" time="83.14500000000001"><testcase name="testPerTopicStats" time="5.907" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testAuthMetrics" time="5.201" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testPerTopicExpiredStat" time="4.695" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testPerProducerStats" time="4.859" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testMetricsTopicCount" time="4.720" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testManagedLedgerBookieClientStats" time="5.617" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testDuplicateMetricTypeDefinitions" time="5.377" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testExpiringTokenMetrics" time="4.347" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testPerConsumerStats" time="12.093" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testPerNamespaceStats" time="5.014" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testManagedCursorPersistStats" time="5.362" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testDuplicateMetricTypeDefinitions" time="4.116" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testExpiredTokenMetrics" time="5.405" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testManagedLedgerCacheStats" time="5.262" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
<testcase name="testManagedLedgerStats" time="5.170" classname="org.apache.pulsar.broker.stats.PrometheusMetricsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.stats.SubscriptionStatsTest" tests="2" errors="0" failures="0" skipped="0" time="1.806"><testcase name="testConsumersAfterMarkDelete" time="1.193" classname="org.apache.pulsar.broker.stats.SubscriptionStatsTest" />
|
||||||
|
<testcase name="testNonContiguousDeletedMessagesRanges" time="0.613" classname="org.apache.pulsar.broker.stats.SubscriptionStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.stats.prometheus.AggregatedNamespaceStatsTest" tests="1" errors="0" failures="0" skipped="0" time="0.04"><testcase name="testSimpleAggregation" time="0.040" classname="org.apache.pulsar.broker.stats.prometheus.AggregatedNamespaceStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.systopic.NamespaceEventsSystemTopicServiceTest" tests="1" errors="0" failures="0" skipped="0" time="1.043"><testcase name="testSendAndReceiveNamespaceEvents" time="1.043" classname="org.apache.pulsar.broker.systopic.NamespaceEventsSystemTopicServiceTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.TransactionConsumeTest" tests="2" errors="0" failures="0" skipped="0" time="29.646"><testcase name="noSortedTest" time="25.275" classname="org.apache.pulsar.broker.transaction.TransactionConsumeTest" />
|
||||||
|
<testcase name="sortedTest" time="4.371" classname="org.apache.pulsar.broker.transaction.TransactionConsumeTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.buffer.InMemTransactionBufferReaderTest" tests="3" errors="0" failures="0" skipped="0" time="0.028"><testcase name="testCloseReleaseAllEntries" time="0.019" classname="org.apache.pulsar.broker.transaction.buffer.InMemTransactionBufferReaderTest" />
|
||||||
|
<testcase name="testInvalidNumEntriesArgument" time="0.004" classname="org.apache.pulsar.broker.transaction.buffer.InMemTransactionBufferReaderTest" />
|
||||||
|
<testcase name="testEndOfTransactionException" time="0.005" classname="org.apache.pulsar.broker.transaction.buffer.InMemTransactionBufferReaderTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.buffer.TransactionBufferClientTest" tests="4" errors="0" failures="0" skipped="0" time="0.093"><testcase name="testAbortOnTopic" time="0.019" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferClientTest" />
|
||||||
|
<testcase name="testAbortOnSubscription" time="0.037" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferClientTest" />
|
||||||
|
<testcase name="testCommitOnTopic" time="0.020" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferClientTest" />
|
||||||
|
<testcase name="testCommitOnSubscription" time="0.017" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferClientTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" tests="7" errors="0" failures="0" skipped="0" time="0.08099999999999999"><testcase name="testOpenReaderOnNonExistentTxn" time="0.009" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" />
|
||||||
|
<testcase name="testAbortCommittedTxn" time="0.015" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" />
|
||||||
|
<testcase name="testAbortTxn" time="0.013" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" />
|
||||||
|
<testcase name="testAbortNonExistentTxn" time="0.009" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" />
|
||||||
|
<testcase name="testCommitNonExistentTxn" time="0.018" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" />
|
||||||
|
<testcase name="testCommitTxn" time="0.009" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" />
|
||||||
|
<testcase name="testOpenReaderOnAnOpenTxn" time="0.008" classname="org.apache.pulsar.broker.transaction.buffer.TransactionBufferTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.buffer.TransactionEntryImplTest" tests="1" errors="0" failures="0" skipped="0" time="0.014"><testcase name="testCloseShouldReleaseBuffer" time="0.014" classname="org.apache.pulsar.broker.transaction.buffer.TransactionEntryImplTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.buffer.TransactionLowWaterMarkTest" tests="2" errors="0" failures="0" skipped="0" time="37.577"><testcase name="testTransactionBufferLowWaterMark" time="21.356" classname="org.apache.pulsar.broker.transaction.buffer.TransactionLowWaterMarkTest" />
|
||||||
|
<testcase name="testPendingAckLowWaterMark" time="16.221" classname="org.apache.pulsar.broker.transaction.buffer.TransactionLowWaterMarkTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.buffer.TransactionStablePositionTest" tests="3" errors="0" failures="0" skipped="1" time="49.06700000000001"><testcase name="commitTxnTest" time="20.004" classname="org.apache.pulsar.broker.transaction.buffer.TransactionStablePositionTest" />
|
||||||
|
<testcase name="abortTxnTest" time="15.641" classname="org.apache.pulsar.broker.transaction.buffer.TransactionStablePositionTest" />
|
||||||
|
<testcase name="commitTxnTest" time="13.422" classname="org.apache.pulsar.broker.transaction.buffer.TransactionStablePositionTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.coordinator.TransactionCoordinatorClientTest" tests="3" errors="0" failures="0" skipped="0" time="0.095"><testcase name="testClientStart" time="0.002" classname="org.apache.pulsar.broker.transaction.coordinator.TransactionCoordinatorClientTest" />
|
||||||
|
<testcase name="testCommitAndAbort" time="0.080" classname="org.apache.pulsar.broker.transaction.coordinator.TransactionCoordinatorClientTest" />
|
||||||
|
<testcase name="testNewTxn" time="0.013" classname="org.apache.pulsar.broker.transaction.coordinator.TransactionCoordinatorClientTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.coordinator.TransactionMetaStoreAssignmentTest" tests="1" errors="0" failures="0" skipped="0" time="1.151"><testcase name="testTransactionMetaStoreAssignAndFailover" time="1.151" classname="org.apache.pulsar.broker.transaction.coordinator.TransactionMetaStoreAssignmentTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.transaction.pendingack.PendingAckInMemoryDeleteTest" tests="3" errors="0" failures="0" skipped="1" time="57.293000000000006"><testcase name="txnAckTestNoBatchAndSharedSubMemoryDeleteTest" time="17.970" classname="org.apache.pulsar.broker.transaction.pendingack.PendingAckInMemoryDeleteTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="txnAckTestNoBatchAndSharedSubMemoryDeleteTest" time="18.748" classname="org.apache.pulsar.broker.transaction.pendingack.PendingAckInMemoryDeleteTest" />
|
||||||
|
<testcase name="txnAckTestBatchAndSharedSubMemoryDeleteTest" time="20.575" classname="org.apache.pulsar.broker.transaction.pendingack.PendingAckInMemoryDeleteTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.web.RestExceptionTest" tests="3" errors="0" failures="0" skipped="0" time="0.037000000000000005"><testcase name="testRestException" time="0.008" classname="org.apache.pulsar.broker.web.RestExceptionTest" />
|
||||||
|
<testcase name="testWebApplicationException" time="0.021" classname="org.apache.pulsar.broker.web.RestExceptionTest" />
|
||||||
|
<testcase name="testOtherException" time="0.008" classname="org.apache.pulsar.broker.web.RestExceptionTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.broker.web.WebServiceTest" tests="9" errors="0" failures="0" skipped="0" time="27.441999999999997"><testcase name="testTlsAuthDisallowInsecure" time="2.922" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testBrokerReady" time="3.540" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testDefaultClientVersion" time="3.319" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testTlsEnabled" time="2.721" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testTlsAuthAllowInsecure" time="3.783" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testSplitPath" time="0.057" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testMaxRequestSize" time="3.723" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testTlsDisabled" time="2.290" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
<testcase name="testRateLimiting" time="5.087" classname="org.apache.pulsar.broker.web.WebServiceTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.AdminApiKeyStoreTlsAuthTest" tests="4" errors="0" failures="0" skipped="0" time="8.297"><testcase name="testAuthorizedUserAsOriginalPrincipal" time="3.330" classname="org.apache.pulsar.client.impl.AdminApiKeyStoreTlsAuthTest" />
|
||||||
|
<testcase name="testSuperUserCantListNamespaces" time="2.045" classname="org.apache.pulsar.client.impl.AdminApiKeyStoreTlsAuthTest" />
|
||||||
|
<testcase name="testPersistentList" time="1.308" classname="org.apache.pulsar.client.impl.AdminApiKeyStoreTlsAuthTest" />
|
||||||
|
<testcase name="testSuperUserCanListTenants" time="1.614" classname="org.apache.pulsar.client.impl.AdminApiKeyStoreTlsAuthTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.BatchMessageIdImplSerializationTest" tests="4" errors="0" failures="0" skipped="0" time="0.03"><testcase name="testSerializationEmpty" time="0.008" classname="org.apache.pulsar.client.impl.BatchMessageIdImplSerializationTest" />
|
||||||
|
<testcase name="testSerialization1" time="0.004" classname="org.apache.pulsar.client.impl.BatchMessageIdImplSerializationTest" />
|
||||||
|
<testcase name="testSerializationNull" time="0.012" classname="org.apache.pulsar.client.impl.BatchMessageIdImplSerializationTest" />
|
||||||
|
<testcase name="testSerialization2" time="0.006" classname="org.apache.pulsar.client.impl.BatchMessageIdImplSerializationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.BatchMessageIndexAckDisableTest" tests="4" errors="0" failures="0" skipped="0" time="13.732"><testcase name="testBatchMessageIndexAckForExclusiveSubscription" time="2.747" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckDisableTest" />
|
||||||
|
<testcase name="testBatchMessageIndexAckForSharedSubscription" time="5.341" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckDisableTest" />
|
||||||
|
<testcase name="testBatchMessageIndexAckForExclusiveSubscription" time="2.377" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckDisableTest" />
|
||||||
|
<testcase name="testBatchMessageIndexAckForSharedSubscription" time="3.267" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckDisableTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.BatchMessageIndexAckTest" tests="5" errors="0" failures="0" skipped="0" time="43.856"><testcase name="testBatchMessageIndexAckForSharedSubscription" time="23.212" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckTest" />
|
||||||
|
<testcase name="testBatchMessageIndexAckForSharedSubscription" time="10.423" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckTest" />
|
||||||
|
<testcase name="testDoNotRecycleAckSetMultipleTimes" time="2.170" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckTest" />
|
||||||
|
<testcase name="testBatchMessageIndexAckForExclusiveSubscription" time="3.536" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckTest" />
|
||||||
|
<testcase name="testBatchMessageIndexAckForExclusiveSubscription" time="4.515" classname="org.apache.pulsar.client.impl.BatchMessageIndexAckTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" tests="15" errors="0" failures="0" skipped="0" time="148.203"><testcase name="testDisconnectClientWithoutClosingConnection" time="7.392" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testResetCursor" time="16.341" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testResetCursor" time="14.139" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testCloseBrokerService" time="4.907" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testUnsupportedBatchMessageConsumer" time="4.583" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testAvroSchemaProducerConsumerWithSpecifiedReaderAndWriter" time="3.143" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testJsonSchemaProducerConsumerWithSpecifiedReaderAndWriter" time="5.881" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testOperationTimeout" time="8.547" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testCleanProducer" time="2.767" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testUnsupportedBatchMessageConsumer" time="4.531" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testCloseConnectionOnBrokerRejectedRequest" time="34.542" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testAddEntryOperationTimeout" time="12.747" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testInvalidDynamicConfiguration" time="5.098" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testMaxConcurrentTopicLoading" time="12.357" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
<testcase name="testCloseConnectionOnInternalServerError" time="11.228" classname="org.apache.pulsar.client.impl.BrokerClientIntegrationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.CompactedOutBatchMessageTest" tests="1" errors="0" failures="0" skipped="0" time="1.385"><testcase name="testCompactedOutMessages" time="1.385" classname="org.apache.pulsar.client.impl.CompactedOutBatchMessageTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.ConsumerAckResponseTest" tests="1" errors="0" failures="0" skipped="0" time="0.549"><testcase name="testAckResponse" time="0.549" classname="org.apache.pulsar.client.impl.ConsumerAckResponseTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.ConsumerConfigurationTest" tests="4" errors="0" failures="0" skipped="0" time="12.164"><testcase name="testReadCompactNonPersistentExclusive" time="1.617" classname="org.apache.pulsar.client.impl.ConsumerConfigurationTest" />
|
||||||
|
<testcase name="testReadCompactPersistentExclusive" time="5.143" classname="org.apache.pulsar.client.impl.ConsumerConfigurationTest" />
|
||||||
|
<testcase name="testReadCompactPersistentFailover" time="2.083" classname="org.apache.pulsar.client.impl.ConsumerConfigurationTest" />
|
||||||
|
<testcase name="testReadCompactPersistentShared" time="3.321" classname="org.apache.pulsar.client.impl.ConsumerConfigurationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" tests="7" errors="0" failures="0" skipped="0" time="3.5220000000000002"><testcase name="testConsumerDedup" time="0.992" classname="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" />
|
||||||
|
<testcase name="testConsumerDedup" time="0.409" classname="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" />
|
||||||
|
<testcase name="testConsumerDedup" time="0.286" classname="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" />
|
||||||
|
<testcase name="testConsumerDedup" time="0.832" classname="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" />
|
||||||
|
<testcase name="testConsumerDedup" time="0.385" classname="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" />
|
||||||
|
<testcase name="testConsumerDedup" time="0.317" classname="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" />
|
||||||
|
<testcase name="testConsumerDedup" time="0.301" classname="org.apache.pulsar.client.impl.ConsumerDedupPermitsUpdate" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.ConsumerUnsubscribeTest" tests="1" errors="0" failures="0" skipped="0" time="0.129"><testcase name="testConsumerUnsubscribeReference" time="0.129" classname="org.apache.pulsar.client.impl.ConsumerUnsubscribeTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithAuth" tests="3" errors="0" failures="0" skipped="0" time="23.461"><testcase name="testTlsClientAuthOverHTTPProtocol" time="8.453" classname="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithAuth" />
|
||||||
|
<testcase name="testTlsClientAuthOverBinaryProtocol" time="8.058" classname="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithAuth" />
|
||||||
|
<testcase name="testTlsLargeSizeMessage" time="6.950" classname="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithAuth" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithoutAuth" tests="3" errors="0" failures="0" skipped="0" time="7.675000000000001"><testcase name="testTlsClientAuthOverHTTPProtocol" time="3.119" classname="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithoutAuth" />
|
||||||
|
<testcase name="testTlsClientAuthOverBinaryProtocol" time="3.273" classname="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithoutAuth" />
|
||||||
|
<testcase name="testTlsLargeSizeMessage" time="1.283" classname="org.apache.pulsar.client.impl.KeyStoreTlsProducerConsumerTestWithoutAuth" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.KeyStoreTlsTest" tests="1" errors="0" failures="0" skipped="0" time="0.183"><testcase name="testValidate" time="0.183" classname="org.apache.pulsar.client.impl.KeyStoreTlsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.MessageChecksumTest" tests="3" errors="0" failures="0" skipped="0" time="46.69"><testcase name="testChecksumCompatibilityInMixedVersionBrokerCluster" time="6.984" classname="org.apache.pulsar.client.impl.MessageChecksumTest" />
|
||||||
|
<testcase name="testTamperingMessageIsDetected" time="7.026" classname="org.apache.pulsar.client.impl.MessageChecksumTest" />
|
||||||
|
<testcase name="testChecksumCompatibilityInMixedVersionBrokerCluster" time="32.680" classname="org.apache.pulsar.client.impl.MessageChecksumTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.MessageChunkingTest" tests="9" errors="0" failures="0" skipped="1" time="73.214"><testcase name="testPublishWithFailure" time="33.462" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testInvalidUseCaseForChunking" time="3.386" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testLargeMessage" time="4.229" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testExpireIncompleteChunkMessage" time="5.612" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testInvalidConfig" time="4.418" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testLargeMessageAckTimeOut" time="8.543" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testLargeMessageAckTimeOut" time="9.006" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testLargeMessage" time="4.558" classname="org.apache.pulsar.client.impl.MessageChunkingTest" />
|
||||||
|
<testcase name="testMaxPendingChunkMessages" classname="org.apache.pulsar.client.impl.MessageChunkingTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.MessageParserTest" tests="2" errors="0" failures="0" skipped="0" time="5.484999999999999"><testcase name="testWithoutBatches" time="3.268" classname="org.apache.pulsar.client.impl.MessageParserTest" />
|
||||||
|
<testcase name="testWithBatches" time="2.217" classname="org.apache.pulsar.client.impl.MessageParserTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.MultiTopicsReaderTest" tests="8" errors="0" failures="0" skipped="0" time="35.143"><testcase name="testReadMessageWithBatchingWithMessageInclusive" time="3.375" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
<testcase name="testKeyHashRangeReader" time="4.126" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
<testcase name="testRemoveSubscriptionForReaderNeedRemoveCursor" time="2.702" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
<testcase name="testReadMessageWithBatching" time="2.961" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
<testcase name="testReadMessageWithoutBatchingWithMessageInclusive" time="3.025" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
<testcase name="testMultiReaderSeek" time="3.024" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
<testcase name="testReadMessageWithoutBatching" time="3.572" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
<testcase name="testReaderWithTimeLong" time="12.358" classname="org.apache.pulsar.client.impl.MultiTopicsReaderTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.NegativeAcksTest" tests="32" errors="0" failures="0" skipped="0" time="10.661999999999999"><testcase name="testNegativeAcks" time="0.306" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.306" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.251" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.275" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.334" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.293" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.401" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.691" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.296" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.385" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.318" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.370" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.344" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.343" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.312" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.307" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.322" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.308" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.293" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.420" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.406" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.330" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.307" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.308" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.274" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.270" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.344" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.289" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.321" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.307" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.318" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
<testcase name="testNegativeAcks" time="0.313" classname="org.apache.pulsar.client.impl.NegativeAcksTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" tests="11" errors="0" failures="0" skipped="0" time="62.62"><testcase name="testStartEmptyPatternConsumer" time="7.254" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testBinaryProtoToGetTopicsOfNamespaceAll" time="5.205" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testPatternTopicsSubscribeWithBuilderFail" time="2.329" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testPubRateOnNonPersistent" time="10.899" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testTopicDeletion" time="4.834" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testAutoUnbubscribePatternConsumer" time="6.349" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testTopicsPatternFilter" time="3.481" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testBinaryProtoToGetTopicsOfNamespaceNonPersistent" time="5.179" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testBinaryProtoToGetTopicsOfNamespacePersistent" time="2.716" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testTopicsListMinus" time="7.952" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
<testcase name="testAutoSubscribePatternConsumer" time="6.422" classname="org.apache.pulsar.client.impl.PatternTopicsConsumerImplTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.PerMessageUnAcknowledgedRedeliveryTest" tests="5" errors="0" failures="0" skipped="0" time="33.504"><testcase name="testSharedAckedNormalTopic" time="8.135" classname="org.apache.pulsar.client.impl.PerMessageUnAcknowledgedRedeliveryTest" />
|
||||||
|
<testcase name="testUnAckedMessageTrackerSize" time="4.256" classname="org.apache.pulsar.client.impl.PerMessageUnAcknowledgedRedeliveryTest" />
|
||||||
|
<testcase name="testSharedAckedPartitionedTopic" time="6.138" classname="org.apache.pulsar.client.impl.PerMessageUnAcknowledgedRedeliveryTest" />
|
||||||
|
<testcase name="testExclusiveAckedNormalTopic" time="7.381" classname="org.apache.pulsar.client.impl.PerMessageUnAcknowledgedRedeliveryTest" />
|
||||||
|
<testcase name="testFailoverAckedNormalTopic" time="7.594" classname="org.apache.pulsar.client.impl.PerMessageUnAcknowledgedRedeliveryTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.PulsarMultiHostClientTest" tests="3" errors="0" failures="0" skipped="0" time="15.314"><testcase name="testMultiHostUrlRetrySuccess" time="3.646" classname="org.apache.pulsar.client.impl.PulsarMultiHostClientTest" />
|
||||||
|
<testcase name="testGetPartitionedTopicDataTimeout" time="5.677" classname="org.apache.pulsar.client.impl.PulsarMultiHostClientTest" />
|
||||||
|
<testcase name="testGetPartitionedTopicMetaData" time="5.991" classname="org.apache.pulsar.client.impl.PulsarMultiHostClientTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.RawMessageSerDeserTest" tests="1" errors="0" failures="0" skipped="0" time="0.01"><testcase name="testSerializationAndDeserialization" time="0.010" classname="org.apache.pulsar.client.impl.RawMessageSerDeserTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.SchemaDeleteTest" tests="1" errors="0" failures="0" skipped="0" time="1.937"><testcase name="createTopicDeleteTopicCreateTopic" time="1.937" classname="org.apache.pulsar.client.impl.SchemaDeleteTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.SequenceIdWithErrorTest" tests="5" errors="0" failures="0" skipped="2" time="17.976"><testcase name="testCheckSequenceId" time="4.085" classname="org.apache.pulsar.client.impl.SequenceIdWithErrorTest" />
|
||||||
|
<testcase name="testDeleteTopicWithMissingData" time="5.987" classname="org.apache.pulsar.client.impl.SequenceIdWithErrorTest" />
|
||||||
|
<testcase name="testTopicWithWildCardChar" time="7.904" classname="org.apache.pulsar.client.impl.SequenceIdWithErrorTest" />
|
||||||
|
<testcase name="testCrashBrokerWithoutCursorLedgerLeak" classname="org.apache.pulsar.client.impl.SequenceIdWithErrorTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="testSkipCorruptDataLedger" classname="org.apache.pulsar.client.impl.SequenceIdWithErrorTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.TopicDoesNotExistsTest" tests="2" errors="0" failures="0" skipped="0" time="4.053"><testcase name="testCreateConsumerOnNotExistsTopic" time="2.030" classname="org.apache.pulsar.client.impl.TopicDoesNotExistsTest" />
|
||||||
|
<testcase name="testCreateProducerOnNotExistsTopic" time="2.023" classname="org.apache.pulsar.client.impl.TopicDoesNotExistsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.TopicFromMessageTest" tests="5" errors="0" failures="0" skipped="0" time="13.659"><testcase name="testSingleTopicConsumerNoBatchFullName" time="2.554" classname="org.apache.pulsar.client.impl.TopicFromMessageTest" />
|
||||||
|
<testcase name="testMultiTopicConsumerBatchShortName" time="2.488" classname="org.apache.pulsar.client.impl.TopicFromMessageTest" />
|
||||||
|
<testcase name="testSingleTopicConsumerNoBatchShortName" time="2.704" classname="org.apache.pulsar.client.impl.TopicFromMessageTest" />
|
||||||
|
<testcase name="testMultiTopicConsumerNoBatchShortName" time="3.400" classname="org.apache.pulsar.client.impl.TopicFromMessageTest" />
|
||||||
|
<testcase name="testSingleTopicConsumerBatchShortName" time="2.513" classname="org.apache.pulsar.client.impl.TopicFromMessageTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.TopicsConsumerImplTest" tests="17" errors="0" failures="0" skipped="0" time="133.44500000000002"><testcase name="testTopicAutoUpdatePartitions" time="5.573" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testDifferentTopicsNameSubscribe" time="3.010" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testGetLastMessageId" time="5.249" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testConsumerUnackedRedelivery" time="17.692" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testSubscriptionMustCompleteWhenOperationTimeoutOnMultipleTopics" time="5.704" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testConsumerDistributionInFailoverSubscriptionWhenUpdatePartitions" time="2.862" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="multiTopicsInDifferentNameSpace" time="8.198" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testDefaultBacklogTTL" time="10.677" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testGetConsumersAndGetTopics" time="6.497" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testSubscribeUnsubscribeSingleTopic" time="4.287" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testResubscribeSameTopic" time="6.183" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testSyncProducerAndConsumer" time="4.209" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testPartitionsUpdatesForMultipleTopics" time="5.657" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testTopicsNameSubscribeWithBuilderFail" time="2.639" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testMultiTopicsMessageListener" time="8.150" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testTopicNameValid" time="6.882" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
<testcase name="testAsyncConsumer" time="29.976" classname="org.apache.pulsar.client.impl.TopicsConsumerImplTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" tests="7" errors="0" failures="0" skipped="0" time="43.828"><testcase name="testCheckUnAcknowledgedMessageTimer" time="8.669" classname="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" />
|
||||||
|
<testcase name="testExclusiveSingleAckedNormalTopic" time="5.291" classname="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" />
|
||||||
|
<testcase name="testFailoverSingleAckedPartitionedTopic" time="7.119" classname="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" />
|
||||||
|
<testcase name="testSharedSingleAckedPartitionedTopic" time="12.054" classname="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" />
|
||||||
|
<testcase name="testAckTimeoutMinValue" time="2.075" classname="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" />
|
||||||
|
<testcase name="testExclusiveCumulativeAckedNormalTopic" time="6.772" classname="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" />
|
||||||
|
<testcase name="testSingleMessageBatch" time="1.848" classname="org.apache.pulsar.client.impl.UnAcknowledgedMessagesTimeoutTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.client.impl.ZeroQueueSizeTest" tests="14" errors="0" failures="0" skipped="0" time="15.712"><testcase name="zeroQueueSizeSharedSubscription" time="0.197" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="testPauseAndResume" time="2.574" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="testZeroQueueSizeMessageRedeliveryForAsyncReceive" time="2.155" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="zeroQueueSizeConsumerListener" time="0.139" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="zeroQueueSizeFailoverSubscription" time="0.227" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="validQueueSizeConfig" time="0.013" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="zeroQueueSizeNormalConsumer" time="0.123" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="zeroQueueSizeReceieveAsyncInCompatibility" time="0.037" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="InvalidQueueSizeConfig" time="0.139" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="testZeroQueueSizeMessageRedeliveryForListener" time="2.206" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="testZeroQueueSizeMessageRedelivery" time="2.227" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="zeroQueueSizePartitionedTopicInCompatibility" time="0.161" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="testFailedZeroQueueSizeBatchMessage" time="3.302" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
<testcase name="testPauseAndResumeWithUnloading" time="2.212" classname="org.apache.pulsar.client.impl.ZeroQueueSizeTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.api.raw.RawMessageImplTest" tests="1" errors="0" failures="0" skipped="0" time="0.316"><testcase name="testGetProperties" time="0.316" classname="org.apache.pulsar.common.api.raw.RawMessageImplTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.compression.CommandsTest" tests="1" errors="0" failures="0" skipped="0" time="0.03"><testcase name="testChecksumSendCommand" time="0.030" classname="org.apache.pulsar.common.compression.CommandsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest" tests="6" errors="0" failures="0" skipped="0" time="0.22300000000000003"><testcase name="testCompressDecompress" time="0.130" classname="org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.019" classname="org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.013" classname="org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.043" classname="org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.011" classname="org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.007" classname="org.apache.pulsar.common.compression.CompressorCodecBackwardCompatTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.compression.CompressorCodecTest" tests="45" errors="0" failures="0" skipped="0" time="0.7370000000000004"><testcase name="testCompressDecompress" time="0.040" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.015" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.002" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.055" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.013" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.018" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.037" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.008" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressFromSampleBuffer" time="0.018" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.026" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.006" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCodecProvider" time="0.029" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testEmptyInput" time="0.011" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testEmptyInput" time="0.006" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.022" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCodecProvider" time="0.010" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressFromSampleBuffer" time="0.010" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.012" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCodecProvider" time="0.030" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testEmptyInput" time="0.005" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.011" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.011" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.019" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.020" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.004" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.002" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testEmptyInput" time="0.011" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.007" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressFromSampleBuffer" time="0.018" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressFromSampleBuffer" time="0.014" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressFromSampleBuffer" time="0.016" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.032" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.018" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.032" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.023" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCodecProvider" time="0.017" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.001" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCompressDecompress" time="0.020" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.003" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.009" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testEmptyInput" time="0.017" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testCodecProvider" time="0.011" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.035" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testDecompressReadonlyByteBuf" time="0.012" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
<testcase name="testMultpileUsages" time="0.001" classname="org.apache.pulsar.common.compression.CompressorCodecTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.compression.Crc32cChecksumTest" tests="6" errors="0" failures="0" skipped="0" time="5.4030000000000005"><testcase name="testCrc32cHardware" time="0.012" classname="org.apache.pulsar.common.compression.Crc32cChecksumTest" />
|
||||||
|
<testcase name="testCrc32cDirectMemoryHardware" time="0.061" classname="org.apache.pulsar.common.compression.Crc32cChecksumTest" />
|
||||||
|
<testcase name="testCrc32c" time="0.014" classname="org.apache.pulsar.common.compression.Crc32cChecksumTest" />
|
||||||
|
<testcase name="testCrc32cSoftware" time="0.011" classname="org.apache.pulsar.common.compression.Crc32cChecksumTest" />
|
||||||
|
<testcase name="testCrc32cIncremental" time="5.296" classname="org.apache.pulsar.common.compression.Crc32cChecksumTest" />
|
||||||
|
<testcase name="testCrc32cIncrementalUsingProvider" time="0.009" classname="org.apache.pulsar.common.compression.Crc32cChecksumTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.lookup.data.LookupDataTest" tests="4" errors="0" failures="0" skipped="0" time="1.53"><testcase name="testLoadReportSerialization" time="0.456" classname="org.apache.pulsar.common.lookup.data.LookupDataTest" />
|
||||||
|
<testcase name="testUrlEncoder" time="0.025" classname="org.apache.pulsar.common.lookup.data.LookupDataTest" />
|
||||||
|
<testcase name="serializeToJsonTest" time="1.032" classname="org.apache.pulsar.common.lookup.data.LookupDataTest" />
|
||||||
|
<testcase name="withConstructor" time="0.017" classname="org.apache.pulsar.common.lookup.data.LookupDataTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.naming.MetadataTests" tests="2" errors="0" failures="0" skipped="0" time="0.161"><testcase name="testInvalidMetadata" time="0.066" classname="org.apache.pulsar.common.naming.MetadataTests" />
|
||||||
|
<testcase name="testValidMetadata" time="0.095" classname="org.apache.pulsar.common.naming.MetadataTests" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.naming.NamespaceBundleTest" tests="6" errors="0" failures="0" skipped="0" time="0.064"><testcase name="testIncludes" time="0.010" classname="org.apache.pulsar.common.naming.NamespaceBundleTest" />
|
||||||
|
<testcase name="testGetBundle" time="0.014" classname="org.apache.pulsar.common.naming.NamespaceBundleTest" />
|
||||||
|
<testcase name="testCompareTo" time="0.013" classname="org.apache.pulsar.common.naming.NamespaceBundleTest" />
|
||||||
|
<testcase name="testConstructor" time="0.010" classname="org.apache.pulsar.common.naming.NamespaceBundleTest" />
|
||||||
|
<testcase name="testToString" time="0.008" classname="org.apache.pulsar.common.naming.NamespaceBundleTest" />
|
||||||
|
<testcase name="testEquals" time="0.009" classname="org.apache.pulsar.common.naming.NamespaceBundleTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.naming.NamespaceBundlesTest" tests="5" errors="0" failures="0" skipped="0" time="0.09899999999999999"><testcase name="testConstructor" time="0.018" classname="org.apache.pulsar.common.naming.NamespaceBundlesTest" />
|
||||||
|
<testcase name="testSplitBundleInTwo" time="0.013" classname="org.apache.pulsar.common.naming.NamespaceBundlesTest" />
|
||||||
|
<testcase name="testsplitBundles" time="0.043" classname="org.apache.pulsar.common.naming.NamespaceBundlesTest" />
|
||||||
|
<testcase name="testFindBundle" time="0.012" classname="org.apache.pulsar.common.naming.NamespaceBundlesTest" />
|
||||||
|
<testcase name="testSplitBundleByFixBoundary" time="0.013" classname="org.apache.pulsar.common.naming.NamespaceBundlesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.naming.NamespaceNameTest" tests="2" errors="0" failures="0" skipped="0" time="0.207"><testcase name="namespace" time="0.206" classname="org.apache.pulsar.common.naming.NamespaceNameTest" />
|
||||||
|
<testcase name="testNewScheme" time="0.001" classname="org.apache.pulsar.common.naming.NamespaceNameTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.naming.ServiceConfigurationTest" tests="4" errors="0" failures="0" skipped="0" time="0.048"><testcase name="testOptionalSettingPresent" time="0.005" classname="org.apache.pulsar.common.naming.ServiceConfigurationTest" />
|
||||||
|
<testcase name="testOptionalSettingEmpty" time="0.005" classname="org.apache.pulsar.common.naming.ServiceConfigurationTest" />
|
||||||
|
<testcase name="testInit" time="0.024" classname="org.apache.pulsar.common.naming.ServiceConfigurationTest" />
|
||||||
|
<testcase name="testInitFailure" time="0.014" classname="org.apache.pulsar.common.naming.ServiceConfigurationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.naming.TopicNameTest" tests="4" errors="0" failures="0" skipped="0" time="0.529"><testcase name="testShortTopicName" time="0.029" classname="org.apache.pulsar.common.naming.TopicNameTest" />
|
||||||
|
<testcase name="topic" time="0.035" classname="org.apache.pulsar.common.naming.TopicNameTest" />
|
||||||
|
<testcase name="testTopicNameWithoutCluster" time="0.016" classname="org.apache.pulsar.common.naming.TopicNameTest" />
|
||||||
|
<testcase name="testDecodeEncode" time="0.449" classname="org.apache.pulsar.common.naming.TopicNameTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.net.ServiceURITest" tests="21" errors="0" failures="0" skipped="0" time="0.23700000000000004"><testcase name="testEmptyServiceUriString" time="0.029" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsSemiColon" time="0.005" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testInvalidServiceUris" time="0.018" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsWithoutHttpPorts" time="0.000" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testRootPath" time="0.009" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsMixedPorts" time="0.001" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsWithoutPulsarTlsPorts" time="0.001" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testUserInfoWithMultipleHosts" time="0.008" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsComma" time="0.000" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsMixed" time="0.001" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testUserInfo" time="0.003" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testIpv6UriWithoutPulsarPort" time="0.003" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultiIpv6Uri" time="0.011" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultiIpv6UriWithoutPulsarPort" time="0.013" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testEmptyPath" time="0.115" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testNullServiceUriString" time="0.009" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testNullServiceUriInstance" time="0.001" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMissingServiceName" time="0.006" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsWithoutHttpsPorts" time="0.000" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testMultipleHostsWithoutPulsarPorts" time="0.000" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
<testcase name="testIpv6Uri" time="0.004" classname="org.apache.pulsar.common.net.ServiceURITest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.AutoFailoverPolicyDataTest" tests="1" errors="0" failures="0" skipped="0" time="0.015"><testcase name="testAutoFailoverPolicyData" time="0.015" classname="org.apache.pulsar.common.policies.data.AutoFailoverPolicyDataTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.AutoFailoverPolicyTypeTest" tests="1" errors="0" failures="0" skipped="0" time="0.019"><testcase name="testAutoFailoverPolicyType" time="0.019" classname="org.apache.pulsar.common.policies.data.AutoFailoverPolicyTypeTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest" tests="6" errors="0" failures="0" skipped="0" time="0.064"><testcase name="testInvalidTopicType" time="0.012" classname="org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest" />
|
||||||
|
<testcase name="testNumPartitionsTooLow" time="0.006" classname="org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest" />
|
||||||
|
<testcase name="testNumPartitionsNotSet" time="0.003" classname="org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest" />
|
||||||
|
<testcase name="testValidOverrideNonPartitioned" time="0.021" classname="org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest" />
|
||||||
|
<testcase name="testNumPartitionsOnNonPartitioned" time="0.018" classname="org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest" />
|
||||||
|
<testcase name="testValidOverridePartitioned" time="0.004" classname="org.apache.pulsar.common.policies.data.AutoTopicCreationOverrideTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.BacklogQuotaTest" tests="1" errors="0" failures="0" skipped="0" time="0.012"><testcase name="testBacklogQuotaIdentity" time="0.012" classname="org.apache.pulsar.common.policies.data.BacklogQuotaTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.ClusterDataTest" tests="1" errors="0" failures="0" skipped="0" time="0.009"><testcase name="simple" time="0.009" classname="org.apache.pulsar.common.policies.data.ClusterDataTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.ConsumerStatsTest" tests="1" errors="0" failures="0" skipped="0" time="0.008"><testcase name="testConsumerStats" time="0.008" classname="org.apache.pulsar.common.policies.data.ConsumerStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.EnsemblePlacementPolicyConfigTest" tests="2" errors="0" failures="0" skipped="0" time="0.948"><testcase name="testDecodeFailed" time="0.475" classname="org.apache.pulsar.common.policies.data.EnsemblePlacementPolicyConfigTest" />
|
||||||
|
<testcase name="testEncodeDecodeSuccessfully" time="0.473" classname="org.apache.pulsar.common.policies.data.EnsemblePlacementPolicyConfigTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.LocalPolicesTest" tests="1" errors="0" failures="0" skipped="0" time="0.048"><testcase name="testLocalPolices" time="0.048" classname="org.apache.pulsar.common.policies.data.LocalPolicesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.NamespaceIsolationDataTest" tests="1" errors="0" failures="0" skipped="0" time="0.076"><testcase name="testNamespaceIsolationData" time="0.076" classname="org.apache.pulsar.common.policies.data.NamespaceIsolationDataTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.NamespaceOwnershipStatusTest" tests="1" errors="0" failures="0" skipped="0" time="0.045"><testcase name="testSerialization" time="0.045" classname="org.apache.pulsar.common.policies.data.NamespaceOwnershipStatusTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.OffloadPoliciesTest" tests="6" errors="0" failures="0" skipped="0" time="0.216"><testcase name="testGcsConfiguration" time="0.011" classname="org.apache.pulsar.common.policies.data.OffloadPoliciesTest" />
|
||||||
|
<testcase name="mergeTest" time="0.005" classname="org.apache.pulsar.common.policies.data.OffloadPoliciesTest" />
|
||||||
|
<testcase name="compatibleWithConfigFileTest" time="0.154" classname="org.apache.pulsar.common.policies.data.OffloadPoliciesTest" />
|
||||||
|
<testcase name="testCreateByProperties" time="0.012" classname="org.apache.pulsar.common.policies.data.OffloadPoliciesTest" />
|
||||||
|
<testcase name="testS3Configuration" time="0.009" classname="org.apache.pulsar.common.policies.data.OffloadPoliciesTest" />
|
||||||
|
<testcase name="oldPoliciesCompatibleTest" time="0.025" classname="org.apache.pulsar.common.policies.data.OffloadPoliciesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.PartitionedTopicStatsTest" tests="1" errors="0" failures="0" skipped="0" time="0.012"><testcase name="testPartitionedTopicStats" time="0.012" classname="org.apache.pulsar.common.policies.data.PartitionedTopicStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.PersistencePoliciesTest" tests="1" errors="0" failures="0" skipped="0" time="0.019"><testcase name="testPersistencePolicies" time="0.019" classname="org.apache.pulsar.common.policies.data.PersistencePoliciesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.PersistentOfflineTopicStatsTest" tests="1" errors="0" failures="0" skipped="0" time="0.029"><testcase name="testPersistentOfflineTopicStats" time="0.029" classname="org.apache.pulsar.common.policies.data.PersistentOfflineTopicStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.PersistentTopicStatsTest" tests="2" errors="0" failures="0" skipped="0" time="0.051"><testcase name="testPersistentTopicStatsAggregation" time="0.015" classname="org.apache.pulsar.common.policies.data.PersistentTopicStatsTest" />
|
||||||
|
<testcase name="testPersistentTopicStats" time="0.036" classname="org.apache.pulsar.common.policies.data.PersistentTopicStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.PoliciesDataTest" tests="4" errors="0" failures="0" skipped="0" time="1.386"><testcase name="propertyAdmin" time="0.044" classname="org.apache.pulsar.common.policies.data.PoliciesDataTest" />
|
||||||
|
<testcase name="policies" time="0.011" classname="org.apache.pulsar.common.policies.data.PoliciesDataTest" />
|
||||||
|
<testcase name="bundlesData" time="1.224" classname="org.apache.pulsar.common.policies.data.PoliciesDataTest" />
|
||||||
|
<testcase name="bundlesPolicies" time="0.107" classname="org.apache.pulsar.common.policies.data.PoliciesDataTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.PublisherStatsTest" tests="2" errors="0" failures="0" skipped="0" time="0.037"><testcase name="testPublisherStats" time="0.027" classname="org.apache.pulsar.common.policies.data.PublisherStatsTest" />
|
||||||
|
<testcase name="testPublisherStatsAggregation" time="0.010" classname="org.apache.pulsar.common.policies.data.PublisherStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.ReplicatorStatsTest" tests="2" errors="0" failures="0" skipped="0" time="0.03"><testcase name="testReplicatorStatsAdd" time="0.019" classname="org.apache.pulsar.common.policies.data.ReplicatorStatsTest" />
|
||||||
|
<testcase name="testReplicatorStatsNull" time="0.011" classname="org.apache.pulsar.common.policies.data.ReplicatorStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.ResourceQuotaTest" tests="2" errors="0" failures="0" skipped="0" time="0.045"><testcase name="testResourceQuotaDefault" time="0.038" classname="org.apache.pulsar.common.policies.data.ResourceQuotaTest" />
|
||||||
|
<testcase name="testResourceQuotaEqual" time="0.007" classname="org.apache.pulsar.common.policies.data.ResourceQuotaTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.data.RetentionPolicesTest" tests="1" errors="0" failures="0" skipped="0" time="0.008"><testcase name="testRetentionPolices" time="0.008" classname="org.apache.pulsar.common.policies.data.RetentionPolicesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.impl.AutoFailoverPolicyFactoryTest" tests="1" errors="0" failures="0" skipped="0" time="0.022"><testcase name="testAutoFailoverPolicyFactory" time="0.022" classname="org.apache.pulsar.common.policies.impl.AutoFailoverPolicyFactoryTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.impl.MinAvailablePolicyTest" tests="1" errors="0" failures="0" skipped="0" time="0.001"><testcase name="testMinAvailablePolicty" time="0.001" classname="org.apache.pulsar.common.policies.impl.MinAvailablePolicyTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" tests="7" errors="0" failures="0" skipped="0" time="0.265"><testcase name="testBrokerAssignment" time="0.204" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" />
|
||||||
|
<testcase name="testGetNamespaceIsolationPolicyByName" time="0.012" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" />
|
||||||
|
<testcase name="testDeletePolicy" time="0.003" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" />
|
||||||
|
<testcase name="testSetPolicy" time="0.007" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" />
|
||||||
|
<testcase name="testJsonSerialization" time="0.025" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" />
|
||||||
|
<testcase name="testDefaultConstructor" time="0.011" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" />
|
||||||
|
<testcase name="testGetNamespaceIsolationPolicyByNamespace" time="0.003" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPoliciesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" tests="7" errors="0" failures="0" skipped="0" time="0.30900000000000005"><testcase name="testFindBrokers" time="0.168" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" />
|
||||||
|
<testcase name="testGetSecondaryBrokers" time="0.018" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" />
|
||||||
|
<testcase name="testShouldFailover" time="0.010" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" />
|
||||||
|
<testcase name="testGetPrimaryBrokers" time="0.007" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" />
|
||||||
|
<testcase name="testGetAvailablePrimaryBrokers" time="0.028" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" />
|
||||||
|
<testcase name="testConstructor" time="0.070" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" />
|
||||||
|
<testcase name="testIsPrimaryOrSecondaryBroker" time="0.008" classname="org.apache.pulsar.common.policies.impl.NamespaceIsolationPolicyImplTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.protocol.ByteBufPairTest" tests="2" errors="0" failures="0" skipped="0" time="4.9990000000000006"><testcase name="testEncoder" time="2.376" classname="org.apache.pulsar.common.protocol.ByteBufPairTest" />
|
||||||
|
<testcase name="testDoubleByteBuf" time="2.623" classname="org.apache.pulsar.common.protocol.ByteBufPairTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.protocol.CommandUtilsTests" tests="7" errors="0" failures="0" skipped="0" time="2.8120000000000003"><testcase name="testSkipBrokerEntryMetadata" time="0.014" classname="org.apache.pulsar.common.protocol.CommandUtilsTests" />
|
||||||
|
<testcase name="testPeekBrokerEntryMetadata" time="0.006" classname="org.apache.pulsar.common.protocol.CommandUtilsTests" />
|
||||||
|
<testcase name="testParseBrokerEntryMetadata" time="0.011" classname="org.apache.pulsar.common.protocol.CommandUtilsTests" />
|
||||||
|
<testcase name="testMetadataFromCommandSubscribe" time="0.013" classname="org.apache.pulsar.common.protocol.CommandUtilsTests" />
|
||||||
|
<testcase name="testMetadataFromCommandProducer" time="0.032" classname="org.apache.pulsar.common.protocol.CommandUtilsTests" />
|
||||||
|
<testcase name="testAddBrokerEntryMetadata" time="2.728" classname="org.apache.pulsar.common.protocol.CommandUtilsTests" />
|
||||||
|
<testcase name="testByteBufComposite" time="0.008" classname="org.apache.pulsar.common.protocol.CommandUtilsTests" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.protocol.MarkersTest" tests="6" errors="0" failures="0" skipped="0" time="3.2329999999999997"><testcase name="testSnapshot" time="3.129" classname="org.apache.pulsar.common.protocol.MarkersTest" />
|
||||||
|
<testcase name="testTxnAbortMarker" time="0.038" classname="org.apache.pulsar.common.protocol.MarkersTest" />
|
||||||
|
<testcase name="testUpdate" time="0.017" classname="org.apache.pulsar.common.protocol.MarkersTest" />
|
||||||
|
<testcase name="testTxnCommitMarker" time="0.012" classname="org.apache.pulsar.common.protocol.MarkersTest" />
|
||||||
|
<testcase name="testSnapshotRequest" time="0.022" classname="org.apache.pulsar.common.protocol.MarkersTest" />
|
||||||
|
<testcase name="testSnapshotResponse" time="0.015" classname="org.apache.pulsar.common.protocol.MarkersTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.protocol.PulsarDecoderTest" tests="1" errors="0" failures="0" skipped="0" time="3.69"><testcase name="testChannelRead" time="3.690" classname="org.apache.pulsar.common.protocol.PulsarDecoderTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.stats.JvmDefaultGCMetricsLoggerTest" tests="1" errors="0" failures="0" skipped="0" time="0.082"><testcase name="testInvokeJVMInternals" time="0.082" classname="org.apache.pulsar.common.stats.JvmDefaultGCMetricsLoggerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.FieldParserTest" tests="1" errors="0" failures="0" skipped="0" time="0.242"><testcase name="testMap" time="0.242" classname="org.apache.pulsar.common.util.FieldParserTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest" tests="6" errors="0" failures="0" skipped="0" time="6.1610000000000005"><testcase name="testFileNotModified" time="0.021" classname="org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest" />
|
||||||
|
<testcase name="testFileModified" time="2.036" classname="org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest" />
|
||||||
|
<testcase name="testFileModified" time="2.014" classname="org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest" />
|
||||||
|
<testcase name="testFileNotModified" time="0.037" classname="org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest" />
|
||||||
|
<testcase name="testFileModified" time="2.020" classname="org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest" />
|
||||||
|
<testcase name="testFileNotModified" time="0.033" classname="org.apache.pulsar.common.util.FileModifiedTimeUpdaterTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.RateLimiterTest" tests="11" errors="0" failures="0" skipped="0" time="7.199999999999998"><testcase name="testMultipleTryAcquire" time="0.014" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testRateLimiterWithPermitUpdater" time="3.023" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testTryAcquire" time="0.020" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testTryAcquireNoPermits" time="0.002" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testClose" time="0.012" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testResetRate" time="3.024" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testMultipleAcquire" time="0.021" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testAcquire" time="0.044" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testInvalidRenewTime" time="0.015" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testRateLimiterWithFunction" time="0.007" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
<testcase name="testAcquireBlock" time="1.018" classname="org.apache.pulsar.common.util.RateLimiterTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.ReflectionsTest" tests="12" errors="0" failures="0" skipped="0" time="0.17200000000000001"><testcase name="testCreateInstanceNoNoArgConstructor" time="0.012" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateInstanceConstructorThrowsException" time="0.040" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateInstanceAbstractClass" time="0.013" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateTypedInstanceUnassignableClass" time="0.012" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateInstanceClassNotFound" time="0.010" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateTypedInstanceConstructorThrowsException" time="0.012" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testClassExists" time="0.022" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateTypedInstanceAbstractClass" time="0.003" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateTypedInstanceClassNotFound" time="0.014" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testCreateTypedInstanceNoNoArgConstructor" time="0.004" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testLoadClass" time="0.021" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
<testcase name="testClassInJarImplementsIface" time="0.009" classname="org.apache.pulsar.common.util.ReflectionsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.RelativeTimeUtilTest" tests="1" errors="0" failures="0" skipped="0" time="0.039"><testcase name="testParseRelativeTime" time="0.039" classname="org.apache.pulsar.common.util.RelativeTimeUtilTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.BitSetRecyclableRecyclableTest" tests="2" errors="0" failures="0" skipped="0" time="0.013000000000000001"><testcase name="testResetWords" time="0.001" classname="org.apache.pulsar.common.util.collections.BitSetRecyclableRecyclableTest" />
|
||||||
|
<testcase name="testRecycle" time="0.012" classname="org.apache.pulsar.common.util.collections.BitSetRecyclableRecyclableTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.ConcurrentBitSetRecyclableTest" tests="2" errors="0" failures="0" skipped="0" time="0.063"><testcase name="testRecycle" time="0.044" classname="org.apache.pulsar.common.util.collections.ConcurrentBitSetRecyclableTest" />
|
||||||
|
<testcase name="testGenerateByBitSet" time="0.019" classname="org.apache.pulsar.common.util.collections.ConcurrentBitSetRecyclableTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" tests="13" errors="0" failures="0" skipped="0" time="28.351000000000003"><testcase name="testRehashingWithDeletes" time="0.010" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="concurrentInsertionsAndReads" time="1.487" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testRemove" time="0.017" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testRehashing" time="0.014" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="simpleInsertions" time="0.014" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testComputeIfAbsent" time="0.008" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testConstructor" time="0.001" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testPutIfAbsent" time="0.006" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testIteration" time="0.006" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testHashConflictWithDeletion" time="0.002" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="concurrentInsertions" time="1.329" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="stressConcurrentInsertionsAndReads" time="25.447" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
<testcase name="testNegativeUsedBucketCount" time="0.010" classname="org.apache.pulsar.common.util.collections.ConcurrentLongHashMapTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" tests="15" errors="0" failures="0" skipped="0" time="1.5190000000000001"><testcase name="concurrentInsertionsAndReads" time="0.674" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testEqualsObjects" time="0.005" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testIfRemoval" time="0.010" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testRehashing" time="0.007" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testToString" time="0.008" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testRemove" time="0.005" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testItems" time="0.019" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testRehashingWithDeletes" time="0.007" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testHashConflictWithDeletion" time="0.003" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testIteration" time="0.008" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="simpleInsertions" time="0.014" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testRehashingRemoval" time="0.036" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testRemoval" time="0.021" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="testConstructor" time="0.003" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
<testcase name="concurrentInsertions" time="0.699" classname="org.apache.pulsar.common.util.collections.ConcurrentLongPairSetTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" tests="12" errors="0" failures="0" skipped="0" time="9.241"><testcase name="testRemove" time="0.019" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="simpleInsertions" time="0.038" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testPutIfAbsent" time="0.009" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="concurrentInsertions" time="3.153" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testHashConflictWithDeletion" time="0.013" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testRehashingWithDeletes" time="0.023" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testComputeIfAbsent" time="0.019" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testRehashing" time="0.025" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testIteration" time="0.016" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testEqualsKeys" time="0.001" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="concurrentInsertionsAndReads" time="5.909" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
<testcase name="testConstructor" time="0.016" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashMapTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" tests="11" errors="0" failures="0" skipped="0" time="7.114999999999999"><testcase name="concurrentInsertions" time="5.262" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testRehashing" time="0.009" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testRemoval" time="0.024" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testEqualsObjects" time="0.009" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testHashConflictWithDeletion" time="0.014" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testConstructor" time="0.004" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="concurrentInsertionsAndReads" time="1.736" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testIteration" time="0.010" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="simpleInsertions" time="0.015" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testRehashingWithDeletes" time="0.016" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
<testcase name="testRemove" time="0.016" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenHashSetTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" tests="13" errors="0" failures="0" skipped="0" time="1.3559999999999999"><testcase name="testAddForDifferentKey" time="0.019" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testToString" time="0.016" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testCacheFlagConflict" time="0.084" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testDeleteWithLeastMost" time="0.011" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testDeleteForDifferentKey" time="0.069" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testLastRange" time="0.009" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testAddCompareCompareWithGuava" time="0.585" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testSpanWithGuava" time="0.020" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testDeleteCompareWithGuava" time="0.473" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testFirstRange" time="0.011" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testAddForSameKey" time="0.037" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testDeleteWithAtMost" time="0.008" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
<testcase name="testRangeContaining" time="0.014" classname="org.apache.pulsar.common.util.collections.ConcurrentOpenLongPairRangeSetTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" tests="9" errors="0" failures="0" skipped="0" time="0.342"><testcase name="concurrentInsertions" time="0.101" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="testIfRemoval" time="0.041" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="testRemoval" time="0.057" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="testRemove" time="0.016" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="testItems" time="0.022" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="testEqualsObjects" time="0.007" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="simpleInsertions" time="0.016" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="testIteration" time="0.035" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
<testcase name="testToString" time="0.047" classname="org.apache.pulsar.common.util.collections.ConcurrentSortedLongPairSetTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.FieldParserTest" tests="2" errors="0" failures="0" skipped="0" time="0.064"><testcase name="testUpdateObject" time="0.023" classname="org.apache.pulsar.common.util.collections.FieldParserTest" />
|
||||||
|
<testcase name="testConversion" time="0.041" classname="org.apache.pulsar.common.util.collections.FieldParserTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest" tests="6" errors="0" failures="0" skipped="0" time="0.35"><testcase name="removeTest" time="0.014" classname="org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest" />
|
||||||
|
<testcase name="growArray" time="0.032" classname="org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest" />
|
||||||
|
<testcase name="pollTimeout" time="0.039" classname="org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest" />
|
||||||
|
<testcase name="simple" time="0.029" classname="org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest" />
|
||||||
|
<testcase name="pollTimeout2" time="0.111" classname="org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest" />
|
||||||
|
<testcase name="blockingTake" time="0.125" classname="org.apache.pulsar.common.util.collections.GrowableArrayBlockingQueueTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" tests="15" errors="0" failures="0" skipped="0" time="3.0929999999999995"><testcase name="testItems" time="0.014" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testRemove" time="0.009" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testExpandQueue" time="0.000" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testInsertAndRemove" time="0.018" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testEqualsObjects" time="0.010" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testExpandRemoval" time="1.711" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testIteration" time="0.019" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="simpleInsertions" time="0.117" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="concurrentInsertions" time="0.679" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testConstructor" time="0.020" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testSetWithDuplicateInsert" time="0.010" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testExpandWithDeletes" time="0.018" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="concurrentInsertionsAndReads" time="0.401" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testRemoval" time="0.010" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
<testcase name="testIfRemoval" time="0.057" classname="org.apache.pulsar.common.util.collections.GrowablePriorityLongPairQueueTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.collections.TripleLongPriorityQueueTest" tests="3" errors="0" failures="0" skipped="0" time="0.238"><testcase name="testQueue" time="0.096" classname="org.apache.pulsar.common.util.collections.TripleLongPriorityQueueTest" />
|
||||||
|
<testcase name="testCheckForEmpty" time="0.118" classname="org.apache.pulsar.common.util.collections.TripleLongPriorityQueueTest" />
|
||||||
|
<testcase name="testCompareWithSamePrefix" time="0.024" classname="org.apache.pulsar.common.util.collections.TripleLongPriorityQueueTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.common.util.netty.ChannelFuturesTest" tests="5" errors="0" failures="0" skipped="0" time="1.5490000000000002"><testcase name="toCompletableFuture_shouldCompleteExceptionally_channelFutureCompletedAfter" time="0.050" classname="org.apache.pulsar.common.util.netty.ChannelFuturesTest" />
|
||||||
|
<testcase name="toCompletableFuture_shouldCompleteSuccessfully_channelFutureCompletedAfter" time="0.031" classname="org.apache.pulsar.common.util.netty.ChannelFuturesTest" />
|
||||||
|
<testcase name="toCompletableFuture_shouldCompleteSuccessfully_channelFutureCompletedBefore" time="0.008" classname="org.apache.pulsar.common.util.netty.ChannelFuturesTest" />
|
||||||
|
<testcase name="toCompletableFuture_shouldCompleteExceptionally_channelFutureCompletedBefore" time="0.009" classname="org.apache.pulsar.common.util.netty.ChannelFuturesTest" />
|
||||||
|
<testcase name="toCompletableFuture_shouldRequireNonNullArgument" time="1.451" classname="org.apache.pulsar.common.util.netty.ChannelFuturesTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.discovery.service.web.DiscoveryServiceWebTest" tests="1" errors="0" failures="0" skipped="0" time="4.904"><testcase name="testRedirectUrlWithServerStarted" time="4.904" classname="org.apache.pulsar.discovery.service.web.DiscoveryServiceWebTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.functions.worker.PulsarFunctionE2ESecurityTest" tests="2" errors="0" failures="0" skipped="0" time="27.527"><testcase name="testAuthorizationWithAnonymousUser" time="10.923" classname="org.apache.pulsar.functions.worker.PulsarFunctionE2ESecurityTest" />
|
||||||
|
<testcase name="testAuthorization" time="16.604" classname="org.apache.pulsar.functions.worker.PulsarFunctionE2ESecurityTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.functions.worker.PulsarFunctionPublishTest" tests="3" errors="0" failures="0" skipped="0" time="42.238"><testcase name="testPulsarFunctionState" time="10.642" classname="org.apache.pulsar.functions.worker.PulsarFunctionPublishTest" />
|
||||||
|
<testcase name="testMultipleAddress" time="12.951" classname="org.apache.pulsar.functions.worker.PulsarFunctionPublishTest" />
|
||||||
|
<testcase name="testPulsarFunctionBKCleanup" time="18.645" classname="org.apache.pulsar.functions.worker.PulsarFunctionPublishTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.functions.worker.PulsarFunctionTlsTest" tests="1" errors="0" failures="0" skipped="0" time="12.012"><testcase name="testFunctionsCreation" time="12.012" classname="org.apache.pulsar.functions.worker.PulsarFunctionTlsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.io.PulsarFunctionTlsTest" tests="1" errors="0" failures="0" skipped="0" time="30.213"><testcase name="testAuthorization" time="30.213" classname="org.apache.pulsar.io.PulsarFunctionTlsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.AdminProxyHandlerTest" tests="1" errors="0" failures="0" skipped="0" time="0.474"><testcase name="replayableProxyContentProviderTest" time="0.474" classname="org.apache.pulsar.proxy.server.AdminProxyHandlerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.AuthedAdminProxyHandlerTest" tests="1" errors="0" failures="0" skipped="0" time="2.159"><testcase name="testAuthenticatedProxyAsNonAdmin" time="2.159" classname="org.apache.pulsar.proxy.server.AuthedAdminProxyHandlerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.FunctionWorkerRoutingTest" tests="1" errors="0" failures="0" skipped="0" time="0.01"><testcase name="testFunctionWorkerRedirect" time="0.010" classname="org.apache.pulsar.proxy.server.FunctionWorkerRoutingTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyAdditionalServletTest" tests="1" errors="0" failures="0" skipped="0" time="0.125"><testcase name="test" time="0.125" classname="org.apache.pulsar.proxy.server.ProxyAdditionalServletTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyAuthenticatedProducerConsumerTest" tests="1" errors="0" failures="0" skipped="0" time="2.279"><testcase name="testTlsSyncProducerAndConsumer" time="2.279" classname="org.apache.pulsar.proxy.server.ProxyAuthenticatedProducerConsumerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyAuthenticationTest" tests="1" errors="0" failures="0" skipped="0" time="16.696"><testcase name="testAuthentication" time="16.696" classname="org.apache.pulsar.proxy.server.ProxyAuthenticationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyConnectionThrottlingTest" tests="1" errors="0" failures="0" skipped="0" time="1.792"><testcase name="testInboundConnection" time="1.792" classname="org.apache.pulsar.proxy.server.ProxyConnectionThrottlingTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyEnableHAProxyProtocolTest" tests="1" errors="0" failures="0" skipped="0" time="0.511"><testcase name="testSimpleProduceAndConsume" time="0.511" classname="org.apache.pulsar.proxy.server.ProxyEnableHAProxyProtocolTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyForwardAuthDataTest" tests="1" errors="0" failures="0" skipped="0" time="31.924"><testcase name="testForwardAuthData" time="31.924" classname="org.apache.pulsar.proxy.server.ProxyForwardAuthDataTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" tests="10" errors="0" failures="0" skipped="0" time="1.66"><testcase name="testProxyToEndsInSlash" time="0.232" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testStreaming" time="0.460" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testLongPath" time="0.230" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testLongPathInProxyTo" time="0.220" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testPathEndsInSlash" time="0.144" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testPathNotSpecified" time="0.002" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testTryingToUseExistingPath" time="0.025" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testMultipleRedirect" time="0.178" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testSingleRedirect" time="0.167" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
<testcase name="testRedirectNotSpecified" time="0.002" classname="org.apache.pulsar.proxy.server.ProxyIsAHttpProxyTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithAuth" tests="3" errors="0" failures="0" skipped="0" time="6.7010000000000005"><testcase name="testProducerFailed" time="3.049" classname="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithAuth" />
|
||||||
|
<testcase name="testPartitions" time="1.856" classname="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithAuth" />
|
||||||
|
<testcase name="testProducer" time="1.796" classname="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithAuth" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithoutAuth" tests="3" errors="0" failures="0" skipped="0" time="7.220000000000001"><testcase name="testPartitions" time="2.438" classname="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithoutAuth" />
|
||||||
|
<testcase name="testProducerFailed" time="2.837" classname="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithoutAuth" />
|
||||||
|
<testcase name="testProducer" time="1.945" classname="org.apache.pulsar.proxy.server.ProxyKeyStoreTlsTestWithoutAuth" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyLookupThrottlingTest" tests="1" errors="0" failures="0" skipped="0" time="2.568"><testcase name="testLookup" time="2.568" classname="org.apache.pulsar.proxy.server.ProxyLookupThrottlingTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyParserTest" tests="5" errors="0" failures="0" skipped="0" time="1.3459999999999999"><testcase name="testRegexSubscription" time="0.300" classname="org.apache.pulsar.proxy.server.ProxyParserTest" />
|
||||||
|
<testcase name="testProducerConsumer" time="0.147" classname="org.apache.pulsar.proxy.server.ProxyParserTest" />
|
||||||
|
<testcase name="testProducer" time="0.111" classname="org.apache.pulsar.proxy.server.ProxyParserTest" />
|
||||||
|
<testcase name="testPartitions" time="0.641" classname="org.apache.pulsar.proxy.server.ProxyParserTest" />
|
||||||
|
<testcase name="testProtocolVersionAdvertisement" time="0.147" classname="org.apache.pulsar.proxy.server.ProxyParserTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyRolesEnforcementTest" tests="1" errors="0" failures="0" skipped="0" time="10.403"><testcase name="testIncorrectRoles" time="10.403" classname="org.apache.pulsar.proxy.server.ProxyRolesEnforcementTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyStatsTest" tests="3" errors="0" failures="0" skipped="0" time="0.533"><testcase name="testChangeLogLevel" time="0.031" classname="org.apache.pulsar.proxy.server.ProxyStatsTest" />
|
||||||
|
<testcase name="testConnectionsStats" time="0.268" classname="org.apache.pulsar.proxy.server.ProxyStatsTest" />
|
||||||
|
<testcase name="testTopicStats" time="0.234" classname="org.apache.pulsar.proxy.server.ProxyStatsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyTest" tests="6" errors="0" failures="0" skipped="0" time="2.9469999999999996"><testcase name="testPartitions" time="1.162" classname="org.apache.pulsar.proxy.server.ProxyTest" />
|
||||||
|
<testcase name="testRegexSubscription" time="0.336" classname="org.apache.pulsar.proxy.server.ProxyTest" />
|
||||||
|
<testcase name="testProtocolVersionAdvertisement" time="0.158" classname="org.apache.pulsar.proxy.server.ProxyTest" />
|
||||||
|
<testcase name="testGetSchema" time="0.982" classname="org.apache.pulsar.proxy.server.ProxyTest" />
|
||||||
|
<testcase name="testProducer" time="0.151" classname="org.apache.pulsar.proxy.server.ProxyTest" />
|
||||||
|
<testcase name="testProducerConsumer" time="0.158" classname="org.apache.pulsar.proxy.server.ProxyTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyTlsTest" tests="2" errors="0" failures="0" skipped="0" time="0.41400000000000003"><testcase name="testProducer" time="0.100" classname="org.apache.pulsar.proxy.server.ProxyTlsTest" />
|
||||||
|
<testcase name="testPartitions" time="0.314" classname="org.apache.pulsar.proxy.server.ProxyTlsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyTlsTestWithAuth" tests="1" errors="0" failures="0" skipped="0" time="0.004"><testcase name="testServiceStartup" time="0.004" classname="org.apache.pulsar.proxy.server.ProxyTlsTestWithAuth" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyWithAuthorizationNegTest" tests="1" errors="0" failures="0" skipped="0" time="2.128"><testcase name="testProxyAuthorization" time="2.128" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationNegTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" tests="13" errors="0" failures="0" skipped="0" time="32.897"><testcase name="tlsCiphersAndProtocols" time="3.181" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="testTlsHostVerificationProxyToClient" time="3.092" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="tlsCiphersAndProtocols" time="2.974" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="testProxyAuthorization" time="2.294" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="tlsCiphersAndProtocols" time="1.998" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="testTlsHostVerificationProxyToBroker" time="2.446" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="tlsCiphersAndProtocols" time="2.990" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="tlsCiphersAndProtocols" time="2.056" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="tlsCiphersAndProtocols" time="2.104" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="testTlsHostVerificationProxyToBroker" time="3.554" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="tlsCiphersAndProtocols" time="1.921" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="testTlsHostVerificationProxyToClient" time="2.164" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
<testcase name="tlsCiphersAndProtocols" time="2.123" classname="org.apache.pulsar.proxy.server.ProxyWithAuthorizationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.ProxyWithoutServiceDiscoveryTest" tests="1" errors="0" failures="0" skipped="0" time="2.045"><testcase name="testDiscoveryService" time="2.045" classname="org.apache.pulsar.proxy.server.ProxyWithoutServiceDiscoveryTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.SuperUserAuthedAdminProxyHandlerTest" tests="3" errors="0" failures="0" skipped="0" time="8.235"><testcase name="testAuthWithRandoCert" time="3.184" classname="org.apache.pulsar.proxy.server.SuperUserAuthedAdminProxyHandlerTest" />
|
||||||
|
<testcase name="testAuthenticatedProxyAsAdmin" time="2.549" classname="org.apache.pulsar.proxy.server.SuperUserAuthedAdminProxyHandlerTest" />
|
||||||
|
<testcase name="testAuthenticatedProxyAsNonAdmin" time="2.502" classname="org.apache.pulsar.proxy.server.SuperUserAuthedAdminProxyHandlerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.proxy.server.UnauthedAdminProxyHandlerTest" tests="2" errors="0" failures="0" skipped="0" time="0.11399999999999999"><testcase name="testUnauthenticatedProxy" time="0.072" classname="org.apache.pulsar.proxy.server.UnauthedAdminProxyHandlerTest" />
|
||||||
|
<testcase name="testVipStatus" time="0.042" classname="org.apache.pulsar.proxy.server.UnauthedAdminProxyHandlerTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.schema.PartitionedTopicSchemaTest" tests="1" errors="0" failures="0" skipped="0" time="29.041"><testcase name="test" time="29.041" classname="org.apache.pulsar.schema.PartitionedTopicSchemaTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.schema.SchemaTest" tests="3" errors="0" failures="0" skipped="0" time="30.858999999999998"><testcase name="testIsUsingAvroSchemaParser" time="15.549" classname="org.apache.pulsar.schema.SchemaTest" />
|
||||||
|
<testcase name="testBytesSchemaDeserialize" time="9.226" classname="org.apache.pulsar.schema.SchemaTest" />
|
||||||
|
<testcase name="testMultiTopicSetSchemaProvider" time="6.084" classname="org.apache.pulsar.schema.SchemaTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" tests="23" errors="0" failures="0" skipped="0" time="107.43700000000001"><testcase name="testConsumerCompatibilityCheckCanReadLastTest" time="2.532" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerWithNotCompatibilitySchema" time="3.386" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testProducerSendWithOldSchemaAndConsumerCanRead" time="4.159" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerCompatibilityCheckCanReadLastTest" time="8.513" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testProducerSendWithOldSchemaAndConsumerCanRead" time="4.927" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testSchemaComparison" time="5.111" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerCompatibilityCheckCanReadLastTest" time="2.560" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerCompatibilityReadAllCheckTest" time="4.842" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerWithNotCompatibilitySchema" time="5.097" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testIsAutoUpdateSchema" time="4.996" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testProducerSendWithOldSchemaAndConsumerCanRead" time="3.708" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerCompatibilityReadAllCheckTest" time="5.646" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testIsAutoUpdateSchema" time="5.362" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testProducerSendWithOldSchemaAndConsumerCanRead" time="3.960" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerWithNotCompatibilitySchema" time="7.686" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testIsAutoUpdateSchema" time="3.021" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testProducerSendWithOldSchemaAndConsumerCanRead" time="3.654" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerWithNotCompatibilitySchema" time="4.217" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testProducerSendWithOldSchemaAndConsumerCanRead" time="4.805" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testIsAutoUpdateSchema" time="4.487" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testIsAutoUpdateSchema" time="5.471" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testConsumerCompatibilityCheckCanReadLastTest" time="3.544" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
<testcase name="testIsAutoUpdateSchema" time="5.753" classname="org.apache.pulsar.schema.compatibility.SchemaCompatibilityCheckTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.stats.client.PulsarBrokerStatsClientTest" tests="2" errors="0" failures="0" skipped="0" time="40.751999999999995"><testcase name="testServiceException" time="8.855" classname="org.apache.pulsar.stats.client.PulsarBrokerStatsClientTest" />
|
||||||
|
<testcase name="testTopicInternalStats" time="31.897" classname="org.apache.pulsar.stats.client.PulsarBrokerStatsClientTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.tests.EnumValuesDataProviderTest" tests="6" errors="0" failures="0" skipped="0" time="0.023"><testcase name="shouldFailIfEnumParameterIsMissing" time="0.002" classname="org.apache.pulsar.tests.EnumValuesDataProviderTest" />
|
||||||
|
<testcase name="testEnumValuesProvider" time="0.001" classname="org.apache.pulsar.tests.EnumValuesDataProviderTest" />
|
||||||
|
<testcase name="testEnumValuesProvider" time="0.001" classname="org.apache.pulsar.tests.EnumValuesDataProviderTest" />
|
||||||
|
<testcase name="shouldDetermineEnumValuesFromMethod" time="0.005" classname="org.apache.pulsar.tests.EnumValuesDataProviderTest" />
|
||||||
|
<testcase name="shouldContainAllEnumValues" time="0.014" classname="org.apache.pulsar.tests.EnumValuesDataProviderTest" />
|
||||||
|
<testcase name="testEnumValuesProvider" time="0.000" classname="org.apache.pulsar.tests.EnumValuesDataProviderTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.tests.TestRetrySupportBeforeMethodRetryTest" tests="5" errors="0" failures="0" skipped="4" time="0.036000000000000004"><testcase name="shouldNotDoAnythingWhenThereIsBeforeAndAfterMethod" time="0.005" classname="org.apache.pulsar.tests.TestRetrySupportBeforeMethodRetryTest" />
|
||||||
|
<testcase name="shouldNotDoAnythingWhenThereIsBeforeAndAfterMethod" time="0.006" classname="org.apache.pulsar.tests.TestRetrySupportBeforeMethodRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="shouldNotDoAnythingWhenThereIsBeforeAndAfterMethod" time="0.012" classname="org.apache.pulsar.tests.TestRetrySupportBeforeMethodRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="shouldNotDoAnythingWhenThereIsBeforeAndAfterMethod" time="0.005" classname="org.apache.pulsar.tests.TestRetrySupportBeforeMethodRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="shouldNotDoAnythingWhenThereIsBeforeAndAfterMethod" time="0.008" classname="org.apache.pulsar.tests.TestRetrySupportBeforeMethodRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.tests.TestRetrySupportRetryTest" tests="5" errors="0" failures="0" skipped="4" time="0.027"><testcase name="shouldCallSetupBeforeRetrying" time="0.004" classname="org.apache.pulsar.tests.TestRetrySupportRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="shouldCallSetupBeforeRetrying" time="0.001" classname="org.apache.pulsar.tests.TestRetrySupportRetryTest" />
|
||||||
|
<testcase name="shouldCallSetupBeforeRetrying" time="0.006" classname="org.apache.pulsar.tests.TestRetrySupportRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="shouldCallSetupBeforeRetrying" time="0.012" classname="org.apache.pulsar.tests.TestRetrySupportRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
<testcase name="shouldCallSetupBeforeRetrying" time="0.004" classname="org.apache.pulsar.tests.TestRetrySupportRetryTest">
|
||||||
|
<skipped />
|
||||||
|
</testcase>
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.tests.TestRetrySupportSuccessTest" tests="3" errors="0" failures="0" skipped="0" time="0.001"><testcase name="shouldCallSetupOnce1" time="0.000" classname="org.apache.pulsar.tests.TestRetrySupportSuccessTest" />
|
||||||
|
<testcase name="shouldCallSetupOnce3" time="0.001" classname="org.apache.pulsar.tests.TestRetrySupportSuccessTest" />
|
||||||
|
<testcase name="shouldCallSetupOnce2" time="0.000" classname="org.apache.pulsar.tests.TestRetrySupportSuccessTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.tests.ThreadDumpUtilTest" tests="2" errors="0" failures="0" skipped="0" time="0.017"><testcase name="testHelp" time="0.002" classname="org.apache.pulsar.tests.ThreadDumpUtilTest" />
|
||||||
|
<testcase name="testThreadDump" time="0.015" classname="org.apache.pulsar.tests.ThreadDumpUtilTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.utils.SimpleTextOutputStreamTest" tests="4" errors="0" failures="0" skipped="0" time="0.049999999999999996"><testcase name="testBooleanFormat" time="0.006" classname="org.apache.pulsar.utils.SimpleTextOutputStreamTest" />
|
||||||
|
<testcase name="testDoubleFormat" time="0.023" classname="org.apache.pulsar.utils.SimpleTextOutputStreamTest" />
|
||||||
|
<testcase name="testLongFormat" time="0.008" classname="org.apache.pulsar.utils.SimpleTextOutputStreamTest" />
|
||||||
|
<testcase name="testString" time="0.013" classname="org.apache.pulsar.utils.SimpleTextOutputStreamTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.utils.StatsOutputStreamTest" tests="6" errors="0" failures="0" skipped="0" time="0.059"><testcase name="testLists" time="0.013" classname="org.apache.pulsar.utils.StatsOutputStreamTest" />
|
||||||
|
<testcase name="testNamedObjects" time="0.009" classname="org.apache.pulsar.utils.StatsOutputStreamTest" />
|
||||||
|
<testcase name="testNestedObjects" time="0.006" classname="org.apache.pulsar.utils.StatsOutputStreamTest" />
|
||||||
|
<testcase name="testNamedLists" time="0.012" classname="org.apache.pulsar.utils.StatsOutputStreamTest" />
|
||||||
|
<testcase name="testPairs" time="0.008" classname="org.apache.pulsar.utils.StatsOutputStreamTest" />
|
||||||
|
<testcase name="testObjects" time="0.011" classname="org.apache.pulsar.utils.StatsOutputStreamTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.websocket.proxy.ProxyAuthenticationTest" tests="4" errors="0" failures="0" skipped="0" time="28.904000000000003"><testcase name="unauthenticatedSocketTest" time="6.510" classname="org.apache.pulsar.websocket.proxy.ProxyAuthenticationTest" />
|
||||||
|
<testcase name="authenticatedSocketTest" time="7.780" classname="org.apache.pulsar.websocket.proxy.ProxyAuthenticationTest" />
|
||||||
|
<testcase name="statsTest" time="6.682" classname="org.apache.pulsar.websocket.proxy.ProxyAuthenticationTest" />
|
||||||
|
<testcase name="anonymousSocketTest" time="7.932" classname="org.apache.pulsar.websocket.proxy.ProxyAuthenticationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.websocket.proxy.ProxyAuthorizationTest" tests="1" errors="0" failures="0" skipped="0" time="1.263"><testcase name="test" time="1.263" classname="org.apache.pulsar.websocket.proxy.ProxyAuthorizationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.websocket.proxy.ProxyConfigurationTest" tests="2" errors="0" failures="0" skipped="0" time="8.943"><testcase name="configTest" time="4.667" classname="org.apache.pulsar.websocket.proxy.ProxyConfigurationTest" />
|
||||||
|
<testcase name="configTest" time="4.276" classname="org.apache.pulsar.websocket.proxy.ProxyConfigurationTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.websocket.proxy.ProxyPublishConsumeTlsTest" tests="1" errors="0" failures="0" skipped="0" time="10.821"><testcase name="socketTest" time="10.821" classname="org.apache.pulsar.websocket.proxy.ProxyPublishConsumeTlsTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.websocket.proxy.ProxyPublishConsumeWithoutZKTest" tests="1" errors="0" failures="0" skipped="0" time="7.28"><testcase name="socketTest" time="7.280" classname="org.apache.pulsar.websocket.proxy.ProxyPublishConsumeWithoutZKTest" />
|
||||||
|
</testsuite><testsuite name="org.apache.pulsar.websocket.proxy.v1.V1_ProxyAuthenticationTest" tests="4" errors="0" failures="0" skipped="0" time="29.941000000000003"><testcase name="anonymousSocketTest" time="8.880" classname="org.apache.pulsar.websocket.proxy.v1.V1_ProxyAuthenticationTest" />
|
||||||
|
<testcase name="authenticatedSocketTest" time="8.345" classname="org.apache.pulsar.websocket.proxy.v1.V1_ProxyAuthenticationTest" />
|
||||||
|
<testcase name="statsTest" time="5.366" classname="org.apache.pulsar.websocket.proxy.v1.V1_ProxyAuthenticationTest" />
|
||||||
|
<testcase name="unauthenticatedSocketTest" time="7.350" classname="org.apache.pulsar.websocket.proxy.v1.V1_ProxyAuthenticationTest" />
|
||||||
|
</testsuite></testsuites>
|
||||||
75
__tests__/java-junit.test.ts
Normal file
75
__tests__/java-junit.test.ts
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
import * as fs from 'fs'
|
||||||
|
import * as path from 'path'
|
||||||
|
|
||||||
|
import {JavaJunitParser} from '../src/parsers/java-junit/java-junit-parser'
|
||||||
|
import {ParseOptions} from '../src/test-parser'
|
||||||
|
import {getReport} from '../src/report/get-report'
|
||||||
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
|
describe('java-junit tests', () => {
|
||||||
|
it('produces empty test run result when there are no test cases', 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)
|
||||||
|
expect(result.tests).toBe(0)
|
||||||
|
expect(result.result).toBe('success')
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report from apache/pulsar single suite test results matches snapshot', async () => {
|
||||||
|
const fixturePath = path.join(
|
||||||
|
__dirname,
|
||||||
|
'fixtures',
|
||||||
|
'external',
|
||||||
|
'java',
|
||||||
|
'TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml'
|
||||||
|
)
|
||||||
|
const trackedFilesPath = path.join(__dirname, 'fixtures', 'external', 'java', 'files.txt')
|
||||||
|
const outputPath = path.join(__dirname, '__outputs__', 'pulsar-test-results-no-merge.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
|
||||||
|
}
|
||||||
|
|
||||||
|
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 apache/pulsar test results matches snapshot', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'external', 'java', 'pulsar-test-report.xml')
|
||||||
|
const trackedFilesPath = path.join(__dirname, 'fixtures', 'external', 'java', 'files.txt')
|
||||||
|
const outputPath = path.join(__dirname, '__outputs__', 'pulsar-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
|
||||||
|
}
|
||||||
|
|
||||||
|
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)
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -4,9 +4,25 @@ 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 {getReport} from '../src/report/get-report'
|
import {getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/file-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', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'empty', '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)
|
||||||
|
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')
|
||||||
@@ -15,8 +31,8 @@ describe('jest-junit tests', () => {
|
|||||||
|
|
||||||
const opts: ParseOptions = {
|
const opts: ParseOptions = {
|
||||||
parseErrors: true,
|
parseErrors: true,
|
||||||
trackedFiles: ['__tests__/main.test.js', '__tests__/second.test.js', 'lib/main.js'],
|
trackedFiles: ['__tests__/main.test.js', '__tests__/second.test.js', 'lib/main.js']
|
||||||
workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/jest/'
|
//workDir: 'C:/Users/Michal/Workspace/dorny/test-check/reports/jest/'
|
||||||
}
|
}
|
||||||
|
|
||||||
const parser = new JestJunitParser(opts)
|
const parser = new JestJunitParser(opts)
|
||||||
@@ -38,15 +54,15 @@ describe('jest-junit tests', () => {
|
|||||||
const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
|
const trackedFiles = fs.readFileSync(trackedFilesPath, {encoding: 'utf8'}).split(/\n\r?/g)
|
||||||
const opts: ParseOptions = {
|
const opts: ParseOptions = {
|
||||||
parseErrors: true,
|
parseErrors: true,
|
||||||
trackedFiles,
|
trackedFiles
|
||||||
workDir: '/home/dorny/dorny/jest/'
|
//workDir: '/home/dorny/dorny/jest/'
|
||||||
}
|
}
|
||||||
|
|
||||||
const parser = new JestJunitParser(opts)
|
const parser = new JestJunitParser(opts)
|
||||||
const result = await parser.parse(filePath, fileContent)
|
const result = await parser.parse(filePath, fileContent)
|
||||||
expect(result).toMatchSnapshot()
|
expect(result).toMatchSnapshot()
|
||||||
|
|
||||||
const report = getReport([result], {listTests: 'failed'})
|
const report = getReport([result])
|
||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|||||||
37
__tests__/utils/parse-utils.test.ts
Normal file
37
__tests__/utils/parse-utils.test.ts
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
import {parseNetDuration} from '../../src/utils/parse-utils'
|
||||||
|
|
||||||
|
describe('parseNetDuration', () => {
|
||||||
|
it('returns 0 for 00:00:00', () => {
|
||||||
|
const ms = parseNetDuration('00:00:00')
|
||||||
|
expect(ms).toBe(0)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('returns 0 for 00:00:00.0000000', () => {
|
||||||
|
const ms = parseNetDuration('00:00:00.0000000')
|
||||||
|
expect(ms).toBe(0)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('returns 123 for 00:00:00.123', () => {
|
||||||
|
const ms = parseNetDuration('00:00:00.123')
|
||||||
|
expect(ms).toBe(123)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('returns 12 * 1000 for 00:00:12', () => {
|
||||||
|
const ms = parseNetDuration('00:00:12')
|
||||||
|
expect(ms).toBe(12 * 1000)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('returns 12 * 60 * 1000 for 00:12:00', () => {
|
||||||
|
const ms = parseNetDuration('00:12:00')
|
||||||
|
expect(ms).toBe(12 * 60 * 1000)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('returns 12 * 60 * 60 * 1000 for 12:00:00', () => {
|
||||||
|
const ms = parseNetDuration('12:00:00')
|
||||||
|
expect(ms).toBe(12 * 60 * 60 * 1000)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('throws when string has invalid format', () => {
|
||||||
|
expect(() => parseNetDuration('12:34:56 not a duration')).toThrowError(/^Invalid format/)
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -3,21 +3,25 @@ description: |
|
|||||||
Displays test results directly in GitHub. Supports .NET (xUnit, NUnit, MSTest), Dart, Flutter and JavaScript (JEST).
|
Displays test results directly in GitHub. Supports .NET (xUnit, NUnit, MSTest), Dart, Flutter and JavaScript (JEST).
|
||||||
author: Michal Dorner <dorner.michal@gmail.com>
|
author: Michal Dorner <dorner.michal@gmail.com>
|
||||||
inputs:
|
inputs:
|
||||||
|
artifact:
|
||||||
|
description: Name or regex of artifact containing test results
|
||||||
|
required: false
|
||||||
name:
|
name:
|
||||||
description: Name of the check run
|
description: Name of the check run
|
||||||
required: true
|
required: true
|
||||||
path:
|
path:
|
||||||
description: |
|
description: |
|
||||||
Coma separated list of paths to test reports
|
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
|
||||||
reporter:
|
reporter:
|
||||||
description: |
|
description: |
|
||||||
Format of test report. Supported options:
|
Format of test results. Supported options:
|
||||||
- dart-json
|
- dart-json
|
||||||
- dotnet-trx
|
- dotnet-trx
|
||||||
- flutter-json
|
- flutter-json
|
||||||
|
- java-junit
|
||||||
- jest-junit
|
- jest-junit
|
||||||
required: true
|
required: true
|
||||||
list-suites:
|
list-suites:
|
||||||
|
|||||||
11088
dist/index.js
generated
vendored
11088
dist/index.js
generated
vendored
File diff suppressed because it is too large
Load Diff
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
453
dist/licenses.txt
generated
vendored
453
dist/licenses.txt
generated
vendored
@@ -291,6 +291,44 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
@sindresorhus/is
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
@szmarczak/http-timer
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2018 Szymon Marczak
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
@vercel/ncc
|
@vercel/ncc
|
||||||
MIT
|
MIT
|
||||||
Copyright 2018 ZEIT, Inc.
|
Copyright 2018 ZEIT, Inc.
|
||||||
@@ -301,6 +339,31 @@ 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.
|
||||||
|
|
||||||
|
adm-zip
|
||||||
|
MIT
|
||||||
|
Copyright (c) 2012 Another-D-Mention Software and other contributors,
|
||||||
|
http://www.another-d-mention.ro/
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
before-after-hook
|
before-after-hook
|
||||||
Apache-2.0
|
Apache-2.0
|
||||||
Apache License
|
Apache License
|
||||||
@@ -531,6 +594,119 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
cacheable-lookup
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2019 Szymon Marczak
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
cacheable-request
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
clone-response
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
decompress-response
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
defer-to-connect
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2018 Szymon Marczak
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
deprecation
|
deprecation
|
||||||
ISC
|
ISC
|
||||||
The ISC License
|
The ISC License
|
||||||
@@ -550,6 +726,30 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|||||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
end-of-stream
|
||||||
|
MIT
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014 Mathias Buus
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
fast-glob
|
fast-glob
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
@@ -617,6 +817,19 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
get-stream
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
glob-parent
|
glob-parent
|
||||||
ISC
|
ISC
|
||||||
The ISC License
|
The ISC License
|
||||||
@@ -636,6 +849,57 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|||||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
got
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
http-cache-semantics
|
||||||
|
BSD-2-Clause
|
||||||
|
Copyright 2016-2018 Kornel Lesiński
|
||||||
|
|
||||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||||
|
|
||||||
|
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
||||||
|
|
||||||
|
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||||
|
|
||||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
|
http2-wrapper
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2018 Szymon Marczak
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
is-extglob
|
is-extglob
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
@@ -736,6 +1000,70 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
json-buffer
|
||||||
|
MIT
|
||||||
|
Copyright (c) 2013 Dominic Tarr
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
keyv
|
||||||
|
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
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
merge2
|
merge2
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
@@ -786,6 +1114,19 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
mimic-response
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
node-fetch
|
node-fetch
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
@@ -812,6 +1153,19 @@ SOFTWARE.
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
normalize-url
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
once
|
once
|
||||||
ISC
|
ISC
|
||||||
The ISC License
|
The ISC License
|
||||||
@@ -831,6 +1185,19 @@ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|||||||
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
p-cancelable
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
picomatch
|
picomatch
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
@@ -856,6 +1223,92 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
|
|
||||||
|
|
||||||
|
pump
|
||||||
|
MIT
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2014 Mathias Buus
|
||||||
|
|
||||||
|
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
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (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:
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
resolve-alpn
|
||||||
|
MIT
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2018 Szymon Marczak
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
responselike
|
||||||
|
MIT
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
reusify
|
reusify
|
||||||
MIT
|
MIT
|
||||||
The MIT License (MIT)
|
The MIT License (MIT)
|
||||||
|
|||||||
1016
package-lock.json
generated
1016
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
21
package.json
21
package.json
@@ -32,29 +32,34 @@
|
|||||||
"@actions/core": "^1.2.6",
|
"@actions/core": "^1.2.6",
|
||||||
"@actions/exec": "^1.0.4",
|
"@actions/exec": "^1.0.4",
|
||||||
"@actions/github": "^4.0.0",
|
"@actions/github": "^4.0.0",
|
||||||
|
"adm-zip": "^0.5.3",
|
||||||
"fast-glob": "^3.2.5",
|
"fast-glob": "^3.2.5",
|
||||||
|
"got": "^11.8.2",
|
||||||
|
"picomatch": "^2.2.2",
|
||||||
"xml2js": "^0.4.23"
|
"xml2js": "^0.4.23"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@octokit/types": "^6.7.0",
|
"@octokit/types": "^6.12.0",
|
||||||
"@octokit/webhooks": "^7.21.0",
|
"@octokit/webhooks": "^7.21.0",
|
||||||
|
"@types/adm-zip": "^0.4.33",
|
||||||
"@types/github-slugger": "^1.3.0",
|
"@types/github-slugger": "^1.3.0",
|
||||||
"@types/jest": "^26.0.20",
|
"@types/jest": "^26.0.20",
|
||||||
"@types/node": "^14.14.20",
|
"@types/node": "^14.14.20",
|
||||||
|
"@types/picomatch": "^2.2.1",
|
||||||
"@types/xml2js": "^0.4.8",
|
"@types/xml2js": "^0.4.8",
|
||||||
"@typescript-eslint/eslint-plugin": "^4.14.1",
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
||||||
"@typescript-eslint/parser": "^4.14.1",
|
"@typescript-eslint/parser": "^4.16.1",
|
||||||
"@vercel/ncc": "^0.27.0",
|
"@vercel/ncc": "^0.27.0",
|
||||||
"eslint": "^7.19.0",
|
"eslint": "^7.21.0",
|
||||||
"eslint-plugin-github": "^4.1.1",
|
"eslint-plugin-github": "^4.1.2",
|
||||||
"eslint-plugin-jest": "^24.1.3",
|
"eslint-plugin-jest": "^24.1.7",
|
||||||
"jest": "^26.6.3",
|
"jest": "^26.6.3",
|
||||||
"jest-circus": "^26.6.3",
|
"jest-circus": "^26.6.3",
|
||||||
"jest-junit": "^12.0.0",
|
"jest-junit": "^12.0.0",
|
||||||
"js-yaml": "^4.0.0",
|
"js-yaml": "^4.0.0",
|
||||||
"prettier": "2.2.1",
|
"prettier": "2.2.1",
|
||||||
"ts-jest": "^26.5.0",
|
"ts-jest": "^26.5.3",
|
||||||
"typescript": "^4.1.2"
|
"typescript": "^4.2.3"
|
||||||
},
|
},
|
||||||
"jest-junit": {
|
"jest-junit": {
|
||||||
"suiteName": "jest tests",
|
"suiteName": "jest tests",
|
||||||
|
|||||||
108
src/input-providers/artifact-provider.ts
Normal file
108
src/input-providers/artifact-provider.ts
Normal file
@@ -0,0 +1,108 @@
|
|||||||
|
import * as core from '@actions/core'
|
||||||
|
import * as github from '@actions/github'
|
||||||
|
import {GitHub} from '@actions/github/lib/utils'
|
||||||
|
|
||||||
|
import Zip from 'adm-zip'
|
||||||
|
import picomatch from 'picomatch'
|
||||||
|
|
||||||
|
import {FileContent, InputProvider, ReportInput} from './input-provider'
|
||||||
|
import {downloadArtifact, listFiles} from '../utils/github-utils'
|
||||||
|
|
||||||
|
export class ArtifactProvider implements InputProvider {
|
||||||
|
private readonly artifactNameMatch: (name: string) => boolean
|
||||||
|
private readonly fileNameMatch: (name: string) => boolean
|
||||||
|
private readonly getReportName: (name: string) => string
|
||||||
|
|
||||||
|
constructor(
|
||||||
|
readonly octokit: InstanceType<typeof GitHub>,
|
||||||
|
readonly artifact: string,
|
||||||
|
readonly name: string,
|
||||||
|
readonly pattern: string[],
|
||||||
|
readonly sha: string,
|
||||||
|
readonly runId: number,
|
||||||
|
readonly token: string
|
||||||
|
) {
|
||||||
|
if (this.artifact.startsWith('/')) {
|
||||||
|
const endIndex = this.artifact.lastIndexOf('/')
|
||||||
|
const rePattern = this.artifact.substring(1, endIndex)
|
||||||
|
const reOpts = this.artifact.substring(endIndex + 1)
|
||||||
|
const re = new RegExp(rePattern, reOpts)
|
||||||
|
this.artifactNameMatch = (str: string) => re.test(str)
|
||||||
|
this.getReportName = (str: string) => {
|
||||||
|
const match = str.match(re)
|
||||||
|
if (match === null) {
|
||||||
|
throw new Error(`Artifact name '${str}' does not match regex ${this.artifact}`)
|
||||||
|
}
|
||||||
|
let reportName = this.name
|
||||||
|
for (let i = 1; i < match.length; i++) {
|
||||||
|
reportName = reportName.replace(new RegExp(`\\$${i}`, 'g'), match[i])
|
||||||
|
}
|
||||||
|
return reportName
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.artifactNameMatch = (str: string) => str === this.artifact
|
||||||
|
this.getReportName = () => this.name
|
||||||
|
}
|
||||||
|
|
||||||
|
this.fileNameMatch = picomatch(pattern)
|
||||||
|
}
|
||||||
|
|
||||||
|
async load(): Promise<ReportInput> {
|
||||||
|
const result: ReportInput = {}
|
||||||
|
|
||||||
|
const resp = await this.octokit.actions.listWorkflowRunArtifacts({
|
||||||
|
...github.context.repo,
|
||||||
|
run_id: this.runId
|
||||||
|
})
|
||||||
|
|
||||||
|
if (resp.data.artifacts.length === 0) {
|
||||||
|
core.warning(`No artifacts found in run ${this.runId}`)
|
||||||
|
return {}
|
||||||
|
}
|
||||||
|
|
||||||
|
const artifacts = resp.data.artifacts.filter(a => this.artifactNameMatch(a.name))
|
||||||
|
if (artifacts.length === 0) {
|
||||||
|
core.warning(`No artifact matches ${this.artifact}`)
|
||||||
|
return {}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const art of artifacts) {
|
||||||
|
const fileName = `${art.name}.zip`
|
||||||
|
await downloadArtifact(this.octokit, art.id, fileName, this.token)
|
||||||
|
core.startGroup(`Reading archive ${fileName}`)
|
||||||
|
try {
|
||||||
|
const reportName = this.getReportName(art.name)
|
||||||
|
core.info(`Report name: ${reportName}`)
|
||||||
|
const files: FileContent[] = []
|
||||||
|
const zip = new Zip(fileName)
|
||||||
|
for (const entry of zip.getEntries()) {
|
||||||
|
const file = entry.entryName
|
||||||
|
if (entry.isDirectory) {
|
||||||
|
core.info(`Skipping ${file}: entry is a directory`)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if (!this.fileNameMatch(file)) {
|
||||||
|
core.info(`Skipping ${file}: filename does not match pattern`)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
const content = zip.readAsText(entry)
|
||||||
|
files.push({file, content})
|
||||||
|
core.info(`Read ${file}: ${content.length} chars`)
|
||||||
|
}
|
||||||
|
if (result[reportName]) {
|
||||||
|
result[reportName].push(...files)
|
||||||
|
} else {
|
||||||
|
result[reportName] = files
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
core.endGroup()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
|
async listTrackedFiles(): Promise<string[]> {
|
||||||
|
return listFiles(this.octokit, this.sha)
|
||||||
|
}
|
||||||
|
}
|
||||||
13
src/input-providers/input-provider.ts
Normal file
13
src/input-providers/input-provider.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
export interface ReportInput {
|
||||||
|
[reportName: string]: FileContent[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface FileContent {
|
||||||
|
file: string
|
||||||
|
content: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface InputProvider {
|
||||||
|
load(): Promise<ReportInput>
|
||||||
|
listTrackedFiles(): Promise<string[]>
|
||||||
|
}
|
||||||
25
src/input-providers/local-file-provider.ts
Normal file
25
src/input-providers/local-file-provider.ts
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
import * as fs from 'fs'
|
||||||
|
import glob from 'fast-glob'
|
||||||
|
import {FileContent, InputProvider, ReportInput} from './input-provider'
|
||||||
|
import {listFiles} from '../utils/git'
|
||||||
|
|
||||||
|
export class LocalFileProvider implements InputProvider {
|
||||||
|
constructor(readonly name: string, readonly pattern: string[]) {}
|
||||||
|
|
||||||
|
async load(): Promise<ReportInput> {
|
||||||
|
const result: FileContent[] = []
|
||||||
|
for (const pat of this.pattern) {
|
||||||
|
const paths = await glob(pat, {dot: true})
|
||||||
|
for (const file of paths) {
|
||||||
|
const content = await fs.promises.readFile(file, {encoding: 'utf8'})
|
||||||
|
result.push({file, content})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {[this.name]: result}
|
||||||
|
}
|
||||||
|
|
||||||
|
async listTrackedFiles(): Promise<string[]> {
|
||||||
|
return listFiles()
|
||||||
|
}
|
||||||
|
}
|
||||||
290
src/main.ts
290
src/main.ts
@@ -1,8 +1,10 @@
|
|||||||
import * as core from '@actions/core'
|
import * as core from '@actions/core'
|
||||||
import * as github from '@actions/github'
|
import * as github from '@actions/github'
|
||||||
import * as fs from 'fs'
|
import {GitHub} from '@actions/github/lib/utils'
|
||||||
import glob from 'fast-glob'
|
|
||||||
|
|
||||||
|
import {ArtifactProvider} from './input-providers/artifact-provider'
|
||||||
|
import {LocalFileProvider} from './input-providers/local-file-provider'
|
||||||
|
import {FileContent} from './input-providers/input-provider'
|
||||||
import {ParseOptions, TestParser} from './test-parser'
|
import {ParseOptions, TestParser} from './test-parser'
|
||||||
import {TestRunResult} from './test-results'
|
import {TestRunResult} from './test-results'
|
||||||
import {getAnnotations} from './report/get-annotations'
|
import {getAnnotations} from './report/get-annotations'
|
||||||
@@ -10,143 +12,187 @@ import {getReport} from './report/get-report'
|
|||||||
|
|
||||||
import {DartJsonParser} from './parsers/dart-json/dart-json-parser'
|
import {DartJsonParser} from './parsers/dart-json/dart-json-parser'
|
||||||
import {DotnetTrxParser} from './parsers/dotnet-trx/dotnet-trx-parser'
|
import {DotnetTrxParser} from './parsers/dotnet-trx/dotnet-trx-parser'
|
||||||
|
import {JavaJunitParser} from './parsers/java-junit/java-junit-parser'
|
||||||
import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser'
|
import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser'
|
||||||
|
|
||||||
import {normalizeDirPath} from './utils/file-utils'
|
import {normalizeDirPath} from './utils/path-utils'
|
||||||
import {listFiles} from './utils/git'
|
import {getCheckRunContext} from './utils/github-utils'
|
||||||
import {getCheckRunSha} from './utils/github-utils'
|
|
||||||
import {Icon} from './utils/markdown-utils'
|
import {Icon} from './utils/markdown-utils'
|
||||||
|
|
||||||
async function run(): Promise<void> {
|
async function main(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
await main()
|
const testReporter = new TestReporter()
|
||||||
|
await testReporter.run()
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.setFailed(error.message)
|
core.setFailed(error.message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function main(): Promise<void> {
|
class TestReporter {
|
||||||
const name = core.getInput('name', {required: true})
|
readonly artifact = core.getInput('artifact', {required: false})
|
||||||
const path = core.getInput('path', {required: true})
|
readonly name = core.getInput('name', {required: true})
|
||||||
const reporter = core.getInput('reporter', {required: true})
|
readonly path = core.getInput('path', {required: true})
|
||||||
const listSuites = core.getInput('list-suites', {required: true})
|
readonly reporter = core.getInput('reporter', {required: true})
|
||||||
const listTests = core.getInput('list-tests', {required: true})
|
readonly listSuites = core.getInput('list-suites', {required: true}) as 'all' | 'failed'
|
||||||
const maxAnnotations = parseInt(core.getInput('max-annotations', {required: true}))
|
readonly listTests = core.getInput('list-tests', {required: true}) as 'all' | 'failed' | 'none'
|
||||||
const failOnError = core.getInput('fail-on-error', {required: true}) === 'true'
|
readonly maxAnnotations = parseInt(core.getInput('max-annotations', {required: true}))
|
||||||
const workDirInput = core.getInput('working-directory', {required: false})
|
readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true'
|
||||||
const token = core.getInput('token', {required: true})
|
readonly workDirInput = core.getInput('working-directory', {required: false})
|
||||||
|
readonly token = core.getInput('token', {required: true})
|
||||||
|
readonly octokit: InstanceType<typeof GitHub>
|
||||||
|
readonly context = getCheckRunContext()
|
||||||
|
|
||||||
if (listSuites !== 'all' && listSuites !== 'failed') {
|
constructor() {
|
||||||
core.setFailed(`Input parameter 'list-suites' has invalid value`)
|
this.octokit = github.getOctokit(this.token)
|
||||||
return
|
|
||||||
|
if (this.listSuites !== 'all' && this.listSuites !== 'failed') {
|
||||||
|
core.setFailed(`Input parameter 'list-suites' has invalid value`)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.listTests !== 'all' && this.listTests !== 'failed' && this.listTests !== 'none') {
|
||||||
|
core.setFailed(`Input parameter 'list-tests' has invalid value`)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isNaN(this.maxAnnotations) || this.maxAnnotations < 0 || this.maxAnnotations > 50) {
|
||||||
|
core.setFailed(`Input parameter 'max-annotations' has invalid value`)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (listTests !== 'all' && listTests !== 'failed' && listTests !== 'none') {
|
async run(): Promise<void> {
|
||||||
core.setFailed(`Input parameter 'list-tests' has invalid value`)
|
if (this.workDirInput) {
|
||||||
return
|
core.info(`Changing directory to '${this.workDirInput}'`)
|
||||||
|
process.chdir(this.workDirInput)
|
||||||
|
}
|
||||||
|
|
||||||
|
core.info(`Check runs will be created with SHA=${this.context.sha}`)
|
||||||
|
|
||||||
|
const pattern = this.path.split(',')
|
||||||
|
const inputProvider = this.artifact
|
||||||
|
? new ArtifactProvider(
|
||||||
|
this.octokit,
|
||||||
|
this.artifact,
|
||||||
|
this.name,
|
||||||
|
pattern,
|
||||||
|
this.context.sha,
|
||||||
|
this.context.runId,
|
||||||
|
this.token
|
||||||
|
)
|
||||||
|
: new LocalFileProvider(this.name, pattern)
|
||||||
|
|
||||||
|
const parseErrors = this.maxAnnotations > 0
|
||||||
|
const trackedFiles = await inputProvider.listTrackedFiles()
|
||||||
|
const workDir = this.artifact ? undefined : normalizeDirPath(process.cwd(), true)
|
||||||
|
|
||||||
|
core.info(`Found ${trackedFiles.length} files tracked by GitHub`)
|
||||||
|
|
||||||
|
const options: ParseOptions = {
|
||||||
|
workDir,
|
||||||
|
trackedFiles,
|
||||||
|
parseErrors
|
||||||
|
}
|
||||||
|
|
||||||
|
core.info(`Using test report parser '${this.reporter}'`)
|
||||||
|
const parser = this.getParser(this.reporter, options)
|
||||||
|
|
||||||
|
const results: TestRunResult[] = []
|
||||||
|
const input = await inputProvider.load()
|
||||||
|
for (const [reportName, files] of Object.entries(input)) {
|
||||||
|
try {
|
||||||
|
core.startGroup(`Creating test report ${reportName}`)
|
||||||
|
const tr = await this.createReport(parser, reportName, files)
|
||||||
|
results.push(...tr)
|
||||||
|
} finally {
|
||||||
|
core.endGroup()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const isFailed = results.some(tr => tr.result === 'failed')
|
||||||
|
const conclusion = isFailed ? 'failure' : 'success'
|
||||||
|
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
||||||
|
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
|
||||||
|
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
||||||
|
const time = results.reduce((sum, tr) => sum + tr.time, 0)
|
||||||
|
|
||||||
|
core.setOutput('conclusion', conclusion)
|
||||||
|
core.setOutput('passed', passed)
|
||||||
|
core.setOutput('failed', failed)
|
||||||
|
core.setOutput('skipped', skipped)
|
||||||
|
core.setOutput('time', time)
|
||||||
|
|
||||||
|
if (this.failOnError && isFailed) {
|
||||||
|
core.setFailed(`Failed test were found and 'fail-on-error' option is set to ${this.failOnError}`)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (results.length === 0) {
|
||||||
|
core.setFailed(`No test report files were found`)
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isNaN(maxAnnotations) || maxAnnotations < 0 || maxAnnotations > 50) {
|
async createReport(parser: TestParser, name: string, files: FileContent[]): Promise<TestRunResult[]> {
|
||||||
core.setFailed(`Input parameter 'max-annotations' has invalid value`)
|
if (files.length === 0) {
|
||||||
return
|
core.warning(`No file matches path ${this.path}`)
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
|
||||||
|
const results: TestRunResult[] = []
|
||||||
|
for (const {file, content} of files) {
|
||||||
|
core.info(`Processing test results from ${file}`)
|
||||||
|
const tr = await parser.parse(file, content)
|
||||||
|
results.push(tr)
|
||||||
|
}
|
||||||
|
|
||||||
|
core.info('Creating report summary')
|
||||||
|
const {listSuites, listTests} = this
|
||||||
|
const summary = getReport(results, {listSuites, listTests})
|
||||||
|
|
||||||
|
core.info('Creating annotations')
|
||||||
|
const annotations = getAnnotations(results, this.maxAnnotations)
|
||||||
|
|
||||||
|
const isFailed = results.some(tr => tr.result === 'failed')
|
||||||
|
const conclusion = isFailed ? 'failure' : 'success'
|
||||||
|
const icon = isFailed ? Icon.fail : Icon.success
|
||||||
|
|
||||||
|
core.info(`Creating check run with conclusion ${conclusion}`)
|
||||||
|
const resp = await this.octokit.checks.create({
|
||||||
|
head_sha: this.context.sha,
|
||||||
|
name,
|
||||||
|
conclusion,
|
||||||
|
status: 'completed',
|
||||||
|
output: {
|
||||||
|
title: `${name} ${icon}`,
|
||||||
|
summary,
|
||||||
|
annotations
|
||||||
|
},
|
||||||
|
...github.context.repo
|
||||||
|
})
|
||||||
|
core.info(`Check run create response: ${resp.status}`)
|
||||||
|
core.info(`Check run URL: ${resp.data.url}`)
|
||||||
|
core.info(`Check run HTML: ${resp.data.html_url}`)
|
||||||
|
|
||||||
|
return results
|
||||||
}
|
}
|
||||||
|
|
||||||
if (workDirInput) {
|
getParser(reporter: string, options: ParseOptions): TestParser {
|
||||||
core.info(`Changing directory to '${workDirInput}'`)
|
switch (reporter) {
|
||||||
process.chdir(workDirInput)
|
case 'dart-json':
|
||||||
}
|
return new DartJsonParser(options, 'dart')
|
||||||
|
case 'dotnet-trx':
|
||||||
const workDir = normalizeDirPath(process.cwd(), true)
|
return new DotnetTrxParser(options)
|
||||||
core.info(`Using working-directory '${workDir}'`)
|
case 'flutter-json':
|
||||||
const octokit = github.getOctokit(token)
|
return new DartJsonParser(options, 'flutter')
|
||||||
const sha = getCheckRunSha()
|
case 'java-junit':
|
||||||
|
return new JavaJunitParser(options)
|
||||||
// We won't need tracked files if we are not going to create annotations
|
case 'jest-junit':
|
||||||
const parseErrors = maxAnnotations > 0
|
return new JestJunitParser(options)
|
||||||
const trackedFiles = parseErrors ? await listFiles() : []
|
default:
|
||||||
|
throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`)
|
||||||
const options: ParseOptions = {
|
}
|
||||||
trackedFiles,
|
|
||||||
workDir,
|
|
||||||
parseErrors
|
|
||||||
}
|
|
||||||
|
|
||||||
core.info(`Using test report parser '${reporter}'`)
|
|
||||||
const parser = getParser(reporter, options)
|
|
||||||
|
|
||||||
const files = await getFiles(path)
|
|
||||||
if (files.length === 0) {
|
|
||||||
core.setFailed(`No file matches path '${path}'`)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
const results: TestRunResult[] = []
|
|
||||||
for (const file of files) {
|
|
||||||
core.info(`Processing test report '${file}'`)
|
|
||||||
const content = await fs.promises.readFile(file, {encoding: 'utf8'})
|
|
||||||
const tr = await parser.parse(file, content)
|
|
||||||
results.push(tr)
|
|
||||||
}
|
|
||||||
|
|
||||||
core.info('Creating report summary')
|
|
||||||
const summary = getReport(results, {listSuites, listTests})
|
|
||||||
|
|
||||||
core.info('Creating annotations')
|
|
||||||
const annotations = getAnnotations(results, maxAnnotations)
|
|
||||||
|
|
||||||
const isFailed = results.some(tr => tr.result === 'failed')
|
|
||||||
const conclusion = isFailed ? 'failure' : 'success'
|
|
||||||
const icon = isFailed ? Icon.fail : Icon.success
|
|
||||||
|
|
||||||
core.info(`Creating check run '${name}' with conclusion '${conclusion}'`)
|
|
||||||
await octokit.checks.create({
|
|
||||||
head_sha: sha,
|
|
||||||
name,
|
|
||||||
conclusion,
|
|
||||||
status: 'completed',
|
|
||||||
output: {
|
|
||||||
title: `${name} ${icon}`,
|
|
||||||
summary,
|
|
||||||
annotations
|
|
||||||
},
|
|
||||||
...github.context.repo
|
|
||||||
})
|
|
||||||
|
|
||||||
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
|
||||||
const failed = results.reduce((sum, tr) => sum + tr.failed, 0)
|
|
||||||
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
|
||||||
const time = results.reduce((sum, tr) => sum + tr.time, 0)
|
|
||||||
|
|
||||||
core.setOutput('conclusion', conclusion)
|
|
||||||
core.setOutput('passed', passed)
|
|
||||||
core.setOutput('failed', failed)
|
|
||||||
core.setOutput('skipped', skipped)
|
|
||||||
core.setOutput('time', time)
|
|
||||||
|
|
||||||
if (failOnError && isFailed) {
|
|
||||||
core.setFailed(`Failed test has been found and 'fail-on-error' option is set to ${failOnError}`)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getParser(reporter: string, options: ParseOptions): TestParser {
|
main()
|
||||||
switch (reporter) {
|
|
||||||
case 'dart-json':
|
|
||||||
return new DartJsonParser(options, 'dart')
|
|
||||||
case 'dotnet-trx':
|
|
||||||
return new DotnetTrxParser(options)
|
|
||||||
case 'flutter-json':
|
|
||||||
return new DartJsonParser(options, 'flutter')
|
|
||||||
case 'jest-junit':
|
|
||||||
return new JestJunitParser(options)
|
|
||||||
default:
|
|
||||||
throw new Error(`Input variable 'reporter' is set to invalid value '${reporter}'`)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export async function getFiles(pattern: string): Promise<string[]> {
|
|
||||||
const tasks = pattern.split(',').map(async pat => glob(pat, {dot: true}))
|
|
||||||
const paths = await Promise.all(tasks)
|
|
||||||
return paths.flat()
|
|
||||||
}
|
|
||||||
|
|
||||||
run()
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import {ParseOptions, TestParser} from '../../test-parser'
|
import {ParseOptions, TestParser} from '../../test-parser'
|
||||||
|
|
||||||
import {normalizeFilePath} from '../../utils/file-utils'
|
import {getBasePath, normalizeFilePath} from '../../utils/path-utils'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
ReportEvent,
|
ReportEvent,
|
||||||
@@ -72,6 +72,8 @@ class TestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class DartJsonParser implements TestParser {
|
export class DartJsonParser implements TestParser {
|
||||||
|
assumedWorkDir: string | undefined
|
||||||
|
|
||||||
constructor(readonly options: ParseOptions, readonly sdk: 'dart' | 'flutter') {}
|
constructor(readonly options: ParseOptions, readonly sdk: 'dart' | 'flutter') {}
|
||||||
|
|
||||||
async parse(path: string, content: string): Promise<TestRunResult> {
|
async parse(path: string, content: string): Promise<TestRunResult> {
|
||||||
@@ -143,7 +145,11 @@ export class DartJsonParser implements TestParser {
|
|||||||
group.tests.sort((a, b) => (a.testStart.test.line ?? 0) - (b.testStart.test.line ?? 0))
|
group.tests.sort((a, b) => (a.testStart.test.line ?? 0) - (b.testStart.test.line ?? 0))
|
||||||
const tests = group.tests.map(tc => {
|
const tests = group.tests.map(tc => {
|
||||||
const error = this.getError(suite, tc)
|
const error = this.getError(suite, tc)
|
||||||
return new TestCaseResult(tc.testStart.test.name, tc.result, tc.time, error)
|
const testName =
|
||||||
|
group.group.name !== undefined && tc.testStart.test.name.startsWith(group.group.name)
|
||||||
|
? tc.testStart.test.name.slice(group.group.name.length).trim()
|
||||||
|
: tc.testStart.test.name.trim()
|
||||||
|
return new TestCaseResult(testName, tc.result, tc.time, error)
|
||||||
})
|
})
|
||||||
return new TestGroupResult(group.group.name, tests)
|
return new TestGroupResult(group.group.name, tests)
|
||||||
})
|
})
|
||||||
@@ -207,14 +213,24 @@ export class DartJsonParser implements TestParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private getRelativePath(path: string): string {
|
private getRelativePath(path: string): string {
|
||||||
const {workDir} = this.options
|
|
||||||
const prefix = 'file://'
|
const prefix = 'file://'
|
||||||
if (path.startsWith(prefix)) {
|
if (path.startsWith(prefix)) {
|
||||||
path = path.substr(prefix.length)
|
path = path.substr(prefix.length)
|
||||||
}
|
}
|
||||||
if (path.startsWith(workDir)) {
|
|
||||||
|
path = normalizeFilePath(path)
|
||||||
|
const workDir = this.getWorkDir(path)
|
||||||
|
if (workDir !== undefined && path.startsWith(workDir)) {
|
||||||
path = path.substr(workDir.length)
|
path = path.substr(workDir.length)
|
||||||
}
|
}
|
||||||
return normalizeFilePath(path)
|
return path
|
||||||
|
}
|
||||||
|
|
||||||
|
private getWorkDir(path: string): string | undefined {
|
||||||
|
return (
|
||||||
|
this.options.workDir ??
|
||||||
|
this.assumedWorkDir ??
|
||||||
|
(this.assumedWorkDir = getBasePath(path, this.options.trackedFiles))
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import {parseStringPromise} from 'xml2js'
|
|||||||
import {ErrorInfo, Outcome, TestMethod, TrxReport} from './dotnet-trx-types'
|
import {ErrorInfo, Outcome, TestMethod, TrxReport} from './dotnet-trx-types'
|
||||||
import {ParseOptions, TestParser} from '../../test-parser'
|
import {ParseOptions, TestParser} from '../../test-parser'
|
||||||
|
|
||||||
import {normalizeFilePath} from '../../utils/file-utils'
|
import {getBasePath, normalizeFilePath} from '../../utils/path-utils'
|
||||||
import {parseIsoDate, parseNetDuration} from '../../utils/parse-utils'
|
import {parseIsoDate, parseNetDuration} from '../../utils/parse-utils'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@@ -41,6 +41,8 @@ class Test {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class DotnetTrxParser implements TestParser {
|
export class DotnetTrxParser implements TestParser {
|
||||||
|
assumedWorkDir: string | undefined
|
||||||
|
|
||||||
constructor(readonly options: ParseOptions) {}
|
constructor(readonly options: ParseOptions) {}
|
||||||
|
|
||||||
async parse(path: string, content: string): Promise<TestRunResult> {
|
async parse(path: string, content: string): Promise<TestRunResult> {
|
||||||
@@ -59,6 +61,10 @@ export class DotnetTrxParser implements TestParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private getTestClasses(trx: TrxReport): TestClass[] {
|
private getTestClasses(trx: TrxReport): TestClass[] {
|
||||||
|
if (trx.TestRun.TestDefinitions === undefined || trx.TestRun.Results === undefined) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
|
||||||
const unitTests: {[id: string]: TestMethod} = {}
|
const unitTests: {[id: string]: TestMethod} = {}
|
||||||
for (const td of trx.TestRun.TestDefinitions) {
|
for (const td of trx.TestRun.TestDefinitions) {
|
||||||
for (const ut of td.UnitTest) {
|
for (const ut of td.UnitTest) {
|
||||||
@@ -80,7 +86,9 @@ export class DotnetTrxParser implements TestParser {
|
|||||||
}
|
}
|
||||||
const output = r.unitTestResult.Output
|
const output = r.unitTestResult.Output
|
||||||
const error = output?.length > 0 && output[0].ErrorInfo?.length > 0 ? output[0].ErrorInfo[0] : undefined
|
const error = output?.length > 0 && output[0].ErrorInfo?.length > 0 ? output[0].ErrorInfo[0] : undefined
|
||||||
const duration = parseNetDuration(r.unitTestResult.$.duration)
|
const durationAttr = r.unitTestResult.$.duration
|
||||||
|
const duration = durationAttr ? parseNetDuration(durationAttr) : 0
|
||||||
|
|
||||||
const test = new Test(r.testMethod.$.name, r.unitTestResult.$.outcome, duration, error)
|
const test = new Test(r.testMethod.$.name, r.unitTestResult.$.outcome, duration, error)
|
||||||
tc.tests.push(test)
|
tc.tests.push(test)
|
||||||
}
|
}
|
||||||
@@ -137,19 +145,30 @@ export class DotnetTrxParser implements TestParser {
|
|||||||
private exceptionThrowSource(stackTrace: string): {path: string; line: number} | undefined {
|
private exceptionThrowSource(stackTrace: string): {path: string; line: number} | undefined {
|
||||||
const lines = stackTrace.split(/\r*\n/)
|
const lines = stackTrace.split(/\r*\n/)
|
||||||
const re = / in (.+):line (\d+)$/
|
const re = / in (.+):line (\d+)$/
|
||||||
const {workDir, trackedFiles} = this.options
|
const {trackedFiles} = this.options
|
||||||
|
|
||||||
for (const str of lines) {
|
for (const str of lines) {
|
||||||
const match = str.match(re)
|
const match = str.match(re)
|
||||||
if (match !== null) {
|
if (match !== null) {
|
||||||
const [_, fileStr, lineStr] = match
|
const [_, fileStr, lineStr] = match
|
||||||
const filePath = normalizeFilePath(fileStr)
|
const filePath = normalizeFilePath(fileStr)
|
||||||
const file = filePath.startsWith(workDir) ? filePath.substr(workDir.length) : filePath
|
const workDir = this.getWorkDir(filePath)
|
||||||
if (trackedFiles.includes(file)) {
|
if (workDir) {
|
||||||
const line = parseInt(lineStr)
|
const file = filePath.substr(workDir.length)
|
||||||
return {path: file, line}
|
if (trackedFiles.includes(file)) {
|
||||||
|
const line = parseInt(lineStr)
|
||||||
|
return {path: file, line}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private getWorkDir(path: string): string | undefined {
|
||||||
|
return (
|
||||||
|
this.options.workDir ??
|
||||||
|
this.assumedWorkDir ??
|
||||||
|
(this.assumedWorkDir = getBasePath(path, this.options.trackedFiles))
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ export interface TrxReport {
|
|||||||
|
|
||||||
export interface TestRun {
|
export interface TestRun {
|
||||||
Times: Times[]
|
Times: Times[]
|
||||||
Results: Results[]
|
Results?: Results[]
|
||||||
TestDefinitions: TestDefinitions[]
|
TestDefinitions?: TestDefinitions[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Times {
|
export interface Times {
|
||||||
@@ -43,7 +43,7 @@ export interface UnitTestResult {
|
|||||||
$: {
|
$: {
|
||||||
testId: string
|
testId: string
|
||||||
testName: string
|
testName: string
|
||||||
duration: string
|
duration?: string
|
||||||
outcome: Outcome
|
outcome: Outcome
|
||||||
}
|
}
|
||||||
Output: Output[]
|
Output: Output[]
|
||||||
|
|||||||
199
src/parsers/java-junit/java-junit-parser.ts
Normal file
199
src/parsers/java-junit/java-junit-parser.ts
Normal file
@@ -0,0 +1,199 @@
|
|||||||
|
import * as path from 'path'
|
||||||
|
import {ParseOptions, TestParser} from '../../test-parser'
|
||||||
|
import {parseStringPromise} from 'xml2js'
|
||||||
|
|
||||||
|
import {JunitReport, SingleSuiteReport, TestCase, TestSuite} from './java-junit-types'
|
||||||
|
import {normalizeFilePath} from '../../utils/path-utils'
|
||||||
|
|
||||||
|
import {
|
||||||
|
TestExecutionResult,
|
||||||
|
TestRunResult,
|
||||||
|
TestSuiteResult,
|
||||||
|
TestGroupResult,
|
||||||
|
TestCaseResult,
|
||||||
|
TestCaseError
|
||||||
|
} from '../../test-results'
|
||||||
|
|
||||||
|
export class JavaJunitParser implements TestParser {
|
||||||
|
readonly trackedFiles: {[fileName: string]: string[]}
|
||||||
|
|
||||||
|
constructor(readonly options: ParseOptions) {
|
||||||
|
// Map to efficient lookup of all paths with given file name
|
||||||
|
this.trackedFiles = {}
|
||||||
|
for (const filePath of options.trackedFiles) {
|
||||||
|
const fileName = path.basename(filePath)
|
||||||
|
const files = this.trackedFiles[fileName] ?? (this.trackedFiles[fileName] = [])
|
||||||
|
files.push(normalizeFilePath(filePath))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async parse(filePath: string, content: string): Promise<TestRunResult> {
|
||||||
|
const reportOrSuite = await this.getJunitReport(filePath, content)
|
||||||
|
const isReport = (reportOrSuite as JunitReport).testsuites !== undefined
|
||||||
|
|
||||||
|
// XML might contain:
|
||||||
|
// - multiple suites under <testsuites> root node
|
||||||
|
// - single <testsuite> as root node
|
||||||
|
let ju: JunitReport
|
||||||
|
if (isReport) {
|
||||||
|
ju = reportOrSuite as JunitReport
|
||||||
|
} else {
|
||||||
|
// Make it behave the same way as if suite was inside <testsuites> root node
|
||||||
|
const suite = (reportOrSuite as SingleSuiteReport).testsuite
|
||||||
|
ju = {
|
||||||
|
testsuites: {
|
||||||
|
$: {time: suite.$.time},
|
||||||
|
testsuite: [suite]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return this.getTestRunResult(filePath, ju)
|
||||||
|
}
|
||||||
|
|
||||||
|
private async getJunitReport(filePath: string, content: string): Promise<JunitReport | SingleSuiteReport> {
|
||||||
|
try {
|
||||||
|
return await parseStringPromise(content)
|
||||||
|
} catch (e) {
|
||||||
|
throw new Error(`Invalid XML at ${filePath}\n\n${e}`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private getTestRunResult(filePath: string, junit: JunitReport): TestRunResult {
|
||||||
|
const suites =
|
||||||
|
junit.testsuites.testsuite === undefined
|
||||||
|
? []
|
||||||
|
: junit.testsuites.testsuite.map(ts => {
|
||||||
|
const name = ts.$.name.trim()
|
||||||
|
const time = parseFloat(ts.$.time) * 1000
|
||||||
|
const sr = new TestSuiteResult(name, this.getGroups(ts), time)
|
||||||
|
return sr
|
||||||
|
})
|
||||||
|
|
||||||
|
const time = parseFloat(junit.testsuites.$.time) * 1000
|
||||||
|
return new TestRunResult(filePath, suites, time)
|
||||||
|
}
|
||||||
|
|
||||||
|
private getGroups(suite: TestSuite): TestGroupResult[] {
|
||||||
|
if (suite.testcase === undefined) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
|
|
||||||
|
const groups: {name: string; tests: TestCase[]}[] = []
|
||||||
|
for (const tc of suite.testcase) {
|
||||||
|
// Normally classname is same as suite name - both refer to same Java class
|
||||||
|
// Therefore it doesn't make sense to process it as a group
|
||||||
|
// and tests will be added to default group with empty name
|
||||||
|
const className = tc.$.classname === suite.$.name ? '' : tc.$.classname
|
||||||
|
let grp = groups.find(g => g.name === className)
|
||||||
|
if (grp === undefined) {
|
||||||
|
grp = {name: className, tests: []}
|
||||||
|
groups.push(grp)
|
||||||
|
}
|
||||||
|
grp.tests.push(tc)
|
||||||
|
}
|
||||||
|
|
||||||
|
return groups.map(grp => {
|
||||||
|
const tests = grp.tests.map(tc => {
|
||||||
|
const name = tc.$.name.trim()
|
||||||
|
const result = this.getTestCaseResult(tc)
|
||||||
|
const time = parseFloat(tc.$.time) * 1000
|
||||||
|
const error = this.getTestCaseError(tc)
|
||||||
|
return new TestCaseResult(name, result, time, error)
|
||||||
|
})
|
||||||
|
return new TestGroupResult(grp.name, tests)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
private getTestCaseResult(test: TestCase): TestExecutionResult {
|
||||||
|
if (test.failure) return 'failed'
|
||||||
|
if (test.skipped) return 'skipped'
|
||||||
|
return 'success'
|
||||||
|
}
|
||||||
|
|
||||||
|
private getTestCaseError(tc: TestCase): TestCaseError | undefined {
|
||||||
|
if (!this.options.parseErrors || !tc.failure) {
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
const failure = tc.failure[0]
|
||||||
|
const details = failure._
|
||||||
|
let filePath
|
||||||
|
let line
|
||||||
|
|
||||||
|
const src = this.exceptionThrowSource(details)
|
||||||
|
if (src) {
|
||||||
|
filePath = src.filePath
|
||||||
|
line = src.line
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
path: filePath,
|
||||||
|
line,
|
||||||
|
details,
|
||||||
|
message: failure.message
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private exceptionThrowSource(stackTrace: string): {filePath: string; line: number} | undefined {
|
||||||
|
const lines = stackTrace.split(/\r?\n/)
|
||||||
|
const re = /^at (.*)\((.*):(\d+)\)$/
|
||||||
|
|
||||||
|
for (const str of lines) {
|
||||||
|
const match = str.match(re)
|
||||||
|
if (match !== null) {
|
||||||
|
const [_, tracePath, fileName, lineStr] = match
|
||||||
|
const filePath = this.getFilePath(tracePath, fileName)
|
||||||
|
if (filePath !== undefined) {
|
||||||
|
const line = parseInt(lineStr)
|
||||||
|
return {filePath, line}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Stacktrace in Java doesn't contain full paths to source file.
|
||||||
|
// There are only package, file name and line.
|
||||||
|
// Assuming folder structure matches package name (as it should in Java),
|
||||||
|
// we can try to match tracked file.
|
||||||
|
private getFilePath(tracePath: string, fileName: string): string | undefined {
|
||||||
|
// Check if there is any tracked file with given name
|
||||||
|
const files = this.trackedFiles[fileName]
|
||||||
|
if (files === undefined) {
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove class name and method name from trace.
|
||||||
|
// Take parts until first item with capital letter - package names are lowercase while class name is CamelCase.
|
||||||
|
const packageParts = tracePath.split(/\./g)
|
||||||
|
const packageIndex = packageParts.findIndex(part => part[0] <= 'Z')
|
||||||
|
if (packageIndex !== -1) {
|
||||||
|
packageParts.splice(packageIndex, packageParts.length - packageIndex)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (packageParts.length === 0) {
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get right file
|
||||||
|
// - file name matches
|
||||||
|
// - parent folders structure must reflect the package name
|
||||||
|
for (const filePath of files) {
|
||||||
|
const dirs = path.dirname(filePath).split(/\//g)
|
||||||
|
if (packageParts.length > dirs.length) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
// get only N parent folders, where N = length of package name parts
|
||||||
|
if (dirs.length > packageParts.length) {
|
||||||
|
dirs.splice(0, dirs.length - packageParts.length)
|
||||||
|
}
|
||||||
|
// check if parent folder structure matches package name
|
||||||
|
const isMatch = packageParts.every((part, i) => part === dirs[i])
|
||||||
|
if (isMatch) {
|
||||||
|
return filePath
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
}
|
||||||
44
src/parsers/java-junit/java-junit-types.ts
Normal file
44
src/parsers/java-junit/java-junit-types.ts
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
export interface JunitReport {
|
||||||
|
testsuites: TestSuites
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface SingleSuiteReport {
|
||||||
|
testsuite: TestSuite
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TestSuites {
|
||||||
|
$: {
|
||||||
|
time: string
|
||||||
|
}
|
||||||
|
testsuite?: TestSuite[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TestSuite {
|
||||||
|
$: {
|
||||||
|
name: string
|
||||||
|
tests: string
|
||||||
|
errors: string
|
||||||
|
failures: string
|
||||||
|
skipped: string
|
||||||
|
time: string
|
||||||
|
timestamp?: Date
|
||||||
|
}
|
||||||
|
testcase: TestCase[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TestCase {
|
||||||
|
$: {
|
||||||
|
classname: string
|
||||||
|
file?: string
|
||||||
|
name: string
|
||||||
|
time: string
|
||||||
|
}
|
||||||
|
failure?: Failure[]
|
||||||
|
skipped?: string[]
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Failure {
|
||||||
|
_: string
|
||||||
|
type: string
|
||||||
|
message: string
|
||||||
|
}
|
||||||
@@ -2,7 +2,7 @@ import {ParseOptions, TestParser} from '../../test-parser'
|
|||||||
import {parseStringPromise} from 'xml2js'
|
import {parseStringPromise} from 'xml2js'
|
||||||
|
|
||||||
import {JunitReport, TestCase, TestSuite} from './jest-junit-types'
|
import {JunitReport, TestCase, TestSuite} from './jest-junit-types'
|
||||||
import {normalizeFilePath} from '../../utils/file-utils'
|
import {getBasePath, normalizeFilePath} from '../../utils/path-utils'
|
||||||
|
|
||||||
import {
|
import {
|
||||||
TestExecutionResult,
|
TestExecutionResult,
|
||||||
@@ -14,6 +14,8 @@ import {
|
|||||||
} from '../../test-results'
|
} from '../../test-results'
|
||||||
|
|
||||||
export class JestJunitParser implements TestParser {
|
export class JestJunitParser implements TestParser {
|
||||||
|
assumedWorkDir: string | undefined
|
||||||
|
|
||||||
constructor(readonly options: ParseOptions) {}
|
constructor(readonly options: ParseOptions) {}
|
||||||
|
|
||||||
async parse(path: string, content: string): Promise<TestRunResult> {
|
async parse(path: string, content: string): Promise<TestRunResult> {
|
||||||
@@ -30,12 +32,15 @@ export class JestJunitParser implements TestParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private getTestRunResult(path: string, junit: JunitReport): TestRunResult {
|
private getTestRunResult(path: string, junit: JunitReport): TestRunResult {
|
||||||
const suites = junit.testsuites.testsuite.map(ts => {
|
const suites =
|
||||||
const name = ts.$.name.trim()
|
junit.testsuites.testsuite === undefined
|
||||||
const time = parseFloat(ts.$.time) * 1000
|
? []
|
||||||
const sr = new TestSuiteResult(name, this.getGroups(ts), time)
|
: junit.testsuites.testsuite.map(ts => {
|
||||||
return sr
|
const name = ts.$.name.trim()
|
||||||
})
|
const time = parseFloat(ts.$.time) * 1000
|
||||||
|
const sr = new TestSuiteResult(name, this.getGroups(ts), time)
|
||||||
|
return sr
|
||||||
|
})
|
||||||
|
|
||||||
const time = parseFloat(junit.testsuites.$.time) * 1000
|
const time = parseFloat(junit.testsuites.$.time) * 1000
|
||||||
return new TestRunResult(path, suites, time)
|
return new TestRunResult(path, suites, time)
|
||||||
@@ -96,13 +101,20 @@ export class JestJunitParser implements TestParser {
|
|||||||
const lines = stackTrace.split(/\r?\n/)
|
const lines = stackTrace.split(/\r?\n/)
|
||||||
const re = /\((.*):(\d+):\d+\)$/
|
const re = /\((.*):(\d+):\d+\)$/
|
||||||
|
|
||||||
const {workDir, trackedFiles} = this.options
|
const {trackedFiles} = this.options
|
||||||
for (const str of lines) {
|
for (const str of lines) {
|
||||||
const match = str.match(re)
|
const match = str.match(re)
|
||||||
if (match !== null) {
|
if (match !== null) {
|
||||||
const [_, fileStr, lineStr] = match
|
const [_, fileStr, lineStr] = match
|
||||||
const filePath = normalizeFilePath(fileStr)
|
const filePath = normalizeFilePath(fileStr)
|
||||||
const path = filePath.startsWith(workDir) ? filePath.substr(workDir.length) : filePath
|
if (filePath.startsWith('internal/') || filePath.includes('/node_modules/')) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
const workDir = this.getWorkDir(filePath)
|
||||||
|
if (!workDir) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
const path = filePath.substr(workDir.length)
|
||||||
if (trackedFiles.includes(path)) {
|
if (trackedFiles.includes(path)) {
|
||||||
const line = parseInt(lineStr)
|
const line = parseInt(lineStr)
|
||||||
|
|
||||||
@@ -111,4 +123,12 @@ export class JestJunitParser implements TestParser {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private getWorkDir(path: string): string | undefined {
|
||||||
|
return (
|
||||||
|
this.options.workDir ??
|
||||||
|
this.assumedWorkDir ??
|
||||||
|
(this.assumedWorkDir = getBasePath(path, this.options.trackedFiles))
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,13 +4,9 @@ export interface JunitReport {
|
|||||||
|
|
||||||
export interface TestSuites {
|
export interface TestSuites {
|
||||||
$: {
|
$: {
|
||||||
name: string
|
|
||||||
tests: string
|
|
||||||
failures: string // assertion failed
|
|
||||||
errors: string // unhandled exception during test execution
|
|
||||||
time: string
|
time: string
|
||||||
}
|
}
|
||||||
testsuite: TestSuite[]
|
testsuite?: TestSuite[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface TestSuite {
|
export interface TestSuite {
|
||||||
|
|||||||
@@ -4,38 +4,58 @@ import {Align, formatTime, Icon, link, table} from '../utils/markdown-utils'
|
|||||||
import {slug} from '../utils/slugger'
|
import {slug} from '../utils/slugger'
|
||||||
|
|
||||||
export interface ReportOptions {
|
export interface ReportOptions {
|
||||||
listSuites?: 'all' | 'failed'
|
listSuites: 'all' | 'failed'
|
||||||
listTests?: 'all' | 'failed' | 'none'
|
listTests: 'all' | 'failed' | 'none'
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getReport(results: TestRunResult[], options: ReportOptions = {}): string {
|
const defaultOptions: ReportOptions = {
|
||||||
|
listSuites: 'all',
|
||||||
|
listTests: 'all'
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getReport(results: TestRunResult[], options: ReportOptions = defaultOptions): string {
|
||||||
core.info('Generating check run summary')
|
core.info('Generating check run summary')
|
||||||
|
|
||||||
const maxReportLength = 65535
|
const maxReportLength = 65535
|
||||||
const sections: string[] = []
|
|
||||||
|
|
||||||
applySort(results)
|
applySort(results)
|
||||||
|
|
||||||
const badge = getReportBadge(results)
|
const opts = {...options}
|
||||||
sections.push(badge)
|
let report = renderReport(results, opts)
|
||||||
|
if (getByteLength(report) <= maxReportLength) {
|
||||||
const runs = getTestRunsReport(results, options)
|
return report
|
||||||
sections.push(...runs)
|
|
||||||
|
|
||||||
const report = sections.join('\n')
|
|
||||||
if (report.length > maxReportLength) {
|
|
||||||
let msg = `**Check Run summary limit of ${maxReportLength} chars was exceed**`
|
|
||||||
if (options.listTests !== 'all') {
|
|
||||||
msg += '\n- Consider setting `list-tests` option to `only-failed` or `none`'
|
|
||||||
}
|
|
||||||
if (options.listSuites !== 'all') {
|
|
||||||
msg += '\n- Consider setting `list-suites` option to `only-failed`'
|
|
||||||
}
|
|
||||||
|
|
||||||
return `${badge}\n${msg}`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return report
|
if (opts.listTests === 'all') {
|
||||||
|
core.info("Test report summary is too big - setting 'listTests' to 'failed'")
|
||||||
|
opts.listTests = 'failed'
|
||||||
|
report = renderReport(results, opts)
|
||||||
|
if (getByteLength(report) <= maxReportLength) {
|
||||||
|
return report
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.listSuites === 'all') {
|
||||||
|
core.info("Test report summary is too big - setting 'listSuites' to 'failed'")
|
||||||
|
opts.listSuites = 'failed'
|
||||||
|
report = renderReport(results, opts)
|
||||||
|
if (getByteLength(report) <= maxReportLength) {
|
||||||
|
return report
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (opts.listTests !== 'none') {
|
||||||
|
core.info("Test report summary is too big - setting 'listTests' to 'none'")
|
||||||
|
opts.listTests = 'none'
|
||||||
|
report = renderReport(results, opts)
|
||||||
|
if (getByteLength(report) <= maxReportLength) {
|
||||||
|
return report
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
core.warning(`Test report summary exceeded limit of ${maxReportLength} bytes`)
|
||||||
|
const badge = getReportBadge(results)
|
||||||
|
const msg = `**Test report summary exceeded limit of ${maxReportLength} bytes and was removed**`
|
||||||
|
return `${badge}\n${msg}`
|
||||||
}
|
}
|
||||||
|
|
||||||
function applySort(results: TestRunResult[]): void {
|
function applySort(results: TestRunResult[]): void {
|
||||||
@@ -45,6 +65,21 @@ function applySort(results: TestRunResult[]): void {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getByteLength(text: string): number {
|
||||||
|
return Buffer.byteLength(text, 'utf8')
|
||||||
|
}
|
||||||
|
|
||||||
|
function renderReport(results: TestRunResult[], options: ReportOptions): string {
|
||||||
|
const sections: string[] = []
|
||||||
|
const badge = getReportBadge(results)
|
||||||
|
sections.push(badge)
|
||||||
|
|
||||||
|
const runs = getTestRunsReport(results, options)
|
||||||
|
sections.push(...runs)
|
||||||
|
|
||||||
|
return sections.join('\n')
|
||||||
|
}
|
||||||
|
|
||||||
function getReportBadge(results: TestRunResult[]): string {
|
function getReportBadge(results: TestRunResult[]): string {
|
||||||
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
const passed = results.reduce((sum, tr) => sum + tr.passed, 0)
|
||||||
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
const skipped = results.reduce((sum, tr) => sum + tr.skipped, 0)
|
||||||
@@ -113,7 +148,10 @@ function getSuitesReport(tr: TestRunResult, runIndex: number, options: ReportOpt
|
|||||||
sections.push(`## ${nameLink} ${icon}`)
|
sections.push(`## ${nameLink} ${icon}`)
|
||||||
|
|
||||||
const time = formatTime(tr.time)
|
const time = formatTime(tr.time)
|
||||||
const headingLine2 = `**${tr.tests}** tests were completed in **${time}** with **${tr.passed}** passed, **${tr.failed}** failed and **${tr.skipped}** skipped.`
|
const headingLine2 =
|
||||||
|
tr.tests > 0
|
||||||
|
? `**${tr.tests}** tests were completed in **${time}** with **${tr.passed}** passed, **${tr.failed}** failed and **${tr.skipped}** skipped.`
|
||||||
|
: 'No tests found'
|
||||||
sections.push(headingLine2)
|
sections.push(headingLine2)
|
||||||
|
|
||||||
const suites = options.listSuites === 'failed' ? tr.failedSuites : tr.suites
|
const suites = options.listSuites === 'failed' ? tr.failedSuites : tr.suites
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import {TestRunResult} from './test-results'
|
|||||||
|
|
||||||
export interface ParseOptions {
|
export interface ParseOptions {
|
||||||
parseErrors: boolean
|
parseErrors: boolean
|
||||||
workDir: string
|
workDir?: string
|
||||||
trackedFiles: string[]
|
trackedFiles: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
export function normalizeDirPath(path: string, addTrailingSlash: boolean): string {
|
|
||||||
if (!path) {
|
|
||||||
return path
|
|
||||||
}
|
|
||||||
|
|
||||||
path = normalizeFilePath(path)
|
|
||||||
if (addTrailingSlash && !path.endsWith('/')) {
|
|
||||||
path += '/'
|
|
||||||
}
|
|
||||||
return path
|
|
||||||
}
|
|
||||||
|
|
||||||
export function normalizeFilePath(path: string): string {
|
|
||||||
if (!path) {
|
|
||||||
return path
|
|
||||||
}
|
|
||||||
|
|
||||||
return path.trim().replace(/\\/g, '/')
|
|
||||||
}
|
|
||||||
@@ -1,11 +1,130 @@
|
|||||||
|
import {createWriteStream} from 'fs'
|
||||||
|
import * as core from '@actions/core'
|
||||||
import * as github from '@actions/github'
|
import * as github from '@actions/github'
|
||||||
|
import {GitHub} from '@actions/github/lib/utils'
|
||||||
import {EventPayloads} from '@octokit/webhooks'
|
import {EventPayloads} from '@octokit/webhooks'
|
||||||
|
import * as stream from 'stream'
|
||||||
|
import {promisify} from 'util'
|
||||||
|
import got from 'got'
|
||||||
|
const asyncStream = promisify(stream.pipeline)
|
||||||
|
|
||||||
export function getCheckRunSha(): string {
|
export function getCheckRunContext(): {sha: string; runId: number} {
|
||||||
if (github.context.payload.pull_request) {
|
if (github.context.eventName === 'workflow_run') {
|
||||||
const pr = github.context.payload.pull_request as EventPayloads.WebhookPayloadPullRequestPullRequest
|
core.info('Action was triggered by workflow_run: using SHA and RUN_ID from triggering workflow')
|
||||||
return pr.head.sha
|
const event = github.context.payload as EventPayloads.WebhookPayloadWorkflowRun
|
||||||
|
if (!event.workflow_run) {
|
||||||
|
throw new Error("Event of type 'workflow_run' is missing 'workflow_run' field")
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
sha: event.workflow_run.head_commit.id,
|
||||||
|
runId: event.workflow_run.id
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return github.context.sha
|
const runId = github.context.runId
|
||||||
|
if (github.context.payload.pull_request) {
|
||||||
|
core.info(`Action was triggered by ${github.context.eventName}: using SHA from head of source branch`)
|
||||||
|
const pr = github.context.payload.pull_request as EventPayloads.WebhookPayloadPullRequestPullRequest
|
||||||
|
return {sha: pr.head.sha, runId}
|
||||||
|
}
|
||||||
|
|
||||||
|
return {sha: github.context.sha, runId}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function downloadArtifact(
|
||||||
|
octokit: InstanceType<typeof GitHub>,
|
||||||
|
artifactId: number,
|
||||||
|
fileName: string,
|
||||||
|
token: string
|
||||||
|
): Promise<void> {
|
||||||
|
core.startGroup(`Downloading artifact ${fileName}`)
|
||||||
|
try {
|
||||||
|
core.info(`Artifact ID: ${artifactId}`)
|
||||||
|
|
||||||
|
const req = octokit.actions.downloadArtifact.endpoint({
|
||||||
|
...github.context.repo,
|
||||||
|
artifact_id: artifactId,
|
||||||
|
archive_format: 'zip'
|
||||||
|
})
|
||||||
|
|
||||||
|
const headers = {
|
||||||
|
Authorization: `Bearer ${token}`
|
||||||
|
}
|
||||||
|
const resp = await got(req.url, {
|
||||||
|
headers,
|
||||||
|
followRedirect: false
|
||||||
|
})
|
||||||
|
|
||||||
|
core.info(`Fetch artifact URL: ${resp.statusCode} ${resp.statusMessage}`)
|
||||||
|
if (resp.statusCode !== 302) {
|
||||||
|
throw new Error('Fetch artifact URL failed: received unexpected status code')
|
||||||
|
}
|
||||||
|
|
||||||
|
const url = resp.headers.location
|
||||||
|
if (url === undefined) {
|
||||||
|
const receivedHeaders = Object.keys(resp.headers)
|
||||||
|
core.info(`Received headers: ${receivedHeaders.join(', ')}`)
|
||||||
|
throw new Error('Location header was not found in API response')
|
||||||
|
}
|
||||||
|
if (typeof url !== 'string') {
|
||||||
|
throw new Error(`Location header has unexpected value: ${url}`)
|
||||||
|
}
|
||||||
|
|
||||||
|
const downloadStream = got.stream(url, {headers})
|
||||||
|
const fileWriterStream = createWriteStream(fileName)
|
||||||
|
|
||||||
|
core.info(`Downloading ${url}`)
|
||||||
|
downloadStream.on('downloadProgress', ({transferred}) => {
|
||||||
|
core.info(`Progress: ${transferred} B`)
|
||||||
|
})
|
||||||
|
await asyncStream(downloadStream, fileWriterStream)
|
||||||
|
} finally {
|
||||||
|
core.endGroup()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function listFiles(octokit: InstanceType<typeof GitHub>, sha: string): Promise<string[]> {
|
||||||
|
core.startGroup('Fetching list of tracked files from GitHub')
|
||||||
|
try {
|
||||||
|
const commit = await octokit.git.getCommit({
|
||||||
|
commit_sha: sha,
|
||||||
|
...github.context.repo
|
||||||
|
})
|
||||||
|
const files = await listGitTree(octokit, commit.data.tree.sha, '')
|
||||||
|
return files
|
||||||
|
} finally {
|
||||||
|
core.endGroup()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function listGitTree(octokit: InstanceType<typeof GitHub>, sha: string, path: string): Promise<string[]> {
|
||||||
|
const pathLog = path ? ` at ${path}` : ''
|
||||||
|
core.info(`Fetching tree ${sha}${pathLog}`)
|
||||||
|
let truncated = false
|
||||||
|
let tree = await octokit.git.getTree({
|
||||||
|
recursive: 'true',
|
||||||
|
tree_sha: sha,
|
||||||
|
...github.context.repo
|
||||||
|
})
|
||||||
|
|
||||||
|
if (tree.data.truncated) {
|
||||||
|
truncated = true
|
||||||
|
tree = await octokit.git.getTree({
|
||||||
|
tree_sha: sha,
|
||||||
|
...github.context.repo
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const result: string[] = []
|
||||||
|
for (const tr of tree.data.tree) {
|
||||||
|
const file = `${path}${tr.path}`
|
||||||
|
if (tr.type === 'blob') {
|
||||||
|
result.push(file)
|
||||||
|
} else if (tr.type === 'tree' && truncated) {
|
||||||
|
const files = await listGitTree(octokit, tr.sha, `${file}/`)
|
||||||
|
result.push(...files)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return result
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
export function parseNetDuration(str: string): number {
|
export function parseNetDuration(str: string): number {
|
||||||
// matches dotnet duration: 00:00:00.0010000
|
const durationRe = /^(\d\d):(\d\d):(\d\d(?:\.\d+)?)$/
|
||||||
const durationRe = /^(\d\d):(\d\d):(\d\d\.\d+)$/
|
|
||||||
const durationMatch = str.match(durationRe)
|
const durationMatch = str.match(durationRe)
|
||||||
if (durationMatch === null) {
|
if (durationMatch === null) {
|
||||||
throw new Error(`Invalid format: "${str}" is not NET duration`)
|
throw new Error(`Invalid format: "${str}" is not NET duration`)
|
||||||
|
|||||||
39
src/utils/path-utils.ts
Normal file
39
src/utils/path-utils.ts
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
export function normalizeDirPath(path: string, addTrailingSlash: boolean): string {
|
||||||
|
if (!path) {
|
||||||
|
return path
|
||||||
|
}
|
||||||
|
|
||||||
|
path = normalizeFilePath(path)
|
||||||
|
if (addTrailingSlash && !path.endsWith('/')) {
|
||||||
|
path += '/'
|
||||||
|
}
|
||||||
|
return path
|
||||||
|
}
|
||||||
|
|
||||||
|
export function normalizeFilePath(path: string): string {
|
||||||
|
if (!path) {
|
||||||
|
return path
|
||||||
|
}
|
||||||
|
|
||||||
|
return path.trim().replace(/\\/g, '/')
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getBasePath(path: string, trackedFiles: string[]): string | undefined {
|
||||||
|
if (trackedFiles.includes(path)) {
|
||||||
|
return ''
|
||||||
|
}
|
||||||
|
|
||||||
|
let max = ''
|
||||||
|
for (const file of trackedFiles) {
|
||||||
|
if (path.endsWith(file) && file.length > max.length) {
|
||||||
|
max = file
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (max === '') {
|
||||||
|
return undefined
|
||||||
|
}
|
||||||
|
|
||||||
|
const base = path.substr(0, path.length - max.length)
|
||||||
|
return base
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user