Skip to content
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

Development: Exclude gradle source files from jacoco test report verification #10240

Merged
merged 24 commits into from
Feb 9, 2025

Conversation

ole-ve
Copy link
Contributor

@ole-ve ole-ve commented Jan 31, 2025

Checklist

General

Motivation and Context

  1. The coverage validation for the whole bundle (all modules) was not activated when running all tests. Instead, only the module-specific ones.
  2. Tighten ignoredDirectories by removing suffix wildcard.
  3. The ignore rules where not applied to jacocoReportTask and jacocoTestCoverageVerification (Artemis-bundle scope task instead per-module)
[ant:jacocoReport] Classes in bundle 'Artemis' do not match with execution data. For report generation the same class files must be used as at runtime.
--
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/cli/ParsedCommandLine does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/cli/CommandLineParser$BeforeFirstSubCommand does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/cli/CommandLineParser$ParserState does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/cli/CommandLineParser$OptionAwareParserState does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/BootstrapMainStarter$1 does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/SystemPropertiesHandler does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/Install does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/Install$InstallCheck does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/internal/file/locking/ExclusiveFileAccessManager does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/util/internal/WrapperDistributionUrlConverter does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/cli/CommandLineParser does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/Install$1 does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/WrapperExecutor does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/WrapperConfiguration does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/GradleUserHomeLookup does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/cli/ParsedCommandLineOption does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/Logger does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/PathAssembler does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/cli/CommandLineOption does not match.
31-Jan-2025 15:40:27 | [ant:jacocoReport] Execution data for class org/gradle/wrapper/Download does not match.

Also updates the iris and Artemis-bundle coverage thresholds.

Steps for Testing

  1. Open the logs below and scroll and search for :jacocoTestReport
  2. Find the warning logs in (1) and none in (2). Note that after (2), the failing thresholds have been adapted.

(1) Log of succeeding pipeline commit before changes - Commit
(2) Log of succeeding pipeline commit after changes - Commit

Summary by CodeRabbit

  • Chores
    • Updated code coverage thresholds and configuration in Gradle build script.
    • Enhanced documentation with a new "Feedback Analysis" section for programming exercise setup.
    • Modified test verification mechanism to support asynchronous method calls in LTI quiz integration test.
    • Improved test structure and clarity in feedback sending service tests with enhanced asynchronous handling.

@ole-ve ole-ve self-assigned this Jan 31, 2025
@github-actions github-actions bot added tests lti Pull requests that affect the corresponding module labels Jan 31, 2025
@ole-ve ole-ve marked this pull request as ready for review January 31, 2025 20:38
@ole-ve ole-ve requested a review from a team as a code owner January 31, 2025 20:38
Copy link
Contributor

coderabbitai bot commented Jan 31, 2025

Walkthrough

This pull request introduces modifications to the Jacoco code coverage configuration in the gradle/jacoco.gradle file, updates test cases in LtiQuizIntegrationTest, AthenaFeedbackSendingServiceTest, and PyrisEventSystemIntegrationTest, and adds a new section to the documentation for programming exercise setup. Key changes include adjustments to coverage thresholds, enhancements to test verification mechanisms using asynchronous assertions, and the addition of a "Feedback Analysis" section in the documentation.

Changes

File Change Summary
gradle/jacoco.gradle - Updated AggregatedCoverageThresholds for INSTRUCTION (0.89 → 0.888) and CLASS (56 → 69)
- Revised ModuleCoverageThresholds for each module
- Updated reportedModules to include "aggregated" when no modules are defined
- Modified ignoredDirectories by removing leading double asterisks
- Changed output locations for XML and HTML reports
- Added afterEvaluate block for classDirectories configuration
- Enhanced coverage verification logic for aggregated modules
- Introduced error handling for Jacoco XML report parsing
src/test/java/de/tum/cit/aet/artemis/lti/LtiQuizIntegrationTest.java - Replaced synchronous method verification with asynchronous waiting assertion
- Added await() import from Awaitility library
src/test/java/de/tum/cit/aet/artemis/athena/service/connectors/AthenaFeedbackSendingServiceTest.java - Removed mock annotations for repositories, now using autowired instances
- Refactored setUp method to save entities to the database
- Updated tests to use await for asynchronous operations
- Added tearDown method for logging cleanup
src/test/java/de/tum/cit/aet/artemis/iris/PyrisEventSystemIntegrationTest.java - Updated method call verifications to include timeouts and after conditions
src/test/java/de/tum/cit/aet/artemis/shared/architecture/ArchitectureTest.java - Added new rules and predicates for testing asynchronous methods
- Introduced new test method to enforce proper synchronization in integration tests
docs/user/exercises/programming-exercise-setup.inc - Added a new section titled "Feedback Analysis" outlining features for instructors to analyze feedback

