mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-02 03:15:22 -08:00
Compare commits
27 Commits
v2.0.0
...
release/v2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
53f5051dfe | ||
|
|
d6ff56a60a | ||
|
|
b0baeedf4a | ||
|
|
ebe4a9b005 | ||
|
|
4a3cfcde80 | ||
|
|
84bcb5d437 | ||
|
|
a8c55a3654 | ||
|
|
a0398fb7dd | ||
|
|
34f1c566ff | ||
|
|
7745ff0ec1 | ||
|
|
d33ca7294f | ||
|
|
29aefa7a46 | ||
|
|
f1fa471229 | ||
|
|
0f47a5bec1 | ||
|
|
2b2d091d3d | ||
|
|
0840d7c281 | ||
|
|
0841c8130e | ||
|
|
d1bf678c89 | ||
|
|
5b44774702 | ||
|
|
ef7793576a | ||
|
|
2acf6c2ccd | ||
|
|
8b055ac247 | ||
|
|
bb9fb75efb | ||
|
|
596aee5d4e | ||
|
|
d609194929 | ||
|
|
8039983cdb | ||
|
|
314ef1dd49 |
@@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2.1.0
|
||||||
|
* Feature: Add summary title https://github.com/dorny/test-reporter/pull/568
|
||||||
|
* Feature: Add Golang test parser https://github.com/dorny/test-reporter/pull/571
|
||||||
|
* Increase step summary limit to 1MiB https://github.com/dorny/test-reporter/pull/581
|
||||||
|
* Fix for empty TRX TestDefinitions https://github.com/dorny/test-reporter/pull/582
|
||||||
|
* Fix input description for list options https://github.com/dorny/test-reporter/pull/572
|
||||||
|
* Update npm packages https://github.com/dorny/test-reporter/pull/583
|
||||||
|
|
||||||
## 2.0.0
|
## 2.0.0
|
||||||
* Parse JUnit report with detailed message in failure https://github.com/dorny/test-reporter/pull/559
|
* Parse JUnit report with detailed message in failure https://github.com/dorny/test-reporter/pull/559
|
||||||
* Support displaying test results in markdown using GitHub Actions Job Summaries https://github.com/dorny/test-reporter/pull/383
|
* Support displaying test results in markdown using GitHub Actions Job Summaries https://github.com/dorny/test-reporter/pull/383
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -16,6 +16,7 @@ This [Github Action](https://github.com/features/actions) displays test results
|
|||||||
- .NET / [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples) ( [xUnit](https://xunit.net/) / [NUnit](https://nunit.org/) / [MSTest](https://github.com/Microsoft/testfx-docs) )
|
- .NET / [dotnet test](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-test#examples) ( [xUnit](https://xunit.net/) / [NUnit](https://nunit.org/) / [MSTest](https://github.com/Microsoft/testfx-docs) )
|
||||||
- Dart / [test](https://pub.dev/packages/test)
|
- Dart / [test](https://pub.dev/packages/test)
|
||||||
- Flutter / [test](https://pub.dev/packages/test)
|
- Flutter / [test](https://pub.dev/packages/test)
|
||||||
|
- Go / [go test](https://pkg.go.dev/testing)
|
||||||
- Java / [JUnit](https://junit.org/)
|
- Java / [JUnit](https://junit.org/)
|
||||||
- JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/)
|
- JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/)
|
||||||
- Swift / xUnit
|
- Swift / xUnit
|
||||||
@@ -140,6 +141,7 @@ jobs:
|
|||||||
# dotnet-nunit
|
# dotnet-nunit
|
||||||
# dotnet-trx
|
# dotnet-trx
|
||||||
# flutter-json
|
# flutter-json
|
||||||
|
# golang-json
|
||||||
# java-junit
|
# java-junit
|
||||||
# jest-junit
|
# jest-junit
|
||||||
# mocha-json
|
# mocha-json
|
||||||
@@ -154,6 +156,11 @@ jobs:
|
|||||||
# Allows you to generate reports for Actions Summary
|
# Allows you to generate reports for Actions Summary
|
||||||
# https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/
|
# https://github.blog/2022-05-09-supercharging-github-actions-with-job-summaries/
|
||||||
use-actions-summary: 'true'
|
use-actions-summary: 'true'
|
||||||
|
|
||||||
|
# Optionally specify a title (Heading level 1) for the report. Leading and trailing whitespace are ignored.
|
||||||
|
# This is useful for separating your test report from other sections in the build summary.
|
||||||
|
# If omitted or set to whitespace/empty, no title will be printed.
|
||||||
|
report-title: ''
|
||||||
|
|
||||||
# Customize the title of badges shown for each Actions Summary.
|
# Customize the title of badges shown for each Actions Summary.
|
||||||
# Useful when distinguish summaries for tests ran in multiple Actions steps.
|
# Useful when distinguish summaries for tests ran in multiple Actions steps.
|
||||||
@@ -273,6 +280,13 @@ For more information see:
|
|||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary>golang-json</summary>
|
||||||
|
|
||||||
|
You must use the `-json` flag and output the results to a file (ex: `go test -json > testresults.json`)
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>java-junit (Experimental)</summary>
|
<summary>java-junit (Experimental)</summary>
|
||||||
|
|
||||||
@@ -345,7 +359,7 @@ Support for Swift test results in xUnit format is experimental - should work but
|
|||||||
|
|
||||||
Unfortunately, there are some known issues and limitations caused by GitHub API:
|
Unfortunately, there are some known issues and limitations caused by GitHub API:
|
||||||
|
|
||||||
- Test report (i.e. Check Run summary) is markdown text. No custom styling or HTML is possible.
|
- Test report (i.e. build summary) is Markdown text. No custom styling or HTML is possible.
|
||||||
- Maximum report size is 65535 bytes. Input parameters `list-suites` and `list-tests` will be automatically adjusted if max size is exceeded.
|
- Maximum report size is 65535 bytes. Input parameters `list-suites` and `list-tests` will be automatically adjusted if max size is exceeded.
|
||||||
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v4` to upload them and inspect them manually.
|
- Test report can't reference any additional files (e.g. screenshots). You can use `actions/upload-artifact@v4` to upload them and inspect them manually.
|
||||||
- Check Runs are created for specific commit SHA. It's not possible to specify under which workflow test report should belong if more
|
- Check Runs are created for specific commit SHA. It's not possible to specify under which workflow test report should belong if more
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/dart-json.json|1 ✅|4 ❌|1 ⚪|4s|
|
|fixtures/dart-json.json|1 ✅|4 ❌|1 ⚪|4s|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/dart-json.json</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dart-json.json</a>
|
||||||
**6** tests were completed in **4s** with **1** passed, **4** failed and **1** skipped.
|
**6** tests were completed in **4s** with **1** passed, **4** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test/main_test.dart](#r0s0)|1 ✅|3 ❌||74ms|
|
|[test/main_test.dart](#user-content-r0s0)|1 ✅|3 ❌||74ms|
|
||||||
|[test/second_test.dart](#r0s1)||1 ❌|1 ⚪|51ms|
|
|[test/second_test.dart](#user-content-r0s1)||1 ❌|1 ⚪|51ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">test/main_test.dart</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">test/main_test.dart</a>
|
||||||
```
|
```
|
||||||
Test 1
|
Test 1
|
||||||
✅ Passing test
|
✅ Passing test
|
||||||
@@ -23,7 +23,7 @@ Test 2
|
|||||||
❌ Exception in test
|
❌ Exception in test
|
||||||
Exception: Some error
|
Exception: Some error
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s1" href="#r0s1">test/second_test.dart</a>
|
### ❌ <a id="user-content-r0s1" href="#user-content-r0s1">test/second_test.dart</a>
|
||||||
```
|
```
|
||||||
❌ Timeout test
|
❌ Timeout test
|
||||||
TimeoutException after 0:00:00.000001: Test timed out after 0 seconds.
|
TimeoutException after 0:00:00.000001: Test timed out after 0 seconds.
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/dotnet-nunit.xml|3 ✅|5 ❌|1 ⚪|230ms|
|
|fixtures/dotnet-nunit.xml|3 ✅|5 ❌|1 ⚪|230ms|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/dotnet-nunit.xml</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dotnet-nunit.xml</a>
|
||||||
**9** tests were completed in **230ms** with **3** passed, **5** failed and **1** skipped.
|
**9** tests were completed in **230ms** with **3** passed, **5** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[DotnetTests.NUnitV3Tests.dll.DotnetTests.XUnitTests](#r0s0)|3 ✅|5 ❌|1 ⚪|69ms|
|
|[DotnetTests.NUnitV3Tests.dll.DotnetTests.XUnitTests](#user-content-r0s0)|3 ✅|5 ❌|1 ⚪|69ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">DotnetTests.NUnitV3Tests.dll.DotnetTests.XUnitTests</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">DotnetTests.NUnitV3Tests.dll.DotnetTests.XUnitTests</a>
|
||||||
```
|
```
|
||||||
CalculatorTests
|
CalculatorTests
|
||||||
✅ Is_Even_Number(2)
|
✅ Is_Even_Number(2)
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/dotnet-trx.trx|5 ✅|5 ❌|1 ⚪|1s|
|
|fixtures/dotnet-trx.trx|5 ✅|5 ❌|1 ⚪|1s|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/dotnet-trx.trx</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/dotnet-trx.trx</a>
|
||||||
**11** tests were completed in **1s** with **5** passed, **5** failed and **1** skipped.
|
**11** tests were completed in **1s** with **5** passed, **5** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[DotnetTests.XUnitTests.CalculatorTests](#r0s0)|5 ✅|5 ❌|1 ⚪|118ms|
|
|[DotnetTests.XUnitTests.CalculatorTests](#user-content-r0s0)|5 ✅|5 ❌|1 ⚪|118ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">DotnetTests.XUnitTests.CalculatorTests</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">DotnetTests.XUnitTests.CalculatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Custom Name
|
✅ Custom Name
|
||||||
❌ Exception_In_TargetTest
|
❌ Exception_In_TargetTest
|
||||||
|
|||||||
@@ -4,73 +4,73 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/external/FluentValidation.Tests.trx|803 ✅||1 ⚪|4s|
|
|fixtures/external/FluentValidation.Tests.trx|803 ✅||1 ⚪|4s|
|
||||||
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/FluentValidation.Tests.trx</a>
|
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/external/FluentValidation.Tests.trx</a>
|
||||||
**804** tests were completed in **4s** with **803** passed, **0** failed and **1** skipped.
|
**804** tests were completed in **4s** with **803** passed, **0** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[FluentValidation.Tests.AbstractValidatorTester](#r0s0)|35 ✅|||12ms|
|
|[FluentValidation.Tests.AbstractValidatorTester](#user-content-r0s0)|35 ✅|||12ms|
|
||||||
|[FluentValidation.Tests.AccessorCacheTests](#r0s1)|4 ✅||1 ⚪|4ms|
|
|[FluentValidation.Tests.AccessorCacheTests](#user-content-r0s1)|4 ✅||1 ⚪|4ms|
|
||||||
|[FluentValidation.Tests.AssemblyScannerTester](#r0s2)|2 ✅|||2ms|
|
|[FluentValidation.Tests.AssemblyScannerTester](#user-content-r0s2)|2 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.CascadingFailuresTester](#r0s3)|38 ✅|||23ms|
|
|[FluentValidation.Tests.CascadingFailuresTester](#user-content-r0s3)|38 ✅|||23ms|
|
||||||
|[FluentValidation.Tests.ChainedValidationTester](#r0s4)|13 ✅|||6ms|
|
|[FluentValidation.Tests.ChainedValidationTester](#user-content-r0s4)|13 ✅|||6ms|
|
||||||
|[FluentValidation.Tests.ChainingValidatorsTester](#r0s5)|3 ✅|||1ms|
|
|[FluentValidation.Tests.ChainingValidatorsTester](#user-content-r0s5)|3 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.ChildRulesTests](#r0s6)|2 ✅|||7ms|
|
|[FluentValidation.Tests.ChildRulesTests](#user-content-r0s6)|2 ✅|||7ms|
|
||||||
|[FluentValidation.Tests.CollectionValidatorWithParentTests](#r0s7)|16 ✅|||13ms|
|
|[FluentValidation.Tests.CollectionValidatorWithParentTests](#user-content-r0s7)|16 ✅|||13ms|
|
||||||
|[FluentValidation.Tests.ComplexValidationTester](#r0s8)|17 ✅|||26ms|
|
|[FluentValidation.Tests.ComplexValidationTester](#user-content-r0s8)|17 ✅|||26ms|
|
||||||
|[FluentValidation.Tests.ConditionTests](#r0s9)|18 ✅|||9ms|
|
|[FluentValidation.Tests.ConditionTests](#user-content-r0s9)|18 ✅|||9ms|
|
||||||
|[FluentValidation.Tests.CreditCardValidatorTests](#r0s10)|2 ✅|||2ms|
|
|[FluentValidation.Tests.CreditCardValidatorTests](#user-content-r0s10)|2 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.CustomFailureActionTester](#r0s11)|3 ✅|||1ms|
|
|[FluentValidation.Tests.CustomFailureActionTester](#user-content-r0s11)|3 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.CustomMessageFormatTester](#r0s12)|6 ✅|||3ms|
|
|[FluentValidation.Tests.CustomMessageFormatTester](#user-content-r0s12)|6 ✅|||3ms|
|
||||||
|[FluentValidation.Tests.CustomValidatorTester](#r0s13)|10 ✅|||6ms|
|
|[FluentValidation.Tests.CustomValidatorTester](#user-content-r0s13)|10 ✅|||6ms|
|
||||||
|[FluentValidation.Tests.DefaultValidatorExtensionTester](#r0s14)|30 ✅|||38ms|
|
|[FluentValidation.Tests.DefaultValidatorExtensionTester](#user-content-r0s14)|30 ✅|||38ms|
|
||||||
|[FluentValidation.Tests.EmailValidatorTests](#r0s15)|36 ✅|||18ms|
|
|[FluentValidation.Tests.EmailValidatorTests](#user-content-r0s15)|36 ✅|||18ms|
|
||||||
|[FluentValidation.Tests.EmptyTester](#r0s16)|9 ✅|||5ms|
|
|[FluentValidation.Tests.EmptyTester](#user-content-r0s16)|9 ✅|||5ms|
|
||||||
|[FluentValidation.Tests.EnumValidatorTests](#r0s17)|12 ✅|||24ms|
|
|[FluentValidation.Tests.EnumValidatorTests](#user-content-r0s17)|12 ✅|||24ms|
|
||||||
|[FluentValidation.Tests.EqualValidatorTests](#r0s18)|10 ✅|||3ms|
|
|[FluentValidation.Tests.EqualValidatorTests](#user-content-r0s18)|10 ✅|||3ms|
|
||||||
|[FluentValidation.Tests.ExactLengthValidatorTester](#r0s19)|6 ✅|||2ms|
|
|[FluentValidation.Tests.ExactLengthValidatorTester](#user-content-r0s19)|6 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.ExclusiveBetweenValidatorTests](#r0s20)|19 ✅|||6ms|
|
|[FluentValidation.Tests.ExclusiveBetweenValidatorTests](#user-content-r0s20)|19 ✅|||6ms|
|
||||||
|[FluentValidation.Tests.ExtensionTester](#r0s21)|4 ✅|||1ms|
|
|[FluentValidation.Tests.ExtensionTester](#user-content-r0s21)|4 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.ForEachRuleTests](#r0s22)|34 ✅|||47ms|
|
|[FluentValidation.Tests.ForEachRuleTests](#user-content-r0s22)|34 ✅|||47ms|
|
||||||
|[FluentValidation.Tests.GreaterThanOrEqualToValidatorTester](#r0s23)|14 ✅|||5ms|
|
|[FluentValidation.Tests.GreaterThanOrEqualToValidatorTester](#user-content-r0s23)|14 ✅|||5ms|
|
||||||
|[FluentValidation.Tests.GreaterThanValidatorTester](#r0s24)|13 ✅|||4ms|
|
|[FluentValidation.Tests.GreaterThanValidatorTester](#user-content-r0s24)|13 ✅|||4ms|
|
||||||
|[FluentValidation.Tests.InclusiveBetweenValidatorTests](#r0s25)|18 ✅|||4ms|
|
|[FluentValidation.Tests.InclusiveBetweenValidatorTests](#user-content-r0s25)|18 ✅|||4ms|
|
||||||
|[FluentValidation.Tests.InheritanceValidatorTest](#r0s26)|11 ✅|||18ms|
|
|[FluentValidation.Tests.InheritanceValidatorTest](#user-content-r0s26)|11 ✅|||18ms|
|
||||||
|[FluentValidation.Tests.InlineValidatorTester](#r0s27)|1 ✅|||2ms|
|
|[FluentValidation.Tests.InlineValidatorTester](#user-content-r0s27)|1 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.LanguageManagerTests](#r0s28)|21 ✅|||28ms|
|
|[FluentValidation.Tests.LanguageManagerTests](#user-content-r0s28)|21 ✅|||28ms|
|
||||||
|[FluentValidation.Tests.LengthValidatorTests](#r0s29)|16 ✅|||17ms|
|
|[FluentValidation.Tests.LengthValidatorTests](#user-content-r0s29)|16 ✅|||17ms|
|
||||||
|[FluentValidation.Tests.LessThanOrEqualToValidatorTester](#r0s30)|13 ✅|||4ms|
|
|[FluentValidation.Tests.LessThanOrEqualToValidatorTester](#user-content-r0s30)|13 ✅|||4ms|
|
||||||
|[FluentValidation.Tests.LessThanValidatorTester](#r0s31)|16 ✅|||6ms|
|
|[FluentValidation.Tests.LessThanValidatorTester](#user-content-r0s31)|16 ✅|||6ms|
|
||||||
|[FluentValidation.Tests.LocalisedMessagesTester](#r0s32)|6 ✅|||3ms|
|
|[FluentValidation.Tests.LocalisedMessagesTester](#user-content-r0s32)|6 ✅|||3ms|
|
||||||
|[FluentValidation.Tests.LocalisedNameTester](#r0s33)|2 ✅|||1ms|
|
|[FluentValidation.Tests.LocalisedNameTester](#user-content-r0s33)|2 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.MemberAccessorTests](#r0s34)|9 ✅|||5ms|
|
|[FluentValidation.Tests.MemberAccessorTests](#user-content-r0s34)|9 ✅|||5ms|
|
||||||
|[FluentValidation.Tests.MessageFormatterTests](#r0s35)|10 ✅|||2ms|
|
|[FluentValidation.Tests.MessageFormatterTests](#user-content-r0s35)|10 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.ModelLevelValidatorTests](#r0s36)|2 ✅|||1ms|
|
|[FluentValidation.Tests.ModelLevelValidatorTests](#user-content-r0s36)|2 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.NameResolutionPluggabilityTester](#r0s37)|3 ✅|||2ms|
|
|[FluentValidation.Tests.NameResolutionPluggabilityTester](#user-content-r0s37)|3 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.NotEmptyTester](#r0s38)|10 ✅|||7ms|
|
|[FluentValidation.Tests.NotEmptyTester](#user-content-r0s38)|10 ✅|||7ms|
|
||||||
|[FluentValidation.Tests.NotEqualValidatorTests](#r0s39)|11 ✅|||7ms|
|
|[FluentValidation.Tests.NotEqualValidatorTests](#user-content-r0s39)|11 ✅|||7ms|
|
||||||
|[FluentValidation.Tests.NotNullTester](#r0s40)|5 ✅|||1ms|
|
|[FluentValidation.Tests.NotNullTester](#user-content-r0s40)|5 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.NullTester](#r0s41)|5 ✅|||2ms|
|
|[FluentValidation.Tests.NullTester](#user-content-r0s41)|5 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.OnFailureTests](#r0s42)|10 ✅|||8ms|
|
|[FluentValidation.Tests.OnFailureTests](#user-content-r0s42)|10 ✅|||8ms|
|
||||||
|[FluentValidation.Tests.PredicateValidatorTester](#r0s43)|5 ✅|||2ms|
|
|[FluentValidation.Tests.PredicateValidatorTester](#user-content-r0s43)|5 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.PropertyChainTests](#r0s44)|7 ✅|||1ms|
|
|[FluentValidation.Tests.PropertyChainTests](#user-content-r0s44)|7 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.RegularExpressionValidatorTests](#r0s45)|15 ✅|||6ms|
|
|[FluentValidation.Tests.RegularExpressionValidatorTests](#user-content-r0s45)|15 ✅|||6ms|
|
||||||
|[FluentValidation.Tests.RuleBuilderTests](#r0s46)|29 ✅|||96ms|
|
|[FluentValidation.Tests.RuleBuilderTests](#user-content-r0s46)|29 ✅|||96ms|
|
||||||
|[FluentValidation.Tests.RuleDependencyTests](#r0s47)|14 ✅|||3s|
|
|[FluentValidation.Tests.RuleDependencyTests](#user-content-r0s47)|14 ✅|||3s|
|
||||||
|[FluentValidation.Tests.RulesetTests](#r0s48)|21 ✅|||14ms|
|
|[FluentValidation.Tests.RulesetTests](#user-content-r0s48)|21 ✅|||14ms|
|
||||||
|[FluentValidation.Tests.ScalePrecisionValidatorTests](#r0s49)|6 ✅|||4ms|
|
|[FluentValidation.Tests.ScalePrecisionValidatorTests](#user-content-r0s49)|6 ✅|||4ms|
|
||||||
|[FluentValidation.Tests.SharedConditionTests](#r0s50)|42 ✅|||42ms|
|
|[FluentValidation.Tests.SharedConditionTests](#user-content-r0s50)|42 ✅|||42ms|
|
||||||
|[FluentValidation.Tests.StandalonePropertyValidationTester](#r0s51)|1 ✅|||0ms|
|
|[FluentValidation.Tests.StandalonePropertyValidationTester](#user-content-r0s51)|1 ✅|||0ms|
|
||||||
|[FluentValidation.Tests.StringEnumValidatorTests](#r0s52)|10 ✅|||5ms|
|
|[FluentValidation.Tests.StringEnumValidatorTests](#user-content-r0s52)|10 ✅|||5ms|
|
||||||
|[FluentValidation.Tests.TrackingCollectionTests](#r0s53)|3 ✅|||2ms|
|
|[FluentValidation.Tests.TrackingCollectionTests](#user-content-r0s53)|3 ✅|||2ms|
|
||||||
|[FluentValidation.Tests.TransformTests](#r0s54)|4 ✅|||3ms|
|
|[FluentValidation.Tests.TransformTests](#user-content-r0s54)|4 ✅|||3ms|
|
||||||
|[FluentValidation.Tests.UserSeverityTester](#r0s55)|7 ✅|||3ms|
|
|[FluentValidation.Tests.UserSeverityTester](#user-content-r0s55)|7 ✅|||3ms|
|
||||||
|[FluentValidation.Tests.UserStateTester](#r0s56)|4 ✅|||3ms|
|
|[FluentValidation.Tests.UserStateTester](#user-content-r0s56)|4 ✅|||3ms|
|
||||||
|[FluentValidation.Tests.ValidateAndThrowTester](#r0s57)|14 ✅|||25ms|
|
|[FluentValidation.Tests.ValidateAndThrowTester](#user-content-r0s57)|14 ✅|||25ms|
|
||||||
|[FluentValidation.Tests.ValidationResultTests](#r0s58)|8 ✅|||8ms|
|
|[FluentValidation.Tests.ValidationResultTests](#user-content-r0s58)|8 ✅|||8ms|
|
||||||
|[FluentValidation.Tests.ValidatorDescriptorTester](#r0s59)|5 ✅|||1ms|
|
|[FluentValidation.Tests.ValidatorDescriptorTester](#user-content-r0s59)|5 ✅|||1ms|
|
||||||
|[FluentValidation.Tests.ValidatorSelectorTests](#r0s60)|10 ✅|||9ms|
|
|[FluentValidation.Tests.ValidatorSelectorTests](#user-content-r0s60)|10 ✅|||9ms|
|
||||||
|[FluentValidation.Tests.ValidatorTesterTester](#r0s61)|73 ✅|||74ms|
|
|[FluentValidation.Tests.ValidatorTesterTester](#user-content-r0s61)|73 ✅|||74ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#r0s0">FluentValidation.Tests.AbstractValidatorTester</a>
|
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">FluentValidation.Tests.AbstractValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_replace_default_errorcode_resolver
|
✅ Can_replace_default_errorcode_resolver
|
||||||
✅ CanValidateInstancesOfType_returns_false_when_comparing_against_some_other_type
|
✅ CanValidateInstancesOfType_returns_false_when_comparing_against_some_other_type
|
||||||
@@ -108,7 +108,7 @@
|
|||||||
✅ WithName_should_override_field_name
|
✅ WithName_should_override_field_name
|
||||||
✅ WithName_should_override_field_name_with_value_from_other_property
|
✅ WithName_should_override_field_name_with_value_from_other_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s1" href="#r0s1">FluentValidation.Tests.AccessorCacheTests</a>
|
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">FluentValidation.Tests.AccessorCacheTests</a>
|
||||||
```
|
```
|
||||||
⚪ Benchmark
|
⚪ Benchmark
|
||||||
✅ Equality_comparison_check
|
✅ Equality_comparison_check
|
||||||
@@ -116,12 +116,12 @@
|
|||||||
✅ Gets_member_for_nested_property
|
✅ Gets_member_for_nested_property
|
||||||
✅ Identifies_if_memberexp_acts_on_model_instance
|
✅ Identifies_if_memberexp_acts_on_model_instance
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s2" href="#r0s2">FluentValidation.Tests.AssemblyScannerTester</a>
|
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">FluentValidation.Tests.AssemblyScannerTester</a>
|
||||||
```
|
```
|
||||||
✅ Finds_validators_for_types
|
✅ Finds_validators_for_types
|
||||||
✅ ForEach_iterates_over_types
|
✅ ForEach_iterates_over_types
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s3" href="#r0s3">FluentValidation.Tests.CascadingFailuresTester</a>
|
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">FluentValidation.Tests.CascadingFailuresTester</a>
|
||||||
```
|
```
|
||||||
✅ Cascade_mode_can_be_set_after_validator_instantiated
|
✅ Cascade_mode_can_be_set_after_validator_instantiated
|
||||||
✅ Cascade_mode_can_be_set_after_validator_instantiated_async
|
✅ Cascade_mode_can_be_set_after_validator_instantiated_async
|
||||||
@@ -162,7 +162,7 @@
|
|||||||
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_async_legacy
|
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_async_legacy
|
||||||
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_legacy
|
✅ Validation_stops_on_first_failure_when_set_to_StopOnFirstFailure_at_validator_level_legacy
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s4" href="#r0s4">FluentValidation.Tests.ChainedValidationTester</a>
|
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">FluentValidation.Tests.ChainedValidationTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_validate_using_validator_for_base_type
|
✅ Can_validate_using_validator_for_base_type
|
||||||
✅ Chained_property_should_be_excluded
|
✅ Chained_property_should_be_excluded
|
||||||
@@ -178,18 +178,18 @@
|
|||||||
✅ Uses_explicit_ruleset
|
✅ Uses_explicit_ruleset
|
||||||
✅ Validates_chained_property
|
✅ Validates_chained_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s5" href="#r0s5">FluentValidation.Tests.ChainingValidatorsTester</a>
|
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">FluentValidation.Tests.ChainingValidatorsTester</a>
|
||||||
```
|
```
|
||||||
✅ Options_should_only_apply_to_current_validator
|
✅ Options_should_only_apply_to_current_validator
|
||||||
✅ Should_create_multiple_validators
|
✅ Should_create_multiple_validators
|
||||||
✅ Should_execute_multiple_validators
|
✅ Should_execute_multiple_validators
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s6" href="#r0s6">FluentValidation.Tests.ChildRulesTests</a>
|
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">FluentValidation.Tests.ChildRulesTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_define_nested_rules_for_collection
|
✅ Can_define_nested_rules_for_collection
|
||||||
✅ ChildRules_works_with_RuleSet
|
✅ ChildRules_works_with_RuleSet
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s7" href="#r0s7">FluentValidation.Tests.CollectionValidatorWithParentTests</a>
|
### ✅ <a id="user-content-r0s7" href="#user-content-r0s7">FluentValidation.Tests.CollectionValidatorWithParentTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_should_work_with_child_collection
|
✅ Async_condition_should_work_with_child_collection
|
||||||
✅ Can_specify_condition_for_individual_collection_elements
|
✅ Can_specify_condition_for_individual_collection_elements
|
||||||
@@ -208,7 +208,7 @@
|
|||||||
✅ Validates_collection_several_levels_deep
|
✅ Validates_collection_several_levels_deep
|
||||||
✅ Validates_collection_several_levels_deep_async
|
✅ Validates_collection_several_levels_deep_async
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s8" href="#r0s8">FluentValidation.Tests.ComplexValidationTester</a>
|
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">FluentValidation.Tests.ComplexValidationTester</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_should_work_with_complex_property
|
✅ Async_condition_should_work_with_complex_property
|
||||||
✅ Async_condition_should_work_with_complex_property_when_validator_invoked_synchronously
|
✅ Async_condition_should_work_with_complex_property_when_validator_invoked_synchronously
|
||||||
@@ -228,7 +228,7 @@
|
|||||||
✅ Validates_child_validator_synchronously
|
✅ Validates_child_validator_synchronously
|
||||||
✅ Validates_complex_property
|
✅ Validates_complex_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s9" href="#r0s9">FluentValidation.Tests.ConditionTests</a>
|
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">FluentValidation.Tests.ConditionTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_executed_synchronosuly_with_asynchronous_collection_rule
|
✅ Async_condition_executed_synchronosuly_with_asynchronous_collection_rule
|
||||||
✅ Async_condition_executed_synchronosuly_with_asynchronous_rule
|
✅ Async_condition_executed_synchronosuly_with_asynchronous_rule
|
||||||
@@ -249,18 +249,18 @@
|
|||||||
✅ Validation_should_succeed_when_condition_does_not_match
|
✅ Validation_should_succeed_when_condition_does_not_match
|
||||||
✅ Validation_should_succeed_when_condition_matches
|
✅ Validation_should_succeed_when_condition_matches
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s10" href="#r0s10">FluentValidation.Tests.CreditCardValidatorTests</a>
|
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">FluentValidation.Tests.CreditCardValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ IsValidTests
|
✅ IsValidTests
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s11" href="#r0s11">FluentValidation.Tests.CustomFailureActionTester</a>
|
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">FluentValidation.Tests.CustomFailureActionTester</a>
|
||||||
```
|
```
|
||||||
✅ Does_not_invoke_action_if_validation_success
|
✅ Does_not_invoke_action_if_validation_success
|
||||||
✅ Invokes_custom_action_on_failure
|
✅ Invokes_custom_action_on_failure
|
||||||
✅ Passes_object_being_validated_to_action
|
✅ Passes_object_being_validated_to_action
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s12" href="#r0s12">FluentValidation.Tests.CustomMessageFormatTester</a>
|
### ✅ <a id="user-content-r0s12" href="#user-content-r0s12">FluentValidation.Tests.CustomMessageFormatTester</a>
|
||||||
```
|
```
|
||||||
✅ Replaces_propertyvalue_placeholder
|
✅ Replaces_propertyvalue_placeholder
|
||||||
✅ Replaces_propertyvalue_with_empty_string_when_null
|
✅ Replaces_propertyvalue_with_empty_string_when_null
|
||||||
@@ -269,7 +269,7 @@
|
|||||||
✅ Uses_custom_delegate_for_building_message_only_for_specific_validator
|
✅ Uses_custom_delegate_for_building_message_only_for_specific_validator
|
||||||
✅ Uses_property_value_in_message
|
✅ Uses_property_value_in_message
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s13" href="#r0s13">FluentValidation.Tests.CustomValidatorTester</a>
|
### ✅ <a id="user-content-r0s13" href="#user-content-r0s13">FluentValidation.Tests.CustomValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ New_Custom_Returns_single_failure
|
✅ New_Custom_Returns_single_failure
|
||||||
✅ New_Custom_Returns_single_failure_async
|
✅ New_Custom_Returns_single_failure_async
|
||||||
@@ -282,7 +282,7 @@
|
|||||||
✅ Runs_async_rule_synchronously_when_validator_invoked_synchronously
|
✅ Runs_async_rule_synchronously_when_validator_invoked_synchronously
|
||||||
✅ Runs_sync_rule_asynchronously_when_validator_invoked_asynchronously
|
✅ Runs_sync_rule_asynchronously_when_validator_invoked_asynchronously
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s14" href="#r0s14">FluentValidation.Tests.DefaultValidatorExtensionTester</a>
|
### ✅ <a id="user-content-r0s14" href="#user-content-r0s14">FluentValidation.Tests.DefaultValidatorExtensionTester</a>
|
||||||
```
|
```
|
||||||
✅ Empty_should_create_EmptyValidator
|
✅ Empty_should_create_EmptyValidator
|
||||||
✅ Equal_should_create_EqualValidator_with_explicit_value
|
✅ Equal_should_create_EqualValidator_with_explicit_value
|
||||||
@@ -315,7 +315,7 @@
|
|||||||
✅ ScalePrecision_should_create_ScalePrecisionValidator
|
✅ ScalePrecision_should_create_ScalePrecisionValidator
|
||||||
✅ ScalePrecision_should_create_ScalePrecisionValidator_with_ignore_trailing_zeros
|
✅ ScalePrecision_should_create_ScalePrecisionValidator_with_ignore_trailing_zeros
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s15" href="#r0s15">FluentValidation.Tests.EmailValidatorTests</a>
|
### ✅ <a id="user-content-r0s15" href="#user-content-r0s15">FluentValidation.Tests.EmailValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Fails_email_validation_aspnetcore_compatible(email: " \r \t \n")
|
✅ Fails_email_validation_aspnetcore_compatible(email: " \r \t \n")
|
||||||
✅ Fails_email_validation_aspnetcore_compatible(email: "")
|
✅ Fails_email_validation_aspnetcore_compatible(email: "")
|
||||||
@@ -354,7 +354,7 @@
|
|||||||
✅ Valid_email_addresses_regex(email: "testperson+label@gmail.com")
|
✅ Valid_email_addresses_regex(email: "testperson+label@gmail.com")
|
||||||
✅ Valid_email_addresses_regex(email: null)
|
✅ Valid_email_addresses_regex(email: null)
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s16" href="#r0s16">FluentValidation.Tests.EmptyTester</a>
|
### ✅ <a id="user-content-r0s16" href="#user-content-r0s16">FluentValidation.Tests.EmptyTester</a>
|
||||||
```
|
```
|
||||||
✅ Passes_for_ienumerable_that_doesnt_implement_ICollection
|
✅ Passes_for_ienumerable_that_doesnt_implement_ICollection
|
||||||
✅ Passes_when_collection_empty
|
✅ Passes_when_collection_empty
|
||||||
@@ -366,7 +366,7 @@
|
|||||||
✅ When_value_is_null_validator_should_pass
|
✅ When_value_is_null_validator_should_pass
|
||||||
✅ When_value_is_whitespace_validation_should_pass
|
✅ When_value_is_whitespace_validation_should_pass
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s17" href="#r0s17">FluentValidation.Tests.EnumValidatorTests</a>
|
### ✅ <a id="user-content-r0s17" href="#user-content-r0s17">FluentValidation.Tests.EnumValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Flags_enum_invalid_when_using_outofrange_negative_value
|
✅ Flags_enum_invalid_when_using_outofrange_negative_value
|
||||||
✅ Flags_enum_invalid_when_using_outofrange_positive_value
|
✅ Flags_enum_invalid_when_using_outofrange_positive_value
|
||||||
@@ -381,7 +381,7 @@
|
|||||||
✅ When_the_enum_is_not_initialized_with_valid_value_then_the_validator_should_fail
|
✅ When_the_enum_is_not_initialized_with_valid_value_then_the_validator_should_fail
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s18" href="#r0s18">FluentValidation.Tests.EqualValidatorTests</a>
|
### ✅ <a id="user-content-r0s18" href="#user-content-r0s18">FluentValidation.Tests.EqualValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Should_store_comparison_type
|
✅ Should_store_comparison_type
|
||||||
@@ -394,7 +394,7 @@
|
|||||||
✅ When_the_objects_are_not_equal_validation_should_fail
|
✅ When_the_objects_are_not_equal_validation_should_fail
|
||||||
✅ When_validation_fails_the_error_should_be_set
|
✅ When_validation_fails_the_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s19" href="#r0s19">FluentValidation.Tests.ExactLengthValidatorTester</a>
|
### ✅ <a id="user-content-r0s19" href="#user-content-r0s19">FluentValidation.Tests.ExactLengthValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Min_and_max_properties_should_be_set
|
✅ Min_and_max_properties_should_be_set
|
||||||
✅ When_exact_length_rule_failes_error_should_have_exact_length_error_errorcode
|
✅ When_exact_length_rule_failes_error_should_have_exact_length_error_errorcode
|
||||||
@@ -403,7 +403,7 @@
|
|||||||
✅ When_the_text_length_is_smaller_the_validator_should_fail
|
✅ When_the_text_length_is_smaller_the_validator_should_fail
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s20" href="#r0s20">FluentValidation.Tests.ExclusiveBetweenValidatorTests</a>
|
### ✅ <a id="user-content-r0s20" href="#user-content-r0s20">FluentValidation.Tests.ExclusiveBetweenValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ To_and_from_properties_should_be_set
|
✅ To_and_from_properties_should_be_set
|
||||||
✅ To_and_from_properties_should_be_set_for_dates
|
✅ To_and_from_properties_should_be_set_for_dates
|
||||||
@@ -425,14 +425,14 @@
|
|||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s21" href="#r0s21">FluentValidation.Tests.ExtensionTester</a>
|
### ✅ <a id="user-content-r0s21" href="#user-content-r0s21">FluentValidation.Tests.ExtensionTester</a>
|
||||||
```
|
```
|
||||||
✅ Should_extract_member_from_member_expression
|
✅ Should_extract_member_from_member_expression
|
||||||
✅ Should_return_null_for_non_member_expressions
|
✅ Should_return_null_for_non_member_expressions
|
||||||
✅ Should_split_pascal_cased_member_name
|
✅ Should_split_pascal_cased_member_name
|
||||||
✅ SplitPascalCase_should_return_null_when_input_is_null
|
✅ SplitPascalCase_should_return_null_when_input_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s22" href="#r0s22">FluentValidation.Tests.ForEachRuleTests</a>
|
### ✅ <a id="user-content-r0s22" href="#user-content-r0s22">FluentValidation.Tests.ForEachRuleTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_should_work_with_child_collection
|
✅ Async_condition_should_work_with_child_collection
|
||||||
✅ Can_access_colletion_index
|
✅ Can_access_colletion_index
|
||||||
@@ -469,7 +469,7 @@
|
|||||||
✅ When_runs_outside_RuleForEach_loop
|
✅ When_runs_outside_RuleForEach_loop
|
||||||
✅ When_runs_outside_RuleForEach_loop_async
|
✅ When_runs_outside_RuleForEach_loop_async
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s23" href="#r0s23">FluentValidation.Tests.GreaterThanOrEqualToValidatorTester</a>
|
### ✅ <a id="user-content-r0s23" href="#user-content-r0s23">FluentValidation.Tests.GreaterThanOrEqualToValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_type
|
✅ Comparison_type
|
||||||
@@ -486,7 +486,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_property
|
✅ Validates_with_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s24" href="#r0s24">FluentValidation.Tests.GreaterThanValidatorTester</a>
|
### ✅ <a id="user-content-r0s24" href="#user-content-r0s24">FluentValidation.Tests.GreaterThanValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_Type
|
✅ Comparison_Type
|
||||||
@@ -502,7 +502,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_property
|
✅ Validates_with_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s25" href="#r0s25">FluentValidation.Tests.InclusiveBetweenValidatorTests</a>
|
### ✅ <a id="user-content-r0s25" href="#user-content-r0s25">FluentValidation.Tests.InclusiveBetweenValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ To_and_from_properties_should_be_set
|
✅ To_and_from_properties_should_be_set
|
||||||
✅ To_and_from_properties_should_be_set_for_strings
|
✅ To_and_from_properties_should_be_set_for_strings
|
||||||
@@ -523,7 +523,7 @@
|
|||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail
|
||||||
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
✅ When_the_value_is_smaller_than_the_range_then_the_validator_should_fail_for_strings
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s26" href="#r0s26">FluentValidation.Tests.InheritanceValidatorTest</a>
|
### ✅ <a id="user-content-r0s26" href="#user-content-r0s26">FluentValidation.Tests.InheritanceValidatorTest</a>
|
||||||
```
|
```
|
||||||
✅ Can_use_custom_subclass_with_nongeneric_overload
|
✅ Can_use_custom_subclass_with_nongeneric_overload
|
||||||
✅ Validates_collection
|
✅ Validates_collection
|
||||||
@@ -537,11 +537,11 @@
|
|||||||
✅ Validates_with_callback_accepting_derived_async
|
✅ Validates_with_callback_accepting_derived_async
|
||||||
✅ Validates_with_callback_async
|
✅ Validates_with_callback_async
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s27" href="#r0s27">FluentValidation.Tests.InlineValidatorTester</a>
|
### ✅ <a id="user-content-r0s27" href="#user-content-r0s27">FluentValidation.Tests.InlineValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Uses_inline_validator_to_build_rules
|
✅ Uses_inline_validator_to_build_rules
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s28" href="#r0s28">FluentValidation.Tests.LanguageManagerTests</a>
|
### ✅ <a id="user-content-r0s28" href="#user-content-r0s28">FluentValidation.Tests.LanguageManagerTests</a>
|
||||||
```
|
```
|
||||||
✅ All_languages_should_be_loaded
|
✅ All_languages_should_be_loaded
|
||||||
✅ All_localizations_have_same_parameters_as_English
|
✅ All_localizations_have_same_parameters_as_English
|
||||||
@@ -565,7 +565,7 @@
|
|||||||
✅ Gets_translation_for_specific_culture
|
✅ Gets_translation_for_specific_culture
|
||||||
✅ Uses_error_code_as_localization_key
|
✅ Uses_error_code_as_localization_key
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s29" href="#r0s29">FluentValidation.Tests.LengthValidatorTests</a>
|
### ✅ <a id="user-content-r0s29" href="#user-content-r0s29">FluentValidation.Tests.LengthValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Min_and_max_properties_should_be_set
|
✅ Min_and_max_properties_should_be_set
|
||||||
✅ When_input_is_null_then_the_validator_should_pass
|
✅ When_input_is_null_then_the_validator_should_pass
|
||||||
@@ -584,7 +584,7 @@
|
|||||||
✅ When_the_text_is_smaller_than_the_range_then_the_validator_should_fail
|
✅ When_the_text_is_smaller_than_the_range_then_the_validator_should_fail
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s30" href="#r0s30">FluentValidation.Tests.LessThanOrEqualToValidatorTester</a>
|
### ✅ <a id="user-content-r0s30" href="#user-content-r0s30">FluentValidation.Tests.LessThanOrEqualToValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_type
|
✅ Comparison_type
|
||||||
@@ -600,7 +600,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_property
|
✅ Validates_with_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s31" href="#r0s31">FluentValidation.Tests.LessThanValidatorTester</a>
|
### ✅ <a id="user-content-r0s31" href="#user-content-r0s31">FluentValidation.Tests.LessThanValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Comparison_type
|
✅ Comparison_type
|
||||||
@@ -619,7 +619,7 @@
|
|||||||
✅ Validates_with_nullable_when_property_not_null_cross_property
|
✅ Validates_with_nullable_when_property_not_null_cross_property
|
||||||
✅ Validates_with_nullable_when_property_null_cross_property
|
✅ Validates_with_nullable_when_property_null_cross_property
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s32" href="#r0s32">FluentValidation.Tests.LocalisedMessagesTester</a>
|
### ✅ <a id="user-content-r0s32" href="#user-content-r0s32">FluentValidation.Tests.LocalisedMessagesTester</a>
|
||||||
```
|
```
|
||||||
✅ Correctly_assigns_default_localized_error_message
|
✅ Correctly_assigns_default_localized_error_message
|
||||||
✅ Does_not_throw_InvalidCastException_when_using_RuleForEach
|
✅ Does_not_throw_InvalidCastException_when_using_RuleForEach
|
||||||
@@ -628,12 +628,12 @@
|
|||||||
✅ Uses_func_to_get_message
|
✅ Uses_func_to_get_message
|
||||||
✅ Uses_string_format_with_property_value
|
✅ Uses_string_format_with_property_value
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s33" href="#r0s33">FluentValidation.Tests.LocalisedNameTester</a>
|
### ✅ <a id="user-content-r0s33" href="#user-content-r0s33">FluentValidation.Tests.LocalisedNameTester</a>
|
||||||
```
|
```
|
||||||
✅ Uses_localized_name
|
✅ Uses_localized_name
|
||||||
✅ Uses_localized_name_expression
|
✅ Uses_localized_name_expression
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s34" href="#r0s34">FluentValidation.Tests.MemberAccessorTests</a>
|
### ✅ <a id="user-content-r0s34" href="#user-content-r0s34">FluentValidation.Tests.MemberAccessorTests</a>
|
||||||
```
|
```
|
||||||
✅ ComplexPropertyGet
|
✅ ComplexPropertyGet
|
||||||
✅ ComplexPropertySet
|
✅ ComplexPropertySet
|
||||||
@@ -645,7 +645,7 @@
|
|||||||
✅ SimplePropertyGet
|
✅ SimplePropertyGet
|
||||||
✅ SimplePropertySet
|
✅ SimplePropertySet
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s35" href="#r0s35">FluentValidation.Tests.MessageFormatterTests</a>
|
### ✅ <a id="user-content-r0s35" href="#user-content-r0s35">FluentValidation.Tests.MessageFormatterTests</a>
|
||||||
```
|
```
|
||||||
✅ Adds_argument_and_custom_arguments
|
✅ Adds_argument_and_custom_arguments
|
||||||
✅ Adds_formatted_argument_and_custom_arguments
|
✅ Adds_formatted_argument_and_custom_arguments
|
||||||
@@ -658,18 +658,18 @@
|
|||||||
✅ Understands_date_formats
|
✅ Understands_date_formats
|
||||||
✅ Understands_numeric_formats
|
✅ Understands_numeric_formats
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s36" href="#r0s36">FluentValidation.Tests.ModelLevelValidatorTests</a>
|
### ✅ <a id="user-content-r0s36" href="#user-content-r0s36">FluentValidation.Tests.ModelLevelValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_use_child_validator_at_model_level
|
✅ Can_use_child_validator_at_model_level
|
||||||
✅ Validates_at_model_level
|
✅ Validates_at_model_level
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s37" href="#r0s37">FluentValidation.Tests.NameResolutionPluggabilityTester</a>
|
### ✅ <a id="user-content-r0s37" href="#user-content-r0s37">FluentValidation.Tests.NameResolutionPluggabilityTester</a>
|
||||||
```
|
```
|
||||||
✅ Resolves_nested_properties
|
✅ Resolves_nested_properties
|
||||||
✅ ShouldHaveValidationError_Should_support_custom_propertynameresolver
|
✅ ShouldHaveValidationError_Should_support_custom_propertynameresolver
|
||||||
✅ Uses_custom_property_name
|
✅ Uses_custom_property_name
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s38" href="#r0s38">FluentValidation.Tests.NotEmptyTester</a>
|
### ✅ <a id="user-content-r0s38" href="#user-content-r0s38">FluentValidation.Tests.NotEmptyTester</a>
|
||||||
```
|
```
|
||||||
✅ Fails_for_array
|
✅ Fails_for_array
|
||||||
✅ Fails_for_ienumerable_that_doesnt_implement_ICollection
|
✅ Fails_for_ienumerable_that_doesnt_implement_ICollection
|
||||||
@@ -682,7 +682,7 @@
|
|||||||
✅ When_value_is_null_validator_should_fail
|
✅ When_value_is_null_validator_should_fail
|
||||||
✅ When_value_is_whitespace_validation_should_fail
|
✅ When_value_is_whitespace_validation_should_fail
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s39" href="#r0s39">FluentValidation.Tests.NotEqualValidatorTests</a>
|
### ✅ <a id="user-content-r0s39" href="#user-content-r0s39">FluentValidation.Tests.NotEqualValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Comparison_property_uses_custom_resolver
|
✅ Comparison_property_uses_custom_resolver
|
||||||
✅ Should_handle_custom_value_types_correctly
|
✅ Should_handle_custom_value_types_correctly
|
||||||
@@ -696,7 +696,7 @@
|
|||||||
✅ When_the_objects_are_not_equal_then_the_validator_should_pass
|
✅ When_the_objects_are_not_equal_then_the_validator_should_pass
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s40" href="#r0s40">FluentValidation.Tests.NotNullTester</a>
|
### ✅ <a id="user-content-r0s40" href="#user-content-r0s40">FluentValidation.Tests.NotNullTester</a>
|
||||||
```
|
```
|
||||||
✅ Fails_when_nullable_value_type_is_null
|
✅ Fails_when_nullable_value_type_is_null
|
||||||
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
||||||
@@ -704,7 +704,7 @@
|
|||||||
✅ NotNullValidator_should_pass_if_value_has_value
|
✅ NotNullValidator_should_pass_if_value_has_value
|
||||||
✅ When_the_validator_fails_the_error_message_should_be_set
|
✅ When_the_validator_fails_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s41" href="#r0s41">FluentValidation.Tests.NullTester</a>
|
### ✅ <a id="user-content-r0s41" href="#user-content-r0s41">FluentValidation.Tests.NullTester</a>
|
||||||
```
|
```
|
||||||
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
✅ Not_null_validator_should_not_crash_with_non_nullable_value_type
|
||||||
✅ NullValidator_should_fail_if_value_has_value
|
✅ NullValidator_should_fail_if_value_has_value
|
||||||
@@ -712,7 +712,7 @@
|
|||||||
✅ Passes_when_nullable_value_type_is_null
|
✅ Passes_when_nullable_value_type_is_null
|
||||||
✅ When_the_validator_passes_the_error_message_should_be_set
|
✅ When_the_validator_passes_the_error_message_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s42" href="#r0s42">FluentValidation.Tests.OnFailureTests</a>
|
### ✅ <a id="user-content-r0s42" href="#user-content-r0s42">FluentValidation.Tests.OnFailureTests</a>
|
||||||
```
|
```
|
||||||
✅ OnFailure_called_for_each_failed_rule
|
✅ OnFailure_called_for_each_failed_rule
|
||||||
✅ OnFailure_called_for_each_failed_rule_asyncAsync
|
✅ OnFailure_called_for_each_failed_rule_asyncAsync
|
||||||
@@ -725,7 +725,7 @@
|
|||||||
✅ WhenWithOnFailure_should_invoke_condition_on_async_inner_validator
|
✅ WhenWithOnFailure_should_invoke_condition_on_async_inner_validator
|
||||||
✅ WhenWithOnFailure_should_invoke_condition_on_inner_validator
|
✅ WhenWithOnFailure_should_invoke_condition_on_inner_validator
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s43" href="#r0s43">FluentValidation.Tests.PredicateValidatorTester</a>
|
### ✅ <a id="user-content-r0s43" href="#user-content-r0s43">FluentValidation.Tests.PredicateValidatorTester</a>
|
||||||
```
|
```
|
||||||
✅ Should_fail_when_predicate_returns_false
|
✅ Should_fail_when_predicate_returns_false
|
||||||
✅ Should_succeed_when_predicate_returns_true
|
✅ Should_succeed_when_predicate_returns_true
|
||||||
@@ -733,7 +733,7 @@
|
|||||||
✅ When_validation_fails_metadata_should_be_set_on_failure
|
✅ When_validation_fails_metadata_should_be_set_on_failure
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s44" href="#r0s44">FluentValidation.Tests.PropertyChainTests</a>
|
### ✅ <a id="user-content-r0s44" href="#user-content-r0s44">FluentValidation.Tests.PropertyChainTests</a>
|
||||||
```
|
```
|
||||||
✅ AddIndexer_throws_when_nothing_added
|
✅ AddIndexer_throws_when_nothing_added
|
||||||
✅ Calling_ToString_should_construct_string_representation_of_chain
|
✅ Calling_ToString_should_construct_string_representation_of_chain
|
||||||
@@ -743,7 +743,7 @@
|
|||||||
✅ Should_ignore_blanks
|
✅ Should_ignore_blanks
|
||||||
✅ Should_not_be_subchain
|
✅ Should_not_be_subchain
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s45" href="#r0s45">FluentValidation.Tests.RegularExpressionValidatorTests</a>
|
### ✅ <a id="user-content-r0s45" href="#user-content-r0s45">FluentValidation.Tests.RegularExpressionValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_access_expression_in_message
|
✅ Can_access_expression_in_message
|
||||||
✅ Can_access_expression_in_message_lambda
|
✅ Can_access_expression_in_message_lambda
|
||||||
@@ -761,7 +761,7 @@
|
|||||||
✅ When_the_text_matches_the_regular_expression_then_the_validator_should_pass
|
✅ When_the_text_matches_the_regular_expression_then_the_validator_should_pass
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s46" href="#r0s46">FluentValidation.Tests.RuleBuilderTests</a>
|
### ✅ <a id="user-content-r0s46" href="#user-content-r0s46">FluentValidation.Tests.RuleBuilderTests</a>
|
||||||
```
|
```
|
||||||
✅ Adding_a_validator_should_return_builder
|
✅ Adding_a_validator_should_return_builder
|
||||||
✅ Adding_a_validator_should_store_validator
|
✅ Adding_a_validator_should_store_validator
|
||||||
@@ -793,7 +793,7 @@
|
|||||||
✅ Should_throw_when_inverse_predicate_is_null
|
✅ Should_throw_when_inverse_predicate_is_null
|
||||||
✅ Should_throw_when_predicate_is_null
|
✅ Should_throw_when_predicate_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s47" href="#r0s47">FluentValidation.Tests.RuleDependencyTests</a>
|
### ✅ <a id="user-content-r0s47" href="#user-content-r0s47">FluentValidation.Tests.RuleDependencyTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_inside_dependent_rules
|
✅ Async_inside_dependent_rules
|
||||||
✅ Async_inside_dependent_rules_when_parent_rule_not_async
|
✅ Async_inside_dependent_rules_when_parent_rule_not_async
|
||||||
@@ -810,7 +810,7 @@
|
|||||||
✅ TestAsyncWithDependentRules_SyncEntry
|
✅ TestAsyncWithDependentRules_SyncEntry
|
||||||
✅ Treats_root_level_RuleFor_call_as_dependent_rule_if_user_forgets_to_use_DependentRulesBuilder
|
✅ Treats_root_level_RuleFor_call_as_dependent_rule_if_user_forgets_to_use_DependentRulesBuilder
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s48" href="#r0s48">FluentValidation.Tests.RulesetTests</a>
|
### ✅ <a id="user-content-r0s48" href="#user-content-r0s48">FluentValidation.Tests.RulesetTests</a>
|
||||||
```
|
```
|
||||||
✅ Applies_multiple_rulesets_to_rule
|
✅ Applies_multiple_rulesets_to_rule
|
||||||
✅ Combines_rulesets_and_explicit_properties
|
✅ Combines_rulesets_and_explicit_properties
|
||||||
@@ -834,7 +834,7 @@
|
|||||||
✅ Trims_spaces
|
✅ Trims_spaces
|
||||||
✅ WithMessage_works_inside_rulesets
|
✅ WithMessage_works_inside_rulesets
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s49" href="#r0s49">FluentValidation.Tests.ScalePrecisionValidatorTests</a>
|
### ✅ <a id="user-content-r0s49" href="#user-content-r0s49">FluentValidation.Tests.ScalePrecisionValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ Scale_precision_should_be_valid
|
✅ Scale_precision_should_be_valid
|
||||||
✅ Scale_precision_should_be_valid_when_ignoring_trailing_zeroes
|
✅ Scale_precision_should_be_valid_when_ignoring_trailing_zeroes
|
||||||
@@ -843,7 +843,7 @@
|
|||||||
✅ Scale_precision_should_not_be_valid_when_ignoring_trailing_zeroes
|
✅ Scale_precision_should_not_be_valid_when_ignoring_trailing_zeroes
|
||||||
✅ Scale_precision_should_not_be_valid_when_they_are_equal
|
✅ Scale_precision_should_not_be_valid_when_they_are_equal
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s50" href="#r0s50">FluentValidation.Tests.SharedConditionTests</a>
|
### ✅ <a id="user-content-r0s50" href="#user-content-r0s50">FluentValidation.Tests.SharedConditionTests</a>
|
||||||
```
|
```
|
||||||
✅ Async_condition_can_be_used_inside_ruleset
|
✅ Async_condition_can_be_used_inside_ruleset
|
||||||
✅ Condition_can_be_used_inside_ruleset
|
✅ Condition_can_be_used_inside_ruleset
|
||||||
@@ -888,11 +888,11 @@
|
|||||||
✅ When_condition_only_executed_once
|
✅ When_condition_only_executed_once
|
||||||
✅ WhenAsync_condition_only_executed_once
|
✅ WhenAsync_condition_only_executed_once
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s51" href="#r0s51">FluentValidation.Tests.StandalonePropertyValidationTester</a>
|
### ✅ <a id="user-content-r0s51" href="#user-content-r0s51">FluentValidation.Tests.StandalonePropertyValidationTester</a>
|
||||||
```
|
```
|
||||||
✅ Should_validate_property_value_without_instance
|
✅ Should_validate_property_value_without_instance
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s52" href="#r0s52">FluentValidation.Tests.StringEnumValidatorTests</a>
|
### ✅ <a id="user-content-r0s52" href="#user-content-r0s52">FluentValidation.Tests.StringEnumValidatorTests</a>
|
||||||
```
|
```
|
||||||
✅ IsValidTests_CaseInsensitive_CaseCorrect
|
✅ IsValidTests_CaseInsensitive_CaseCorrect
|
||||||
✅ IsValidTests_CaseInsensitive_CaseIncorrect
|
✅ IsValidTests_CaseInsensitive_CaseIncorrect
|
||||||
@@ -905,20 +905,20 @@
|
|||||||
✅ When_the_property_is_initialized_with_null_then_the_validator_should_be_valid
|
✅ When_the_property_is_initialized_with_null_then_the_validator_should_be_valid
|
||||||
✅ When_validation_fails_the_default_error_should_be_set
|
✅ When_validation_fails_the_default_error_should_be_set
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s53" href="#r0s53">FluentValidation.Tests.TrackingCollectionTests</a>
|
### ✅ <a id="user-content-r0s53" href="#user-content-r0s53">FluentValidation.Tests.TrackingCollectionTests</a>
|
||||||
```
|
```
|
||||||
✅ Add_AddsItem
|
✅ Add_AddsItem
|
||||||
✅ Should_not_raise_event_once_handler_detached
|
✅ Should_not_raise_event_once_handler_detached
|
||||||
✅ When_Item_Added_Raises_ItemAdded
|
✅ When_Item_Added_Raises_ItemAdded
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s54" href="#r0s54">FluentValidation.Tests.TransformTests</a>
|
### ✅ <a id="user-content-r0s54" href="#user-content-r0s54">FluentValidation.Tests.TransformTests</a>
|
||||||
```
|
```
|
||||||
✅ Transforms_collection_element
|
✅ Transforms_collection_element
|
||||||
✅ Transforms_collection_element_async
|
✅ Transforms_collection_element_async
|
||||||
✅ Transforms_property_value
|
✅ Transforms_property_value
|
||||||
✅ Transforms_property_value_to_another_type
|
✅ Transforms_property_value_to_another_type
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s55" href="#r0s55">FluentValidation.Tests.UserSeverityTester</a>
|
### ✅ <a id="user-content-r0s55" href="#user-content-r0s55">FluentValidation.Tests.UserSeverityTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_Provide_conditional_severity
|
✅ Can_Provide_conditional_severity
|
||||||
✅ Can_Provide_severity_for_item_in_collection
|
✅ Can_Provide_severity_for_item_in_collection
|
||||||
@@ -928,14 +928,14 @@
|
|||||||
✅ Stores_user_severity_against_validation_failure
|
✅ Stores_user_severity_against_validation_failure
|
||||||
✅ Throws_when_provider_is_null
|
✅ Throws_when_provider_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s56" href="#r0s56">FluentValidation.Tests.UserStateTester</a>
|
### ✅ <a id="user-content-r0s56" href="#user-content-r0s56">FluentValidation.Tests.UserStateTester</a>
|
||||||
```
|
```
|
||||||
✅ Can_Provide_state_for_item_in_collection
|
✅ Can_Provide_state_for_item_in_collection
|
||||||
✅ Correctly_provides_object_being_validated
|
✅ Correctly_provides_object_being_validated
|
||||||
✅ Stores_user_state_against_validation_failure
|
✅ Stores_user_state_against_validation_failure
|
||||||
✅ Throws_when_provider_is_null
|
✅ Throws_when_provider_is_null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s57" href="#r0s57">FluentValidation.Tests.ValidateAndThrowTester</a>
|
### ✅ <a id="user-content-r0s57" href="#user-content-r0s57">FluentValidation.Tests.ValidateAndThrowTester</a>
|
||||||
```
|
```
|
||||||
✅ Does_not_throw_when_valid
|
✅ Does_not_throw_when_valid
|
||||||
✅ Does_not_throw_when_valid_and_a_ruleset
|
✅ Does_not_throw_when_valid_and_a_ruleset
|
||||||
@@ -952,7 +952,7 @@
|
|||||||
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_false
|
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_false
|
||||||
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_true
|
✅ ValidationException_provides_correct_message_when_appendDefaultMessage_true
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s58" href="#r0s58">FluentValidation.Tests.ValidationResultTests</a>
|
### ✅ <a id="user-content-r0s58" href="#user-content-r0s58">FluentValidation.Tests.ValidationResultTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_serialize_failure
|
✅ Can_serialize_failure
|
||||||
✅ Can_serialize_result
|
✅ Can_serialize_result
|
||||||
@@ -963,7 +963,7 @@
|
|||||||
✅ ToString_return_error_messages_with_given_separator
|
✅ ToString_return_error_messages_with_given_separator
|
||||||
✅ ToString_return_error_messages_with_newline_as_separator
|
✅ ToString_return_error_messages_with_newline_as_separator
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s59" href="#r0s59">FluentValidation.Tests.ValidatorDescriptorTester</a>
|
### ✅ <a id="user-content-r0s59" href="#user-content-r0s59">FluentValidation.Tests.ValidatorDescriptorTester</a>
|
||||||
```
|
```
|
||||||
✅ Does_not_throw_when_rule_declared_without_property
|
✅ Does_not_throw_when_rule_declared_without_property
|
||||||
✅ Gets_validators_for_property
|
✅ Gets_validators_for_property
|
||||||
@@ -971,7 +971,7 @@
|
|||||||
✅ Returns_empty_collection_for_property_with_no_validators
|
✅ Returns_empty_collection_for_property_with_no_validators
|
||||||
✅ Should_retrieve_name_given_to_it_pass_property_as_string
|
✅ Should_retrieve_name_given_to_it_pass_property_as_string
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s60" href="#r0s60">FluentValidation.Tests.ValidatorSelectorTests</a>
|
### ✅ <a id="user-content-r0s60" href="#user-content-r0s60">FluentValidation.Tests.ValidatorSelectorTests</a>
|
||||||
```
|
```
|
||||||
✅ Can_use_property_with_include
|
✅ Can_use_property_with_include
|
||||||
✅ Does_not_validate_other_property
|
✅ Does_not_validate_other_property
|
||||||
@@ -984,7 +984,7 @@
|
|||||||
✅ Validates_nullable_property_with_overriden_name_when_selected
|
✅ Validates_nullable_property_with_overriden_name_when_selected
|
||||||
✅ Validates_property_using_expression
|
✅ Validates_property_using_expression
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s61" href="#r0s61">FluentValidation.Tests.ValidatorTesterTester</a>
|
### ✅ <a id="user-content-r0s61" href="#user-content-r0s61">FluentValidation.Tests.ValidatorTesterTester</a>
|
||||||
```
|
```
|
||||||
✅ Allows_only_one_failure_to_match
|
✅ Allows_only_one_failure_to_match
|
||||||
✅ Can_use_indexer_in_string_message
|
✅ Can_use_indexer_in_string_message
|
||||||
|
|||||||
38
__tests__/__outputs__/golang-json.md
Normal file
38
__tests__/__outputs__/golang-json.md
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|

|
||||||
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|
|:---|---:|---:|---:|---:|
|
||||||
|
|fixtures/golang-json.json|5 ✅|6 ❌|1 ⚪|6s|
|
||||||
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/golang-json.json</a>
|
||||||
|
**12** tests were completed in **6s** with **5** passed, **6** failed and **1** skipped.
|
||||||
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|
|:---|---:|---:|---:|---:|
|
||||||
|
|[_/home/james_t/git/test-reporter/reports/go](#user-content-r0s0)|5 ✅|6 ❌|1 ⚪|6s|
|
||||||
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">_/home/james_t/git/test-reporter/reports/go</a>
|
||||||
|
```
|
||||||
|
✅ TestPassing
|
||||||
|
❌ TestFailing
|
||||||
|
calculator_test.go:19: expected 1+1 = 3, got 2
|
||||||
|
|
||||||
|
❌ TestPanicInsideFunction
|
||||||
|
calculator_test.go:76: caught panic: runtime error: integer divide by zero
|
||||||
|
|
||||||
|
❌ TestPanicInsideTest
|
||||||
|
calculator_test.go:76: caught panic: bad stuff
|
||||||
|
|
||||||
|
⚪ TestSkipped
|
||||||
|
calculator_test.go:45: skipping test
|
||||||
|
|
||||||
|
❌ TestCases
|
||||||
|
|
||||||
|
TestCases
|
||||||
|
✅ 1_+_2_=_3
|
||||||
|
✅ 4_+_7_=_11
|
||||||
|
❌ 2_+_3_=_4
|
||||||
|
calculator_test.go:67: expected 2 + 3 = 4, got 5
|
||||||
|
|
||||||
|
❌ 1_/_2_=_1
|
||||||
|
calculator_test.go:67: expected 1 / 2 = 1, got 0
|
||||||
|
|
||||||
|
✅ 9_/_3_=_3
|
||||||
|
✅ 14_/_7_=_2
|
||||||
|
```
|
||||||
@@ -4,12 +4,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/jest-junit-eslint.xml|1 ✅|||0ms|
|
|fixtures/jest-junit-eslint.xml|1 ✅|||0ms|
|
||||||
## ✅ <a id="user-content-r0" href="#r0">fixtures/jest-junit-eslint.xml</a>
|
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/jest-junit-eslint.xml</a>
|
||||||
**1** tests were completed in **0ms** with **1** passed, **0** failed and **0** skipped.
|
**1** tests were completed in **0ms** with **1** passed, **0** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test.jsx](#r0s0)|1 ✅|||0ms|
|
|[test.jsx](#user-content-r0s0)|1 ✅|||0ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#r0s0">test.jsx</a>
|
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">test.jsx</a>
|
||||||
```
|
```
|
||||||
test
|
test
|
||||||
✅ test.jsx
|
✅ test.jsx
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/jest-junit.xml|1 ✅|4 ❌|1 ⚪|1s|
|
|fixtures/jest-junit.xml|1 ✅|4 ❌|1 ⚪|1s|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/jest-junit.xml</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/jest-junit.xml</a>
|
||||||
**6** tests were completed in **1s** with **1** passed, **4** failed and **1** skipped.
|
**6** tests were completed in **1s** with **1** passed, **4** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[__tests__\main.test.js](#r0s0)|1 ✅|3 ❌||486ms|
|
|[__tests__\main.test.js](#user-content-r0s0)|1 ✅|3 ❌||486ms|
|
||||||
|[__tests__\second.test.js](#r0s1)||1 ❌|1 ⚪|82ms|
|
|[__tests__\second.test.js](#user-content-r0s1)||1 ❌|1 ⚪|82ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">__tests__\main.test.js</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">__tests__\main.test.js</a>
|
||||||
```
|
```
|
||||||
Test 1
|
Test 1
|
||||||
✅ Passing test
|
✅ Passing test
|
||||||
@@ -21,7 +21,7 @@ Test 2
|
|||||||
❌ Exception in test
|
❌ Exception in test
|
||||||
Error: Some error
|
Error: Some error
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s1" href="#r0s1">__tests__\second.test.js</a>
|
### ❌ <a id="user-content-r0s1" href="#user-content-r0s1">__tests__\second.test.js</a>
|
||||||
```
|
```
|
||||||
❌ Timeout test
|
❌ Timeout test
|
||||||
: Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Error:
|
: Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Timeout - Async callback was not invoked within the 1 ms timeout specified by jest.setTimeout.Error:
|
||||||
|
|||||||
@@ -4,12 +4,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/external/jest/jest-react-component-test-results.xml|1 ✅|||1000ms|
|
|fixtures/external/jest/jest-react-component-test-results.xml|1 ✅|||1000ms|
|
||||||
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/jest/jest-react-component-test-results.xml</a>
|
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/external/jest/jest-react-component-test-results.xml</a>
|
||||||
**1** tests were completed in **1000ms** with **1** passed, **0** failed and **0** skipped.
|
**1** tests were completed in **1000ms** with **1** passed, **0** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[\<Component /\>](#r0s0)|1 ✅|||798ms|
|
|[\<Component /\>](#user-content-r0s0)|1 ✅|||798ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#r0s0">\<Component /\></a>
|
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">\<Component /\></a>
|
||||||
```
|
```
|
||||||
✅ <Component /> should render properly
|
✅ <Component /> should render properly
|
||||||
```
|
```
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -2,12 +2,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/junit-with-message.xml||1 ❌||1ms|
|
|fixtures/junit-with-message.xml||1 ❌||1ms|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/junit-with-message.xml</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/junit-with-message.xml</a>
|
||||||
**1** tests were completed in **1ms** with **0** passed, **1** failed and **0** skipped.
|
**1** tests were completed in **1ms** with **0** passed, **1** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[Test](#r0s0)||1 ❌||1ms|
|
|[Test](#user-content-r0s0)||1 ❌||1ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">Test</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">Test</a>
|
||||||
```
|
```
|
||||||
Fails
|
Fails
|
||||||
❌ Test
|
❌ Test
|
||||||
|
|||||||
@@ -2,13 +2,13 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/mocha-json.json|1 ✅|4 ❌|1 ⚪|12ms|
|
|fixtures/mocha-json.json|1 ✅|4 ❌|1 ⚪|12ms|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/mocha-json.json</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/mocha-json.json</a>
|
||||||
**6** tests were completed in **12ms** with **1** passed, **4** failed and **1** skipped.
|
**6** tests were completed in **12ms** with **1** passed, **4** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test/main.test.js](#r0s0)|1 ✅|3 ❌||1ms|
|
|[test/main.test.js](#user-content-r0s0)|1 ✅|3 ❌||1ms|
|
||||||
|[test/second.test.js](#r0s1)||1 ❌|1 ⚪|8ms|
|
|[test/second.test.js](#user-content-r0s1)||1 ❌|1 ⚪|8ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">test/main.test.js</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">test/main.test.js</a>
|
||||||
```
|
```
|
||||||
Test 1
|
Test 1
|
||||||
✅ Passing test
|
✅ Passing test
|
||||||
@@ -24,7 +24,7 @@ Test 2
|
|||||||
❌ Exception in test
|
❌ Exception in test
|
||||||
Some error
|
Some error
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s1" href="#r0s1">test/second.test.js</a>
|
### ❌ <a id="user-content-r0s1" href="#user-content-r0s1">test/second.test.js</a>
|
||||||
```
|
```
|
||||||
⚪ Skipped test
|
⚪ Skipped test
|
||||||
❌ Timeout test
|
❌ Timeout test
|
||||||
|
|||||||
@@ -4,47 +4,47 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/external/mocha/mocha-test-results.json|833 ✅||6 ⚪|6s|
|
|fixtures/external/mocha/mocha-test-results.json|833 ✅||6 ⚪|6s|
|
||||||
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/mocha/mocha-test-results.json</a>
|
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/external/mocha/mocha-test-results.json</a>
|
||||||
**839** tests were completed in **6s** with **833** passed, **0** failed and **6** skipped.
|
**839** tests were completed in **6s** with **833** passed, **0** failed and **6** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test/node-unit/buffered-worker-pool.spec.js](#r0s0)|14 ✅|||8ms|
|
|[test/node-unit/buffered-worker-pool.spec.js](#user-content-r0s0)|14 ✅|||8ms|
|
||||||
|[test/node-unit/cli/config.spec.js](#r0s1)|10 ✅|||8ms|
|
|[test/node-unit/cli/config.spec.js](#user-content-r0s1)|10 ✅|||8ms|
|
||||||
|[test/node-unit/cli/node-flags.spec.js](#r0s2)|105 ✅|||9ms|
|
|[test/node-unit/cli/node-flags.spec.js](#user-content-r0s2)|105 ✅|||9ms|
|
||||||
|[test/node-unit/cli/options.spec.js](#r0s3)|36 ✅|||250ms|
|
|[test/node-unit/cli/options.spec.js](#user-content-r0s3)|36 ✅|||250ms|
|
||||||
|[test/node-unit/cli/run-helpers.spec.js](#r0s4)|9 ✅|||8ms|
|
|[test/node-unit/cli/run-helpers.spec.js](#user-content-r0s4)|9 ✅|||8ms|
|
||||||
|[test/node-unit/cli/run.spec.js](#r0s5)|40 ✅|||4ms|
|
|[test/node-unit/cli/run.spec.js](#user-content-r0s5)|40 ✅|||4ms|
|
||||||
|[test/node-unit/mocha.spec.js](#r0s6)|24 ✅|||33ms|
|
|[test/node-unit/mocha.spec.js](#user-content-r0s6)|24 ✅|||33ms|
|
||||||
|[test/node-unit/parallel-buffered-runner.spec.js](#r0s7)|19 ✅|||23ms|
|
|[test/node-unit/parallel-buffered-runner.spec.js](#user-content-r0s7)|19 ✅|||23ms|
|
||||||
|[test/node-unit/reporters/parallel-buffered.spec.js](#r0s8)|6 ✅|||16ms|
|
|[test/node-unit/reporters/parallel-buffered.spec.js](#user-content-r0s8)|6 ✅|||16ms|
|
||||||
|[test/node-unit/serializer.spec.js](#r0s9)|40 ✅|||31ms|
|
|[test/node-unit/serializer.spec.js](#user-content-r0s9)|40 ✅|||31ms|
|
||||||
|[test/node-unit/stack-trace-filter.spec.js](#r0s10)|2 ✅||4 ⚪|1ms|
|
|[test/node-unit/stack-trace-filter.spec.js](#user-content-r0s10)|2 ✅||4 ⚪|1ms|
|
||||||
|[test/node-unit/utils.spec.js](#r0s11)|5 ✅|||1ms|
|
|[test/node-unit/utils.spec.js](#user-content-r0s11)|5 ✅|||1ms|
|
||||||
|[test/node-unit/worker.spec.js](#r0s12)|15 ✅|||92ms|
|
|[test/node-unit/worker.spec.js](#user-content-r0s12)|15 ✅|||92ms|
|
||||||
|[test/unit/context.spec.js](#r0s13)|8 ✅|||5ms|
|
|[test/unit/context.spec.js](#user-content-r0s13)|8 ✅|||5ms|
|
||||||
|[test/unit/duration.spec.js](#r0s14)|3 ✅|||166ms|
|
|[test/unit/duration.spec.js](#user-content-r0s14)|3 ✅|||166ms|
|
||||||
|[test/unit/errors.spec.js](#r0s15)|13 ✅|||5ms|
|
|[test/unit/errors.spec.js](#user-content-r0s15)|13 ✅|||5ms|
|
||||||
|[test/unit/globals.spec.js](#r0s16)|4 ✅|||0ms|
|
|[test/unit/globals.spec.js](#user-content-r0s16)|4 ✅|||0ms|
|
||||||
|[test/unit/grep.spec.js](#r0s17)|8 ✅|||2ms|
|
|[test/unit/grep.spec.js](#user-content-r0s17)|8 ✅|||2ms|
|
||||||
|[test/unit/hook-async.spec.js](#r0s18)|3 ✅|||1ms|
|
|[test/unit/hook-async.spec.js](#user-content-r0s18)|3 ✅|||1ms|
|
||||||
|[test/unit/hook-sync-nested.spec.js](#r0s19)|4 ✅|||1ms|
|
|[test/unit/hook-sync-nested.spec.js](#user-content-r0s19)|4 ✅|||1ms|
|
||||||
|[test/unit/hook-sync.spec.js](#r0s20)|3 ✅|||0ms|
|
|[test/unit/hook-sync.spec.js](#user-content-r0s20)|3 ✅|||0ms|
|
||||||
|[test/unit/hook-timeout.spec.js](#r0s21)|1 ✅|||0ms|
|
|[test/unit/hook-timeout.spec.js](#user-content-r0s21)|1 ✅|||0ms|
|
||||||
|[test/unit/hook.spec.js](#r0s22)|4 ✅|||0ms|
|
|[test/unit/hook.spec.js](#user-content-r0s22)|4 ✅|||0ms|
|
||||||
|[test/unit/mocha.spec.js](#r0s23)|115 ✅||1 ⚪|128ms|
|
|[test/unit/mocha.spec.js](#user-content-r0s23)|115 ✅||1 ⚪|128ms|
|
||||||
|[test/unit/overspecified-async.spec.js](#r0s24)|1 ✅|||3ms|
|
|[test/unit/overspecified-async.spec.js](#user-content-r0s24)|1 ✅|||3ms|
|
||||||
|[test/unit/parse-query.spec.js](#r0s25)|2 ✅|||1ms|
|
|[test/unit/parse-query.spec.js](#user-content-r0s25)|2 ✅|||1ms|
|
||||||
|[test/unit/plugin-loader.spec.js](#r0s26)|41 ✅||1 ⚪|16ms|
|
|[test/unit/plugin-loader.spec.js](#user-content-r0s26)|41 ✅||1 ⚪|16ms|
|
||||||
|[test/unit/required-tokens.spec.js](#r0s27)|1 ✅|||0ms|
|
|[test/unit/required-tokens.spec.js](#user-content-r0s27)|1 ✅|||0ms|
|
||||||
|[test/unit/root.spec.js](#r0s28)|1 ✅|||0ms|
|
|[test/unit/root.spec.js](#user-content-r0s28)|1 ✅|||0ms|
|
||||||
|[test/unit/runnable.spec.js](#r0s29)|55 ✅|||122ms|
|
|[test/unit/runnable.spec.js](#user-content-r0s29)|55 ✅|||122ms|
|
||||||
|[test/unit/runner.spec.js](#r0s30)|77 ✅|||43ms|
|
|[test/unit/runner.spec.js](#user-content-r0s30)|77 ✅|||43ms|
|
||||||
|[test/unit/suite.spec.js](#r0s31)|57 ✅|||14ms|
|
|[test/unit/suite.spec.js](#user-content-r0s31)|57 ✅|||14ms|
|
||||||
|[test/unit/test.spec.js](#r0s32)|15 ✅|||0ms|
|
|[test/unit/test.spec.js](#user-content-r0s32)|15 ✅|||0ms|
|
||||||
|[test/unit/throw.spec.js](#r0s33)|9 ✅|||9ms|
|
|[test/unit/throw.spec.js](#user-content-r0s33)|9 ✅|||9ms|
|
||||||
|[test/unit/timeout.spec.js](#r0s34)|8 ✅|||109ms|
|
|[test/unit/timeout.spec.js](#user-content-r0s34)|8 ✅|||109ms|
|
||||||
|[test/unit/utils.spec.js](#r0s35)|75 ✅|||24ms|
|
|[test/unit/utils.spec.js](#user-content-r0s35)|75 ✅|||24ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#r0s0">test/node-unit/buffered-worker-pool.spec.js</a>
|
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">test/node-unit/buffered-worker-pool.spec.js</a>
|
||||||
```
|
```
|
||||||
class BufferedWorkerPool constructor
|
class BufferedWorkerPool constructor
|
||||||
✅ should apply defaults
|
✅ should apply defaults
|
||||||
@@ -73,7 +73,7 @@ class BufferedWorkerPool static method serializeOptions() when called multiple t
|
|||||||
class BufferedWorkerPool static method serializeOptions() when passed no arguments
|
class BufferedWorkerPool static method serializeOptions() when passed no arguments
|
||||||
✅ should not throw
|
✅ should not throw
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s1" href="#r0s1">test/node-unit/cli/config.spec.js</a>
|
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">test/node-unit/cli/config.spec.js</a>
|
||||||
```
|
```
|
||||||
cli/config findConfig()
|
cli/config findConfig()
|
||||||
✅ should look for one of the config files using findup-sync
|
✅ should look for one of the config files using findup-sync
|
||||||
@@ -95,7 +95,7 @@ cli/config loadConfig() when parsing succeeds when supplied a filepath with ".ym
|
|||||||
cli/config loadConfig() when supplied a filepath with unsupported extension
|
cli/config loadConfig() when supplied a filepath with unsupported extension
|
||||||
✅ should use the JSON parser
|
✅ should use the JSON parser
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s2" href="#r0s2">test/node-unit/cli/node-flags.spec.js</a>
|
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">test/node-unit/cli/node-flags.spec.js</a>
|
||||||
```
|
```
|
||||||
node-flags impliesNoTimeouts()
|
node-flags impliesNoTimeouts()
|
||||||
✅ should return true for inspect flags
|
✅ should return true for inspect flags
|
||||||
@@ -209,7 +209,7 @@ node-flags unparseNodeFlags()
|
|||||||
✅ should handle multiple v8 flags
|
✅ should handle multiple v8 flags
|
||||||
✅ should handle single v8 flags
|
✅ should handle single v8 flags
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s3" href="#r0s3">test/node-unit/cli/options.spec.js</a>
|
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">test/node-unit/cli/options.spec.js</a>
|
||||||
```
|
```
|
||||||
options loadOptions() "extension" handling when user does not supply "extension" option
|
options loadOptions() "extension" handling when user does not supply "extension" option
|
||||||
✅ should retain the default
|
✅ should retain the default
|
||||||
@@ -268,7 +268,7 @@ options loadOptions() when parameter provided rc file when path to config (`--co
|
|||||||
✅ should not look for a config
|
✅ should not look for a config
|
||||||
✅ should throw to warn the user
|
✅ should throw to warn the user
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s4" href="#r0s4">test/node-unit/cli/run-helpers.spec.js</a>
|
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">test/node-unit/cli/run-helpers.spec.js</a>
|
||||||
```
|
```
|
||||||
helpers list() when given a comma-delimited string
|
helpers list() when given a comma-delimited string
|
||||||
✅ should return a flat array
|
✅ should return a flat array
|
||||||
@@ -287,7 +287,7 @@ helpers validateLegacyPlugin() when used with an "interfaces" key
|
|||||||
helpers validateLegacyPlugin() when used with an unknown plugin type
|
helpers validateLegacyPlugin() when used with an unknown plugin type
|
||||||
✅ should fail
|
✅ should fail
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s5" href="#r0s5">test/node-unit/cli/run.spec.js</a>
|
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">test/node-unit/cli/run.spec.js</a>
|
||||||
```
|
```
|
||||||
command run builder array type
|
command run builder array type
|
||||||
✅ should include option extension
|
✅ should include option extension
|
||||||
@@ -334,7 +334,7 @@ command run builder string type
|
|||||||
✅ should include option timeout
|
✅ should include option timeout
|
||||||
✅ should include option ui
|
✅ should include option ui
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s6" href="#r0s6">test/node-unit/mocha.spec.js</a>
|
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">test/node-unit/mocha.spec.js</a>
|
||||||
```
|
```
|
||||||
Mocha instance method addFile()
|
Mocha instance method addFile()
|
||||||
✅ should add the given file to the files array
|
✅ should add the given file to the files array
|
||||||
@@ -378,7 +378,7 @@ Mocha instance method unloadFiles()
|
|||||||
Mocha static method unloadFile()
|
Mocha static method unloadFile()
|
||||||
✅ should unload a specific file from cache
|
✅ should unload a specific file from cache
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s7" href="#r0s7">test/node-unit/parallel-buffered-runner.spec.js</a>
|
### ✅ <a id="user-content-r0s7" href="#user-content-r0s7">test/node-unit/parallel-buffered-runner.spec.js</a>
|
||||||
```
|
```
|
||||||
parallel-buffered-runner ParallelBufferedRunner constructor
|
parallel-buffered-runner ParallelBufferedRunner constructor
|
||||||
✅ should start in "IDLE" state
|
✅ should start in "IDLE" state
|
||||||
@@ -416,7 +416,7 @@ parallel-buffered-runner ParallelBufferedRunner instance method workerReporter()
|
|||||||
parallel-buffered-runner ParallelBufferedRunner instance property _state
|
parallel-buffered-runner ParallelBufferedRunner instance property _state
|
||||||
✅ should disallow an invalid state transition
|
✅ should disallow an invalid state transition
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s8" href="#r0s8">test/node-unit/reporters/parallel-buffered.spec.js</a>
|
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">test/node-unit/reporters/parallel-buffered.spec.js</a>
|
||||||
```
|
```
|
||||||
ParallelBuffered constructor
|
ParallelBuffered constructor
|
||||||
✅ should listen for Runner events
|
✅ should listen for Runner events
|
||||||
@@ -429,7 +429,7 @@ ParallelBuffered instance method done
|
|||||||
✅ should execute its callback with a SerializableWorkerResult
|
✅ should execute its callback with a SerializableWorkerResult
|
||||||
✅ should reset its `events` prop
|
✅ should reset its `events` prop
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s9" href="#r0s9">test/node-unit/serializer.spec.js</a>
|
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">test/node-unit/serializer.spec.js</a>
|
||||||
```
|
```
|
||||||
serializer function deserialize when passed a non-object value
|
serializer function deserialize when passed a non-object value
|
||||||
✅ should return the value
|
✅ should return the value
|
||||||
@@ -505,7 +505,7 @@ serializer SerializableWorkerResult static method isSerializedWorkerResult when
|
|||||||
serializer SerializableWorkerResult static method isSerializedWorkerResult when passed an object without an appropriate `__type` prop
|
serializer SerializableWorkerResult static method isSerializedWorkerResult when passed an object without an appropriate `__type` prop
|
||||||
✅ should return `false`
|
✅ should return `false`
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s10" href="#r0s10">test/node-unit/stack-trace-filter.spec.js</a>
|
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">test/node-unit/stack-trace-filter.spec.js</a>
|
||||||
```
|
```
|
||||||
stackTraceFilter() on browser
|
stackTraceFilter() on browser
|
||||||
✅ does not strip out other bower_components
|
✅ does not strip out other bower_components
|
||||||
@@ -517,7 +517,7 @@ stackTraceFilter() on node on POSIX OS
|
|||||||
stackTraceFilter() on node on Windows
|
stackTraceFilter() on node on Windows
|
||||||
✅ should work on Windows
|
✅ should work on Windows
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s11" href="#r0s11">test/node-unit/utils.spec.js</a>
|
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">test/node-unit/utils.spec.js</a>
|
||||||
```
|
```
|
||||||
utils function canonicalType()
|
utils function canonicalType()
|
||||||
✅ should return "asyncfunction" if the parameter is an async function
|
✅ should return "asyncfunction" if the parameter is an async function
|
||||||
@@ -528,7 +528,7 @@ utils function type()
|
|||||||
✅ should return "error" if the parameter is an Error
|
✅ should return "error" if the parameter is an Error
|
||||||
✅ should return "function" if the parameter is an async function
|
✅ should return "function" if the parameter is an async function
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s12" href="#r0s12">test/node-unit/worker.spec.js</a>
|
### ✅ <a id="user-content-r0s12" href="#user-content-r0s12">test/node-unit/worker.spec.js</a>
|
||||||
```
|
```
|
||||||
worker when run as main process
|
worker when run as main process
|
||||||
✅ should throw
|
✅ should throw
|
||||||
@@ -557,7 +557,7 @@ worker when run as worker process function run() when the file at "filepath" is
|
|||||||
worker when run as worker process function run() when the file at "filepath" is loadable when serialization succeeds
|
worker when run as worker process function run() when the file at "filepath" is loadable when serialization succeeds
|
||||||
✅ should resolve with a SerializedWorkerResult
|
✅ should resolve with a SerializedWorkerResult
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s13" href="#r0s13">test/unit/context.spec.js</a>
|
### ✅ <a id="user-content-r0s13" href="#user-content-r0s13">test/unit/context.spec.js</a>
|
||||||
```
|
```
|
||||||
Context nested
|
Context nested
|
||||||
✅ should work
|
✅ should work
|
||||||
@@ -574,7 +574,7 @@ methods slow()
|
|||||||
methods timeout()
|
methods timeout()
|
||||||
✅ should return the timeout
|
✅ should return the timeout
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s14" href="#r0s14">test/unit/duration.spec.js</a>
|
### ✅ <a id="user-content-r0s14" href="#user-content-r0s14">test/unit/duration.spec.js</a>
|
||||||
```
|
```
|
||||||
durations when fast
|
durations when fast
|
||||||
✅ should not highlight
|
✅ should not highlight
|
||||||
@@ -583,7 +583,7 @@ durations when reasonable
|
|||||||
durations when slow
|
durations when slow
|
||||||
✅ should highlight in red
|
✅ should highlight in red
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s15" href="#r0s15">test/unit/errors.spec.js</a>
|
### ✅ <a id="user-content-r0s15" href="#user-content-r0s15">test/unit/errors.spec.js</a>
|
||||||
```
|
```
|
||||||
Errors createForbiddenExclusivityError() when Mocha instance is not running in a worker process
|
Errors createForbiddenExclusivityError() when Mocha instance is not running in a worker process
|
||||||
✅ should output a message regarding --forbid-only
|
✅ should output a message regarding --forbid-only
|
||||||
@@ -608,7 +608,7 @@ Errors warn()
|
|||||||
✅ should ignore falsy messages
|
✅ should ignore falsy messages
|
||||||
✅ should not cache messages
|
✅ should not cache messages
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s16" href="#r0s16">test/unit/globals.spec.js</a>
|
### ✅ <a id="user-content-r0s16" href="#user-content-r0s16">test/unit/globals.spec.js</a>
|
||||||
```
|
```
|
||||||
global leaks
|
global leaks
|
||||||
✅ should cause tests to fail
|
✅ should cause tests to fail
|
||||||
@@ -616,7 +616,7 @@ global leaks
|
|||||||
✅ should pass when prefixed "mocha-"
|
✅ should pass when prefixed "mocha-"
|
||||||
✅ should pass with wildcard
|
✅ should pass with wildcard
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s17" href="#r0s17">test/unit/grep.spec.js</a>
|
### ✅ <a id="user-content-r0s17" href="#user-content-r0s17">test/unit/grep.spec.js</a>
|
||||||
```
|
```
|
||||||
Mocha .grep()
|
Mocha .grep()
|
||||||
✅ should add a RegExp to the mocha.options object
|
✅ should add a RegExp to the mocha.options object
|
||||||
@@ -631,14 +631,14 @@ Mocha "grep" option
|
|||||||
Mocha "invert" option
|
Mocha "invert" option
|
||||||
✅ should add a Boolean to the mocha.options object
|
✅ should add a Boolean to the mocha.options object
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s18" href="#r0s18">test/unit/hook-async.spec.js</a>
|
### ✅ <a id="user-content-r0s18" href="#user-content-r0s18">test/unit/hook-async.spec.js</a>
|
||||||
```
|
```
|
||||||
async hooks
|
async hooks
|
||||||
✅ one
|
✅ one
|
||||||
✅ three
|
✅ three
|
||||||
✅ two
|
✅ two
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s19" href="#r0s19">test/unit/hook-sync-nested.spec.js</a>
|
### ✅ <a id="user-content-r0s19" href="#user-content-r0s19">test/unit/hook-sync-nested.spec.js</a>
|
||||||
```
|
```
|
||||||
serial nested
|
serial nested
|
||||||
✅ bar
|
✅ bar
|
||||||
@@ -647,19 +647,19 @@ serial nested hooks
|
|||||||
✅ one
|
✅ one
|
||||||
✅ two
|
✅ two
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s20" href="#r0s20">test/unit/hook-sync.spec.js</a>
|
### ✅ <a id="user-content-r0s20" href="#user-content-r0s20">test/unit/hook-sync.spec.js</a>
|
||||||
```
|
```
|
||||||
serial hooks
|
serial hooks
|
||||||
✅ one
|
✅ one
|
||||||
✅ three
|
✅ three
|
||||||
✅ two
|
✅ two
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s21" href="#r0s21">test/unit/hook-timeout.spec.js</a>
|
### ✅ <a id="user-content-r0s21" href="#user-content-r0s21">test/unit/hook-timeout.spec.js</a>
|
||||||
```
|
```
|
||||||
hook timeout
|
hook timeout
|
||||||
✅ should work
|
✅ should work
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s22" href="#r0s22">test/unit/hook.spec.js</a>
|
### ✅ <a id="user-content-r0s22" href="#user-content-r0s22">test/unit/hook.spec.js</a>
|
||||||
```
|
```
|
||||||
Hook error
|
Hook error
|
||||||
✅ should get the hook._error when called without arguments
|
✅ should get the hook._error when called without arguments
|
||||||
@@ -668,7 +668,7 @@ Hook reset
|
|||||||
✅ should call Runnable.reset
|
✅ should call Runnable.reset
|
||||||
✅ should reset the error state
|
✅ should reset the error state
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s23" href="#r0s23">test/unit/mocha.spec.js</a>
|
### ✅ <a id="user-content-r0s23" href="#user-content-r0s23">test/unit/mocha.spec.js</a>
|
||||||
```
|
```
|
||||||
Mocha constructor
|
Mocha constructor
|
||||||
✅ should set _cleanReferencesAfterRun to true
|
✅ should set _cleanReferencesAfterRun to true
|
||||||
@@ -868,18 +868,18 @@ Mocha instance method runGlobalTeardown() when fixture(s) are present
|
|||||||
Mocha instance method unloadFile() when run in a browser
|
Mocha instance method unloadFile() when run in a browser
|
||||||
✅ should throw
|
✅ should throw
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s24" href="#r0s24">test/unit/overspecified-async.spec.js</a>
|
### ✅ <a id="user-content-r0s24" href="#user-content-r0s24">test/unit/overspecified-async.spec.js</a>
|
||||||
```
|
```
|
||||||
overspecified asynchronous resolution method
|
overspecified asynchronous resolution method
|
||||||
✅ should fail when multiple methods are used
|
✅ should fail when multiple methods are used
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s25" href="#r0s25">test/unit/parse-query.spec.js</a>
|
### ✅ <a id="user-content-r0s25" href="#user-content-r0s25">test/unit/parse-query.spec.js</a>
|
||||||
```
|
```
|
||||||
parseQuery()
|
parseQuery()
|
||||||
✅ should get queryString and return key-value object
|
✅ should get queryString and return key-value object
|
||||||
✅ should parse "+" as a space
|
✅ should parse "+" as a space
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s26" href="#r0s26">test/unit/plugin-loader.spec.js</a>
|
### ✅ <a id="user-content-r0s26" href="#user-content-r0s26">test/unit/plugin-loader.spec.js</a>
|
||||||
```
|
```
|
||||||
plugin module class PluginLoader constructor when passed custom plugins
|
plugin module class PluginLoader constructor when passed custom plugins
|
||||||
✅ should register the custom plugins
|
✅ should register the custom plugins
|
||||||
@@ -958,17 +958,17 @@ plugin module root hooks plugin 🎣 when impl is an array
|
|||||||
plugin module root hooks plugin 🎣 when impl is an object of functions
|
plugin module root hooks plugin 🎣 when impl is an object of functions
|
||||||
⚪ should pass validation
|
⚪ should pass validation
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s27" href="#r0s27">test/unit/required-tokens.spec.js</a>
|
### ✅ <a id="user-content-r0s27" href="#user-content-r0s27">test/unit/required-tokens.spec.js</a>
|
||||||
```
|
```
|
||||||
using imported describe
|
using imported describe
|
||||||
✅ using imported it
|
✅ using imported it
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s28" href="#r0s28">test/unit/root.spec.js</a>
|
### ✅ <a id="user-content-r0s28" href="#user-content-r0s28">test/unit/root.spec.js</a>
|
||||||
```
|
```
|
||||||
root
|
root
|
||||||
✅ should be a valid suite
|
✅ should be a valid suite
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s29" href="#r0s29">test/unit/runnable.spec.js</a>
|
### ✅ <a id="user-content-r0s29" href="#user-content-r0s29">test/unit/runnable.spec.js</a>
|
||||||
```
|
```
|
||||||
Runnable(title, fn) .run(fn) if async
|
Runnable(title, fn) .run(fn) if async
|
||||||
✅ this.skip() should halt synchronous execution
|
✅ this.skip() should halt synchronous execution
|
||||||
@@ -1069,7 +1069,7 @@ Runnable(title, fn) when arity >= 1
|
|||||||
✅ should be .async
|
✅ should be .async
|
||||||
✅ should not be .sync
|
✅ should not be .sync
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s30" href="#r0s30">test/unit/runner.spec.js</a>
|
### ✅ <a id="user-content-r0s30" href="#user-content-r0s30">test/unit/runner.spec.js</a>
|
||||||
```
|
```
|
||||||
Runner instance method _uncaught() when called with a non-Runner context
|
Runner instance method _uncaught() when called with a non-Runner context
|
||||||
✅ should throw
|
✅ should throw
|
||||||
@@ -1185,7 +1185,7 @@ Runner instance method uncaught() when provided an object argument when argument
|
|||||||
Runner instance method workerReporter()
|
Runner instance method workerReporter()
|
||||||
✅ should throw
|
✅ should throw
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s31" href="#r0s31">test/unit/suite.spec.js</a>
|
### ✅ <a id="user-content-r0s31" href="#user-content-r0s31">test/unit/suite.spec.js</a>
|
||||||
```
|
```
|
||||||
Suite instance method addSuite()
|
Suite instance method addSuite()
|
||||||
✅ adds the suite to the suites collection
|
✅ adds the suite to the suites collection
|
||||||
@@ -1278,7 +1278,7 @@ Test initialization
|
|||||||
✅ should not throw if the title is a string
|
✅ should not throw if the title is a string
|
||||||
✅ should throw an error if the title isn't a string
|
✅ should throw an error if the title isn't a string
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s32" href="#r0s32">test/unit/test.spec.js</a>
|
### ✅ <a id="user-content-r0s32" href="#user-content-r0s32">test/unit/test.spec.js</a>
|
||||||
```
|
```
|
||||||
Test .clone()
|
Test .clone()
|
||||||
✅ should add/keep the retriedTest value
|
✅ should add/keep the retriedTest value
|
||||||
@@ -1300,7 +1300,7 @@ Test .reset()
|
|||||||
✅ should call Runnable.reset
|
✅ should call Runnable.reset
|
||||||
✅ should reset the run state
|
✅ should reset the run state
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s33" href="#r0s33">test/unit/throw.spec.js</a>
|
### ✅ <a id="user-content-r0s33" href="#user-content-r0s33">test/unit/throw.spec.js</a>
|
||||||
```
|
```
|
||||||
a test that throws non-extensible
|
a test that throws non-extensible
|
||||||
✅ should not pass if throwing async and test is async
|
✅ should not pass if throwing async and test is async
|
||||||
@@ -1315,7 +1315,7 @@ a test that throws undefined
|
|||||||
✅ should not pass if throwing sync and test is async
|
✅ should not pass if throwing sync and test is async
|
||||||
✅ should not pass if throwing sync and test is sync
|
✅ should not pass if throwing sync and test is sync
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s34" href="#r0s34">test/unit/timeout.spec.js</a>
|
### ✅ <a id="user-content-r0s34" href="#user-content-r0s34">test/unit/timeout.spec.js</a>
|
||||||
```
|
```
|
||||||
timeouts
|
timeouts
|
||||||
✅ should allow overriding per-test
|
✅ should allow overriding per-test
|
||||||
@@ -1333,7 +1333,7 @@ timeouts disabling using beforeEach
|
|||||||
timeouts disabling using timeout(0)
|
timeouts disabling using timeout(0)
|
||||||
✅ should suppress timeout(4)
|
✅ should suppress timeout(4)
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s35" href="#r0s35">test/unit/utils.spec.js</a>
|
### ✅ <a id="user-content-r0s35" href="#user-content-r0s35">test/unit/utils.spec.js</a>
|
||||||
```
|
```
|
||||||
lib/utils canonicalType()
|
lib/utils canonicalType()
|
||||||
✅ should recognize various types
|
✅ should recognize various types
|
||||||
|
|||||||
@@ -2,27 +2,27 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/external/flutter/provider-test-results.json|268 ✅|1 ❌||0ms|
|
|fixtures/external/flutter/provider-test-results.json|268 ✅|1 ❌||0ms|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/external/flutter/provider-test-results.json</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/flutter/provider-test-results.json</a>
|
||||||
**269** tests were completed in **0ms** with **268** passed, **1** failed and **0** skipped.
|
**269** tests were completed in **0ms** with **268** passed, **1** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[test/builder_test.dart](#r0s0)|24 ✅|||402ms|
|
|[test/builder_test.dart](#user-content-r0s0)|24 ✅|||402ms|
|
||||||
|[test/change_notifier_provider_test.dart](#r0s1)|10 ✅|||306ms|
|
|[test/change_notifier_provider_test.dart](#user-content-r0s1)|10 ✅|||306ms|
|
||||||
|[test/consumer_test.dart](#r0s2)|18 ✅|||340ms|
|
|[test/consumer_test.dart](#user-content-r0s2)|18 ✅|||340ms|
|
||||||
|[test/context_test.dart](#r0s3)|31 ✅|||698ms|
|
|[test/context_test.dart](#user-content-r0s3)|31 ✅|||698ms|
|
||||||
|[test/future_provider_test.dart](#r0s4)|10 ✅|||305ms|
|
|[test/future_provider_test.dart](#user-content-r0s4)|10 ✅|||305ms|
|
||||||
|[test/inherited_provider_test.dart](#r0s5)|81 ✅|||1s|
|
|[test/inherited_provider_test.dart](#user-content-r0s5)|81 ✅|||1s|
|
||||||
|[test/listenable_provider_test.dart](#r0s6)|16 ✅|||353ms|
|
|[test/listenable_provider_test.dart](#user-content-r0s6)|16 ✅|||353ms|
|
||||||
|[test/listenable_proxy_provider_test.dart](#r0s7)|12 ✅|||373ms|
|
|[test/listenable_proxy_provider_test.dart](#user-content-r0s7)|12 ✅|||373ms|
|
||||||
|[test/multi_provider_test.dart](#r0s8)|3 ✅|||198ms|
|
|[test/multi_provider_test.dart](#user-content-r0s8)|3 ✅|||198ms|
|
||||||
|[test/provider_test.dart](#r0s9)|11 ✅|||306ms|
|
|[test/provider_test.dart](#user-content-r0s9)|11 ✅|||306ms|
|
||||||
|[test/proxy_provider_test.dart](#r0s10)|16 ✅|||438ms|
|
|[test/proxy_provider_test.dart](#user-content-r0s10)|16 ✅|||438ms|
|
||||||
|[test/reassemble_test.dart](#r0s11)|3 ✅|||221ms|
|
|[test/reassemble_test.dart](#user-content-r0s11)|3 ✅|||221ms|
|
||||||
|[test/selector_test.dart](#r0s12)|17 ✅|||364ms|
|
|[test/selector_test.dart](#user-content-r0s12)|17 ✅|||364ms|
|
||||||
|[test/stateful_provider_test.dart](#r0s13)|4 ✅|||254ms|
|
|[test/stateful_provider_test.dart](#user-content-r0s13)|4 ✅|||254ms|
|
||||||
|[test/stream_provider_test.dart](#r0s14)|8 ✅|||282ms|
|
|[test/stream_provider_test.dart](#user-content-r0s14)|8 ✅|||282ms|
|
||||||
|[test/value_listenable_provider_test.dart](#r0s15)|4 ✅|1 ❌||327ms|
|
|[test/value_listenable_provider_test.dart](#user-content-r0s15)|4 ✅|1 ❌||327ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#r0s0">test/builder_test.dart</a>
|
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">test/builder_test.dart</a>
|
||||||
```
|
```
|
||||||
ChangeNotifierProvider
|
ChangeNotifierProvider
|
||||||
✅ default
|
✅ default
|
||||||
@@ -54,7 +54,7 @@ MultiProvider
|
|||||||
✅ with ProxyProvider5
|
✅ with ProxyProvider5
|
||||||
✅ with ProxyProvider6
|
✅ with ProxyProvider6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s1" href="#r0s1">test/change_notifier_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">test/change_notifier_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ Use builder property, not child
|
✅ Use builder property, not child
|
||||||
ChangeNotifierProvider
|
ChangeNotifierProvider
|
||||||
@@ -68,7 +68,7 @@ ChangeNotifierProvider
|
|||||||
✅ builder6
|
✅ builder6
|
||||||
✅ builder0
|
✅ builder0
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s2" href="#r0s2">test/consumer_test.dart</a>
|
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">test/consumer_test.dart</a>
|
||||||
```
|
```
|
||||||
consumer
|
consumer
|
||||||
✅ obtains value from Provider<T>
|
✅ obtains value from Provider<T>
|
||||||
@@ -95,7 +95,7 @@ consumer6
|
|||||||
✅ crashed with no builder
|
✅ crashed with no builder
|
||||||
✅ can be used inside MultiProvider
|
✅ can be used inside MultiProvider
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s3" href="#r0s3">test/context_test.dart</a>
|
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">test/context_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ watch in layoutbuilder
|
✅ watch in layoutbuilder
|
||||||
✅ select in layoutbuilder
|
✅ select in layoutbuilder
|
||||||
@@ -130,7 +130,7 @@ BuildContext
|
|||||||
✅ context.select deeply compares sets
|
✅ context.select deeply compares sets
|
||||||
✅ context.watch listens to value changes
|
✅ context.watch listens to value changes
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s4" href="#r0s4">test/future_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">test/future_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
✅ (catchError) previous future completes after transition is no-op
|
✅ (catchError) previous future completes after transition is no-op
|
||||||
@@ -144,7 +144,7 @@ BuildContext
|
|||||||
FutureProvider()
|
FutureProvider()
|
||||||
✅ crashes if builder is null
|
✅ crashes if builder is null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s5" href="#r0s5">test/inherited_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">test/inherited_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ regression test #377
|
✅ regression test #377
|
||||||
✅ rebuild on dependency flags update
|
✅ rebuild on dependency flags update
|
||||||
@@ -233,7 +233,7 @@ DeferredInheritedProvider()
|
|||||||
✅ dispose
|
✅ dispose
|
||||||
✅ dispose no-op if never built
|
✅ dispose no-op if never built
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s6" href="#r0s6">test/listenable_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">test/listenable_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
ListenableProvider
|
ListenableProvider
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
@@ -255,7 +255,7 @@ ListenableProvider stateful constructor
|
|||||||
✅ pass down key
|
✅ pass down key
|
||||||
✅ throws if create is null
|
✅ throws if create is null
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s7" href="#r0s7">test/listenable_proxy_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s7" href="#user-content-r0s7">test/listenable_proxy_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
ListenableProxyProvider
|
ListenableProxyProvider
|
||||||
✅ throws if update is missing
|
✅ throws if update is missing
|
||||||
@@ -272,14 +272,14 @@ ListenableProxyProvider variants
|
|||||||
✅ ListenableProxyProvider5
|
✅ ListenableProxyProvider5
|
||||||
✅ ListenableProxyProvider6
|
✅ ListenableProxyProvider6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s8" href="#r0s8">test/multi_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">test/multi_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
MultiProvider
|
MultiProvider
|
||||||
✅ throw if providers is null
|
✅ throw if providers is null
|
||||||
✅ MultiProvider children can only access parent providers
|
✅ MultiProvider children can only access parent providers
|
||||||
✅ MultiProvider.providers with ignored child
|
✅ MultiProvider.providers with ignored child
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s9" href="#r0s9">test/provider_test.dart</a>
|
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">test/provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
Provider.of
|
Provider.of
|
||||||
@@ -295,7 +295,7 @@ Provider
|
|||||||
✅ throws an error if no provider found
|
✅ throws an error if no provider found
|
||||||
✅ update should notify
|
✅ update should notify
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s10" href="#r0s10">test/proxy_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">test/proxy_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
ProxyProvider
|
ProxyProvider
|
||||||
✅ throws if the provided value is a Listenable/Stream
|
✅ throws if the provided value is a Listenable/Stream
|
||||||
@@ -316,13 +316,13 @@ ProxyProvider variants
|
|||||||
✅ ProxyProvider5
|
✅ ProxyProvider5
|
||||||
✅ ProxyProvider6
|
✅ ProxyProvider6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s11" href="#r0s11">test/reassemble_test.dart</a>
|
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">test/reassemble_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ ReassembleHandler
|
✅ ReassembleHandler
|
||||||
✅ unevaluated create
|
✅ unevaluated create
|
||||||
✅ unevaluated create
|
✅ unevaluated create
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s12" href="#r0s12">test/selector_test.dart</a>
|
### ✅ <a id="user-content-r0s12" href="#user-content-r0s12">test/selector_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ asserts that builder/selector are not null
|
✅ asserts that builder/selector are not null
|
||||||
✅ Deep compare maps by default
|
✅ Deep compare maps by default
|
||||||
@@ -342,14 +342,14 @@ ProxyProvider variants
|
|||||||
✅ Selector5
|
✅ Selector5
|
||||||
✅ Selector6
|
✅ Selector6
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s13" href="#r0s13">test/stateful_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s13" href="#user-content-r0s13">test/stateful_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ asserts
|
✅ asserts
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
✅ calls create only once
|
✅ calls create only once
|
||||||
✅ dispose
|
✅ dispose
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s14" href="#r0s14">test/stream_provider_test.dart</a>
|
### ✅ <a id="user-content-r0s14" href="#user-content-r0s14">test/stream_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
✅ works with MultiProvider
|
✅ works with MultiProvider
|
||||||
✅ transition from stream to stream preserve state
|
✅ transition from stream to stream preserve state
|
||||||
@@ -361,7 +361,7 @@ StreamProvider()
|
|||||||
✅ create and dispose stream with builder
|
✅ create and dispose stream with builder
|
||||||
✅ crashes if builder is null
|
✅ crashes if builder is null
|
||||||
```
|
```
|
||||||
### ❌ <a id="user-content-r0s15" href="#r0s15">test/value_listenable_provider_test.dart</a>
|
### ❌ <a id="user-content-r0s15" href="#user-content-r0s15">test/value_listenable_provider_test.dart</a>
|
||||||
```
|
```
|
||||||
valueListenableProvider
|
valueListenableProvider
|
||||||
✅ rebuilds when value change
|
✅ rebuilds when value change
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml||1 ❌|1 ⚪|116ms|
|
|fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml||1 ❌|1 ⚪|116ms|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/external/java/TEST-org.apache.pulsar.AddMissingPatchVersionTest.xml</a>
|
||||||
**2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped.
|
**2** tests were completed in **116ms** with **0** passed, **1** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[org.apache.pulsar.AddMissingPatchVersionTest](#r0s0)||1 ❌|1 ⚪|116ms|
|
|[org.apache.pulsar.AddMissingPatchVersionTest](#user-content-r0s0)||1 ❌|1 ⚪|116ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">org.apache.pulsar.AddMissingPatchVersionTest</a>
|
||||||
```
|
```
|
||||||
⚪ testVersionStrings
|
⚪ testVersionStrings
|
||||||
❌ testVersionStrings
|
❌ testVersionStrings
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -2,12 +2,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/rspec-json.json|1 ✅|1 ❌|1 ⚪|0ms|
|
|fixtures/rspec-json.json|1 ✅|1 ❌|1 ⚪|0ms|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/rspec-json.json</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/rspec-json.json</a>
|
||||||
**3** tests were completed in **0ms** with **1** passed, **1** failed and **1** skipped.
|
**3** tests were completed in **0ms** with **1** passed, **1** failed and **1** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[./spec/config/check_env_vars_spec.rb](#r0s0)|1 ✅|1 ❌|1 ⚪|0ms|
|
|[./spec/config/check_env_vars_spec.rb](#user-content-r0s0)|1 ✅|1 ❌|1 ⚪|0ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">./spec/config/check_env_vars_spec.rb</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">./spec/config/check_env_vars_spec.rb</a>
|
||||||
```
|
```
|
||||||
CheckEnvVars#call when all env vars are defined behaves like success load
|
CheckEnvVars#call when all env vars are defined behaves like success load
|
||||||
❌ CheckEnvVars#call when all env vars are defined behaves like success load fails in assertion
|
❌ CheckEnvVars#call when all env vars are defined behaves like success load fails in assertion
|
||||||
|
|||||||
@@ -4,24 +4,24 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/external/SilentNotes.trx|67 ✅||12 ⚪|1s|
|
|fixtures/external/SilentNotes.trx|67 ✅||12 ⚪|1s|
|
||||||
## ✅ <a id="user-content-r0" href="#r0">fixtures/external/SilentNotes.trx</a>
|
## ✅ <a id="user-content-r0" href="#user-content-r0">fixtures/external/SilentNotes.trx</a>
|
||||||
**79** tests were completed in **1s** with **67** passed, **0** failed and **12** skipped.
|
**79** tests were completed in **1s** with **67** passed, **0** failed and **12** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageCredentialsTest](#r0s0)|6 ✅|||30ms|
|
|[VanillaCloudStorageClientTest.CloudStorageCredentialsTest](#user-content-r0s0)|6 ✅|||30ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest](#r0s1)|2 ✅||3 ⚪|101ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest](#user-content-r0s1)|2 ✅||3 ⚪|101ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest](#r0s2)|4 ✅||3 ⚪|166ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest](#user-content-r0s2)|4 ✅||3 ⚪|166ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest](#r0s3)|2 ✅|||7ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest](#user-content-r0s3)|2 ✅|||7ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest](#r0s4)|1 ✅||3 ⚪|40ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest](#user-content-r0s4)|1 ✅||3 ⚪|40ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest](#r0s5)|1 ✅||3 ⚪|15ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest](#user-content-r0s5)|1 ✅||3 ⚪|15ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest](#r0s6)|5 ✅|||16ms|
|
|[VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest](#user-content-r0s6)|5 ✅|||16ms|
|
||||||
|[VanillaCloudStorageClientTest.CloudStorageTokenTest](#r0s7)|9 ✅|||0ms|
|
|[VanillaCloudStorageClientTest.CloudStorageTokenTest](#user-content-r0s7)|9 ✅|||0ms|
|
||||||
|[VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest](#r0s8)|3 ✅|||3ms|
|
|[VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest](#user-content-r0s8)|3 ✅|||3ms|
|
||||||
|[VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest](#r0s9)|9 ✅|||12ms|
|
|[VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest](#user-content-r0s9)|9 ✅|||12ms|
|
||||||
|[VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest](#r0s10)|5 ✅|||13ms|
|
|[VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest](#user-content-r0s10)|5 ✅|||13ms|
|
||||||
|[VanillaCloudStorageClientTest.SecureStringExtensionsTest](#r0s11)|7 ✅|||0ms|
|
|[VanillaCloudStorageClientTest.SecureStringExtensionsTest](#user-content-r0s11)|7 ✅|||0ms|
|
||||||
|[VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest](#r0s12)|13 ✅|||43ms|
|
|[VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest](#user-content-r0s12)|13 ✅|||43ms|
|
||||||
### ✅ <a id="user-content-r0s0" href="#r0s0">VanillaCloudStorageClientTest.CloudStorageCredentialsTest</a>
|
### ✅ <a id="user-content-r0s0" href="#user-content-r0s0">VanillaCloudStorageClientTest.CloudStorageCredentialsTest</a>
|
||||||
```
|
```
|
||||||
✅ AreEqualWorksWithDifferentPassword
|
✅ AreEqualWorksWithDifferentPassword
|
||||||
✅ AreEqualWorksWithSameContent
|
✅ AreEqualWorksWithSameContent
|
||||||
@@ -30,7 +30,7 @@
|
|||||||
✅ ValidateAcceptsValidCredentials
|
✅ ValidateAcceptsValidCredentials
|
||||||
✅ ValidateRejectsInvalidCredentials
|
✅ ValidateRejectsInvalidCredentials
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s1" href="#r0s1">VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s1" href="#user-content-r0s1">VanillaCloudStorageClientTest.CloudStorageProviders.DropboxCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
⚪ ReallyDoFetchToken
|
⚪ ReallyDoFetchToken
|
||||||
@@ -38,7 +38,7 @@
|
|||||||
⚪ ReallyDoRefreshToken
|
⚪ ReallyDoRefreshToken
|
||||||
✅ ThrowsAccessDeniedExceptionWithInvalidToken
|
✅ ThrowsAccessDeniedExceptionWithInvalidToken
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s2" href="#r0s2">VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s2" href="#user-content-r0s2">VanillaCloudStorageClientTest.CloudStorageProviders.FtpCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
✅ SanitizeCredentials_ChangesInvalidPrefix
|
✅ SanitizeCredentials_ChangesInvalidPrefix
|
||||||
@@ -48,26 +48,26 @@
|
|||||||
⚪ ThrowsWithInvalidUrl
|
⚪ ThrowsWithInvalidUrl
|
||||||
⚪ ThrowsWithInvalidUsername
|
⚪ ThrowsWithInvalidUsername
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s3" href="#r0s3">VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s3" href="#user-content-r0s3">VanillaCloudStorageClientTest.CloudStorageProviders.GmxCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ ChoosesCorrectUrlForGmxComEmail
|
✅ ChoosesCorrectUrlForGmxComEmail
|
||||||
✅ ChoosesCorrectUrlForGmxNetEmail
|
✅ ChoosesCorrectUrlForGmxNetEmail
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s4" href="#r0s4">VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s4" href="#user-content-r0s4">VanillaCloudStorageClientTest.CloudStorageProviders.GoogleCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
⚪ ReallyDoFetchToken
|
⚪ ReallyDoFetchToken
|
||||||
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
||||||
⚪ ReallyDoRefreshToken
|
⚪ ReallyDoRefreshToken
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s5" href="#r0s5">VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s5" href="#user-content-r0s5">VanillaCloudStorageClientTest.CloudStorageProviders.OnedriveCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
⚪ ReallyDoFetchToken
|
⚪ ReallyDoFetchToken
|
||||||
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
⚪ ReallyDoOpenAuthorizationPageInBrowser
|
||||||
⚪ ReallyDoRefreshToken
|
⚪ ReallyDoRefreshToken
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s6" href="#r0s6">VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s6" href="#user-content-r0s6">VanillaCloudStorageClientTest.CloudStorageProviders.WebdavCloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ FileLifecycleWorks
|
✅ FileLifecycleWorks
|
||||||
✅ ParseGmxWebdavResponseCorrectly
|
✅ ParseGmxWebdavResponseCorrectly
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
✅ ThrowsWithInvalidPath
|
✅ ThrowsWithInvalidPath
|
||||||
✅ ThrowsWithInvalidUsername
|
✅ ThrowsWithInvalidUsername
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s7" href="#r0s7">VanillaCloudStorageClientTest.CloudStorageTokenTest</a>
|
### ✅ <a id="user-content-r0s7" href="#user-content-r0s7">VanillaCloudStorageClientTest.CloudStorageTokenTest</a>
|
||||||
```
|
```
|
||||||
✅ AreEqualWorksWithNullDate
|
✅ AreEqualWorksWithNullDate
|
||||||
✅ AreEqualWorksWithSameContent
|
✅ AreEqualWorksWithSameContent
|
||||||
@@ -87,13 +87,13 @@
|
|||||||
✅ SetExpiryDateBySecondsWorksWithNull
|
✅ SetExpiryDateBySecondsWorksWithNull
|
||||||
✅ SetExpiryDateBySecondsWorksWithVeryShortPeriod
|
✅ SetExpiryDateBySecondsWorksWithVeryShortPeriod
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s8" href="#r0s8">VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest</a>
|
### ✅ <a id="user-content-r0s8" href="#user-content-r0s8">VanillaCloudStorageClientTest.OAuth2.AuthorizationResponseErrorTest</a>
|
||||||
```
|
```
|
||||||
✅ ParsesAllErrorCodesCorrectly
|
✅ ParsesAllErrorCodesCorrectly
|
||||||
✅ ParsesNullErrorCodeCorrectly
|
✅ ParsesNullErrorCodeCorrectly
|
||||||
✅ ParsesUnknownErrorCodeCorrectly
|
✅ ParsesUnknownErrorCodeCorrectly
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s9" href="#r0s9">VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest</a>
|
### ✅ <a id="user-content-r0s9" href="#user-content-r0s9">VanillaCloudStorageClientTest.OAuth2.OAuth2UtilsTest</a>
|
||||||
```
|
```
|
||||||
✅ BuildAuthorizationRequestUrlEscapesParameters
|
✅ BuildAuthorizationRequestUrlEscapesParameters
|
||||||
✅ BuildAuthorizationRequestUrlLeavesOutOptionalParameters
|
✅ BuildAuthorizationRequestUrlLeavesOutOptionalParameters
|
||||||
@@ -105,7 +105,7 @@
|
|||||||
✅ ParseRealWorldGoogleRejectResponse
|
✅ ParseRealWorldGoogleRejectResponse
|
||||||
✅ ParseRealWorldGoogleSuccessResponse
|
✅ ParseRealWorldGoogleSuccessResponse
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s10" href="#r0s10">VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest</a>
|
### ✅ <a id="user-content-r0s10" href="#user-content-r0s10">VanillaCloudStorageClientTest.OAuth2CloudStorageClientTest</a>
|
||||||
```
|
```
|
||||||
✅ BuildOAuth2AuthorizationRequestUrlWorks
|
✅ BuildOAuth2AuthorizationRequestUrlWorks
|
||||||
✅ FetchTokenCanInterpretGoogleResponse
|
✅ FetchTokenCanInterpretGoogleResponse
|
||||||
@@ -113,7 +113,7 @@
|
|||||||
✅ FetchTokenThrowsWithWrongState
|
✅ FetchTokenThrowsWithWrongState
|
||||||
✅ RefreshTokenCanInterpretGoogleResponse
|
✅ RefreshTokenCanInterpretGoogleResponse
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s11" href="#r0s11">VanillaCloudStorageClientTest.SecureStringExtensionsTest</a>
|
### ✅ <a id="user-content-r0s11" href="#user-content-r0s11">VanillaCloudStorageClientTest.SecureStringExtensionsTest</a>
|
||||||
```
|
```
|
||||||
✅ AreEqualsWorksCorrectly
|
✅ AreEqualsWorksCorrectly
|
||||||
✅ CorrectlyConvertsSecureStringToString
|
✅ CorrectlyConvertsSecureStringToString
|
||||||
@@ -123,7 +123,7 @@
|
|||||||
✅ CorrectlyConvertsUnicodeBytesToSecureString
|
✅ CorrectlyConvertsUnicodeBytesToSecureString
|
||||||
✅ CorrectlyConvertsUtf8BytesToSecureString
|
✅ CorrectlyConvertsUtf8BytesToSecureString
|
||||||
```
|
```
|
||||||
### ✅ <a id="user-content-r0s12" href="#r0s12">VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest</a>
|
### ✅ <a id="user-content-r0s12" href="#user-content-r0s12">VanillaCloudStorageClientTest.SerializeableCloudStorageCredentialsTest</a>
|
||||||
```
|
```
|
||||||
✅ DecryptAfterDesrializationCanReadAllPropertiesBack
|
✅ DecryptAfterDesrializationCanReadAllPropertiesBack
|
||||||
✅ DecryptAfterDesrializationRespectsNullProperties
|
✅ DecryptAfterDesrializationRespectsNullProperties
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
|Report|Passed|Failed|Skipped|Time|
|
|Report|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|fixtures/swift-xunit.xml|2 ✅|1 ❌||220ms|
|
|fixtures/swift-xunit.xml|2 ✅|1 ❌||220ms|
|
||||||
## ❌ <a id="user-content-r0" href="#r0">fixtures/swift-xunit.xml</a>
|
## ❌ <a id="user-content-r0" href="#user-content-r0">fixtures/swift-xunit.xml</a>
|
||||||
**3** tests were completed in **220ms** with **2** passed, **1** failed and **0** skipped.
|
**3** tests were completed in **220ms** with **2** passed, **1** failed and **0** skipped.
|
||||||
|Test suite|Passed|Failed|Skipped|Time|
|
|Test suite|Passed|Failed|Skipped|Time|
|
||||||
|:---|---:|---:|---:|---:|
|
|:---|---:|---:|---:|---:|
|
||||||
|[TestResults](#r0s0)|2 ✅|1 ❌||220ms|
|
|[TestResults](#user-content-r0s0)|2 ✅|1 ❌||220ms|
|
||||||
### ❌ <a id="user-content-r0s0" href="#r0s0">TestResults</a>
|
### ❌ <a id="user-content-r0s0" href="#user-content-r0s0">TestResults</a>
|
||||||
```
|
```
|
||||||
AcmeLibTests.AcmeLibTests
|
AcmeLibTests.AcmeLibTests
|
||||||
✅ test_always_pass
|
✅ test_always_pass
|
||||||
|
|||||||
131
__tests__/__snapshots__/golang-json.test.ts.snap
Normal file
131
__tests__/__snapshots__/golang-json.test.ts.snap
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`golang-json tests report from ./reports/dotnet test results matches snapshot 1`] = `
|
||||||
|
TestRunResult {
|
||||||
|
"path": "fixtures/golang-json.json",
|
||||||
|
"suites": [
|
||||||
|
TestSuiteResult {
|
||||||
|
"groups": [
|
||||||
|
TestGroupResult {
|
||||||
|
"name": null,
|
||||||
|
"tests": [
|
||||||
|
TestCaseResult {
|
||||||
|
"error": undefined,
|
||||||
|
"name": "TestPassing",
|
||||||
|
"result": "success",
|
||||||
|
"time": 60,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": {
|
||||||
|
"details": "calculator_test.go:19: expected 1+1 = 3, got 2
|
||||||
|
",
|
||||||
|
"message": "calculator_test.go:19: expected 1+1 = 3, got 2
|
||||||
|
",
|
||||||
|
},
|
||||||
|
"name": "TestFailing",
|
||||||
|
"result": "failed",
|
||||||
|
"time": 890,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": {
|
||||||
|
"details": "calculator_test.go:76: caught panic: runtime error: integer divide by zero
|
||||||
|
",
|
||||||
|
"message": "calculator_test.go:76: caught panic: runtime error: integer divide by zero
|
||||||
|
",
|
||||||
|
},
|
||||||
|
"name": "TestPanicInsideFunction",
|
||||||
|
"result": "failed",
|
||||||
|
"time": 0,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": {
|
||||||
|
"details": "calculator_test.go:76: caught panic: bad stuff
|
||||||
|
",
|
||||||
|
"message": "calculator_test.go:76: caught panic: bad stuff
|
||||||
|
",
|
||||||
|
},
|
||||||
|
"name": "TestPanicInsideTest",
|
||||||
|
"result": "failed",
|
||||||
|
"time": 0,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": {
|
||||||
|
"details": "calculator_test.go:45: skipping test
|
||||||
|
",
|
||||||
|
"message": "calculator_test.go:45: skipping test
|
||||||
|
",
|
||||||
|
},
|
||||||
|
"name": "TestSkipped",
|
||||||
|
"result": "skipped",
|
||||||
|
"time": 940,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": {
|
||||||
|
"details": "",
|
||||||
|
"message": "",
|
||||||
|
},
|
||||||
|
"name": "TestCases",
|
||||||
|
"result": "failed",
|
||||||
|
"time": 2250,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
TestGroupResult {
|
||||||
|
"name": "TestCases",
|
||||||
|
"tests": [
|
||||||
|
TestCaseResult {
|
||||||
|
"error": undefined,
|
||||||
|
"name": "1_+_2_=_3",
|
||||||
|
"result": "success",
|
||||||
|
"time": 400,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": undefined,
|
||||||
|
"name": "4_+_7_=_11",
|
||||||
|
"result": "success",
|
||||||
|
"time": 460,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": {
|
||||||
|
"details": "calculator_test.go:67: expected 2 + 3 = 4, got 5
|
||||||
|
",
|
||||||
|
"message": "calculator_test.go:67: expected 2 + 3 = 4, got 5
|
||||||
|
",
|
||||||
|
},
|
||||||
|
"name": "2_+_3_=_4",
|
||||||
|
"result": "failed",
|
||||||
|
"time": 90,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": {
|
||||||
|
"details": "calculator_test.go:67: expected 1 / 2 = 1, got 0
|
||||||
|
",
|
||||||
|
"message": "calculator_test.go:67: expected 1 / 2 = 1, got 0
|
||||||
|
",
|
||||||
|
},
|
||||||
|
"name": "1_/_2_=_1",
|
||||||
|
"result": "failed",
|
||||||
|
"time": 920,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": undefined,
|
||||||
|
"name": "9_/_3_=_3",
|
||||||
|
"result": "success",
|
||||||
|
"time": 340,
|
||||||
|
},
|
||||||
|
TestCaseResult {
|
||||||
|
"error": undefined,
|
||||||
|
"name": "14_/_7_=_2",
|
||||||
|
"result": "success",
|
||||||
|
"time": 40,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"name": "_/home/james_t/git/test-reporter/reports/go",
|
||||||
|
"totalTime": undefined,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"totalTime": undefined,
|
||||||
|
}
|
||||||
|
`;
|
||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {DartJsonParser} from '../src/parsers/dart-json/dart-json-parser'
|
import {DartJsonParser} from '../src/parsers/dart-json/dart-json-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('dart-json tests', () => {
|
describe('dart-json tests', () => {
|
||||||
@@ -66,4 +66,66 @@ describe('dart-json tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DartJsonParser(opts, 'dart')
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DartJsonParser(opts, 'dart')
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dart-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DartJsonParser(opts, 'dart')
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {DotnetNunitParser} from '../src/parsers/dotnet-nunit/dotnet-nunit-parser'
|
import {DotnetNunitParser} from '../src/parsers/dotnet-nunit/dotnet-nunit-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('dotnet-nunit tests', () => {
|
describe('dotnet-nunit tests', () => {
|
||||||
@@ -26,4 +26,66 @@ describe('dotnet-nunit tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-nunit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DotnetNunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-nunit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DotnetNunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-nunit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DotnetNunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {DotnetTrxParser} from '../src/parsers/dotnet-trx/dotnet-trx-parser'
|
import {DotnetTrxParser} from '../src/parsers/dotnet-trx/dotnet-trx-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('dotnet-trx tests', () => {
|
describe('dotnet-trx tests', () => {
|
||||||
@@ -23,6 +23,22 @@ describe('dotnet-trx tests', () => {
|
|||||||
expect(result.result).toBe('success')
|
expect(result.result).toBe('success')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('produces empty test run result when TestDefinitions is empty', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'dotnet-trx-empty-test-definitions.trx')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DotnetTrxParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
expect(result.tests).toBe(0)
|
||||||
|
expect(result.result).toBe('success')
|
||||||
|
})
|
||||||
|
|
||||||
it('matches report snapshot', async () => {
|
it('matches report snapshot', async () => {
|
||||||
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
||||||
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
|
const outputPath = path.join(__dirname, '__outputs__', 'dotnet-trx.md')
|
||||||
@@ -83,4 +99,66 @@ describe('dotnet-trx tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DotnetTrxParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DotnetTrxParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'dotnet-trx.trx')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new DotnetTrxParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<TestRun id="80e4c095-f726-4ab2-9441-416daa162672" name="..." runUser="..." xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010">
|
||||||
|
<Times creation="2021-02-26T10:36:33.7131022+02:00" queuing="2021-02-26T10:36:33.7131029+02:00" start="2021-02-26T10:36:33.3278956+02:00" finish="2021-02-26T10:36:33.7139830+02:00" />
|
||||||
|
<TestSettings name="default" id="863a1d8b-ee3b-45f9-86ee-1869bc4e889f">
|
||||||
|
<Deployment runDeploymentRoot="..." />
|
||||||
|
</TestSettings>
|
||||||
|
<Results />
|
||||||
|
<TestDefinitions />
|
||||||
|
<TestEntries />
|
||||||
|
<TestLists>
|
||||||
|
<TestList name="Results Not in a List" id="8c84fa94-04c1-424b-9868-57a2d4851a1d" />
|
||||||
|
<TestList name="All Loaded Results" id="19431567-8539-422a-85d7-44ee4e166bda" />
|
||||||
|
</TestLists>
|
||||||
|
<ResultSummary outcome="Completed">
|
||||||
|
<Counters total="0" executed="0" passed="0" failed="0" error="0" timeout="0" aborted="0" inconclusive="0" passedButRunAborted="0" notRunnable="0" notExecuted="0" disconnected="0" warning="0" completed="0" inProgress="0" pending="0" />
|
||||||
|
<RunInfos>
|
||||||
|
<RunInfo computerName="..." outcome="Warning" timestamp="2021-02-26T10:36:33.6676104+02:00">
|
||||||
|
<Text>No test is available in (...). Make sure that test discoverer & executors are registered and platform & framework version settings are appropriate and try again.</Text>
|
||||||
|
</RunInfo>
|
||||||
|
</RunInfos>
|
||||||
|
</ResultSummary>
|
||||||
|
</TestRun>
|
||||||
59
__tests__/fixtures/golang-json.json
Normal file
59
__tests__/fixtures/golang-json.json
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
{"Time":"2025-04-22T08:59:55.364618802-05:00","Action":"start","Package":"_/home/james_t/git/test-reporter/reports/go"}
|
||||||
|
{"Time":"2025-04-22T08:59:55.371779289-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing"}
|
||||||
|
{"Time":"2025-04-22T08:59:55.371805677-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Output":"=== RUN TestPassing\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:55.428201983-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Output":" calculator_test.go:11: pass!\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:55.428265529-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Output":"--- PASS: TestPassing (0.06s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:55.428285649-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPassing","Elapsed":0.06}
|
||||||
|
{"Time":"2025-04-22T08:59:55.428299886-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing"}
|
||||||
|
{"Time":"2025-04-22T08:59:55.428309029-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Output":"=== RUN TestFailing\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317425091-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Output":" calculator_test.go:19: expected 1+1 = 3, got 2\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.31748077-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Output":"--- FAIL: TestFailing (0.89s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317493452-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestFailing","Elapsed":0.89}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317506107-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317514487-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Output":"=== RUN TestPanicInsideFunction\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317530448-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Output":" calculator_test.go:76: caught panic: runtime error: integer divide by zero\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317541866-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Output":"--- FAIL: TestPanicInsideFunction (0.00s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317552981-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideFunction","Elapsed":0}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317561057-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317568742-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Output":"=== RUN TestPanicInsideTest\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317584113-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Output":" calculator_test.go:76: caught panic: bad stuff\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317598524-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Output":"--- FAIL: TestPanicInsideTest (0.00s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317608268-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestPanicInsideTest","Elapsed":0}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317615472-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped"}
|
||||||
|
{"Time":"2025-04-22T08:59:56.317623959-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Output":"=== RUN TestSkipped\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.256475698-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Output":" calculator_test.go:45: skipping test\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.256536372-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Output":"--- SKIP: TestSkipped (0.94s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.256549142-05:00","Action":"skip","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestSkipped","Elapsed":0.94}
|
||||||
|
{"Time":"2025-04-22T08:59:57.256562053-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.256569388-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases","Output":"=== RUN TestCases\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.256580104-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.256587408-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3","Output":"=== RUN TestCases/1_+_2_=_3\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.653005399-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11"}
|
||||||
|
{"Time":"2025-04-22T08:59:57.653036336-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11","Output":"=== RUN TestCases/4_+_7_=_11\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:58.112825221-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4"}
|
||||||
|
{"Time":"2025-04-22T08:59:58.112858016-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Output":"=== RUN TestCases/2_+_3_=_4\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:58.201204209-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Output":" calculator_test.go:67: expected 2 + 3 = 4, got 5\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:58.201245827-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1"}
|
||||||
|
{"Time":"2025-04-22T08:59:58.201255566-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Output":"=== RUN TestCases/1_/_2_=_1\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.119852965-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Output":" calculator_test.go:67: expected 1 / 2 = 1, got 0\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.119877603-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.119879955-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3","Output":"=== RUN TestCases/9_/_3_=_3\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.460576385-05:00","Action":"run","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.460607599-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2","Output":"=== RUN TestCases/14_/_7_=_2\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.504952672-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases","Output":"--- FAIL: TestCases (2.25s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.504995938-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3","Output":" --- PASS: TestCases/1_+_2_=_3 (0.40s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505006062-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_+_2_=_3","Elapsed":0.4}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505017551-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11","Output":" --- PASS: TestCases/4_+_7_=_11 (0.46s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505026099-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/4_+_7_=_11","Elapsed":0.46}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505033963-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Output":" --- FAIL: TestCases/2_+_3_=_4 (0.09s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505042238-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/2_+_3_=_4","Elapsed":0.09}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505050917-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Output":" --- FAIL: TestCases/1_/_2_=_1 (0.92s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505059901-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/1_/_2_=_1","Elapsed":0.92}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505068125-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3","Output":" --- PASS: TestCases/9_/_3_=_3 (0.34s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505076976-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/9_/_3_=_3","Elapsed":0.34}
|
||||||
|
{"Time":"2025-04-22T08:59:59.5050845-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2","Output":" --- PASS: TestCases/14_/_7_=_2 (0.04s)\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505091554-05:00","Action":"pass","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases/14_/_7_=_2","Elapsed":0.04}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505098998-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Test":"TestCases","Elapsed":2.25}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505107502-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Output":"FAIL\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505552861-05:00","Action":"output","Package":"_/home/james_t/git/test-reporter/reports/go","Output":"FAIL\t_/home/james_t/git/test-reporter/reports/go\t4.141s\n"}
|
||||||
|
{"Time":"2025-04-22T08:59:59.505584529-05:00","Action":"fail","Package":"_/home/james_t/git/test-reporter/reports/go","Elapsed":4.141}
|
||||||
29
__tests__/golang-json.test.ts
Normal file
29
__tests__/golang-json.test.ts
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
import * as fs from 'fs'
|
||||||
|
import * as path from 'path'
|
||||||
|
|
||||||
|
import {GolangJsonParser} from '../src/parsers/golang-json/golang-json-parser'
|
||||||
|
import {ParseOptions} from '../src/test-parser'
|
||||||
|
import {getReport} from '../src/report/get-report'
|
||||||
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
|
describe('golang-json tests', () => {
|
||||||
|
it('report from ./reports/dotnet test results matches snapshot', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'golang-json.json')
|
||||||
|
const outputPath = path.join(__dirname, '__outputs__', 'golang-json.md')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: ['calculator.go', 'calculator_test.go']
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new GolangJsonParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
expect(result).toMatchSnapshot()
|
||||||
|
|
||||||
|
const report = getReport([result])
|
||||||
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
|
fs.writeFileSync(outputPath, report)
|
||||||
|
})
|
||||||
|
})
|
||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {JavaJunitParser} from '../src/parsers/java-junit/java-junit-parser'
|
import {JavaJunitParser} from '../src/parsers/java-junit/java-junit-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('java-junit tests', () => {
|
describe('java-junit tests', () => {
|
||||||
@@ -90,4 +90,66 @@ describe('java-junit tests', () => {
|
|||||||
expect(result.result === 'failed')
|
expect(result.result === 'failed')
|
||||||
expect(result.failed === 1)
|
expect(result.failed === 1)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'junit-with-message.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new JavaJunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'junit-with-message.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new JavaJunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'empty', 'java-junit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new JavaJunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {JestJunitParser} from '../src/parsers/jest-junit/jest-junit-parser'
|
import {JestJunitParser} from '../src/parsers/jest-junit/jest-junit-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('jest-junit tests', () => {
|
describe('jest-junit tests', () => {
|
||||||
@@ -145,4 +145,66 @@ describe('jest-junit tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new JestJunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new JestJunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'jest-junit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new JestJunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {MochaJsonParser} from '../src/parsers/mocha-json/mocha-json-parser'
|
import {MochaJsonParser} from '../src/parsers/mocha-json/mocha-json-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('mocha-json tests', () => {
|
describe('mocha-json tests', () => {
|
||||||
@@ -64,4 +64,66 @@ describe('mocha-json tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'mocha-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new MochaJsonParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'mocha-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new MochaJsonParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'mocha-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new MochaJsonParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {RspecJsonParser} from '../src/parsers/rspec-json/rspec-json-parser'
|
import {RspecJsonParser} from '../src/parsers/rspec-json/rspec-json-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('rspec-json tests', () => {
|
describe('rspec-json tests', () => {
|
||||||
@@ -42,4 +42,66 @@ describe('rspec-json tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'rspec-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new RspecJsonParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'rspec-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new RspecJsonParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'rspec-json.json')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new RspecJsonParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import * as path from 'path'
|
|||||||
|
|
||||||
import {SwiftXunitParser} from '../src/parsers/swift-xunit/swift-xunit-parser'
|
import {SwiftXunitParser} from '../src/parsers/swift-xunit/swift-xunit-parser'
|
||||||
import {ParseOptions} from '../src/test-parser'
|
import {ParseOptions} from '../src/test-parser'
|
||||||
import {getReport} from '../src/report/get-report'
|
import {DEFAULT_OPTIONS, getReport} from '../src/report/get-report'
|
||||||
import {normalizeFilePath} from '../src/utils/path-utils'
|
import {normalizeFilePath} from '../src/utils/path-utils'
|
||||||
|
|
||||||
describe('swift-xunit tests', () => {
|
describe('swift-xunit tests', () => {
|
||||||
@@ -27,4 +27,66 @@ describe('swift-xunit tests', () => {
|
|||||||
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
fs.mkdirSync(path.dirname(outputPath), {recursive: true})
|
||||||
fs.writeFileSync(outputPath, report)
|
fs.writeFileSync(outputPath, report)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('report does not include a title by default', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new SwiftXunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result])
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it.each([
|
||||||
|
['empty string', ''],
|
||||||
|
['space', ' '],
|
||||||
|
['tab', '\t'],
|
||||||
|
['newline', '\n']
|
||||||
|
])('report does not include a title when configured value is %s', async (_, reportTitle) => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new SwiftXunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
// Report should have the badge as the first line
|
||||||
|
expect(report).toMatch(/^!\[Tests failed]/)
|
||||||
|
})
|
||||||
|
|
||||||
|
it('report includes a custom report title', async () => {
|
||||||
|
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml')
|
||||||
|
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath))
|
||||||
|
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'})
|
||||||
|
|
||||||
|
const opts: ParseOptions = {
|
||||||
|
parseErrors: true,
|
||||||
|
trackedFiles: []
|
||||||
|
}
|
||||||
|
|
||||||
|
const parser = new SwiftXunitParser(opts)
|
||||||
|
const result = await parser.parse(filePath, fileContent)
|
||||||
|
const report = getReport([result], {
|
||||||
|
...DEFAULT_OPTIONS,
|
||||||
|
reportTitle: 'My Custom Title'
|
||||||
|
})
|
||||||
|
// Report should have the title as the first line
|
||||||
|
expect(report).toMatch(/^# My Custom Title\n/)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ inputs:
|
|||||||
description: |
|
description: |
|
||||||
Limits which test suites are listed. Supported options:
|
Limits which test suites are listed. Supported options:
|
||||||
- all
|
- all
|
||||||
- only-failed
|
- failed
|
||||||
- none
|
- none
|
||||||
required: false
|
required: false
|
||||||
default: 'all'
|
default: 'all'
|
||||||
@@ -47,7 +47,7 @@ inputs:
|
|||||||
description: |
|
description: |
|
||||||
Limits which test cases are listed. Supported options:
|
Limits which test cases are listed. Supported options:
|
||||||
- all
|
- all
|
||||||
- only-failed
|
- failed
|
||||||
- none
|
- none
|
||||||
required: false
|
required: false
|
||||||
default: 'all'
|
default: 'all'
|
||||||
|
|||||||
669
dist/index.js
generated
vendored
669
dist/index.js
generated
vendored
File diff suppressed because it is too large
Load Diff
660
package-lock.json
generated
660
package-lock.json
generated
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "test-reporter",
|
"name": "test-reporter",
|
||||||
"version": "2.0.0",
|
"version": "2.1.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "test-reporter",
|
"name": "test-reporter",
|
||||||
"version": "2.0.0",
|
"version": "2.1.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.11.1",
|
||||||
"@actions/exec": "^1.1.1",
|
"@actions/exec": "^1.1.1",
|
||||||
"@actions/github": "^6.0.0",
|
"@actions/github": "^6.0.1",
|
||||||
"adm-zip": "^0.5.16",
|
"adm-zip": "^0.5.16",
|
||||||
"fast-glob": "^3.3.3",
|
"fast-glob": "^3.3.3",
|
||||||
"got": "^11.8.6",
|
"got": "^11.8.6",
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
"@octokit/webhooks-types": "^7.6.1",
|
"@octokit/webhooks-types": "^7.6.1",
|
||||||
"@types/adm-zip": "^0.5.7",
|
"@types/adm-zip": "^0.5.7",
|
||||||
"@types/jest": "^29.5.14",
|
"@types/jest": "^29.5.14",
|
||||||
"@types/node": "^20.17.24",
|
"@types/node": "^20.17.47",
|
||||||
"@types/picomatch": "^2.3.4",
|
"@types/picomatch": "^2.3.4",
|
||||||
"@types/xml2js": "^0.4.14",
|
"@types/xml2js": "^0.4.14",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
||||||
@@ -30,18 +30,18 @@
|
|||||||
"@vercel/ncc": "^0.38.3",
|
"@vercel/ncc": "^0.38.3",
|
||||||
"eol-converter-cli": "^1.1.0",
|
"eol-converter-cli": "^1.1.0",
|
||||||
"eslint": "^8.57.1",
|
"eslint": "^8.57.1",
|
||||||
"eslint-import-resolver-typescript": "^3.8.5",
|
"eslint-import-resolver-typescript": "^3.10.1",
|
||||||
"eslint-plugin-github": "^4.10.2",
|
"eslint-plugin-github": "^4.10.2",
|
||||||
"eslint-plugin-import": "^2.31.0",
|
"eslint-plugin-import": "^2.31.0",
|
||||||
"eslint-plugin-jest": "^28.11.0",
|
"eslint-plugin-jest": "^28.11.0",
|
||||||
"eslint-plugin-prettier": "^5.2.3",
|
"eslint-plugin-prettier": "^5.4.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-circus": "^29.7.0",
|
"jest-circus": "^29.7.0",
|
||||||
"jest-junit": "^16.0.0",
|
"jest-junit": "^16.0.0",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"prettier": "^3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"ts-jest": "^29.2.6",
|
"ts-jest": "^29.3.4",
|
||||||
"typescript": "^5.5.4"
|
"typescript": "^5.8.3"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=20"
|
"node": ">=20"
|
||||||
@@ -75,14 +75,18 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@actions/github": {
|
"node_modules/@actions/github": {
|
||||||
"version": "6.0.0",
|
"version": "6.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/@actions/github/-/github-6.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@actions/github/-/github-6.0.1.tgz",
|
||||||
"integrity": "sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==",
|
"integrity": "sha512-xbZVcaqD4XnQAe35qSQqskb3SqIAfRyLBrHMd/8TuL7hJSz2QtbDwnNM8zWx4zO5l2fnGtseNE3MbEvD7BxVMw==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/http-client": "^2.2.0",
|
"@actions/http-client": "^2.2.0",
|
||||||
"@octokit/core": "^5.0.1",
|
"@octokit/core": "^5.0.1",
|
||||||
"@octokit/plugin-paginate-rest": "^9.0.0",
|
"@octokit/plugin-paginate-rest": "^9.2.2",
|
||||||
"@octokit/plugin-rest-endpoint-methods": "^10.0.0"
|
"@octokit/plugin-rest-endpoint-methods": "^10.4.0",
|
||||||
|
"@octokit/request": "^8.4.1",
|
||||||
|
"@octokit/request-error": "^5.1.1",
|
||||||
|
"undici": "^5.28.5"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@actions/http-client": {
|
"node_modules/@actions/http-client": {
|
||||||
@@ -773,6 +777,40 @@
|
|||||||
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
|
"integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"node_modules/@emnapi/core": {
|
||||||
|
"version": "1.4.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.4.3.tgz",
|
||||||
|
"integrity": "sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@emnapi/wasi-threads": "1.0.2",
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@emnapi/runtime": {
|
||||||
|
"version": "1.4.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz",
|
||||||
|
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@emnapi/wasi-threads": {
|
||||||
|
"version": "1.0.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.0.2.tgz",
|
||||||
|
"integrity": "sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@eslint-community/eslint-utils": {
|
"node_modules/@eslint-community/eslint-utils": {
|
||||||
"version": "4.4.0",
|
"version": "4.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
|
||||||
@@ -1315,6 +1353,19 @@
|
|||||||
"@jridgewell/sourcemap-codec": "^1.4.14"
|
"@jridgewell/sourcemap-codec": "^1.4.14"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@napi-rs/wasm-runtime": {
|
||||||
|
"version": "0.2.10",
|
||||||
|
"resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.10.tgz",
|
||||||
|
"integrity": "sha512-bCsCyeZEwVErsGmyPNSzwfwFn4OdxBj0mmv6hOFucB/k81Ojdu68RbZdxYsRQUPc9l6SU5F/cG+bXgWs3oUgsQ==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@emnapi/core": "^1.4.3",
|
||||||
|
"@emnapi/runtime": "^1.4.3",
|
||||||
|
"@tybys/wasm-util": "^0.9.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@nodelib/fs.scandir": {
|
"node_modules/@nodelib/fs.scandir": {
|
||||||
"version": "2.1.5",
|
"version": "2.1.5",
|
||||||
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
|
||||||
@@ -1361,20 +1412,22 @@
|
|||||||
"version": "4.0.0",
|
"version": "4.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz",
|
||||||
"integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==",
|
"integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==",
|
||||||
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 18"
|
"node": ">= 18"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/core": {
|
"node_modules/@octokit/core": {
|
||||||
"version": "5.0.2",
|
"version": "5.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.2.1.tgz",
|
||||||
"integrity": "sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==",
|
"integrity": "sha512-dKYCMuPO1bmrpuogcjQ8z7ICCH3FP6WmxpwC03yjzGfZhj9fTJg6+bS1+UAplekbN2C+M61UNllGOOoAfGCrdQ==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/auth-token": "^4.0.0",
|
"@octokit/auth-token": "^4.0.0",
|
||||||
"@octokit/graphql": "^7.0.0",
|
"@octokit/graphql": "^7.1.0",
|
||||||
"@octokit/request": "^8.0.2",
|
"@octokit/request": "^8.4.1",
|
||||||
"@octokit/request-error": "^5.0.0",
|
"@octokit/request-error": "^5.1.1",
|
||||||
"@octokit/types": "^12.0.0",
|
"@octokit/types": "^13.0.0",
|
||||||
"before-after-hook": "^2.2.0",
|
"before-after-hook": "^2.2.0",
|
||||||
"universal-user-agent": "^6.0.0"
|
"universal-user-agent": "^6.0.0"
|
||||||
},
|
},
|
||||||
@@ -1383,11 +1436,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/endpoint": {
|
"node_modules/@octokit/endpoint": {
|
||||||
"version": "9.0.4",
|
"version": "9.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.6.tgz",
|
||||||
"integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==",
|
"integrity": "sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^12.0.0",
|
"@octokit/types": "^13.1.0",
|
||||||
"universal-user-agent": "^6.0.0"
|
"universal-user-agent": "^6.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1395,12 +1449,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/graphql": {
|
"node_modules/@octokit/graphql": {
|
||||||
"version": "7.0.2",
|
"version": "7.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.1.1.tgz",
|
||||||
"integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==",
|
"integrity": "sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/request": "^8.0.1",
|
"@octokit/request": "^8.4.1",
|
||||||
"@octokit/types": "^12.0.0",
|
"@octokit/types": "^13.0.0",
|
||||||
"universal-user-agent": "^6.0.0"
|
"universal-user-agent": "^6.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1408,46 +1463,80 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/openapi-types": {
|
"node_modules/@octokit/openapi-types": {
|
||||||
"version": "19.1.0",
|
"version": "24.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz",
|
||||||
"integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw=="
|
"integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==",
|
||||||
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/plugin-paginate-rest": {
|
"node_modules/@octokit/plugin-paginate-rest": {
|
||||||
"version": "9.1.5",
|
"version": "9.2.2",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.2.tgz",
|
||||||
"integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==",
|
"integrity": "sha512-u3KYkGF7GcZnSD/3UP0S7K5XUFT2FkOQdcfXZGZQPGv3lm4F2Xbf71lvjldr8c1H3nNbF+33cLEkWYbokGWqiQ==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^12.4.0"
|
"@octokit/types": "^12.6.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 18"
|
"node": ">= 18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@octokit/core": ">=5"
|
"@octokit/core": "5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/openapi-types": {
|
||||||
|
"version": "20.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz",
|
||||||
|
"integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": {
|
||||||
|
"version": "12.6.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz",
|
||||||
|
"integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@octokit/openapi-types": "^20.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/plugin-rest-endpoint-methods": {
|
"node_modules/@octokit/plugin-rest-endpoint-methods": {
|
||||||
"version": "10.2.0",
|
"version": "10.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-10.2.0.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-10.4.1.tgz",
|
||||||
"integrity": "sha512-ePbgBMYtGoRNXDyKGvr9cyHjQ163PbwD0y1MkDJCpkO2YH4OeXX40c4wYHKikHGZcpGPbcRLuy0unPUuafco8Q==",
|
"integrity": "sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^12.3.0"
|
"@octokit/types": "^12.6.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 18"
|
"node": ">= 18"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@octokit/core": ">=5"
|
"@octokit/core": "5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/openapi-types": {
|
||||||
|
"version": "20.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz",
|
||||||
|
"integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/@octokit/plugin-rest-endpoint-methods/node_modules/@octokit/types": {
|
||||||
|
"version": "12.6.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz",
|
||||||
|
"integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@octokit/openapi-types": "^20.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/request": {
|
"node_modules/@octokit/request": {
|
||||||
"version": "8.1.6",
|
"version": "8.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.1.6.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.4.1.tgz",
|
||||||
"integrity": "sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==",
|
"integrity": "sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/endpoint": "^9.0.0",
|
"@octokit/endpoint": "^9.0.6",
|
||||||
"@octokit/request-error": "^5.0.0",
|
"@octokit/request-error": "^5.1.1",
|
||||||
"@octokit/types": "^12.0.0",
|
"@octokit/types": "^13.1.0",
|
||||||
"universal-user-agent": "^6.0.0"
|
"universal-user-agent": "^6.0.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1455,11 +1544,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/request-error": {
|
"node_modules/@octokit/request-error": {
|
||||||
"version": "5.0.1",
|
"version": "5.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.1.1.tgz",
|
||||||
"integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==",
|
"integrity": "sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/types": "^12.0.0",
|
"@octokit/types": "^13.1.0",
|
||||||
"deprecation": "^2.0.0",
|
"deprecation": "^2.0.0",
|
||||||
"once": "^1.4.0"
|
"once": "^1.4.0"
|
||||||
},
|
},
|
||||||
@@ -1468,11 +1558,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/types": {
|
"node_modules/@octokit/types": {
|
||||||
"version": "12.4.0",
|
"version": "13.10.0",
|
||||||
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz",
|
||||||
"integrity": "sha512-FLWs/AvZllw/AGVs+nJ+ELCDZZJk+kY0zMen118xhL2zD0s1etIUHm1odgjP7epxYU1ln7SZxEUWYop5bhsdgQ==",
|
"integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@octokit/openapi-types": "^19.1.0"
|
"@octokit/openapi-types": "^24.2.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@octokit/webhooks-types": {
|
"node_modules/@octokit/webhooks-types": {
|
||||||
@@ -1483,16 +1574,16 @@
|
|||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@pkgr/core": {
|
"node_modules/@pkgr/core": {
|
||||||
"version": "0.1.1",
|
"version": "0.2.4",
|
||||||
"resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz",
|
||||||
"integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==",
|
"integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
|
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://opencollective.com/unts"
|
"url": "https://opencollective.com/pkgr"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@rtsao/scc": {
|
"node_modules/@rtsao/scc": {
|
||||||
@@ -1548,6 +1639,17 @@
|
|||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@tybys/wasm-util": {
|
||||||
|
"version": "0.9.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz",
|
||||||
|
"integrity": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.4.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@types/adm-zip": {
|
"node_modules/@types/adm-zip": {
|
||||||
"version": "0.5.7",
|
"version": "0.5.7",
|
||||||
"resolved": "https://registry.npmjs.org/@types/adm-zip/-/adm-zip-0.5.7.tgz",
|
"resolved": "https://registry.npmjs.org/@types/adm-zip/-/adm-zip-0.5.7.tgz",
|
||||||
@@ -1674,9 +1776,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "20.17.24",
|
"version": "20.17.47",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.24.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.47.tgz",
|
||||||
"integrity": "sha512-d7fGCyB96w9BnWQrOsJtpyiSaBcAYYr75bnK6ZRjDbql2cGLj/3GsL5OYmLPNq76l7Gf2q4Rv9J2o6h5CrD9sA==",
|
"integrity": "sha512-3dLX0Upo1v7RvUimvxLeXqwrfyKxUINk0EAM83swP2mlSUcwV73sZy8XhNz8bcZ3VbsfQyC/y6jRdL5tgCNpDQ==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"undici-types": "~6.19.2"
|
"undici-types": "~6.19.2"
|
||||||
@@ -1952,6 +2054,247 @@
|
|||||||
"integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
|
"integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-darwin-arm64": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-vxtBno4xvowwNmO/ASL0Y45TpHqmNkAaDtz4Jqb+clmcVSSl8XCG/PNFFkGsXXXS6AMjP+ja/TtNCFFa1QwLRg==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"darwin"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-darwin-x64": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-qhVa8ozu92C23Hsmv0BF4+5Dyyd5STT1FolV4whNgbY6mj3kA0qsrGPe35zNR3wAN7eFict3s4Rc2dDTPBTuFQ==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"darwin"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-freebsd-x64": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-zKKdm2uMXqLFX6Ac7K5ElnnG5VIXbDlFWzg4WJ8CGUedJryM5A3cTgHuGMw1+P5ziV8CRhnSEgOnurTI4vpHpg==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"freebsd"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-8N1z1TbPnHH+iDS/42GJ0bMPLiGK+cUqOhNbMKtWJ4oFGzqSJk/zoXFzcQkgtI63qMcUI7wW1tq2usZQSb2jxw==",
|
||||||
|
"cpu": [
|
||||||
|
"arm"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-tjYzI9LcAXR9MYd9rO45m1s0B/6bJNuZ6jeOxo1pq1K6OBuRMMmfyvJYval3s9FPPGmrldYA3mi4gWDlWuTFGA==",
|
||||||
|
"cpu": [
|
||||||
|
"arm"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-jon9M7DKRLGZ9VYSkFMflvNqu9hDtOCEnO2QAryFWgT6o6AXU8du56V7YqnaLKr6rAbZBWYsYpikF226v423QA==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-arm64-musl": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-c8Cg4/h+kQ63pL43wBNaVMmOjXI/X62wQmru51qjfTvI7kmCy5uHTJvK/9LrF0G8Jdx8r34d019P1DVJmhXQpA==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-A+lcwRFyrjeJmv3JJvhz5NbcCkLQL6Mk16kHTNm6/aGNc4FwPHPE4DR9DwuCvCnVHvF5IAd9U4VIs/VvVir5lg==",
|
||||||
|
"cpu": [
|
||||||
|
"ppc64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-riscv64-gnu": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-hQQ4TJQrSQW8JlPm7tRpXN8OCNP9ez7PajJNjRD1ZTHQAy685OYqPrKjfaMw/8LiHCt8AZ74rfUVHP9vn0N69Q==",
|
||||||
|
"cpu": [
|
||||||
|
"riscv64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-riscv64-musl": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-NoAGbiqrxtY8kVooZ24i70CjLDlUFI7nDj3I9y54U94p+3kPxwd2L692YsdLa+cqQ0VoqMWoehDFp21PKRUoIQ==",
|
||||||
|
"cpu": [
|
||||||
|
"riscv64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-KaZByo8xuQZbUhhreBTW+yUnOIHUsv04P8lKjQ5otiGoSJ17ISGYArc+4vKdLEpGaLbemGzr4ZeUbYQQsLWFjA==",
|
||||||
|
"cpu": [
|
||||||
|
"s390x"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-x64-gnu": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-dEidzJDubxxhUCBJ/SHSMJD/9q7JkyfBMT77Px1npl4xpg9t0POLvnWywSk66BgZS/b2Hy9Y1yFaoMTFJUe9yg==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-linux-x64-musl": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-RvP+Ux3wDjmnZDT4XWFfNBRVG0fMsc+yVzNFUqOflnDfZ9OYujv6nkh+GOr+watwrW4wdp6ASfG/e7bkDradsw==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-wasm32-wasi": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-y797JBmO9IsvXVRCKDXOxjyAE4+CcZpla2GSoBQ33TVb3ILXuFnMrbR/QQZoauBYeOFuu4w3ifWLw52sdHGz6g==",
|
||||||
|
"cpu": [
|
||||||
|
"wasm32"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"@napi-rs/wasm-runtime": "^0.2.9"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=14.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-gtYTh4/VREVSLA+gHrfbWxaMO/00y+34htY7XpioBTy56YN2eBjkPrY1ML1Zys89X3RJDKVaogzwxlM1qU7egg==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"win32"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-Ywv20XHvHTDRQs12jd3MY8X5C8KLjDbg/jyaal/QLKx3fAShhJyD4blEANInsjxW3P7isHx1Blt56iUDDJO3jg==",
|
||||||
|
"cpu": [
|
||||||
|
"ia32"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"win32"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"node_modules/@unrs/resolver-binding-win32-x64-msvc": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-friS8NEQfHaDbkThxopGk+LuE5v3iY0StruifjQEt7SLbA46OnfgMO15sOTkbpJkol6RB+1l1TYPXh0sCddpvA==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"win32"
|
||||||
|
]
|
||||||
|
},
|
||||||
"node_modules/@vercel/ncc": {
|
"node_modules/@vercel/ncc": {
|
||||||
"version": "0.38.3",
|
"version": "0.38.3",
|
||||||
"resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.38.3.tgz",
|
"resolved": "https://registry.npmjs.org/@vercel/ncc/-/ncc-0.38.3.tgz",
|
||||||
@@ -2408,7 +2751,8 @@
|
|||||||
"node_modules/before-after-hook": {
|
"node_modules/before-after-hook": {
|
||||||
"version": "2.2.3",
|
"version": "2.2.3",
|
||||||
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz",
|
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz",
|
||||||
"integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ=="
|
"integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==",
|
||||||
|
"license": "Apache-2.0"
|
||||||
},
|
},
|
||||||
"node_modules/brace-expansion": {
|
"node_modules/brace-expansion": {
|
||||||
"version": "1.1.11",
|
"version": "1.1.11",
|
||||||
@@ -2948,7 +3292,8 @@
|
|||||||
"node_modules/deprecation": {
|
"node_modules/deprecation": {
|
||||||
"version": "2.3.1",
|
"version": "2.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz",
|
||||||
"integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ=="
|
"integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==",
|
||||||
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
"node_modules/dequal": {
|
"node_modules/dequal": {
|
||||||
"version": "2.0.3",
|
"version": "2.0.3",
|
||||||
@@ -3065,19 +3410,6 @@
|
|||||||
"once": "^1.4.0"
|
"once": "^1.4.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/enhanced-resolve": {
|
|
||||||
"version": "5.15.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
|
|
||||||
"integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
|
|
||||||
"dev": true,
|
|
||||||
"dependencies": {
|
|
||||||
"graceful-fs": "^4.2.4",
|
|
||||||
"tapable": "^2.2.0"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=10.13.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/eol": {
|
"node_modules/eol": {
|
||||||
"version": "0.9.1",
|
"version": "0.9.1",
|
||||||
"resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz",
|
"resolved": "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz",
|
||||||
@@ -3409,25 +3741,25 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-import-resolver-typescript": {
|
"node_modules/eslint-import-resolver-typescript": {
|
||||||
"version": "3.8.5",
|
"version": "3.10.1",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.8.5.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz",
|
||||||
"integrity": "sha512-0ZRnzOqKc7TRm85w6REOUkVLHevN6nWd/xZsmKhSD/dcDktoxQaQAg59e5EK/QEsGFf7o5JSpE6qTwCEz0WjTw==",
|
"integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nolyfill/is-core-module": "1.0.39",
|
"@nolyfill/is-core-module": "1.0.39",
|
||||||
"debug": "^4.3.7",
|
"debug": "^4.4.0",
|
||||||
"enhanced-resolve": "^5.15.0",
|
|
||||||
"get-tsconfig": "^4.10.0",
|
"get-tsconfig": "^4.10.0",
|
||||||
"is-bun-module": "^1.0.2",
|
"is-bun-module": "^2.0.0",
|
||||||
"stable-hash": "^0.0.4",
|
"stable-hash": "^0.0.5",
|
||||||
"tinyglobby": "^0.2.12"
|
"tinyglobby": "^0.2.13",
|
||||||
|
"unrs-resolver": "^1.6.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^14.18.0 || >=16.0.0"
|
"node": "^14.18.0 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
|
"url": "https://opencollective.com/eslint-import-resolver-typescript"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "*",
|
"eslint": "*",
|
||||||
@@ -3705,14 +4037,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-prettier": {
|
"node_modules/eslint-plugin-prettier": {
|
||||||
"version": "5.2.3",
|
"version": "5.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.3.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.4.0.tgz",
|
||||||
"integrity": "sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==",
|
"integrity": "sha512-BvQOvUhkVQM1i63iMETK9Hjud9QhqBnbtT1Zc642p9ynzBuCe5pybkOnvqZIBypXmMlsGcnU4HZ8sCTPfpAexA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"prettier-linter-helpers": "^1.0.0",
|
"prettier-linter-helpers": "^1.0.0",
|
||||||
"synckit": "^0.9.1"
|
"synckit": "^0.11.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^14.18.0 || >=16.0.0"
|
"node": "^14.18.0 || >=16.0.0"
|
||||||
@@ -3723,7 +4055,7 @@
|
|||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@types/eslint": ">=8.0.0",
|
"@types/eslint": ">=8.0.0",
|
||||||
"eslint": ">=8.0.0",
|
"eslint": ">=8.0.0",
|
||||||
"eslint-config-prettier": "*",
|
"eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0",
|
||||||
"prettier": ">=3.0.0"
|
"prettier": ">=3.0.0"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
@@ -3979,9 +4311,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/fdir": {
|
"node_modules/fdir": {
|
||||||
"version": "6.4.3",
|
"version": "6.4.4",
|
||||||
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz",
|
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.4.tgz",
|
||||||
"integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==",
|
"integrity": "sha512-1NZP+GK4GfuAv3PqKvxQRDMjdSRZjnkq7KfhlNrCNNlZ0ygQFpebfrnfnq/W7fpUnAv9aGWmY1zKx7FYL3gwhg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
@@ -4704,13 +5036,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/is-bun-module": {
|
"node_modules/is-bun-module": {
|
||||||
"version": "1.3.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-1.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz",
|
||||||
"integrity": "sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==",
|
"integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"semver": "^7.6.3"
|
"semver": "^7.7.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/is-callable": {
|
"node_modules/is-callable": {
|
||||||
@@ -6087,6 +6419,22 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/napi-postinstall": {
|
||||||
|
"version": "0.2.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.2.4.tgz",
|
||||||
|
"integrity": "sha512-ZEzHJwBhZ8qQSbknHqYcdtQVr8zUgGyM/q6h6qAyhtyVMNrSgDhrC4disf03dYW0e+czXyLnZINnCTEkWy0eJg==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"bin": {
|
||||||
|
"napi-postinstall": "lib/cli.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://opencollective.com/napi-postinstall"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/natural-compare": {
|
"node_modules/natural-compare": {
|
||||||
"version": "1.4.0",
|
"version": "1.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
|
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
|
||||||
@@ -6953,9 +7301,9 @@
|
|||||||
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
|
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
|
||||||
},
|
},
|
||||||
"node_modules/semver": {
|
"node_modules/semver": {
|
||||||
"version": "7.7.1",
|
"version": "7.7.2",
|
||||||
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
|
||||||
"integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
|
"integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -7158,9 +7506,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/stable-hash": {
|
"node_modules/stable-hash": {
|
||||||
"version": "0.0.4",
|
"version": "0.0.5",
|
||||||
"resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz",
|
||||||
"integrity": "sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==",
|
"integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
@@ -7354,29 +7702,19 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/synckit": {
|
"node_modules/synckit": {
|
||||||
"version": "0.9.2",
|
"version": "0.11.6",
|
||||||
"resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz",
|
"resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.6.tgz",
|
||||||
"integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==",
|
"integrity": "sha512-2pR2ubZSV64f/vqm9eLPz/KOvR9Dm+Co/5ChLgeHl0yEDRc6h5hXHoxEQH8Y5Ljycozd3p1k5TTSVdzYGkPvLw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pkgr/core": "^0.1.0",
|
"@pkgr/core": "^0.2.4"
|
||||||
"tslib": "^2.6.2"
|
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^14.18.0 || >=16.0.0"
|
"node": "^14.18.0 || >=16.0.0"
|
||||||
},
|
},
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://opencollective.com/unts"
|
"url": "https://opencollective.com/synckit"
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/tapable": {
|
|
||||||
"version": "2.2.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
|
|
||||||
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
|
|
||||||
"dev": true,
|
|
||||||
"engines": {
|
|
||||||
"node": ">=6"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/test-exclude": {
|
"node_modules/test-exclude": {
|
||||||
@@ -7400,13 +7738,13 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/tinyglobby": {
|
"node_modules/tinyglobby": {
|
||||||
"version": "0.2.12",
|
"version": "0.2.13",
|
||||||
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.12.tgz",
|
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.13.tgz",
|
||||||
"integrity": "sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==",
|
"integrity": "sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"fdir": "^6.4.3",
|
"fdir": "^6.4.4",
|
||||||
"picomatch": "^4.0.2"
|
"picomatch": "^4.0.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -7456,9 +7794,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/ts-jest": {
|
"node_modules/ts-jest": {
|
||||||
"version": "29.2.6",
|
"version": "29.3.4",
|
||||||
"resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.2.6.tgz",
|
"resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.3.4.tgz",
|
||||||
"integrity": "sha512-yTNZVZqc8lSixm+QGVFcPe6+yj7+TWZwIesuOWvfcn4B9bz5x4NDzVCQQjOs7Hfouu36aEqfEbo9Qpo+gq8dDg==",
|
"integrity": "sha512-Iqbrm8IXOmV+ggWHOTEbjwyCf2xZlUMv5npExksXohL+tk8va4Fjhb+X2+Rt9NBmgO7bJ8WpnMLOwih/DnMlFA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -7469,7 +7807,8 @@
|
|||||||
"json5": "^2.2.3",
|
"json5": "^2.2.3",
|
||||||
"lodash.memoize": "^4.1.2",
|
"lodash.memoize": "^4.1.2",
|
||||||
"make-error": "^1.3.6",
|
"make-error": "^1.3.6",
|
||||||
"semver": "^7.7.1",
|
"semver": "^7.7.2",
|
||||||
|
"type-fest": "^4.41.0",
|
||||||
"yargs-parser": "^21.1.1"
|
"yargs-parser": "^21.1.1"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -7504,6 +7843,19 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/ts-jest/node_modules/type-fest": {
|
||||||
|
"version": "4.41.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.41.0.tgz",
|
||||||
|
"integrity": "sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "(MIT OR CC0-1.0)",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/tsconfig-paths": {
|
"node_modules/tsconfig-paths": {
|
||||||
"version": "3.15.0",
|
"version": "3.15.0",
|
||||||
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
|
"resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
|
||||||
@@ -7542,7 +7894,8 @@
|
|||||||
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
||||||
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "0BSD"
|
"license": "0BSD",
|
||||||
|
"optional": true
|
||||||
},
|
},
|
||||||
"node_modules/tunnel": {
|
"node_modules/tunnel": {
|
||||||
"version": "0.0.6",
|
"version": "0.0.6",
|
||||||
@@ -7664,9 +8017,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/typescript": {
|
"node_modules/typescript": {
|
||||||
"version": "5.8.2",
|
"version": "5.8.3",
|
||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
||||||
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -7697,9 +8050,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/undici": {
|
"node_modules/undici": {
|
||||||
"version": "5.28.2",
|
"version": "5.29.0",
|
||||||
"resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz",
|
"resolved": "https://registry.npmjs.org/undici/-/undici-5.29.0.tgz",
|
||||||
"integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==",
|
"integrity": "sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==",
|
||||||
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fastify/busboy": "^2.0.0"
|
"@fastify/busboy": "^2.0.0"
|
||||||
},
|
},
|
||||||
@@ -7716,7 +8070,41 @@
|
|||||||
"node_modules/universal-user-agent": {
|
"node_modules/universal-user-agent": {
|
||||||
"version": "6.0.1",
|
"version": "6.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz",
|
||||||
"integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ=="
|
"integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==",
|
||||||
|
"license": "ISC"
|
||||||
|
},
|
||||||
|
"node_modules/unrs-resolver": {
|
||||||
|
"version": "1.7.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.7.2.tgz",
|
||||||
|
"integrity": "sha512-BBKpaylOW8KbHsu378Zky/dGh4ckT/4NW/0SHRABdqRLcQJ2dAOjDo9g97p04sWflm0kqPqpUatxReNV/dqI5A==",
|
||||||
|
"dev": true,
|
||||||
|
"hasInstallScript": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"napi-postinstall": "^0.2.2"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/JounQin"
|
||||||
|
},
|
||||||
|
"optionalDependencies": {
|
||||||
|
"@unrs/resolver-binding-darwin-arm64": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-darwin-x64": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-freebsd-x64": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-arm-gnueabihf": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-arm-musleabihf": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-arm64-gnu": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-arm64-musl": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-ppc64-gnu": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-riscv64-gnu": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-riscv64-musl": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-s390x-gnu": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-x64-gnu": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-linux-x64-musl": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-wasm32-wasi": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-win32-arm64-msvc": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-win32-ia32-msvc": "1.7.2",
|
||||||
|
"@unrs/resolver-binding-win32-x64-msvc": "1.7.2"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"node_modules/update-browserslist-db": {
|
"node_modules/update-browserslist-db": {
|
||||||
"version": "1.0.13",
|
"version": "1.0.13",
|
||||||
|
|||||||
16
package.json
16
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "test-reporter",
|
"name": "test-reporter",
|
||||||
"version": "2.0.0",
|
"version": "2.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "Presents test results from popular testing frameworks as Github check run",
|
"description": "Presents test results from popular testing frameworks as Github check run",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
@@ -17,6 +17,8 @@
|
|||||||
"dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"",
|
"dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"",
|
||||||
"dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"",
|
"dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"",
|
||||||
"dotnet-nunit-fixture": "nunit.exe reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml",
|
"dotnet-nunit-fixture": "nunit.exe reports/dotnet/DotnetTests.NUnitV3Tests/bin/Debug/netcoreapp3.1/DotnetTests.NUnitV3Tests.dll --result=__tests__/fixtures/dotnet-nunit.xml",
|
||||||
|
"dotnet-nunit-legacy-fixture": "nunit-console.exe reports/dotnet-nunit-legacy/NUnitLegacy.sln --result=__tests__/fixtures/dotnet-nunit-legacy.xml",
|
||||||
|
"golang-json-fixture": "go test -v -json -timeout 5s ./reports/go | tee __tests__/fixtures/golang-json.json",
|
||||||
"jest-fixture": "cd \"reports/jest\" && npm test",
|
"jest-fixture": "cd \"reports/jest\" && npm test",
|
||||||
"mocha-fixture": "cd \"reports/mocha\" && npm test"
|
"mocha-fixture": "cd \"reports/mocha\" && npm test"
|
||||||
},
|
},
|
||||||
@@ -35,7 +37,7 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.11.1",
|
"@actions/core": "^1.11.1",
|
||||||
"@actions/exec": "^1.1.1",
|
"@actions/exec": "^1.1.1",
|
||||||
"@actions/github": "^6.0.0",
|
"@actions/github": "^6.0.1",
|
||||||
"adm-zip": "^0.5.16",
|
"adm-zip": "^0.5.16",
|
||||||
"fast-glob": "^3.3.3",
|
"fast-glob": "^3.3.3",
|
||||||
"got": "^11.8.6",
|
"got": "^11.8.6",
|
||||||
@@ -46,7 +48,7 @@
|
|||||||
"@octokit/webhooks-types": "^7.6.1",
|
"@octokit/webhooks-types": "^7.6.1",
|
||||||
"@types/adm-zip": "^0.5.7",
|
"@types/adm-zip": "^0.5.7",
|
||||||
"@types/jest": "^29.5.14",
|
"@types/jest": "^29.5.14",
|
||||||
"@types/node": "^20.17.24",
|
"@types/node": "^20.17.47",
|
||||||
"@types/picomatch": "^2.3.4",
|
"@types/picomatch": "^2.3.4",
|
||||||
"@types/xml2js": "^0.4.14",
|
"@types/xml2js": "^0.4.14",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
||||||
@@ -54,18 +56,18 @@
|
|||||||
"@vercel/ncc": "^0.38.3",
|
"@vercel/ncc": "^0.38.3",
|
||||||
"eol-converter-cli": "^1.1.0",
|
"eol-converter-cli": "^1.1.0",
|
||||||
"eslint": "^8.57.1",
|
"eslint": "^8.57.1",
|
||||||
"eslint-import-resolver-typescript": "^3.8.5",
|
"eslint-import-resolver-typescript": "^3.10.1",
|
||||||
"eslint-plugin-github": "^4.10.2",
|
"eslint-plugin-github": "^4.10.2",
|
||||||
"eslint-plugin-import": "^2.31.0",
|
"eslint-plugin-import": "^2.31.0",
|
||||||
"eslint-plugin-jest": "^28.11.0",
|
"eslint-plugin-jest": "^28.11.0",
|
||||||
"eslint-plugin-prettier": "^5.2.3",
|
"eslint-plugin-prettier": "^5.4.0",
|
||||||
"jest": "^29.7.0",
|
"jest": "^29.7.0",
|
||||||
"jest-circus": "^29.7.0",
|
"jest-circus": "^29.7.0",
|
||||||
"jest-junit": "^16.0.0",
|
"jest-junit": "^16.0.0",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"prettier": "^3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"ts-jest": "^29.2.6",
|
"ts-jest": "^29.3.4",
|
||||||
"typescript": "^5.5.4"
|
"typescript": "^5.8.3"
|
||||||
},
|
},
|
||||||
"jest-junit": {
|
"jest-junit": {
|
||||||
"suiteName": "jest tests",
|
"suiteName": "jest tests",
|
||||||
|
|||||||
20
reports/go/calculator.go
Normal file
20
reports/go/calculator.go
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import "errors"
|
||||||
|
|
||||||
|
func CalculatorSum(a, b int) int {
|
||||||
|
return a + b
|
||||||
|
}
|
||||||
|
|
||||||
|
func CalculatorDivide(a, b int) int {
|
||||||
|
return a / b
|
||||||
|
}
|
||||||
|
|
||||||
|
var ErrDivideByZero = errors.New("divide by zero")
|
||||||
|
|
||||||
|
func CalculatorSafeDivide(a, b int) (int, error) {
|
||||||
|
if b == 0 {
|
||||||
|
return 0, ErrDivideByZero
|
||||||
|
}
|
||||||
|
return a / b, nil
|
||||||
|
}
|
||||||
82
reports/go/calculator_test.go
Normal file
82
reports/go/calculator_test.go
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"math/rand"
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestPassing(t *testing.T) {
|
||||||
|
randomSleep()
|
||||||
|
t.Log("pass!")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestFailing(t *testing.T) {
|
||||||
|
randomSleep()
|
||||||
|
expected := 3
|
||||||
|
actual := CalculatorSum(1, 1)
|
||||||
|
if actual != expected {
|
||||||
|
t.Fatalf("expected 1+1 = %d, got %d", expected, actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPanicInsideFunction(t *testing.T) {
|
||||||
|
defer catchPanics(t)
|
||||||
|
|
||||||
|
expected := 0
|
||||||
|
actual := CalculatorDivide(1, 0)
|
||||||
|
if actual != expected {
|
||||||
|
t.Fatalf("expected 1/1 = %d, got %d", expected, actual)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestPanicInsideTest(t *testing.T) {
|
||||||
|
defer catchPanics(t)
|
||||||
|
panic("bad stuff")
|
||||||
|
}
|
||||||
|
|
||||||
|
// Timeouts cause the entire test process to end - so we can't get good output for these
|
||||||
|
// func TestTimeout(t *testing.T) {
|
||||||
|
// time.Sleep(time.Second * 5)
|
||||||
|
// }
|
||||||
|
|
||||||
|
func TestSkipped(t *testing.T) {
|
||||||
|
randomSleep()
|
||||||
|
t.Skipf("skipping test")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestCases(t *testing.T) {
|
||||||
|
for _, tc := range []struct {
|
||||||
|
name string
|
||||||
|
fn func(int, int) int
|
||||||
|
a, b, c int
|
||||||
|
}{
|
||||||
|
{"1 + 2 = 3", CalculatorSum, 1, 2, 3},
|
||||||
|
{"4 + 7 = 11", CalculatorSum, 4, 7, 11},
|
||||||
|
{"2 + 3 = 4", CalculatorSum, 2, 3, 4},
|
||||||
|
|
||||||
|
{"1 / 2 = 1", CalculatorDivide, 1, 2, 1},
|
||||||
|
{"9 / 3 = 3", CalculatorDivide, 9, 3, 3},
|
||||||
|
{"14 / 7 = 2", CalculatorDivide, 14, 7, 2},
|
||||||
|
} {
|
||||||
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
|
randomSleep()
|
||||||
|
|
||||||
|
c := tc.fn(tc.a, tc.b)
|
||||||
|
if c != tc.c {
|
||||||
|
t.Fatalf("expected %s, got %d", tc.name, c)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func catchPanics(t *testing.T) {
|
||||||
|
err := recover()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("caught panic: %v", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func randomSleep() {
|
||||||
|
time.Sleep(time.Duration(rand.Int63n(int64(time.Second))))
|
||||||
|
}
|
||||||
3
reports/go/go.mod
Normal file
3
reports/go/go.mod
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
module test_reporter_example
|
||||||
|
|
||||||
|
go 1.24.2
|
||||||
26
src/main.ts
26
src/main.ts
@@ -13,6 +13,7 @@ import {getReport} from './report/get-report'
|
|||||||
import {DartJsonParser} from './parsers/dart-json/dart-json-parser'
|
import {DartJsonParser} from './parsers/dart-json/dart-json-parser'
|
||||||
import {DotnetNunitParser} from './parsers/dotnet-nunit/dotnet-nunit-parser'
|
import {DotnetNunitParser} from './parsers/dotnet-nunit/dotnet-nunit-parser'
|
||||||
import {DotnetTrxParser} from './parsers/dotnet-trx/dotnet-trx-parser'
|
import {DotnetTrxParser} from './parsers/dotnet-trx/dotnet-trx-parser'
|
||||||
|
import {GolangJsonParser} from './parsers/golang-json/golang-json-parser'
|
||||||
import {JavaJunitParser} from './parsers/java-junit/java-junit-parser'
|
import {JavaJunitParser} from './parsers/java-junit/java-junit-parser'
|
||||||
import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser'
|
import {JestJunitParser} from './parsers/jest-junit/jest-junit-parser'
|
||||||
import {MochaJsonParser} from './parsers/mocha-json/mocha-json-parser'
|
import {MochaJsonParser} from './parsers/mocha-json/mocha-json-parser'
|
||||||
@@ -47,6 +48,7 @@ class TestReporter {
|
|||||||
readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true'
|
readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true'
|
||||||
readonly useActionsSummary = core.getInput('use-actions-summary', {required: false}) === 'true'
|
readonly useActionsSummary = core.getInput('use-actions-summary', {required: false}) === 'true'
|
||||||
readonly badgeTitle = core.getInput('badge-title', {required: false})
|
readonly badgeTitle = core.getInput('badge-title', {required: false})
|
||||||
|
readonly reportTitle = core.getInput('report-title', {required: false})
|
||||||
readonly token = core.getInput('token', {required: true})
|
readonly token = core.getInput('token', {required: true})
|
||||||
readonly octokit: InstanceType<typeof GitHub>
|
readonly octokit: InstanceType<typeof GitHub>
|
||||||
readonly context = getCheckRunContext()
|
readonly context = getCheckRunContext()
|
||||||
@@ -164,11 +166,19 @@ class TestReporter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const {listSuites, listTests, onlySummary, useActionsSummary, badgeTitle} = this
|
const {listSuites, listTests, onlySummary, useActionsSummary, badgeTitle, reportTitle} = this
|
||||||
|
|
||||||
let baseUrl = ''
|
let baseUrl = ''
|
||||||
if (this.useActionsSummary) {
|
if (this.useActionsSummary) {
|
||||||
const summary = getReport(results, {listSuites, listTests, baseUrl, onlySummary, useActionsSummary, badgeTitle})
|
const summary = getReport(results, {
|
||||||
|
listSuites,
|
||||||
|
listTests,
|
||||||
|
baseUrl,
|
||||||
|
onlySummary,
|
||||||
|
useActionsSummary,
|
||||||
|
badgeTitle,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
|
||||||
core.info('Summary content:')
|
core.info('Summary content:')
|
||||||
core.info(summary)
|
core.info(summary)
|
||||||
@@ -188,7 +198,15 @@ class TestReporter {
|
|||||||
|
|
||||||
core.info('Creating report summary')
|
core.info('Creating report summary')
|
||||||
baseUrl = createResp.data.html_url as string
|
baseUrl = createResp.data.html_url as string
|
||||||
const summary = getReport(results, {listSuites, listTests, baseUrl, onlySummary, useActionsSummary, badgeTitle})
|
const summary = getReport(results, {
|
||||||
|
listSuites,
|
||||||
|
listTests,
|
||||||
|
baseUrl,
|
||||||
|
onlySummary,
|
||||||
|
useActionsSummary,
|
||||||
|
badgeTitle,
|
||||||
|
reportTitle
|
||||||
|
})
|
||||||
|
|
||||||
core.info('Creating annotations')
|
core.info('Creating annotations')
|
||||||
const annotations = getAnnotations(results, this.maxAnnotations)
|
const annotations = getAnnotations(results, this.maxAnnotations)
|
||||||
@@ -231,6 +249,8 @@ class TestReporter {
|
|||||||
return new DotnetNunitParser(options)
|
return new DotnetNunitParser(options)
|
||||||
case 'dotnet-trx':
|
case 'dotnet-trx':
|
||||||
return new DotnetTrxParser(options)
|
return new DotnetTrxParser(options)
|
||||||
|
case 'golang-json':
|
||||||
|
return new GolangJsonParser(options)
|
||||||
case 'flutter-json':
|
case 'flutter-json':
|
||||||
return new DartJsonParser(options, 'flutter')
|
return new DartJsonParser(options, 'flutter')
|
||||||
case 'java-junit':
|
case 'java-junit':
|
||||||
|
|||||||
@@ -62,7 +62,8 @@ export class DotnetTrxParser implements TestParser {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private getTestClasses(trx: TrxReport): TestClass[] {
|
private getTestClasses(trx: TrxReport): TestClass[] {
|
||||||
if (trx.TestRun.TestDefinitions === undefined || trx.TestRun.Results === undefined) {
|
if (trx.TestRun.TestDefinitions === undefined || trx.TestRun.Results === undefined ||
|
||||||
|
!trx.TestRun.TestDefinitions.some(td => td.UnitTest && Array.isArray(td.UnitTest))) {
|
||||||
return []
|
return []
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
115
src/parsers/golang-json/golang-json-parser.ts
Normal file
115
src/parsers/golang-json/golang-json-parser.ts
Normal file
@@ -0,0 +1,115 @@
|
|||||||
|
import { ParseOptions, TestParser } from '../../test-parser'
|
||||||
|
|
||||||
|
import { GoTestEvent } from './golang-json-types'
|
||||||
|
import { getExceptionSource } from '../../utils/node-utils'
|
||||||
|
import { getBasePath, normalizeFilePath } from '../../utils/path-utils'
|
||||||
|
|
||||||
|
import {
|
||||||
|
TestExecutionResult,
|
||||||
|
TestRunResult,
|
||||||
|
TestSuiteResult,
|
||||||
|
TestGroupResult,
|
||||||
|
TestCaseResult,
|
||||||
|
TestCaseError
|
||||||
|
} from '../../test-results'
|
||||||
|
|
||||||
|
export class GolangJsonParser implements TestParser {
|
||||||
|
assumedWorkDir: string | undefined
|
||||||
|
|
||||||
|
constructor(readonly options: ParseOptions) { }
|
||||||
|
|
||||||
|
async parse(path: string, content: string): Promise<TestRunResult> {
|
||||||
|
const events = await this.getGolangTestEvents(path, content)
|
||||||
|
return this.getTestRunResult(path, events)
|
||||||
|
}
|
||||||
|
|
||||||
|
private async getGolangTestEvents(path: string, content: string): Promise<GoTestEvent[]> {
|
||||||
|
return content.trim().split('\n').map((line, index) => {
|
||||||
|
try {
|
||||||
|
return JSON.parse(line) as GoTestEvent
|
||||||
|
} catch (e) {
|
||||||
|
throw new Error(`Invalid JSON at ${path} line ${index + 1}\n\n${e}`)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
private getTestRunResult(path: string, events: GoTestEvent[]): TestRunResult {
|
||||||
|
const eventGroups = new Map<string, GoTestEvent[]>()
|
||||||
|
for (const event of events) {
|
||||||
|
if (!event.Test) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
const k = `${event.Package}/${event.Test}`
|
||||||
|
let g = eventGroups.get(k)
|
||||||
|
if (!g) {
|
||||||
|
g = []
|
||||||
|
eventGroups.set(k, g)
|
||||||
|
}
|
||||||
|
g.push(event)
|
||||||
|
}
|
||||||
|
|
||||||
|
const suites: TestSuiteResult[] = []
|
||||||
|
|
||||||
|
for (const eventGroup of eventGroups.values()) {
|
||||||
|
const event = eventGroup[0]
|
||||||
|
|
||||||
|
let suite = suites.find(s => s.name === event.Package)
|
||||||
|
if (!suite) {
|
||||||
|
suite = new TestSuiteResult(event.Package, [])
|
||||||
|
suites.push(suite)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!event.Test) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
let groupName: string | null
|
||||||
|
let rest: string[]
|
||||||
|
[groupName, ...rest] = event.Test.split('/')
|
||||||
|
let testName = rest.join('/')
|
||||||
|
if (!testName) {
|
||||||
|
testName = groupName
|
||||||
|
groupName = null
|
||||||
|
}
|
||||||
|
|
||||||
|
let group = suite.groups.find(g => g.name === groupName)
|
||||||
|
if (!group) {
|
||||||
|
group = new TestGroupResult(groupName, [])
|
||||||
|
suite.groups.push(group)
|
||||||
|
}
|
||||||
|
|
||||||
|
const lastEvent = eventGroup.at(-1)!
|
||||||
|
|
||||||
|
const result: TestExecutionResult = lastEvent.Action === 'pass' ? 'success'
|
||||||
|
: lastEvent.Action === 'skip' ? 'skipped'
|
||||||
|
: 'failed'
|
||||||
|
if (lastEvent.Elapsed === undefined) {
|
||||||
|
throw new Error('missing elapsed on final test event')
|
||||||
|
}
|
||||||
|
const time: number = lastEvent.Elapsed * 1000
|
||||||
|
|
||||||
|
let error: TestCaseError | undefined = undefined
|
||||||
|
if (result !== 'success') {
|
||||||
|
const outputEvents = eventGroup
|
||||||
|
.filter(e => e.Action === 'output')
|
||||||
|
.map(e => e.Output ?? '')
|
||||||
|
// Go output prepends indentation to help group tests - remove it
|
||||||
|
.map(o => o.replace(/^ /, ''))
|
||||||
|
|
||||||
|
// First and last lines will be generic "test started" and "test finished" lines - remove them
|
||||||
|
outputEvents.splice(0, 1)
|
||||||
|
outputEvents.splice(-1, 1)
|
||||||
|
|
||||||
|
const details = outputEvents.join('')
|
||||||
|
error = {
|
||||||
|
message: details,
|
||||||
|
details: details
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
group.tests.push(new TestCaseResult(testName, result, time, error))
|
||||||
|
}
|
||||||
|
|
||||||
|
return new TestRunResult(path, suites)
|
||||||
|
}
|
||||||
|
}
|
||||||
19
src/parsers/golang-json/golang-json-types.ts
Normal file
19
src/parsers/golang-json/golang-json-types.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
export type GoTestAction = 'start'
|
||||||
|
| 'run'
|
||||||
|
| 'pause'
|
||||||
|
| 'cont'
|
||||||
|
| 'pass'
|
||||||
|
| 'bench'
|
||||||
|
| 'fail'
|
||||||
|
| 'output'
|
||||||
|
| 'skip'
|
||||||
|
|
||||||
|
export type GoTestEvent = {
|
||||||
|
Time: string
|
||||||
|
Action: GoTestAction
|
||||||
|
Package: string
|
||||||
|
Test?: string
|
||||||
|
Elapsed?: number
|
||||||
|
Output?: string
|
||||||
|
FailedBuild?: string
|
||||||
|
}
|
||||||
@@ -6,7 +6,7 @@ import {getFirstNonEmptyLine} from '../utils/parse-utils'
|
|||||||
import {slug} from '../utils/slugger'
|
import {slug} from '../utils/slugger'
|
||||||
|
|
||||||
const MAX_REPORT_LENGTH = 65535
|
const MAX_REPORT_LENGTH = 65535
|
||||||
const MAX_ACTIONS_SUMMARY_LENGTH = 131072 // 1048576 soon
|
const MAX_ACTIONS_SUMMARY_LENGTH = 1048576
|
||||||
|
|
||||||
export interface ReportOptions {
|
export interface ReportOptions {
|
||||||
listSuites: 'all' | 'failed' | 'none'
|
listSuites: 'all' | 'failed' | 'none'
|
||||||
@@ -15,18 +15,20 @@ export interface ReportOptions {
|
|||||||
onlySummary: boolean
|
onlySummary: boolean
|
||||||
useActionsSummary: boolean
|
useActionsSummary: boolean
|
||||||
badgeTitle: string
|
badgeTitle: string
|
||||||
|
reportTitle: string
|
||||||
}
|
}
|
||||||
|
|
||||||
const defaultOptions: ReportOptions = {
|
export const DEFAULT_OPTIONS: ReportOptions = {
|
||||||
listSuites: 'all',
|
listSuites: 'all',
|
||||||
listTests: 'all',
|
listTests: 'all',
|
||||||
baseUrl: '',
|
baseUrl: '',
|
||||||
onlySummary: false,
|
onlySummary: false,
|
||||||
useActionsSummary: true,
|
useActionsSummary: true,
|
||||||
badgeTitle: 'tests'
|
badgeTitle: 'tests',
|
||||||
|
reportTitle: ''
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getReport(results: TestRunResult[], options: ReportOptions = defaultOptions): string {
|
export function getReport(results: TestRunResult[], options: ReportOptions = DEFAULT_OPTIONS): string {
|
||||||
core.info('Generating check run summary')
|
core.info('Generating check run summary')
|
||||||
|
|
||||||
applySort(results)
|
applySort(results)
|
||||||
@@ -53,7 +55,7 @@ export function getReport(results: TestRunResult[], options: ReportOptions = def
|
|||||||
return trimReport(lines, options)
|
return trimReport(lines, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getMaxReportLength(options: ReportOptions = defaultOptions): number {
|
function getMaxReportLength(options: ReportOptions = DEFAULT_OPTIONS): number {
|
||||||
return options.useActionsSummary ? MAX_ACTIONS_SUMMARY_LENGTH : MAX_REPORT_LENGTH
|
return options.useActionsSummary ? MAX_ACTIONS_SUMMARY_LENGTH : MAX_REPORT_LENGTH
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -101,6 +103,12 @@ function getByteLength(text: string): number {
|
|||||||
|
|
||||||
function renderReport(results: TestRunResult[], options: ReportOptions): string[] {
|
function renderReport(results: TestRunResult[], options: ReportOptions): string[] {
|
||||||
const sections: string[] = []
|
const sections: string[] = []
|
||||||
|
|
||||||
|
const reportTitle: string = options.reportTitle.trim()
|
||||||
|
if (reportTitle) {
|
||||||
|
sections.push(`# ${reportTitle}`)
|
||||||
|
}
|
||||||
|
|
||||||
const badge = getReportBadge(results, options)
|
const badge = getReportBadge(results, options)
|
||||||
sections.push(badge)
|
sections.push(badge)
|
||||||
|
|
||||||
@@ -185,7 +193,7 @@ function getSuitesReport(tr: TestRunResult, runIndex: number, options: ReportOpt
|
|||||||
const suites = options.listSuites === 'failed' ? tr.failedSuites : tr.suites
|
const suites = options.listSuites === 'failed' ? tr.failedSuites : tr.suites
|
||||||
|
|
||||||
if (options.listSuites !== 'none') {
|
if (options.listSuites !== 'none') {
|
||||||
const trSlug = makeRunSlug(runIndex)
|
const trSlug = makeRunSlug(runIndex, options)
|
||||||
const nameLink = `<a id="${trSlug.id}" href="${options.baseUrl + trSlug.link}">${tr.path}</a>`
|
const nameLink = `<a id="${trSlug.id}" href="${options.baseUrl + trSlug.link}">${tr.path}</a>`
|
||||||
const icon = getResultIcon(tr.result)
|
const icon = getResultIcon(tr.result)
|
||||||
sections.push(`## ${icon}\xa0${nameLink}`)
|
sections.push(`## ${icon}\xa0${nameLink}`)
|
||||||
@@ -205,7 +213,7 @@ function getSuitesReport(tr: TestRunResult, runIndex: number, options: ReportOpt
|
|||||||
const tsTime = formatTime(s.time)
|
const tsTime = formatTime(s.time)
|
||||||
const tsName = s.name
|
const tsName = s.name
|
||||||
const skipLink = options.listTests === 'none' || (options.listTests === 'failed' && s.result !== 'failed')
|
const skipLink = options.listTests === 'none' || (options.listTests === 'failed' && s.result !== 'failed')
|
||||||
const tsAddr = options.baseUrl + makeSuiteSlug(runIndex, suiteIndex).link
|
const tsAddr = options.baseUrl + makeSuiteSlug(runIndex, suiteIndex, options).link
|
||||||
const tsNameLink = skipLink ? tsName : link(tsName, tsAddr)
|
const tsNameLink = skipLink ? tsName : link(tsName, tsAddr)
|
||||||
const passed = s.passed > 0 ? `${s.passed} ${Icon.success}` : ''
|
const passed = s.passed > 0 ? `${s.passed} ${Icon.success}` : ''
|
||||||
const failed = s.failed > 0 ? `${s.failed} ${Icon.fail}` : ''
|
const failed = s.failed > 0 ? `${s.failed} ${Icon.fail}` : ''
|
||||||
@@ -240,7 +248,7 @@ function getTestsReport(ts: TestSuiteResult, runIndex: number, suiteIndex: numbe
|
|||||||
const sections: string[] = []
|
const sections: string[] = []
|
||||||
|
|
||||||
const tsName = ts.name
|
const tsName = ts.name
|
||||||
const tsSlug = makeSuiteSlug(runIndex, suiteIndex)
|
const tsSlug = makeSuiteSlug(runIndex, suiteIndex, options)
|
||||||
const tsNameLink = `<a id="${tsSlug.id}" href="${options.baseUrl + tsSlug.link}">${tsName}</a>`
|
const tsNameLink = `<a id="${tsSlug.id}" href="${options.baseUrl + tsSlug.link}">${tsName}</a>`
|
||||||
const icon = getResultIcon(ts.result)
|
const icon = getResultIcon(ts.result)
|
||||||
sections.push(`### ${icon}\xa0${tsNameLink}`)
|
sections.push(`### ${icon}\xa0${tsNameLink}`)
|
||||||
@@ -269,14 +277,14 @@ function getTestsReport(ts: TestSuiteResult, runIndex: number, suiteIndex: numbe
|
|||||||
return sections
|
return sections
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeRunSlug(runIndex: number): {id: string; link: string} {
|
function makeRunSlug(runIndex: number, options: ReportOptions): {id: string; link: string} {
|
||||||
// use prefix to avoid slug conflicts after escaping the paths
|
// use prefix to avoid slug conflicts after escaping the paths
|
||||||
return slug(`r${runIndex}`)
|
return slug(`r${runIndex}`, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeSuiteSlug(runIndex: number, suiteIndex: number): {id: string; link: string} {
|
function makeSuiteSlug(runIndex: number, suiteIndex: number, options: ReportOptions): {id: string; link: string} {
|
||||||
// use prefix to avoid slug conflicts after escaping the paths
|
// use prefix to avoid slug conflicts after escaping the paths
|
||||||
return slug(`r${runIndex}s${suiteIndex}`)
|
return slug(`r${runIndex}s${suiteIndex}`, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
function getResultIcon(result: TestExecutionResult): string {
|
function getResultIcon(result: TestExecutionResult): string {
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
// Returns HTML element id and href link usable as manual anchor links
|
// Returns HTML element id and href link usable as manual anchor links
|
||||||
// This is needed because Github in check run summary doesn't automatically
|
// This is needed because Github in check run summary doesn't automatically
|
||||||
// create links out of headings as it normally does for other markdown content
|
// create links out of headings as it normally does for other markdown content
|
||||||
export function slug(name: string): {id: string; link: string} {
|
import {ReportOptions} from '../report/get-report'
|
||||||
|
|
||||||
|
export function slug(name: string, options: ReportOptions): {id: string; link: string} {
|
||||||
const slugId = name
|
const slugId = name
|
||||||
.trim()
|
.trim()
|
||||||
.replace(/_/g, '')
|
.replace(/_/g, '')
|
||||||
@@ -9,6 +11,7 @@ export function slug(name: string): {id: string; link: string} {
|
|||||||
.replace(/[^\w-]/g, '')
|
.replace(/[^\w-]/g, '')
|
||||||
|
|
||||||
const id = `user-content-${slugId}`
|
const id = `user-content-${slugId}`
|
||||||
const link = `#${slugId}`
|
// When using the Action Summary for display, links must include the "user-content-" prefix.
|
||||||
|
const link = options.useActionsSummary ? `#${id}` : `#${slugId}`
|
||||||
return {id, link}
|
return {id, link}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"moduleResolution": "node16",
|
"moduleResolution": "node16",
|
||||||
|
"isolatedModules": true,
|
||||||
|
|
||||||
"outDir": "./lib",
|
"outDir": "./lib",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
|
|||||||
Reference in New Issue
Block a user