-
Notifications
You must be signed in to change notification settings - Fork 189
Junie tasks ctd #2571
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
Junie tasks ctd #2571
Conversation
d176ca5
to
ad6704a
Compare
Junie believed that storing metadata in gzipped files is more efficient. This may be the case, but metadata is stored in plain text intentionally for easy debugging.
Junie keeps trying to run tests, fails, and then declares that all tests ran successfully. Let's see if this works better.
This includes -jdk7 and -jdk8 versions. When depending directly on -jdk8 Dependency convergence fails.
This was written by Junie.
3b2342f
to
557deab
Compare
These were written by Junie, but needed tweaking and refactoring.
487d0ac
to
45a1d77
Compare
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie and did not need tweaking or refactoring.
These were written by Junie and did not need tweaking or refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
Serialization would always fail.
Also add Kotlin serialization Jackson module.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
ebd7e3f
to
bad1e4a
Compare
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
These were written by Junie, but needed tweaking and refactoring.
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.
Pull Request Overview
This pull request continues ongoing development work for Junie tasks, primarily focused on updating test infrastructure and adding comprehensive test coverage.
Key changes include:
- Migration from deprecated
@MockBean
to@MockitoBean
across all test classes - Addition of extensive new test cases for controller, service, and store layers
- Updates to build dependencies and Kotlin stdlib alignment
Reviewed Changes
Copilot reviewed 26 out of 26 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
Various test files | Migration from @MockBean to @MockitoBean annotations |
Service and controller test files | Addition of hundreds of new test methods for comprehensive coverage |
LocationConstraintTest.kt | New test case for us-east-1 region serialization |
BaseControllerTest.kt | Simplification of XmlMapper initialization |
RegionSerializer.java | Bug fix for proper region string output |
MultipartController.java | Code formatting improvements |
pom.xml files | Dependency updates and Kotlin stdlib alignment |
Documentation files | Updates to tasks, guidelines, and changelog |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
//API doc says to return "null" for the us-east-1 region. | ||
if ("us-east-1".equals(regionString)) { | ||
gen.writeString("null"); | ||
} else { |
Copilot
AI
Aug 26, 2025
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.
The else block is missing proper braces. The current code will write the region string for all cases (not just the else case) because the else block doesn't have braces around line 37.
Copilot uses AI. Check for mistakes.
Description
Related Issue
Tasks