Possibly related PRs

Suggested labels

server, chore, documentation

Suggested reviewers

  • SimonEntholzer
  • JohannesStoehr
  • az108

Warning

There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure.

🔧 PMD (7.8.0)
src/test/java/de/tum/cit/aet/artemis/iris/PyrisEventSystemIntegrationTest.java

[ERROR] Error at ruleset.xml:58:5
56|
57|
58|
^^^^^ Unable to find referenced rule BooleanInstantiation; perhaps the rule name is misspelled?

59|
60|
[WARN] Warning at ruleset.xml:66:5
64|
65|
66|
^^^^^ Use Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitch instead of the deprecated Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitchStmt. PMD 8.0.0 will remove support for this deprecated Rule name usage.

67|
68|
[ERROR] Error at ruleset.xml:71:5
69|
70|
71|
^^^^^ Unable to find referenced rule DontImportJavaLang; perhaps the rule name is misspelled?

72|
73|
[ERROR] Error at ruleset.xml:75:5
73|
74|
75|
^^^^^ Unable to find referenced rule DuplicateImports; perhaps the rule name is misspelled?

76|
77|
[ERROR] Error at ruleset.xml:78:5
76|
77|
78|
^^^^^ Unable to find referenced rule EmptyFinallyBlock; perhaps the rule name is misspelled?

79|
80|
[ERROR] Error at ruleset.xml:79:5
77|
78|
79|
^^^^^ Unable to find referenced rule EmptyIfStmt; perhaps the rule name is misspelled?

80|
81|
[ERROR] Error at ruleset.xml:81:5
79|
80|
81|
^^^^^ Unable to find referenced rule EmptyInitializer; perhaps the rule name is misspelled?

82|
83|
[ERROR] Error at ruleset.xml:82:5
80|
81|
82|
^^^^^ Unable to find referenced rule EmptyStatementBlock; perhaps the rule name is misspelled?

83|
84|
[ERROR] Error at ruleset.xml:83:5
81|
82|
83|
^^^^^ Unable to find referenced rule EmptyStatementNotInLoop; perhaps the rule name is misspelled?

84|
85|
[ERROR] Error at ruleset.xml:84:5
82|
83|
84|
^^^^^ Unable to find referenced rule EmptySwitchStatements; perhaps the rule name is misspelled?

85|
86|
[ERROR] Error at ruleset.xml:85:5
83|
84|
85|
^^^^^ Unable to find referenced rule EmptySynchronizedBlock; perhaps the rule name is misspelled?

86|
87|
[ERROR] Error at ruleset.xml:86:5
84|
85|
86|
^^^^^ Unable to find referenced rule EmptyTryBlock; perhaps the rule name is misspelled?

87|
88|
[ERROR] Error at ruleset.xml:87:5
85|
86|
87|
^^^^^ Unable to find referenced rule EmptyWhileStmt; perhaps the rule name is misspelled?

88|
89|
[ERROR] Error at ruleset.xml:90:5
88|
89|
90|
^^^^^ Unable to find referenced rule ExcessiveClassLength; perhaps the rule name is misspelled?

91|
92|
[ERROR] Error at ruleset.xml:91:5
89|
90|
91|
^^^^^ Unable to find referenced rule ExcessiveMethodLength; perhaps the rule name is misspelled?

92|
93|
[ERROR] Error at ruleset.xml:106:5
104|
105|
106|
^^^^^ Unable to find referenced rule ImportFromSamePackage; perhaps the rule name is misspelled?

107|
108|
[ERROR] Error at ruleset.xml:119:5
117|
118|
119|
^^^^^ Unable to find referenced rule MissingBreakInSwitch; perhaps the rule name is misspelled?

120|
121|
[WARN] Warning at ruleset.xml:124:5
122|
123|
124|
^^^^^ Use Rule name category/java/errorprone.xml/NonCaseLabelInSwitch instead of the deprecated Rule name category/java/errorprone.xml/NonCaseLabelInSwitchStatement. PMD 8.0.0 will remove support for this deprecated Rule name usage.

125|
126|
[ERROR] Error at ruleset.xml:134:9
132|
133| // It's okay to use short variable names in DTOs, e.g. "id" or "name"
134| ./de/tum/in/www1/artemis/web/rest/dto/.
^^^^^^^^^^^^^^^^ Unexpected element 'exclude-pattern' in rule ShortVariable

