-
Notifications
You must be signed in to change notification settings - Fork 23
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
Unit cases into integration suite #352
Comments
derived from the #282 |
This issue is stale because it has been open for 30 days with no activity. |
This issue was closed because it has been inactive for 30 days since being marked as stale. |
still valid issue |
This issue is stale because it has been open for 60 days with no activity. |
This issue was closed because it has been inactive for 30 days since being marked as stale. |
This issue is stale because it has been open for 60 days with no activity. |
This issue was closed because it has been inactive for 30 days since being marked as stale. |
What
Currently, we have a number of unit tests that are focused on the
.Reconcile()
function. It was decided to delegate testing of the controllers mainly to the integration test suite hence some of the existing unit tests should be transitioned from the unit suite into integration.How
Go through the unit suite and transition all relevant cases.
The catch
Not all tests could be transitioned.
The goal is to have controllers mainly tested by the integration suite, but some of the logic in the
.Reconclile()
ensures that we aren't crashing in case something goes wrong and integration isn't equipped well to deal with it. So should we still have a bunch of exception cases form the unit suite poking reconcilers or just get rid of them leaving certain parts of the code uncovered?The text was updated successfully, but these errors were encountered: