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

Allow custom assertions for stashed values #311

Merged
merged 1 commit into from Nov 7, 2022

Conversation

mamachanko
Copy link
Collaborator

@mamachanko mamachanko commented Oct 27, 2022

Custom assertions for stashed values are helpful when they require bespoke verification. For example:

	rtesting.SubReconcilerTestSuite{
		{
			// ...
			ExpectStashedValues: map[reconcilers.StashKey]interface{}{
				// ...
			},
			VerifyStashedValue: func(t *testing.T, key reconcilers.StashKey, expected, actual interface{}) {
				if diff := cmp.Diff(expected, actual, myCustomOpts); diff != "" {
					t.Errorf("Unexpected stash value %q (-expected, +actual): %s", key, diff)
				}
			},
		},
		// ...
	}   

@codecov
Copy link

codecov bot commented Oct 27, 2022

Codecov Report

Base: 61.64% // Head: 61.55% // Decreases project coverage by -0.08% ⚠️

Coverage data is based on head (1895c54) compared to base (4768c21).
Patch coverage: 0.00% of modified lines in pull request are covered.

❗ Current head 1895c54 differs from pull request most recent head e8bc6f8. Consider uploading reports for the commit e8bc6f8 to get more accurate results

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #311      +/-   ##
==========================================
- Coverage   61.64%   61.55%   -0.09%     
==========================================
  Files          17       17              
  Lines        2151     2154       +3     
==========================================
  Hits         1326     1326              
- Misses        748      751       +3     
  Partials       77       77              
Impacted Files Coverage Δ
testing/reconciler.go 0.00% <ø> (ø)
testing/subreconciler.go 0.00% <0.00%> (ø)

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

Copy link
Contributor

@scothis scothis left a comment

Choose a reason for hiding this comment

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

If the goal is to offer alternative validation for stashed values, I think we should offer a hook that is explicitly for validating stashed values.

Something like:

VerifyStashedValue: func(t *testing.T, key reconcilers.StashKey, expected, observed interface{}) {
	if diff := cmp.Diff(expected, actual, ...); diff != "" {
		t.Errorf("Unexpected stash value %q (-expected, +actual): %s", key, diff)
	}
},

We can use the default function if a user doesn't specify an override.

testing/reconciler.go Outdated Show resolved Hide resolved
@@ -238,6 +240,9 @@ func (tc *SubReconcilerTestCase) Run(t *testing.T, scheme *runtime.Scheme, facto
if tc.Verify != nil {
tc.Verify(t, result, err)
}
if tc.VerifyCtx != nil {
tc.VerifyCtx(t, ctx)
Copy link
Contributor

Choose a reason for hiding this comment

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

this will allow for additional validation, but it won't suppress existing validation for stashed values.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

The two might co-exist since

// ExpectStashedValues ensures each value is stashed. Values in the stash that are not expected are ignored. Values in the stash that are not expected are ignored. [...]

And so one might combine the two to achieve the desired coverage.

@mamachanko
Copy link
Collaborator Author

mamachanko commented Nov 1, 2022

If the goal is to offer alternative validation for stashed values, I think we should offer a hook that is explicitly for validating stashed values.

Something like:

VerifyStashedValue: func(t *testing.T, key reconcilers.StashKey, expected, observed interface{}) {
	if diff := cmp.Diff(expected, actual, ...); diff != "" {
		t.Errorf("Unexpected stash value %q (-expected, +actual): %s", key, diff)
	}
},

That would work for a single entry in the stash. What if a reconciler addresses multiple entries?

We can use the default function if a user doesn't specify an override.

By "default function", do you mean:

  • The code in SubReconcilerTestCase which asserts on ExpectStashedValues?
  • The existing usage of cmp.Diff(...)?

@scothis
Copy link
Contributor

scothis commented Nov 1, 2022

That would work for a single entry in the stash. What if a reconciler addresses multiple entries?

The current diff is computed for each item in the stash independently.

We can use the default function if a user doesn't specify an override.

By "default function", do you mean:

  • The code in SubReconcilerTestCase which asserts on ExpectStashedValues?
  • The existing usage of cmp.Diff(...)?

The existing call to cmp.Diff

Something like:

if tc.VerifyStashedValue == nil {
	tc.VerifyStashedValue = func(t *testing.T, key reconcilers.StashKey, expected, observed interface{}) {
		if diff := cmp.Diff(expected, actual, IgnoreLastTransitionTime, SafeDeployDiff, IgnoreTypeMeta, IgnoreCreationTimestamp, IgnoreResourceVersion, cmpopts.EquateEmpty()); diff != "" {
			t.Errorf("Unexpected stash value %q (-expected, +actual): %s", key, diff)
		}
	}
}

@mamachanko
Copy link
Collaborator Author

@scothis I get it! You describe a function for verifying each entry listed in ExpectStashedValues. I will incorporate that and update the PR.

@mamachanko mamachanko changed the title Allow custom assertions on the context with VerifyCtx Allow custom assertions for stashed values Nov 2, 2022
@mamachanko
Copy link
Collaborator Author

@scothis your suggestion in incorporated and reflected in the PR's title.

Would you recommend to start testing the (Sub)ReconcilerTests themselves to cover these features? I could start by covering this new addition. Tests for existing testing facilities could/would be backfilled eventually. Yet I wonder if we would ever get around to it.

Copy link
Contributor

@scothis scothis left a comment

Choose a reason for hiding this comment

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

looking good, a couple small tweeks inline

README.md Outdated Show resolved Hide resolved
testing/subreconciler.go Outdated Show resolved Hide resolved
@mamachanko
Copy link
Collaborator Author

mamachanko commented Nov 6, 2022

looking good, a couple small tweeks inline

@scothis Incorporated your suggestions. Thanks for reminding me of tc.Prepare!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants