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

Ensure AssertExpectations does not fail in skipped tests #1331

Merged
merged 1 commit into from
Feb 17, 2024
Merged

Ensure AssertExpectations does not fail in skipped tests #1331

merged 1 commit into from
Feb 17, 2024

Conversation

ianrose14
Copy link
Contributor

Summary

Prevent (*Mock).AssertExpectations from failing if test expectations are not met but the test has already been marked as "Skipped".

Changes

  • Add check to (*Mock).AssertExpectations such that if the *testing.T is already marked skipped, we just return true immediately.
  • Add a unit test (Test_Mock_AssertExpectations_Skipped_Test) for the new behavior.

Motivation

Normally the decision to skip a test is made early in the test function, but on occasion it might be the case that you have already set up some mock expectations before you call t.Skip. If that's the case, then a call to AssertExpectations will fail, which is not intended.

Example usage (if applicable)

func TestExample(t *testing.T) {
	val := new(MockedValue)
	val.On("DoThing", 1, 2).Return(3, 4)
	defer val.AssertExpectations(t)

	if os.GetEnv("foo") == "" {
		// This will cause the test to exit, which will run the deferred AssertExpections call above
		t.Skip("nevermind")
	}
	...
}

Related issues

Closes #1329

@brackendawson
Copy link
Collaborator

Thanks for the PR, I'd love to see this merged.

@dolmen dolmen added pkg-mock Any issues related to Mock bug labels Jul 6, 2023
dolmen
dolmen previously approved these changes Jul 6, 2023
@dolmen
Copy link
Collaborator

dolmen commented Jul 6, 2023

@ianrose14 Could you rebase your branch on top of master (and fix conflicts)?

@ianrose14
Copy link
Contributor Author

@ianrose14 Could you rebase your branch on top of master (and fix conflicts)?

done!

@ianrose14
Copy link
Contributor Author

@dolmen Can you re-review this please? I've resolved merge conflicts.

@ianrose14 ianrose14 requested a review from dolmen July 25, 2023 03:53
@dolmen
Copy link
Collaborator

dolmen commented Jul 29, 2023

Code looks good.

Please squash commits.

@ianrose14
Copy link
Contributor Author

Code looks good.

Please squash commits.

@dolmen done!

Copy link
Collaborator

@brackendawson brackendawson left a comment

Choose a reason for hiding this comment

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

Thank you for your contribution.

@brackendawson brackendawson merged commit c719de3 into stretchr:master Feb 17, 2024
@ianrose14 ianrose14 deleted the ianrose/assertexpectations-skipped branch February 20, 2024 14:36
@brackendawson brackendawson modified the milestones: v1.8.5, v1.9.0 Feb 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug pkg-mock Any issues related to Mock
Projects
None yet
Development

Successfully merging this pull request may close these issues.

AssertExpectations should not fail if the test was skipped
3 participants