-
Notifications
You must be signed in to change notification settings - Fork 21
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
feat: Add initial JobController reconciler test #27
Merged
Conversation
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
irvinlim
added
component/execution
Issues or PRs related exclusively to the Execution component (Job, JobConfig)
area/testing
Related to automated testing
labels
Mar 28, 2022
Codecov Report
@@ Coverage Diff @@
## main #27 +/- ##
==========================================
+ Coverage 38.40% 47.26% +8.86%
==========================================
Files 154 158 +4
Lines 7794 7934 +140
==========================================
+ Hits 2993 3750 +757
+ Misses 4662 3994 -668
- Partials 139 190 +51
Continue to review full report at Codecov.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/testing
Related to automated testing
component/execution
Issues or PRs related exclusively to the Execution component (Job, JobConfig)
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.
Adds unit tests, contributing to improved test coverage (#3).
runtime/testing
package that will usefake.Client
Actions to capture API requests to test expected API requests made for a single sync.time.Now()
andmetav1.Now()
injobcontroller.Reconciler
to usektime.Now()
instead for fake clock.After writing some initial reconciler tests, I have some thoughts about how to write proper tests in this style (which is probably midway between unit tests and integration tests):
SyncOne
call, and specifies expected API requests to be made by hooking onto*fake.Client
's Reactor mechanism.creationTimestamp
. The tests will then have to take care to use the correct object, which can be easy to trip up.We can write more full-blown integration tests as described in the Kubebuilder documentation in the future, which could help cover additional test cases but will probably run for significantly longer than the current style of tests.