-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
Fix to #21393 - Query: Convert to AssertQuery in tests as much as possible #22994
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
maumar
commented
Oct 14, 2020
maumar
commented
Oct 14, 2020
test/EFCore.Specification.Tests/Query/NorthwindQueryFixtureBase.cs
Outdated
Show resolved
Hide resolved
/cc @roji - some minor changes to test infra that might affect/break npgsql tests |
maumar
commented
Oct 14, 2020
test/EFCore.Relational.Specification.Tests/Query/NullSemanticsQueryFixtureBase.cs
Outdated
Show resolved
Hide resolved
7daef93
to
c25101f
Compare
smitpatel
reviewed
Oct 16, 2020
test/EFCore.Specification.Tests/Query/FiltersInheritanceQueryTestBase.cs
Outdated
Show resolved
Hide resolved
smitpatel
reviewed
Oct 16, 2020
test/EFCore.Specification.Tests/Query/NorthwindQueryFiltersQueryTestBase.cs
Show resolved
Hide resolved
smitpatel
reviewed
Oct 16, 2020
test/EFCore.Specification.Tests/Query/NorthwindQueryFiltersQueryTestBase.cs
Show resolved
Hide resolved
smitpatel
reviewed
Oct 16, 2020
test/EFCore.Specification.Tests/Query/NorthwindQueryFiltersQueryTestBase.cs
Outdated
Show resolved
Hide resolved
smitpatel
reviewed
Oct 16, 2020
smitpatel
reviewed
Oct 16, 2020
test/EFCore.SqlServer.FunctionalTests/Query/ComplexNavigationsQuerySqlServerTest.cs
Outdated
Show resolved
Hide resolved
c25101f
to
727e090
Compare
@smitpatel updated |
727e090
to
e878c08
Compare
smitpatel
reviewed
Oct 17, 2020
test/EFCore.Specification.Tests/Query/FiltersInheritanceQueryTestBase.cs
Show resolved
Hide resolved
smitpatel
reviewed
Oct 17, 2020
test/EFCore.Specification.Tests/TestModels/Northwind/NorthwindContext.cs
Show resolved
Hide resolved
7401b7e
to
46a746e
Compare
updated |
…sible added support for query filters to the AssertQuery test infra (using AssertFilteredQuery methods) and converted query filter tests to take advantage of it - when creating new instance of ExpectedData we can now apply necessary filtering direcly on the dataset, rather than modifying the expected query itself, - ExpectedData is now created for every query to make sure changes to properties on dbcontext are taken into account (e.g. TenantId), - ExpectedData are cached to avoid big perf hit. Also incorporated async GoW tests into the regular GoW test suite, Fixes #21393
46a746e
to
58bcdd5
Compare
smitpatel
approved these changes
Oct 20, 2020
But build? 😮 |
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.
added support for query filters to the AssertQuery test infra (using AssertFilteredQuery methods) and converted query filter tests to take advantage of it
Also incorporated async GoW tests into the regular GoW test suite,
Fixes #21393