135|
136|
[ERROR] Error at ruleset.xml:137:5
135|
136|
137|
^^^^^ Unable to find referenced rule SimplifyBooleanAssertion; perhaps the rule name is misspelled?

138|
139|
[WARN] Warning at ruleset.xml:184:5
182|
183|
184|
^^^^^ Use Rule name category/ecmascript/errorprone.xml/InaccurateNumericLiteral instead of the deprecated Rule name category/ecmascript/errorprone.xml/InnaccurateNumericLiteral. PMD 8.0.0 will remove support for this deprecated Rule name usage.

185|
186|
[ERROR] Cannot load ruleset category/vm/bestpractices.xml: Cannot resolve rule/ruleset reference 'category/vm/bestpractices.xml'. Make sure the resource is a valid file or URL and is on the CLASSPATH. Use --debug (or a fine log level) to see the current classpath.
[WARN] Progressbar rendering conflicts with reporting to STDOUT. No progressbar will be shown. Try running with argument -r to output the report to a file instead.

src/test/java/de/tum/cit/aet/artemis/athena/service/connectors/AthenaFeedbackSendingServiceTest.java

[ERROR] Error at ruleset.xml:58:5
56|
57|
58|
^^^^^ Unable to find referenced rule BooleanInstantiation; perhaps the rule name is misspelled?

59|
60|
[WARN] Warning at ruleset.xml:66:5
64|
65|
66|
^^^^^ Use Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitch instead of the deprecated Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitchStmt. PMD 8.0.0 will remove support for this deprecated Rule name usage.

67|
68|
[ERROR] Error at ruleset.xml:71:5
69|
70|
71|
^^^^^ Unable to find referenced rule DontImportJavaLang; perhaps the rule name is misspelled?

72|
73|
[ERROR] Error at ruleset.xml:75:5
73|
74|
75|
^^^^^ Unable to find referenced rule DuplicateImports; perhaps the rule name is misspelled?

76|
77|
[ERROR] Error at ruleset.xml:78:5
76|
77|
78|
^^^^^ Unable to find referenced rule EmptyFinallyBlock; perhaps the rule name is misspelled?

79|
80|
[ERROR] Error at ruleset.xml:79:5
77|
78|
79|
^^^^^ Unable to find referenced rule EmptyIfStmt; perhaps the rule name is misspelled?

80|
81|
[ERROR] Error at ruleset.xml:81:5
79|
80|
81|
^^^^^ Unable to find referenced rule EmptyInitializer; perhaps the rule name is misspelled?

82|
83|
[ERROR] Error at ruleset.xml:82:5
80|
81|
82|
^^^^^ Unable to find referenced rule EmptyStatementBlock; perhaps the rule name is misspelled?

83|
84|
[ERROR] Error at ruleset.xml:83:5
81|
82|
83|
^^^^^ Unable to find referenced rule EmptyStatementNotInLoop; perhaps the rule name is misspelled?

84|
85|
[ERROR] Error at ruleset.xml:84:5
82|
83|
84|
^^^^^ Unable to find referenced rule EmptySwitchStatements; perhaps the rule name is misspelled?

85|
86|
[ERROR] Error at ruleset.xml:85:5
83|
84|
85|
^^^^^ Unable to find referenced rule EmptySynchronizedBlock; perhaps the rule name is misspelled?

86|
87|
[ERROR] Error at ruleset.xml:86:5
84|
85|
86|
^^^^^ Unable to find referenced rule EmptyTryBlock; perhaps the rule name is misspelled?

87|
88|
[ERROR] Error at ruleset.xml:87:5
85|
86|
87|
^^^^^ Unable to find referenced rule EmptyWhileStmt; perhaps the rule name is misspelled?

88|
89|
[ERROR] Error at ruleset.xml:90:5
88|
89|
90|
^^^^^ Unable to find referenced rule ExcessiveClassLength; perhaps the rule name is misspelled?

91|
92|
[ERROR] Error at ruleset.xml:91:5
89|
90|
91|
^^^^^ Unable to find referenced rule ExcessiveMethodLength; perhaps the rule name is misspelled?

92|
93|
[ERROR] Error at ruleset.xml:106:5
104|
105|
106|
^^^^^ Unable to find referenced rule ImportFromSamePackage; perhaps the rule name is misspelled?

107|
108|
[ERROR] Error at ruleset.xml:119:5
117|
118|
119|
^^^^^ Unable to find referenced rule MissingBreakInSwitch; perhaps the rule name is misspelled?

