-
Notifications
You must be signed in to change notification settings - Fork 24
XML Test parsing & testlinks #197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
MaximilianSoerenPollak
merged 23 commits into
eclipse-score:main
from
MaximilianSoerenPollak:MSP_add_xml_test_parsing
Aug 18, 2025
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
78bab63
XML Parser pre-rebase squash
MaximilianSoerenPollak 6256e49
Fix screwed merge
MaximilianSoerenPollak cc10240
Fix tests
MaximilianSoerenPollak 423fd92
Fixing naming and circular deps
MaximilianSoerenPollak e82aae0
Formatting
MaximilianSoerenPollak 78cac7d
Add copyright
MaximilianSoerenPollak 8c5e32e
Fix testcase id
MaximilianSoerenPollak 5a7e10d
Incooperated PR Comments
MaximilianSoerenPollak fcd03e7
Rename TestLink & TestCaseNeed
MaximilianSoerenPollak 655dcd2
Formatting
MaximilianSoerenPollak 3bfaf2e
Fixing golden files
MaximilianSoerenPollak bb3f9c3
Enable vv
MaximilianSoerenPollak 43a39a4
Update comparission of golden files
MaximilianSoerenPollak da4ec0c
Testing different way of golden files
MaximilianSoerenPollak 53b58b9
Simplification of tests
MaximilianSoerenPollak 93b48f8
Fix consumer tests / circular import
MaximilianSoerenPollak 8e9577d
Formatting
MaximilianSoerenPollak 8b19f17
Add missing copyright
MaximilianSoerenPollak cdb9d4d
Formatting & Linting
MaximilianSoerenPollak a5a8175
Add small note about documentation missing
MaximilianSoerenPollak 1e1a8cb
Delete not needed file
MaximilianSoerenPollak 60698e6
Fixing PR comments
MaximilianSoerenPollak b125b34
Remove junitparser
MaximilianSoerenPollak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -9,3 +9,4 @@ Requirements | |
| capabilities | ||
| process_overview | ||
| requirements | ||
| test_overview | ||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -4,6 +4,7 @@ | |
| Tool Requirements | ||
| ================================= | ||
|
|
||
|
|
||
| 📈 Status | ||
| ########## | ||
|
|
||
|
|
||
This file contains hidden or 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,55 @@ | ||
| .. _testing_stats: | ||
|
|
||
| TESTING STATISTICS | ||
| ================== | ||
|
|
||
|
|
||
| .. needtable:: SUCCESSFUL TEST | ||
| :filter: result == "passed" | ||
| :tags: TEST | ||
| :columns: external_url as "source_link"; name as "testcase";result;fully_verifies;partially_verifies;test_type;derivation_technique | ||
|
|
||
|
|
||
| .. needtable:: FAILED TEST | ||
| :filter: result == "failed" | ||
| :tags: TEST | ||
| :columns: external_url as "source_link"; name as "testcase";result;fully_verifies;partially_verifies;test_type;derivation_technique | ||
|
|
||
|
|
||
| .. needtable:: OTHER TEST | ||
| :filter: result != "failed" and result != "passed" | ||
| :tags: TEST | ||
| :columns: external_url as "source_link"; name as "testcase";result;fully_verifies;partially_verifies;test_type;derivation_technique | ||
|
|
||
|
|
||
| .. needpie:: Test Results | ||
| :labels: passed, failed, skipped | ||
| :colors: green, red, orange | ||
| :legend: | ||
|
|
||
| type == 'testcase' and result == 'passed' | ||
| type == 'testcase' and result == 'failed' | ||
| type == 'testcase' and result == 'skipped' | ||
|
|
||
|
|
||
| .. needpie:: Test Types Used In Testcases | ||
| :labels: fault-injection, interface-test, requirements-based, resource-usage | ||
| :legend: | ||
|
|
||
| type == 'testcase' and test_type == 'fault-injection' | ||
| type == 'testcase' and test_type == 'interface-test' | ||
| type == 'testcase' and test_type == 'requirements-based' | ||
| type == 'testcase' and test_type == 'resource-usage' | ||
|
|
||
|
|
||
| .. needpie:: Derivation Techniques Used In Testcases | ||
| :labels: requirements-analysis, design-analysis, boundary-values, equivalence-classes, fuzz-testing, error-guessing, explorative-testing | ||
| :legend: | ||
|
|
||
| type == 'testcase' and derivation_technique == 'requirements-analysis' | ||
| type == 'testcase' and derivation_technique == 'design-analysis' | ||
| type == 'testcase' and derivation_technique == 'boundary-values' | ||
| type == 'testcase' and derivation_technique == 'equivalence-classes' | ||
| type == 'testcase' and derivation_technique == 'fuzz-testing' | ||
| type == 'testcase' and derivation_technique == 'error-guessing' | ||
| type == 'testcase' and derivation_technique == 'explorative-testing' |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -39,8 +39,8 @@ class SingleLayout(TypedDict): | |
| "initial=False)>>", | ||
| ], | ||
| "meta_left": [ | ||
| '<<meta_all(no_links=True, exclude=["layout","style"])>>', | ||
| "<<meta_links_all()>>", | ||
| '<<meta_all(no_links=True, exclude=["layout","style", "fully_verified_by", "status", "security", "safety"])>>', | ||
| '<<meta_links_all(exclude=["fully_verified_by", "fully_verifies_back", "partially_verified_by", "partially_verifies_back"])>>', | ||
|
Comment on lines
+42
to
+43
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. outcommented partially & fully verifies_back. in the end render |
||
| ], | ||
| "meta_right": [], | ||
| "footer_left": ["<<meta_id()>>"], | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.