From 837045e72bcfc2c6a9bea565ba1f87b25c3f0360 Mon Sep 17 00:00:00 2001 From: Jozef Izso Date: Sat, 27 Dec 2025 00:08:06 +0100 Subject: [PATCH] Add sample files from PHPUnit results in JUnit XML format Co-Authored-By: Claude Code --- .../phpunit-junit-basic-results.md | 30 ++ .../phpunit-phpcheckstyle-results.md | 88 ++++ __tests__/__outputs__/phpunit-test-results.md | 21 +- .../__snapshots__/phpunit-junit.test.ts.snap | 440 ++++++++++++++++++ .../fixtures/external/phpunit/junit-basic.xml | 28 ++ .../phpunit/phpcheckstyle-phpunit.xml | 212 +++++++++ __tests__/phpunit-junit.test.ts | 184 ++++++++ 7 files changed, 994 insertions(+), 9 deletions(-) create mode 100644 __tests__/__outputs__/phpunit-junit-basic-results.md create mode 100644 __tests__/__outputs__/phpunit-phpcheckstyle-results.md create mode 100644 __tests__/fixtures/external/phpunit/junit-basic.xml create mode 100644 __tests__/fixtures/external/phpunit/phpcheckstyle-phpunit.xml diff --git a/__tests__/__outputs__/phpunit-junit-basic-results.md b/__tests__/__outputs__/phpunit-junit-basic-results.md new file mode 100644 index 0000000..641b9dd --- /dev/null +++ b/__tests__/__outputs__/phpunit-junit-basic-results.md @@ -0,0 +1,30 @@ +![Tests failed](https://img.shields.io/badge/tests-8%20passed%2C%201%20failed-critical) +|Report|Passed|Failed|Skipped|Time| +|:---|---:|---:|---:|---:| +|[fixtures/external/phpunit/junit-basic.xml](#user-content-r0)|8 ✅|1 ❌||16s| +## ❌ fixtures/external/phpunit/junit-basic.xml +**9** tests were completed in **16s** with **8** passed, **1** failed and **0** skipped. +|Test suite|Passed|Failed|Skipped|Time| +|:---|---:|---:|---:|---:| +|[Tests.Authentication](#user-content-r0s0)|2 ✅|1 ❌||9s| +|[Tests.Authentication.Login](#user-content-r0s1)|3 ✅|||4s| +|[Tests.Registration](#user-content-r0s2)|3 ✅|||7s| +### ❌ Tests.Authentication +``` +✅ testCase7 +✅ testCase8 +❌ testCase9 + AssertionError: Assertion error message +``` +### ✅ Tests.Authentication.Login +``` +✅ testCase4 +✅ testCase5 +✅ testCase6 +``` +### ✅ Tests.Registration +``` +✅ testCase1 +✅ testCase2 +✅ testCase3 +``` \ No newline at end of file diff --git a/__tests__/__outputs__/phpunit-phpcheckstyle-results.md b/__tests__/__outputs__/phpunit-phpcheckstyle-results.md new file mode 100644 index 0000000..6966c55 --- /dev/null +++ b/__tests__/__outputs__/phpunit-phpcheckstyle-results.md @@ -0,0 +1,88 @@ +![Tests failed](https://img.shields.io/badge/tests-28%20passed%2C%202%20failed-critical) +|Report|Passed|Failed|Skipped|Time| +|:---|---:|---:|---:|---:| +|[fixtures/external/phpunit/phpcheckstyle-phpunit.xml](#user-content-r0)|28 ✅|2 ❌||41ms| +## ❌ fixtures/external/phpunit/phpcheckstyle-phpunit.xml +**30** tests were completed in **41ms** with **28** passed, **2** failed and **0** skipped. +|Test suite|Passed|Failed|Skipped|Time| +|:---|---:|---:|---:|---:| +|[CommentsTest](#user-content-r0s0)|3 ✅|||7ms| +|[DeprecationTest](#user-content-r0s1)|1 ✅|||1ms| +|[GoodTest](#user-content-r0s2)|4 ✅|||5ms| +|[IndentationTest](#user-content-r0s3)|8 ✅|||8ms| +|[MetricsTest](#user-content-r0s4)|1 ✅|||4ms| +|[NamingTest](#user-content-r0s5)|2 ✅|||3ms| +|[OptimizationTest](#user-content-r0s6)|1 ✅|||1ms| +|[OtherTest](#user-content-r0s7)|2 ✅|2 ❌||7ms| +|[PHPTagsTest](#user-content-r0s8)|2 ✅|||1ms| +|[ProhibitedTest](#user-content-r0s9)|1 ✅|||1ms| +|[StrictCompareTest](#user-content-r0s10)|1 ✅|||2ms| +|[UnusedTest](#user-content-r0s11)|2 ✅|||2ms| +### ✅ CommentsTest +``` +✅ testGoodDoc +✅ testComments +✅ testTODOs +``` +### ✅ DeprecationTest +``` +✅ testDeprecations +``` +### ✅ GoodTest +``` +✅ testGood +✅ testDoWhile +✅ testAnonymousFunction +✅ testException +``` +### ✅ IndentationTest +``` +✅ testTabIndentation +✅ testSpaceIndentation +✅ testSpaceIndentationArray +✅ testGoodSpaceIndentationArray +✅ testGoodIndentationNewLine +✅ testGoodIndentationSpaces +✅ testBadSpaces +✅ testBadSpaceAfterControl +``` +### ✅ MetricsTest +``` +✅ testMetrics +``` +### ✅ NamingTest +``` +✅ testNaming +✅ testFunctionNaming +``` +### ✅ OptimizationTest +``` +✅ testTextAfterClosingTag +``` +### ❌ OtherTest +``` +❌ testOther + PHPUnit\Framework\ExpectationFailedException +❌ testException + PHPUnit\Framework\ExpectationFailedException +✅ testEmpty +✅ testSwitchCaseNeedBreak +``` +### ✅ PHPTagsTest +``` +✅ testTextAfterClosingTag +✅ testClosingTagNotNeeded +``` +### ✅ ProhibitedTest +``` +✅ testProhibited +``` +### ✅ StrictCompareTest +``` +✅ testStrictCompare +``` +### ✅ UnusedTest +``` +✅ testGoodUnused +✅ testBadUnused +``` \ No newline at end of file diff --git a/__tests__/__outputs__/phpunit-test-results.md b/__tests__/__outputs__/phpunit-test-results.md index 45d2526..67f8258 100644 --- a/__tests__/__outputs__/phpunit-test-results.md +++ b/__tests__/__outputs__/phpunit-test-results.md @@ -1,26 +1,29 @@ ![Tests failed](https://img.shields.io/badge/tests-10%20passed%2C%202%20failed-critical) -## ❌ fixtures/phpunit/phpunit.xml +|Report|Passed|Failed|Skipped|Time| +|:---|---:|---:|---:|---:| +|[fixtures/phpunit/phpunit.xml](#user-content-r0)|10 ✅|2 ❌||148ms| +## ❌ fixtures/phpunit/phpunit.xml **12** tests were completed in **148ms** with **10** passed, **2** failed and **0** skipped. |Test suite|Passed|Failed|Skipped|Time| |:---|---:|---:|---:|---:| -|[CLI Arguments](#r0s0)||2❌||140ms| -|[PHPUnit\Event\CollectingDispatcherTest](#r0s1)|2✅|||4ms| -|[PHPUnit\Event\DeferringDispatcherTest](#r0s2)|4✅|||3ms| -|[PHPUnit\Event\DirectDispatcherTest](#r0s3)|4✅|||1ms| -### ❌ CLI Arguments +|[CLI Arguments](#user-content-r0s0)||2 ❌||140ms| +|[PHPUnit\Event\CollectingDispatcherTest](#user-content-r0s1)|2 ✅|||4ms| +|[PHPUnit\Event\DeferringDispatcherTest](#user-content-r0s2)|4 ✅|||3ms| +|[PHPUnit\Event\DirectDispatcherTest](#user-content-r0s3)|4 ✅|||1ms| +### ❌ CLI Arguments ``` ❌ targeting-traits-with-coversclass-attribute-is-deprecated.phpt PHPUnit\Framework\PhptAssertionFailedError ❌ targeting-traits-with-usesclass-attribute-is-deprecated.phpt PHPUnit\Framework\PhptAssertionFailedError ``` -### ✅ PHPUnit\Event\CollectingDispatcherTest +### ✅ PHPUnit\Event\CollectingDispatcherTest ``` PHPUnit.Event.CollectingDispatcherTest ✅ testHasNoCollectedEventsWhenFlushedImmediatelyAfterCreation ✅ testCollectsDispatchedEventsUntilFlushed ``` -### ✅ PHPUnit\Event\DeferringDispatcherTest +### ✅ PHPUnit\Event\DeferringDispatcherTest ``` PHPUnit.Event.DeferringDispatcherTest ✅ testCollectsEventsUntilFlush @@ -28,7 +31,7 @@ PHPUnit.Event.DeferringDispatcherTest ✅ testSubscriberCanBeRegistered ✅ testTracerCanBeRegistered ``` -### ✅ PHPUnit\Event\DirectDispatcherTest +### ✅ PHPUnit\Event\DirectDispatcherTest ``` PHPUnit.Event.DirectDispatcherTest ✅ testDispatchesEventToKnownSubscribers diff --git a/__tests__/__snapshots__/phpunit-junit.test.ts.snap b/__tests__/__snapshots__/phpunit-junit.test.ts.snap index 518eaa5..d48d941 100644 --- a/__tests__/__snapshots__/phpunit-junit.test.ts.snap +++ b/__tests__/__snapshots__/phpunit-junit.test.ts.snap @@ -1,5 +1,445 @@ // Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing +exports[`phpunit-junit tests report from junit-basic.xml matches snapshot 1`] = ` +TestRunResult { + "path": "fixtures/external/phpunit/junit-basic.xml", + "suites": [ + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testCase1", + "result": "success", + "time": 2113.871, + }, + TestCaseResult { + "error": undefined, + "name": "testCase2", + "result": "success", + "time": 1051, + }, + TestCaseResult { + "error": undefined, + "name": "testCase3", + "result": "success", + "time": 3441, + }, + ], + }, + ], + "name": "Tests.Registration", + "totalTime": 6605.870999999999, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testCase4", + "result": "success", + "time": 2244, + }, + TestCaseResult { + "error": undefined, + "name": "testCase5", + "result": "success", + "time": 781, + }, + TestCaseResult { + "error": undefined, + "name": "testCase6", + "result": "success", + "time": 1331, + }, + ], + }, + ], + "name": "Tests.Authentication.Login", + "totalTime": 4356, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testCase7", + "result": "success", + "time": 2508, + }, + TestCaseResult { + "error": undefined, + "name": "testCase8", + "result": "success", + "time": 1230.8159999999998, + }, + TestCaseResult { + "error": { + "details": "", + "line": undefined, + "message": "AssertionError: Assertion error message", + "path": undefined, + }, + "name": "testCase9", + "result": "failed", + "time": 982, + }, + ], + }, + ], + "name": "Tests.Authentication", + "totalTime": 9076.816, + }, + ], + "totalTime": 15682.687, +} +`; + +exports[`phpunit-junit tests report from phpcheckstyle-phpunit.xml matches snapshot 1`] = ` +TestRunResult { + "path": "fixtures/external/phpunit/phpcheckstyle-phpunit.xml", + "suites": [ + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testGoodDoc", + "result": "success", + "time": 5.093, + }, + TestCaseResult { + "error": undefined, + "name": "testComments", + "result": "success", + "time": 0.921, + }, + TestCaseResult { + "error": undefined, + "name": "testTODOs", + "result": "success", + "time": 0.6880000000000001, + }, + ], + }, + ], + "name": "CommentsTest", + "totalTime": 6.702, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testDeprecations", + "result": "success", + "time": 0.9740000000000001, + }, + ], + }, + ], + "name": "DeprecationTest", + "totalTime": 0.9740000000000001, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testGood", + "result": "success", + "time": 2.6470000000000002, + }, + TestCaseResult { + "error": undefined, + "name": "testDoWhile", + "result": "success", + "time": 1.0219999999999998, + }, + TestCaseResult { + "error": undefined, + "name": "testAnonymousFunction", + "result": "success", + "time": 0.8, + }, + TestCaseResult { + "error": undefined, + "name": "testException", + "result": "success", + "time": 0.888, + }, + ], + }, + ], + "name": "GoodTest", + "totalTime": 5.357, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testTabIndentation", + "result": "success", + "time": 0.857, + }, + TestCaseResult { + "error": undefined, + "name": "testSpaceIndentation", + "result": "success", + "time": 0.929, + }, + TestCaseResult { + "error": undefined, + "name": "testSpaceIndentationArray", + "result": "success", + "time": 0.975, + }, + TestCaseResult { + "error": undefined, + "name": "testGoodSpaceIndentationArray", + "result": "success", + "time": 1.212, + }, + TestCaseResult { + "error": undefined, + "name": "testGoodIndentationNewLine", + "result": "success", + "time": 0.859, + }, + TestCaseResult { + "error": undefined, + "name": "testGoodIndentationSpaces", + "result": "success", + "time": 0.78, + }, + TestCaseResult { + "error": undefined, + "name": "testBadSpaces", + "result": "success", + "time": 1.1199999999999999, + }, + TestCaseResult { + "error": undefined, + "name": "testBadSpaceAfterControl", + "result": "success", + "time": 0.9219999999999999, + }, + ], + }, + ], + "name": "IndentationTest", + "totalTime": 7.654, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testMetrics", + "result": "success", + "time": 4.146999999999999, + }, + ], + }, + ], + "name": "MetricsTest", + "totalTime": 4.146999999999999, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testNaming", + "result": "success", + "time": 1.426, + }, + TestCaseResult { + "error": undefined, + "name": "testFunctionNaming", + "result": "success", + "time": 1.271, + }, + ], + }, + ], + "name": "NamingTest", + "totalTime": 2.697, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testTextAfterClosingTag", + "result": "success", + "time": 0.9940000000000001, + }, + ], + }, + ], + "name": "OptimizationTest", + "totalTime": 0.9940000000000001, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": { + "details": "OtherTest::testOther +We expect 20 warnings +Failed asserting that 19 matches expected 20. + +/workspace/phpcheckstyle/test/OtherTest.php:24", + "line": 12, + "message": "PHPUnit\\Framework\\ExpectationFailedException", + "path": undefined, + }, + "name": "testOther", + "result": "failed", + "time": 5.2509999999999994, + }, + TestCaseResult { + "error": { + "details": "OtherTest::testException +We expect 1 error +Failed asserting that 0 matches expected 1. + +/workspace/phpcheckstyle/test/OtherTest.php:40", + "line": 31, + "message": "PHPUnit\\Framework\\ExpectationFailedException", + "path": undefined, + }, + "name": "testException", + "result": "failed", + "time": 0.751, + }, + TestCaseResult { + "error": undefined, + "name": "testEmpty", + "result": "success", + "time": 0.42700000000000005, + }, + TestCaseResult { + "error": undefined, + "name": "testSwitchCaseNeedBreak", + "result": "success", + "time": 0.901, + }, + ], + }, + ], + "name": "OtherTest", + "totalTime": 7.329, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testTextAfterClosingTag", + "result": "success", + "time": 0.641, + }, + TestCaseResult { + "error": undefined, + "name": "testClosingTagNotNeeded", + "result": "success", + "time": 0.631, + }, + ], + }, + ], + "name": "PHPTagsTest", + "totalTime": 1.272, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testProhibited", + "result": "success", + "time": 0.9380000000000001, + }, + ], + }, + ], + "name": "ProhibitedTest", + "totalTime": 0.9380000000000001, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testStrictCompare", + "result": "success", + "time": 1.578, + }, + ], + }, + ], + "name": "StrictCompareTest", + "totalTime": 1.578, + }, + TestSuiteResult { + "groups": [ + TestGroupResult { + "name": "", + "tests": [ + TestCaseResult { + "error": undefined, + "name": "testGoodUnused", + "result": "success", + "time": 0.94, + }, + TestCaseResult { + "error": undefined, + "name": "testBadUnused", + "result": "success", + "time": 0.895, + }, + ], + }, + ], + "name": "UnusedTest", + "totalTime": 1.835, + }, + ], + "totalTime": undefined, +} +`; + exports[`phpunit-junit tests report from phpunit test results matches snapshot 1`] = ` TestRunResult { "path": "fixtures/phpunit/phpunit.xml", diff --git a/__tests__/fixtures/external/phpunit/junit-basic.xml b/__tests__/fixtures/external/phpunit/junit-basic.xml new file mode 100644 index 0000000..27f5771 --- /dev/null +++ b/__tests__/fixtures/external/phpunit/junit-basic.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/__tests__/fixtures/external/phpunit/phpcheckstyle-phpunit.xml b/__tests__/fixtures/external/phpunit/phpcheckstyle-phpunit.xml new file mode 100644 index 0000000..629fe81 --- /dev/null +++ b/__tests__/fixtures/external/phpunit/phpcheckstyle-phpunit.xml @@ -0,0 +1,212 @@ + + + + + + + + File "./test/sample/bad_comments.php" warning, line 4 - Avoid Shell/Perl like comments. +File "./test/sample/bad_comments.php" warning, line 6 - The class Comments must have a docblock comment. +File "./test/sample/bad_comments.php" warning, line 10 - The function testComment must have a docblock comment. +File "./test/sample/bad_comments.php" warning, line 18 - The function testComment returns a value and must include @returns in its docblock. +File "./test/sample/bad_comments.php" warning, line 18 - The function testComment parameters must match those in its docblock @param. +File "./test/sample/bad_comments.php" warning, line 18 - The function testComment throws an exception and must include @throws in its docblock. + + + + File "./test/sample/todo.php" warning, line 3 - TODO: The todo message. + + + + + + File "./test/sample/bad_deprecation.php" warning, line 17 - split is deprecated since PHP 5.3. explode($pattern, $string) or preg_split('@'.$pattern.'@', $string) must be used instead. +File "./test/sample/bad_deprecation.php" warning, line 19 - ereg is deprecated since PHP 5.3. preg_match('@'.$pattern.'@', $string) must be used instead. +File "./test/sample/bad_deprecation.php" warning, line 21 - session_register is deprecated since PHP 5.3. $_SESSION must be used instead. +File "./test/sample/bad_deprecation.php" warning, line 23 - mysql_db_query is deprecated since PHP 5.3. mysql_select_db and mysql_query must be used instead. +File "./test/sample/bad_deprecation.php" warning, line 25 - $HTTP_GET_VARS is deprecated since PHP 5.3. $_GET must be used instead. + + + + + + + + + + + + File "./test/sample/bad_indentation.php" warning, line 8 - Whitespace indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 15 - Whitespace indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 17 - Whitespace indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 18 - Whitespace indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 19 - Whitespace indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 20 - Whitespace indentation must not be used. + + + + File "./test/sample/bad_indentation.php" warning, line 10 - Tab indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 10 - The indentation level must be 4 but was 1. +File "./test/sample/bad_indentation.php" warning, line 13 - Tab indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 13 - The indentation level must be 4 but was 1. +File "./test/sample/bad_indentation.php" warning, line 15 - The indentation level must be 8 but was 4. +File "./test/sample/bad_indentation.php" warning, line 16 - Tab indentation must not be used. +File "./test/sample/bad_indentation.php" warning, line 16 - The indentation level must be 8 but was 1. +File "./test/sample/bad_indentation.php" warning, line 17 - The indentation level must be 8 but was 3. +File "./test/sample/bad_indentation.php" warning, line 18 - The indentation level must be 8 but was 5. +File "./test/sample/bad_indentation.php" warning, line 19 - The indentation level must be 8 but was 6. +File "./test/sample/bad_indentation.php" warning, line 20 - The indentation level must be 4 but was 1. + + + + File "./test/sample/bad_indentation_array.php" warning, line 10 - Tab indentation must not be used. +File "./test/sample/bad_indentation_array.php" warning, line 10 - The indentation level must be 4 but was 1. +File "./test/sample/bad_indentation_array.php" warning, line 13 - Tab indentation must not be used. +File "./test/sample/bad_indentation_array.php" warning, line 13 - The indentation level must be 4 but was 1. +File "./test/sample/bad_indentation_array.php" warning, line 16 - The indentation level must be 12 but was 8. +File "./test/sample/bad_indentation_array.php" warning, line 24 - The indentation level must be 12 but was 8. +File "./test/sample/bad_indentation_array.php" warning, line 29 - The indentation level must be 8 but was 12. +File "./test/sample/bad_indentation_array.php" warning, line 15 - Undeclared or unused variable: $aVar. +File "./test/sample/bad_indentation_array.php" warning, line 19 - Undeclared or unused variable: $bVar. +File "./test/sample/bad_indentation_array.php" warning, line 23 - Undeclared or unused variable: $cVar. +File "./test/sample/bad_indentation_array.php" warning, line 27 - Undeclared or unused variable: $dVar. + + + + + + + File "./test/sample/bad_spaces.php" warning, line 17 - Whitespace must follow ,. +File "./test/sample/bad_spaces.php" warning, line 17 - Whitespace must precede {. +File "./test/sample/bad_spaces.php" warning, line 19 - Whitespace must follow if. +File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must precede =. +File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must follow =. +File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must precede +. +File "./test/sample/bad_spaces.php" warning, line 23 - Whitespace must follow +. +File "./test/sample/bad_spaces.php" info, line 25 - Whitespace must not precede ,. +File "./test/sample/bad_spaces.php" info, line 26 - Whitespace must not follow !. + + + + File "./test/sample/bad_space_after_control.php" warning, line 19 - Whitespace must not follow if. + + + + + + File "./test/sample/bad_metrics.php" warning, line 21 - The function testMetrics's number of parameters (6) must not exceed 4. +File "./test/sample/bad_metrics.php" info, line 55 - Line is too long. [233/160] +File "./test/sample/bad_metrics.php" warning, line 21 - The Cyclomatic Complexity of function testMetrics is too high. [15/10] +File "./test/sample/bad_metrics.php" warning, line 244 - The testMetrics function body length is too long. [223/200] + + + + + + File "./test/sample/_bad_naming.php" error, line 11 - Constant _badly_named_constant name should follow the pattern /^[A-Z][A-Z0-9_]*$/. +File "./test/sample/_bad_naming.php" error, line 13 - Constant bad_CONST name should follow the pattern /^[A-Z][A-Z0-9_]*$/. +File "./test/sample/_bad_naming.php" warning, line 17 - Top level variable $XXX name should follow the pattern /^[a-z_][a-zA-Z0-9]*$/. +File "./test/sample/_bad_naming.php" warning, line 20 - Variable x name length is too short. +File "./test/sample/_bad_naming.php" error, line 28 - Class badlynamedclass name should follow the pattern /^[A-Z][a-zA-Z0-9_]*$/. +File "./test/sample/_bad_naming.php" warning, line 32 - Member variable $YYY name should follow the pattern /^[a-z_][a-zA-Z0-9]*$/. +File "./test/sample/_bad_naming.php" warning, line 37 - The constructor name must be __construct(). +File "./test/sample/_bad_naming.php" error, line 44 - Function Badlynamedfunction name should follow the pattern /^[a-z][a-zA-Z0-9]*$/. +File "./test/sample/_bad_naming.php" warning, line 47 - Local variable $ZZZ name should follow the pattern /^[a-z_][a-zA-Z0-9]*$/. +File "./test/sample/_bad_naming.php" error, line 54 - Protected function Badlynamedfunction2 name should follow the pattern /^[a-z][a-zA-Z0-9]*$/. +File "./test/sample/_bad_naming.php" error, line 61 - Private function badlynamedfunction3 name should follow the pattern /^_[a-z][a-zA-Z0-9]*$/. +File "./test/sample/_bad_naming.php" error, line 70 - Interface _badlynamedinterface name should follow the pattern /^[A-Z][a-zA-Z0-9_]*$/. +File "./test/sample/_bad_naming.php" error, line 75 - File _bad_naming.php name should follow the pattern /^[a-zA-Z][a-zA-Z0-9._]*$/. + + + + + + + File "./test/sample/bad_optimisation.php" warning, line 18 - count function must not be used inside a loop. +File "./test/sample/bad_optimisation.php" warning, line 23 - count function must not be used inside a loop. + + + + + + OtherTest::testOther +We expect 20 warnings +Failed asserting that 19 matches expected 20. + +/workspace/phpcheckstyle/test/OtherTest.php:24 + File "./test/sample/bad_other.php" warning, line 17 - All arguments with default values must be at the end of the block or statement. +File "./test/sample/bad_other.php" warning, line 21 - Errors must not be silenced when calling a function. +File "./test/sample/bad_other.php" warning, line 23 - Prefer single-quoted strings when you don't need string interpolation. +File "./test/sample/bad_other.php" warning, line 23 - Encapsed variables must not be used inside a string. +File "./test/sample/bad_other.php" warning, line 23 - Encapsed variables must not be used inside a string. +File "./test/sample/bad_other.php" warning, line 23 - Prefer single-quoted strings when you don't need string interpolation. +File "./test/sample/bad_other.php" warning, line 37 - TODO: Show todos +File "./test/sample/bad_other.php" warning, line 40 - Avoid empty statements (;;). +File "./test/sample/bad_other.php" warning, line 42 - Boolean operators (&&) must be used instead of logical operators (AND). +File "./test/sample/bad_other.php" warning, line 42 - Empty if block. +File "./test/sample/bad_other.php" warning, line 48 - Heredoc syntax must not be used. +File "./test/sample/bad_other.php" warning, line 52 - The statement if must contain its code within a {} block. +File "./test/sample/bad_other.php" warning, line 54 - Consider using a strict comparison operator instead of ==. +File "./test/sample/bad_other.php" warning, line 54 - The statement while must contain its code within a {} block. +File "./test/sample/bad_other.php" warning, line 66 - The switch statement must have a default case. +File "./test/sample/bad_other.php" warning, line 79 - The default case of a switch statement must be located after all other cases. +File "./test/sample/bad_other.php" warning, line 93 - Unary operators (++ or --) must not be used inside a control statement +File "./test/sample/bad_other.php" warning, line 95 - Assigments (=) must not be used inside a control statement. +File "./test/sample/bad_other.php" warning, line 106 - File ./test/sample/bad_other.php must not have multiple class declarations. + + + + OtherTest::testException +We expect 1 error +Failed asserting that 0 matches expected 1. + +/workspace/phpcheckstyle/test/OtherTest.php:40 + + + File "./test/sample/empty.php" warning, line 1 - The file ./test/sample/empty.php is empty. + + + + File "./test/sample/switch_multi_case.php" warning, line 10 - The case statement must contain a break. + + + + + + File "./test/sample/bad_php_tags_text_after_end.php" warning, line 9 - A PHP close tag must not be included at the end of the file. + + + + File "./test/sample/bad_php_tags_end_not_needed.php" warning, line 1 - PHP tag should be at the beginning of the line. + + + + + + File "./test/sample/bad_prohibited.php" warning, line 18 - The function exec must not be called. +File "./test/sample/bad_prohibited.php" warning, line 20 - Token T_PRINT must not be used. + + + + + + File "./test/sample/bad_strictcompare.php" warning, line 14 - Consider using a strict comparison operator instead of ==. +File "./test/sample/bad_strictcompare.php" warning, line 19 - Consider using a strict comparison operator instead of !=. +File "./test/sample/bad_strictcompare.php" warning, line 24 - Consider using a strict comparison operator instead of ==. +File "./test/sample/bad_strictcompare.php" warning, line 29 - Consider using a strict comparison operator instead of ==. + + + + + + + File "./test/sample/bad_unused.php" warning, line 23 - Function _testUnused has unused code after RETURN. +File "./test/sample/bad_unused.php" warning, line 27 - The function _testUnused parameter $b is not used. +File "./test/sample/bad_unused.php" warning, line 18 - Unused private function: _testUnused. +File "./test/sample/bad_unused.php" warning, line 20 - Undeclared or unused variable: $c. + + + + + + diff --git a/__tests__/phpunit-junit.test.ts b/__tests__/phpunit-junit.test.ts index 4150d69..03a4306 100644 --- a/__tests__/phpunit-junit.test.ts +++ b/__tests__/phpunit-junit.test.ts @@ -99,4 +99,188 @@ describe('phpunit-junit tests', () => { expect(test.error!.details).toContain('Failed asserting that string matches format description') } }) + + it('parses junit-basic.xml with nested suites and failure', async () => { + const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'junit-basic.xml') + const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) + const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) + + const opts: ParseOptions = { + parseErrors: true, + trackedFiles: [] + } + + const parser = new PhpunitJunitParser(opts) + const result = await parser.parse(filePath, fileContent) + + // Verify test counts + expect(result.tests).toBe(9) + expect(result.passed).toBe(8) + expect(result.failed).toBe(1) + expect(result.result).toBe('failed') + + // Verify suites - should have Tests.Registration, Tests.Authentication.Login, and Tests.Authentication + expect(result.suites.length).toBe(3) + + const suiteNames = result.suites.map(s => s.name) + expect(suiteNames).toContain('Tests.Registration') + expect(suiteNames).toContain('Tests.Authentication.Login') + expect(suiteNames).toContain('Tests.Authentication') + + // Verify the Registration suite has 3 tests + const registrationSuite = result.suites.find(s => s.name === 'Tests.Registration') + expect(registrationSuite).toBeDefined() + const registrationTests = registrationSuite!.groups.flatMap(g => g.tests) + expect(registrationTests.length).toBe(3) + + // Verify the Authentication suite has 3 direct tests (not counting nested suite) + const authSuite = result.suites.find(s => s.name === 'Tests.Authentication') + expect(authSuite).toBeDefined() + const authTests = authSuite!.groups.flatMap(g => g.tests) + expect(authTests.length).toBe(3) + + // Verify the Login nested suite has 3 tests + const loginSuite = result.suites.find(s => s.name === 'Tests.Authentication.Login') + expect(loginSuite).toBeDefined() + const loginTests = loginSuite!.groups.flatMap(g => g.tests) + expect(loginTests.length).toBe(3) + + // Verify failure is captured + const failedTest = authTests.find(t => t.name === 'testCase9') + expect(failedTest).toBeDefined() + expect(failedTest!.result).toBe('failed') + expect(failedTest!.error).toBeDefined() + expect(failedTest!.error!.message).toBe('AssertionError: Assertion error message') + }) + + it('parses phpcheckstyle-phpunit.xml with deeply nested suites', async () => { + const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml') + const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) + const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) + + const opts: ParseOptions = { + parseErrors: true, + trackedFiles: [] + } + + const parser = new PhpunitJunitParser(opts) + const result = await parser.parse(filePath, fileContent) + + // Verify test counts from the XML: tests="30", failures="2" + expect(result.tests).toBe(30) + expect(result.passed).toBe(28) + expect(result.failed).toBe(2) + expect(result.result).toBe('failed') + + // Verify the number of test suites extracted (leaf suites with testcases) + // CommentsTest, DeprecationTest, GoodTest, IndentationTest, MetricsTest, + // NamingTest, OptimizationTest, OtherTest, PHPTagsTest, ProhibitedTest, + // StrictCompareTest, UnusedTest = 12 suites + expect(result.suites.length).toBe(12) + + const suiteNames = result.suites.map(s => s.name) + expect(suiteNames).toContain('CommentsTest') + expect(suiteNames).toContain('GoodTest') + expect(suiteNames).toContain('IndentationTest') + expect(suiteNames).toContain('OtherTest') + }) + + it('extracts test data from phpcheckstyle-phpunit.xml', async () => { + const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml') + const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) + const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) + + const opts: ParseOptions = { + parseErrors: true, + trackedFiles: [] + } + + const parser = new PhpunitJunitParser(opts) + const result = await parser.parse(filePath, fileContent) + + // Find the CommentsTest suite + const commentsSuite = result.suites.find(s => s.name === 'CommentsTest') + expect(commentsSuite).toBeDefined() + + // Verify tests are extracted correctly + const tests = commentsSuite!.groups.flatMap(g => g.tests) + expect(tests.length).toBe(3) + + const testGoodDoc = tests.find(t => t.name === 'testGoodDoc') + expect(testGoodDoc).toBeDefined() + expect(testGoodDoc!.result).toBe('success') + }) + + it('captures failure details from phpcheckstyle-phpunit.xml', async () => { + const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml') + const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) + const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) + + const opts: ParseOptions = { + parseErrors: true, + trackedFiles: [] + } + + const parser = new PhpunitJunitParser(opts) + const result = await parser.parse(filePath, fileContent) + + // Find the OtherTest suite which has failures + const otherSuite = result.suites.find(s => s.name === 'OtherTest') + expect(otherSuite).toBeDefined() + + const failedTests = otherSuite!.groups.flatMap(g => g.tests).filter(t => t.result === 'failed') + expect(failedTests.length).toBe(2) + + // Verify failure details + const testOther = failedTests.find(t => t.name === 'testOther') + expect(testOther).toBeDefined() + expect(testOther!.error).toBeDefined() + expect(testOther!.error!.details).toContain('We expect 20 warnings') + expect(testOther!.error!.details).toContain('Failed asserting that 19 matches expected 20') + + const testException = failedTests.find(t => t.name === 'testException') + expect(testException).toBeDefined() + expect(testException!.error).toBeDefined() + expect(testException!.error!.details).toContain('We expect 1 error') + }) + + it('report from junit-basic.xml matches snapshot', async () => { + const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'junit-basic.xml') + const outputPath = path.join(__dirname, '__outputs__', 'phpunit-junit-basic-results.md') + const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) + const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) + + const opts: ParseOptions = { + parseErrors: true, + trackedFiles: [] + } + + const parser = new PhpunitJunitParser(opts) + const result = await parser.parse(filePath, fileContent) + expect(result).toMatchSnapshot() + + const report = getReport([result]) + fs.mkdirSync(path.dirname(outputPath), {recursive: true}) + fs.writeFileSync(outputPath, report) + }) + + it('report from phpcheckstyle-phpunit.xml matches snapshot', async () => { + const fixturePath = path.join(__dirname, 'fixtures', 'external', 'phpunit', 'phpcheckstyle-phpunit.xml') + const outputPath = path.join(__dirname, '__outputs__', 'phpunit-phpcheckstyle-results.md') + const filePath = normalizeFilePath(path.relative(__dirname, fixturePath)) + const fileContent = fs.readFileSync(fixturePath, {encoding: 'utf8'}) + + const opts: ParseOptions = { + parseErrors: true, + trackedFiles: [] + } + + const parser = new PhpunitJunitParser(opts) + const result = await parser.parse(filePath, fileContent) + expect(result).toMatchSnapshot() + + const report = getReport([result]) + fs.mkdirSync(path.dirname(outputPath), {recursive: true}) + fs.writeFileSync(outputPath, report) + }) })