120|
121|
[WARN] Warning at ruleset.xml:124:5
122|
123|
124|
^^^^^ Use Rule name category/java/errorprone.xml/NonCaseLabelInSwitch instead of the deprecated Rule name category/java/errorprone.xml/NonCaseLabelInSwitchStatement. PMD 8.0.0 will remove support for this deprecated Rule name usage.

125|
126|
[ERROR] Error at ruleset.xml:134:9
132|
133| // It's okay to use short variable names in DTOs, e.g. "id" or "name"
134| ./de/tum/in/www1/artemis/web/rest/dto/.
^^^^^^^^^^^^^^^^ Unexpected element 'exclude-pattern' in rule ShortVariable

135|
136|
[ERROR] Error at ruleset.xml:137:5
135|
136|
137|
^^^^^ Unable to find referenced rule SimplifyBooleanAssertion; perhaps the rule name is misspelled?

138|
139|
[WARN] Warning at ruleset.xml:184:5
182|
183|
184|
^^^^^ Use Rule name category/ecmascript/errorprone.xml/InaccurateNumericLiteral instead of the deprecated Rule name category/ecmascript/errorprone.xml/InnaccurateNumericLiteral. PMD 8.0.0 will remove support for this deprecated Rule name usage.

185|
186|
[ERROR] Cannot load ruleset category/vm/bestpractices.xml: Cannot resolve rule/ruleset reference 'category/vm/bestpractices.xml'. Make sure the resource is a valid file or URL and is on the CLASSPATH. Use --debug (or a fine log level) to see the current classpath.
[WARN] Progressbar rendering conflicts with reporting to STDOUT. No progressbar will be shown. Try running with argument -r to output the report to a file instead.

src/test/java/de/tum/cit/aet/artemis/shared/architecture/ArchitectureTest.java

[ERROR] Error at ruleset.xml:58:5
56|
57|
58|
^^^^^ Unable to find referenced rule BooleanInstantiation; perhaps the rule name is misspelled?

59|
60|
[WARN] Warning at ruleset.xml:66:5
64|
65|
66|
^^^^^ Use Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitch instead of the deprecated Rule name category/java/bestpractices.xml/DefaultLabelNotLastInSwitchStmt. PMD 8.0.0 will remove support for this deprecated Rule name usage.

67|
68|
[ERROR] Error at ruleset.xml:71:5
69|
70|
71|
^^^^^ Unable to find referenced rule DontImportJavaLang; perhaps the rule name is misspelled?

72|
73|
[ERROR] Error at ruleset.xml:75:5
73|
74|
75|
^^^^^ Unable to find referenced rule DuplicateImports; perhaps the rule name is misspelled?

76|
77|
[ERROR] Error at ruleset.xml:78:5
76|
77|
78|
^^^^^ Unable to find referenced rule EmptyFinallyBlock; perhaps the rule name is misspelled?

79|
80|
[ERROR] Error at ruleset.xml:79:5
77|
78|
79|
^^^^^ Unable to find referenced rule EmptyIfStmt; perhaps the rule name is misspelled?

80|
81|
[ERROR] Error at ruleset.xml:81:5
79|
80|
81|
^^^^^ Unable to find referenced rule EmptyInitializer; perhaps the rule name is misspelled?

82|
83|
[ERROR] Error at ruleset.xml:82:5
80|
81|
82|
^^^^^ Unable to find referenced rule EmptyStatementBlock; perhaps the rule name is misspelled?

83|
84|
[ERROR] Error at ruleset.xml:83:5
81|
82|
83|
^^^^^ Unable to find referenced rule EmptyStatementNotInLoop; perhaps the rule name is misspelled?

84|
85|
[ERROR] Error at ruleset.xml:84:5
82|
83|
84|
^^^^^ Unable to find referenced rule EmptySwitchStatements; perhaps the rule name is misspelled?

85|
86|
[ERROR] Error at ruleset.xml:85:5
83|
84|
85|
^^^^^ Unable to find referenced rule EmptySynchronizedBlock; perhaps the rule name is misspelled?

86|
87|
[ERROR] Error at ruleset.xml:86:5
84|
85|
86|
^^^^^ Unable to find referenced rule EmptyTryBlock; perhaps the rule name is misspelled?

87|
88|
[ERROR] Error at ruleset.xml:87:5
85|
86|
87|
^^^^^ Unable to find referenced rule EmptyWhileStmt; perhaps the rule name is misspelled?

88|
89|
[ERROR] Error at ruleset.xml:90:5
88|
89|
90|
^^^^^ Unable to find referenced rule ExcessiveClassLength; perhaps the rule name is misspelled?

