Merged
Conversation
- The tmp directory will contains the documents generated by the tests to avoid the tests failed due to missing file directory.
…ncyID This test is failing in develop/bullfrog. It tests code that is not currently in use upstream. This class can potentially be removed.
Reviewer's Guide by SourceryThis pull request fixes several failing unit tests and Hibernate query errors in the bullfrog branch. The main changes include fixing incorrect query parameter syntax, updating dependency versions, and addressing test environment setup issues. Class diagram for BaseLoginModule changesclassDiagram
class BaseLoginModule {
+boolean logout()
}
note for BaseLoginModule "Added null check for principals in logout method"
Class diagram for ProviderLabRoutingDaoImpl changesclassDiagram
class ProviderLabRoutingDaoImpl {
-List<ProviderLabRoutingModel> getProviderLabRoutings(Integer, String, String, String)
+List<ProviderLabRoutingModel> getProviderLabRoutings(Integer, String, String, String)
-List<ProviderLabRoutingModel> findByLabNoAndLabTypeAndProviderNo(int, String, String)
+List<ProviderLabRoutingModel> findByLabNoAndLabTypeAndProviderNo(int, String, String)
-void updateStatus(Integer, String)
+void updateStatus(Integer, String)
-ProviderLabRoutingModel findByLabNo(int)
+ProviderLabRoutingModel findByLabNo(int)
-List<ProviderLabRoutingModel> findByLabNoIncludingPotentialDuplicates(int)
+List<ProviderLabRoutingModel> findByLabNoIncludingPotentialDuplicates(int)
-ProviderLabRoutingModel findByLabNoAndLabType(int, String)
+ProviderLabRoutingModel findByLabNoAndLabType(int, String)
-List<Object[]> getProviderLabRoutings(Integer, String)
+List<Object[]> getProviderLabRoutings(Integer, String)
}
note for ProviderLabRoutingDaoImpl "Fixed query parameter syntax"
Class diagram for BillingONCHeader1DaoImpl changesclassDiagram
class BillingONCHeader1DaoImpl {
+List<BillingONCHeader1> findByProviderStatusAndDateRange(String, List<String>, DateRange)
}
note for BillingONCHeader1DaoImpl "Refactored query building for date range"
Class diagram for NioFileManagerImpl changesclassDiagram
class NioFileManagerImpl {
+ServletContext context
}
note for NioFileManagerImpl "Autowired context is now optional"
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey @sebastian-j-ibanez - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Closed
Jdarji2130
pushed a commit
to Jdarji2130/Open-O-jay
that referenced
this pull request
Mar 23, 2025
D3V41
pushed a commit
that referenced
this pull request
Sep 4, 2025
yingbull
pushed a commit
that referenced
this pull request
Oct 15, 2025
Devcontainer README.md file update
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes
BaseLoginModule.logout(), to prevent theBaseLoginModuleTestfrom failing.InboxPopulatingTestfrom alpaca.VacancyClientMatchDaoTest.Summary by Sourcery
Fix various unit test failures and hibernate query errors. Update dependencies to newer versions for improved stability. Enhance test infrastructure by adding cleanup methods and commenting out unused tests. Make dependency injection optional in NioFileManagerImpl.
Bug Fixes:
Enhancements:
Tests: