-
Notifications
You must be signed in to change notification settings - Fork 340
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
Test history refactoring and improvements #625
Merged
Merged
Changes from all commits
Commits
Show all changes
85 commits
Select commit
Hold shift + click to select a range
3dfeb90
Allow disabling test name mangling (keepTestNames).
589bcc1
Fix tests.
5deff15
Improve comment.
84367f8
Assume history always available.
b11b825
Paralellize test history handling to unbreak it with large amounts of…
c29f0cc
Implement explicit XML parsing to avoid slow reflection access.
379ef56
Make test history dynamic and increase table size.
8ba78e7
Fix trend charts not shown after carousel slide.
0bba408
Fix carousel not redrawing.
165207c
Show same range as table in test result trend charts.
3cb7ab3
Show test status in duration chart.
e2d7b54
Remove the other test history chart.
6a7f600
Support 'count' parameter in history URLs.
7f2a9e7
Improve test history appearance.
673397a
Improve test history appearance.
60d9ef8
Remove carousel as charts are no longer async (and because it was a b…
fae3c33
Make it compatible to XUnit plugin.
d195628
Improve test history appearance.
0142b86
Put both charts into one.
d68d1c9
Support Dark Reader to some extent.
8a682dc
Improve test history appearance.
21e7a9c
Improve chart appearance.
80f2727
Fix history URL.
03f950b
Implement cache for TestResult.
955443b
Less sorting on test result freeze.
65db008
Improve test history chart appearance.
ad7ec09
Update POM.
81205f6
Fix JUnit test result writes not updated in cache.
72589da
Update POM.
81c21f5
Fix build.
bbb187c
Fix test.
9230862
Fix test.
f04f1b6
Fix test history alignment.
88c6771
Clamp test case duration between 0 and 1 weeks.
d246a04
Clamp test case duration between 0 and reasonable limits for cases an…
a692bbb
Merge branch 'keep-testnames-1177' of https://github.com/mdealer/juni…
a6cc2a4
Fix history charts.
747c9a7
Less logging.
84fbe3f
Fix doc comments.
f3d05bd
Fix spotBugs warnings.
110f12d
Fix spotBugs warnings.
28fb187
Unbreak test.
05b3346
Unbreak test.
eeea84b
Update src/main/java/hudson/tasks/junit/CaseResult.java
mdealer b58eedc
Revert version and convert tab to space in POM.
dddb963
Apply suggestions from code review
mdealer 6a2808b
Remove commented code.
52df2ee
Merge branch 'test-history-refactor-1265' of https://github.com/mdeal…
03b23bd
Remove unused code.
c67d580
Update based on code review.
3b9b1da
Update based on code review.
dee1923
Fix build.
0f7a91a
Remove commented code and add an actual comment.
2d873b2
Remove commented code.
553a073
Improve file name when saving image.
6190782
Shorten duration axes values.
d7df185
Shorten trend, smooth graph values and duration distribution axes val…
8e41d6b
Use Jenkins styles and move elements slightly.
c28ea2b
Switch to linear regression comp from ssj.
e19a7e9
Fix alignment.
1e73c69
Tabs to spaces.
43e0f04
Replace XMLEventReader with XMLStreamReader.
9ed5c0d
Update parallel-collectors to 2.6.1.
21b8a10
Add necessary code from ca.umontreal.iro.simul instead of import, red…
8221ed1
Less math doc comments.
173f4ad
Less math doc comments.
eec4876
Less math doc comments and less unused code.
0b39f76
Less math doc comments and less unused code.
b242758
Less math doc comments and less unused code.
fe58ec4
Improve safe XML factory handling.
9c67afe
Improve safe XML factory handling.
2554629
Add missing check for EXTRA_GRAPH_MATH_ENABLED.
7247f43
Apply some colors from CSS to history charts.
610a648
Switch back to ssj dependency but exclude gson due to CVEs.
331b009
Switch build window size links to a drop down box.
d293576
Switch from currentTimeMillis to nanoTime where appropriate.
682a161
Improve history page CSP compliance, clean up JavaScript side.
1df4241
Implement sample size to speed up navigating huge results greatly.
2764ca3
Hide smooth and trend graphs on narrow screens.
f22740f
Improve backward compatibility.
45afd2f
Merge branch 'master' into test-history-refactor-1265
timja 4ca39a7
Merge branch 'test-history-refactor-1265' of github.com:mdealer/junit…
timja 6cb42d1
Fix properties not loaded.
d958cd6
Merge branch 'test-history-refactor-1265' of https://github.com/mdeal…
31b862c
Implement XML parsing for more fields (including properties).
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 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 |
---|---|---|
|
@@ -181,11 +181,27 @@ | |
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>jackson2-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.pivovarit</groupId> | ||
<artifactId>parallel-collectors</artifactId> | ||
<version>2.6.1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>pipeline-utility-steps</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>ca.umontreal.iro.simul</groupId> | ||
<artifactId>ssj</artifactId> | ||
<version>3.3.1</version> | ||
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. This was outdated at the time of integration. I think I have managed to upgrade it in #628. |
||
<exclusions> | ||
<exclusion> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
<dependencyManagement> | ||
<dependencies> | ||
|
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is up-to-date, but Renovate is trying to upgrade it to version 3.x in e.g. #629, which won't work because 3.x requires Java 21 or newer. Can we update the Renovate configuration to exclude 3.x until we are ready to require Java 21 or newer? That way, we will continue to get updates to version 2.x.