91|
92|
[ERROR] Error at ruleset.xml:91:5
89|
90|
91|
^^^^^ Unable to find referenced rule ExcessiveMethodLength; perhaps the rule name is misspelled?

92|
93|
[ERROR] Error at ruleset.xml:106:5
104|
105|
106|
^^^^^ Unable to find referenced rule ImportFromSamePackage; perhaps the rule name is misspelled?

107|
108|
[ERROR] Error at ruleset.xml:119:5
117|
118|
119|
^^^^^ Unable to find referenced rule MissingBreakInSwitch; perhaps the rule name is misspelled?

120|
121|
[WARN] Warning at ruleset.xml:124:5
122|
123|
124|
^^^^^ Use Rule name category/java/errorprone.xml/NonCaseLabelInSwitch instead of the deprecated Rule name category/java/errorprone.xml/NonCaseLabelInSwitchStatement. PMD 8.0.0 will remove support for this deprecated Rule name usage.

125|
126|
[ERROR] Error at ruleset.xml:134:9
132|
133| // It's okay to use short variable names in DTOs, e.g. "id" or "name"
134| ./de/tum/in/www1/artemis/web/rest/dto/.
^^^^^^^^^^^^^^^^ Unexpected element 'exclude-pattern' in rule ShortVariable

135|
136|
[ERROR] Error at ruleset.xml:137:5
135|
136|
137|
^^^^^ Unable to find referenced rule SimplifyBooleanAssertion; perhaps the rule name is misspelled?

138|
139|
[WARN] Warning at ruleset.xml:184:5
182|
183|
184|
^^^^^ Use Rule name category/ecmascript/errorprone.xml/InaccurateNumericLiteral instead of the deprecated Rule name category/ecmascript/errorprone.xml/InnaccurateNumericLiteral. PMD 8.0.0 will remove support for this deprecated Rule name usage.

185|
186|
[ERROR] Cannot load ruleset category/vm/bestpractices.xml: Cannot resolve rule/ruleset reference 'category/vm/bestpractices.xml'. Make sure the resource is a valid file or URL and is on the CLASSPATH. Use --debug (or a fine log level) to see the current classpath.
[WARN] Progressbar rendering conflicts with reporting to STDOUT. No progressbar will be shown. Try running with argument -r to output the report to a file instead.

✨ Finishing Touches
  • 📝 Generate Docstrings (Beta)

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai or @coderabbitai title anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

coderabbitai[bot]
coderabbitai bot previously approved these changes Jan 31, 2025
HawKhiem
HawKhiem previously approved these changes Jan 31, 2025
Copy link

@HawKhiem HawKhiem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Log 1:

image

Log 2:

image

@ole-ve ole-ve dismissed stale reviews from HawKhiem and coderabbitai[bot] via fd0564b February 1, 2025 15:27
@ole-ve ole-ve requested a review from HawKhiem February 1, 2025 15:28
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
gradle/jacoco.gradle (1)

Line range hint 137-145: Typographical Correction in Task Description
In the registerJacocoTestCoverageVerification method, the task description contains a typo: "vioalations" should be corrected to "violations". Fixing this will improve clarity in logging and reports.

📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 88bf15b and fd0564b.

