generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #317 from jozefizso/feature/swift-xunit
Add `SwiftXunitParser` class based on `JavaJunitParser` for `swift-xunit` reporter
- Loading branch information
Showing
8 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
![Tests failed](https://img.shields.io/badge/tests-2%20passed%2C%201%20failed-critical) | ||
## ❌ <a id="user-content-r0" href="#r0">fixtures/swift-xunit.xml</a> | ||
**3** tests were completed in **220ms** with **2** passed, **1** failed and **0** skipped. | ||
|Test suite|Passed|Failed|Skipped|Time| | ||
|:---|---:|---:|---:|---:| | ||
|[TestResults](#r0s0)|2✅|1❌||220ms| | ||
### ❌ <a id="user-content-r0s0" href="#r0s0">TestResults</a> | ||
``` | ||
AcmeLibTests.AcmeLibTests | ||
✅ test_always_pass | ||
✅ test_always_skip | ||
❌ test_always_fail | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`swift-xunit tests report from swift test results matches snapshot 1`] = ` | ||
TestRunResult { | ||
"path": "fixtures/swift-xunit.xml", | ||
"suites": Array [ | ||
TestSuiteResult { | ||
"groups": Array [ | ||
TestGroupResult { | ||
"name": "AcmeLibTests.AcmeLibTests", | ||
"tests": Array [ | ||
TestCaseResult { | ||
"error": undefined, | ||
"name": "test_always_pass", | ||
"result": "success", | ||
"time": 36.386333, | ||
}, | ||
TestCaseResult { | ||
"error": undefined, | ||
"name": "test_always_skip", | ||
"result": "success", | ||
"time": 92.039167, | ||
}, | ||
TestCaseResult { | ||
"error": Object { | ||
"details": undefined, | ||
"line": undefined, | ||
"message": undefined, | ||
"path": undefined, | ||
}, | ||
"name": "test_always_fail", | ||
"result": "failed", | ||
"time": 92.05175, | ||
}, | ||
], | ||
}, | ||
], | ||
"name": "TestResults", | ||
"totalTime": 220.47725000000003, | ||
}, | ||
], | ||
"totalTime": undefined, | ||
} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuites> | ||
<testsuite name="TestResults" errors="0" tests="3" failures="1" time="0.22047725"> | ||
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_pass" time="0.036386333"> | ||
</testcase> | ||
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_skip" time="0.092039167"> | ||
</testcase> | ||
<testcase classname="AcmeLibTests.AcmeLibTests" name="test_always_fail" time="0.09205175"> | ||
<failure message="failed"></failure> | ||
</testcase> | ||
</testsuite> | ||
</testsuites> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import * as fs from 'fs' | ||
import * as path from 'path' | ||
|
||
import {SwiftXunitParser} from '../src/parsers/swift-xunit/swift-xunit-parser' | ||
import {ParseOptions} from '../src/test-parser' | ||
import {getReport} from '../src/report/get-report' | ||
import {normalizeFilePath} from '../src/utils/path-utils' | ||
|
||
describe('swift-xunit tests', () => { | ||
it('report from swift test results matches snapshot', async () => { | ||
const fixturePath = path.join(__dirname, 'fixtures', 'swift-xunit.xml') | ||
const outputPath = path.join(__dirname, '__outputs__', 'swift-xunit.md') | ||
const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) | ||
const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) | ||
|
||
const trackedFiles = [ | ||
'Package.swift', | ||
'Sources/AcmeLib/AcmeLib.swift', | ||
'Tests/AcmeLibTests/AcmeLibTests.swift', | ||
] | ||
const opts: ParseOptions = { | ||
parseErrors: true, | ||
trackedFiles | ||
} | ||
|
||
const parser = new SwiftXunitParser(opts) | ||
const result = await parser.parse(filePath, fileContent) | ||
expect(result).toMatchSnapshot() | ||
|
||
const report = getReport([result]) | ||
fs.mkdirSync(path.dirname(outputPath), {recursive: true}) | ||
fs.writeFileSync(outputPath, report) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import {ParseOptions} from '../../test-parser' | ||
import {JavaJunitParser} from '../java-junit/java-junit-parser' | ||
|
||
export class SwiftXunitParser extends JavaJunitParser { | ||
constructor(readonly options: ParseOptions) { | ||
super(options) | ||
} | ||
} |