📒 Files selected for processing (1)
  • gradle/jacoco.gradle (4 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (8)
  • GitHub Check: Call Build Workflow / Build .war artifact
  • GitHub Check: Call Build Workflow / Build and Push Docker Image
  • GitHub Check: Codacy Static Code Analysis
  • GitHub Check: client-style
  • GitHub Check: server-style
  • GitHub Check: client-tests
  • GitHub Check: server-tests
  • GitHub Check: Analyse
🔇 Additional comments (6)
gradle/jacoco.gradle (6)

3-4: Threshold Adjustment: Aggregated Coverage Thresholds Updated
The new AggregatedCoverageThresholds now require an INSTRUCTION ratio of 0.8 (down from 0.89) and a CLASS limit of 66 (up from 56). Please verify that these revised thresholds align with the project's quality goals and do not unintentionally lower the code coverage standards.


45-46: Module-Specific Threshold: Iris Module Update
The iris module now has an INSTRUCTION threshold of 0.760 and a CLASS threshold of 25. Confirm that this change reflects the intended adjustment and that the iris module reports meet these stricter requirements.


87-89: Improved Ignored Directories Matching for Gradle Files
The ignoredDirectories list now specifies "org/gradle/**" and "**/gradle-wrapper.jar/**" without the leading double asterisks for some entries. This approach improves specificity in directory exclusion. Please ensure these patterns correctly exclude all Gradle source files as intended in the PR objectives.


107-116: AfterEvaluate Block in JacocoTestReport: Correct Exclusion Setup
The added afterEvaluate block adjusts the classDirectories by creating a file tree that includes only files matching "$BasePath/**/*.class" and then excludes the directories in ignoredDirectories. This is crucial for ensuring Gradle source files are not reported. Verify that the file tree resolves as expected in all build environments.


124-133: Coverage Verification: Condition and Directory Exclusion Logic
The jacocoTestCoverageVerification block now enables full coverage verification only when either no specific module is set or all modules are included, and it sets the classDirectories excluding the ignored directories. Double-check that this conditional correctly triggers the verification process in all bundle scenarios without inadvertently skipping any necessary checks.


Line range hint 146-155: Source and Class Directories Setup: Verify Variable Usage
In the prepareJacocoReportTask method, the source directories are set with the expression

task.sourceDirectories.setFrom(project.files("src/main/java/$BasePath/$moduleName/**/*.class"))

and the class directories are filtered using ignoredDirectories. Ensure that the variable $BasePath is correctly defined in the build script context so that the paths resolve properly; otherwise, some files may be overlooked or miscategorized.

✅ Verification successful

Dependency Resolution Check for BasePath Definition

The search shows that BasePath is defined in gradle/test.gradle (line 56) as:

BasePath = "de/tum/cit/aet/artemis"

and it is used in gradle/jacoco.gradle (as seen at lines 87, 111, and 209). This indicates that the variable is correctly defined in the build script context and its usage in constructing source and class directory paths appears to be consistent. No misconfiguration was detected from the grep results.

🏁 Scripts executed

The following scripts were executed for the analysis:

Error: No shell scripts found


Script:

#!/bin/bash
# Search for any definitions or usages of "BasePath" in the repository.
rg "BasePath" -n .

Length of output: 22939

coderabbitai[bot]
coderabbitai bot previously approved these changes Feb 1, 2025
coderabbitai[bot]
coderabbitai bot previously approved these changes Feb 8, 2025
@krusche krusche added this to the 7.10.0 milestone Feb 9, 2025
Copy link
Member

@krusche krusche left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I again would like to emphasize that we should use two decimal points. Please address my feedback in the unresolved conversation. Only then, the PR is ready to merge!

@krusche krusche removed this from the 7.10.0 milestone Feb 9, 2025
coderabbitai[bot]
coderabbitai bot previously approved these changes Feb 9, 2025
@ole-ve
Copy link
Contributor Author

ole-ve commented Feb 9, 2025

I again would like to emphasize that we should use two decimal points.

Adjusted the thresholds. Got baited in thinking that the value is 0.80, see this comment in Jacoco issue.

@github-actions github-actions bot added documentation athena Pull requests that affect the corresponding module iris Pull requests that affect the corresponding module labels Feb 9, 2025
@github-actions github-actions bot removed documentation athena Pull requests that affect the corresponding module iris Pull requests that affect the corresponding module labels Feb 9, 2025
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (8)
src/test/java/de/tum/cit/aet/artemis/shared/architecture/ArchitectureTest.java (1)

382-439: LGTM! Excellent architecture test to enforce proper async handling.

The changes enforce proper handling of asynchronous method calls in integration tests by requiring the use of wait methods (timeout, after, await). This helps prevent flaky tests and improves test reliability.

Consider extracting the magic number 2000 in PyrisEventSystemIntegrationTest.java to a constant since it's used consistently across multiple test methods. This would make it easier to maintain and update the timeout value.

+    private static final int ASYNC_TIMEOUT_MS = 2000;

Then update the test methods to use this constant:

-    verify(irisExerciseChatSessionService, timeout(2000).times(1)).onNewResult(any(Result.class));
-    verify(pyrisPipelineService, after(2000).never()).executeExerciseChatPipeline(any(), any(), any(), any(), any());
+    verify(irisExerciseChatSessionService, timeout(ASYNC_TIMEOUT_MS).times(1)).onNewResult(any(Result.class));
+    verify(pyrisPipelineService, after(ASYNC_TIMEOUT_MS).never()).executeExerciseChatPipeline(any(), any(), any(), any(), any());
src/test/java/de/tum/cit/aet/artemis/athena/service/connectors/AthenaFeedbackSendingServiceTest.java (4)

100-102: Consider using a constant for the logger name.

Extract the logger name to a constant to improve maintainability and avoid potential typos.

+    private static final String ASYNC_EXCEPTION_LOGGER = SimpleAsyncUncaughtExceptionHandler.class.getName();
     private ListAppender<ILoggingEvent> asyncExceptionLogAppender;
     private Logger asyncExceptionLog;
-    asyncExceptionLog = (Logger) LoggerFactory.getLogger(SimpleAsyncUncaughtExceptionHandler.class);
+    asyncExceptionLog = (Logger) LoggerFactory.getLogger(ASYNC_EXCEPTION_LOGGER);

Also applies to: 149-152


106-153: Consider extracting test data setup into helper methods.

The setUp method is quite long and handles multiple concerns. Consider extracting the setup logic into smaller, focused helper methods for better readability and maintainability.

+    private void setupTextExercise() {
+        textExercise = textExerciseUtilService.createSampleTextExercise(null);
+        textExercise.setFeedbackSuggestionModule(ATHENA_MODULE_TEXT_TEST);
+        textExercise = textExerciseRepository.save(textExercise);
+
+        var textParticipation = participationUtilService.createAndSaveParticipationForExercise(textExercise, TEST_PREFIX + "student1");
+        textSubmission = createAndSaveTextSubmission(textParticipation);
+        textBlock = createAndSaveTextBlock(textSubmission);
+        textFeedback = createAndSaveTextFeedback(participationUtilService.addResultToParticipation(textParticipation, textSubmission));
+    }
+
+    private TextSubmission createAndSaveTextSubmission(Participation textParticipation) {
+        var submission = new TextSubmission().text("Test - This is what the feedback references - Submission");
+        submission.setParticipation(textParticipation);
+        return textSubmissionRepository.save(submission);
+    }

170-170: Consider using a constant for the timeout duration.

Extract the timeout duration to a constant to improve maintainability and consistency across test methods.

+    private static final Duration DEFAULT_TIMEOUT = Duration.ofSeconds(10);
+    private static final Duration EMPTY_FEEDBACK_WAIT = Duration.ofSeconds(2);
-    await().atMost(Duration.ofSeconds(10)).untilAsserted(() -> athenaRequestMockProvider.verify());
+    await().atMost(DEFAULT_TIMEOUT).untilAsserted(() -> athenaRequestMockProvider.verify());

Also applies to: 214-214, 227-227, 234-234, 242-243


254-261: Consider using Optional for getExceptionName.

The method returns null when no exception is present. Using Optional would make this more explicit and safer.

-    @Nullable
-    private static String getExceptionName(ILoggingEvent event) {
-        IThrowableProxy throwableProxy = event.getThrowableProxy();
-        if (throwableProxy == null) {
-            return null;
-        }
-        return throwableProxy.getClassName();
+    private static Optional<String> getExceptionName(ILoggingEvent event) {
+        return Optional.ofNullable(event.getThrowableProxy())
+            .map(IThrowableProxy::getClassName);
     }
gradle/jacoco.gradle (3)

2-3: Consider using symbolic constants for target thresholds.

Extract the target thresholds mentioned in the TODO comment into constants to make them more maintainable.

+    static final double TARGET_INSTRUCTION_COVERAGE = 0.90
+    static final int TARGET_CLASS_COVERAGE = 0
     // TODO: this should become 90% for INSTRUCTION and 0 for CLASS
-    AggregatedCoverageThresholds = ["INSTRUCTION": 0.888, "CLASS": 69]
+    AggregatedCoverageThresholds = ["INSTRUCTION": TARGET_INSTRUCTION_COVERAGE, "CLASS": TARGET_CLASS_COVERAGE]

84-84: Consider using a sorted list for reportedModules.

The TODO comment suggests the need for alphabetical ordering. Consider sorting the list when it's created.

-    // TODO: somehow the report order is in reversed alphabetical order, it would be great if it could be from A to Z
     finalizedBy reportedModules
+        .sort()
         .collect { module -> registerJacocoTestCoverageVerification(module as String, jacocoTestCoverageVerification) }

190-254: Consider extracting XML parsing logic into a separate method.

The XML parsing logic in the doLast block is quite complex. Consider extracting it into a separate method for better maintainability.

+    private static void parseAndValidateCoverageReport(File reportsFile, String moduleName, double minInstructionCoveredRatio, int maxNumberUncoveredClasses) {
+        if (!reportsFile.exists()) {
+            println "⚠️ Jacoco report not found for $moduleName"
+            return
+        }
+        // ... rest of the XML parsing logic ...
+    }
     task.doLast {
-        // ... current XML parsing logic ...
+        def moduleName = task.name.replace('jacocoTestCoverageVerification-', '')
+        if (moduleName == "aggregated") {
+            moduleName = "Aggregated Code Coverage"
+        }
+        def reportsFile = project.file("${task.project.layout.buildDirectory.get().asFile}/reports/jacoco/$moduleName/jacocoTestReport.xml")
+        parseAndValidateCoverageReport(reportsFile, moduleName, minInstructionCoveredRatio, maxNumberUncoveredClasses)
     }
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 2fd3e31 and 359374b.

⛔ Files ignored due to path filters (5)
  • docs/user/exercises/programming/feedback-analysis-affected-students.png is excluded by !**/*.png, !**/*.png
  • docs/user/exercises/programming/feedback-analysis-channel.png is excluded by !**/*.png, !**/*.png
  • docs/user/exercises/programming/feedback-analysis-detail.png is excluded by !**/*.png, !**/*.png
  • docs/user/exercises/programming/feedback-analysis-filters.png is excluded by !**/*.png, !**/*.png
  • docs/user/exercises/programming/feedback-analysis-overview.png is excluded by !**/*.png, !**/*.png
📒 Files selected for processing (5)
  • docs/user/exercises/programming-exercise-setup.inc (1 hunks)
  • gradle/jacoco.gradle (6 hunks)
  • src/test/java/de/tum/cit/aet/artemis/athena/service/connectors/AthenaFeedbackSendingServiceTest.java (5 hunks)
  • src/test/java/de/tum/cit/aet/artemis/iris/PyrisEventSystemIntegrationTest.java (3 hunks)
  • src/test/java/de/tum/cit/aet/artemis/shared/architecture/ArchitectureTest.java (5 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
`src/test/java/**/*.java`: test_naming: descriptive; test_si...

src/test/java/**/*.java: test_naming: descriptive; test_size: small_specific; fixed_data: true; junit5_features: true; assert_use: assertThat; assert_specificity: true; archunit_use: enforce_package_rules; db_query_count_tests: track_performance; util_service_factory_pattern: true; avoid_db_access: true; mock_strategy: static_mocks; context_restart_minimize: true

  • src/test/java/de/tum/cit/aet/artemis/iris/PyrisEventSystemIntegrationTest.java
  • src/test/java/de/tum/cit/aet/artemis/shared/architecture/ArchitectureTest.java
  • src/test/java/de/tum/cit/aet/artemis/athena/service/connectors/AthenaFeedbackSendingServiceTest.java
⏰ Context from checks skipped due to timeout of 90000ms (8)
  • GitHub Check: client-style
  • GitHub Check: Call Build Workflow / Build and Push Docker Image
  • GitHub Check: client-tests
  • GitHub Check: Call Build Workflow / Build .war artifact
  • GitHub Check: server-style
  • GitHub Check: server-tests
  • GitHub Check: client-tests-selected
  • GitHub Check: Analyse
🔇 Additional comments (4)
src/test/java/de/tum/cit/aet/artemis/iris/PyrisEventSystemIntegrationTest.java (2)

304-305: LGTM! Improved test reliability by handling asynchronous calls.

The changes correctly handle asynchronous method calls by:

  1. Using timeout(2000) to wait for onNewResult to be called.
  2. Using after(2000) to verify that executeExerciseChatPipeline is never called.

319-320: LGTM! Improved test reliability by handling asynchronous calls.

The changes correctly handle asynchronous method calls by:

  1. Using timeout(2000) to wait for onNewResult to be called.
  2. Using after(2000) to verify that executeExerciseChatPipeline is never called.
src/test/java/de/tum/cit/aet/artemis/athena/service/connectors/AthenaFeedbackSendingServiceTest.java (1)

5-6: LGTM! Good use of static imports for assertions and Awaitility.

The static imports improve readability by reducing verbosity in test methods.

docs/user/exercises/programming-exercise-setup.inc (1)

725-802: LGTM! Well-structured and comprehensive documentation.

The new section provides clear instructions and visual aids for using the Feedback Analysis feature. The documentation is well-organized with:

  • Clear navigation instructions
  • Detailed feature descriptions
  • Supporting screenshots
  • Video tutorial

Copy link
Member

@krusche krusche left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This works now better when executing all tests for all modules, which is still our top priority. We can further improve this for single module test execution in a follow-up PR

@krusche krusche added this to the 7.10.0 milestone Feb 9, 2025
@krusche krusche merged commit 721970e into develop Feb 9, 2025
22 of 27 checks passed
@krusche krusche deleted the chore/jacoco-exclude-directories branch February 9, 2025 13:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lti Pull requests that affect the corresponding module ready to merge tests
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.