-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Added mongodb/specifications as a git submodule #1670
base: main
Are you sure you want to change the base?
Conversation
Set the specifications submodule to last schemaVersion 1.21 commit Deleted old copied json tests. Updated test runners to use the new submodule locations Added skips for any tests that haven't been implemented JAVA-5821
testDocument.remove("resourcePath"); | ||
testDocument.remove("fileName"); | ||
return testDocument; | ||
} | ||
|
||
public static Collection<Object[]> getTestData(final String resourcePath) { | ||
public static Collection<Object[]> getLegacyTestData(final String resourcePath) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Renamed to clarify the types of tests being loaded.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is accurate, since it appears to be used not only by test runners using a format that will eventually be replaced by the unified one, but also once that are not intended to be replaced, e.g. connection string unit tests.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will revert.
@@ -68,10 +67,19 @@ public static Collection<Object[]> getTestData(final String resourcePath) { | |||
return data; | |||
} | |||
|
|||
public static List<BsonDocument> getSpecTestDocuments(final String resourcePath) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New helper to auto include the specifications location prefix.
} | ||
return files; | ||
} | ||
|
||
private static BsonDocument getTestDocumentWithMetaData(final String resourcePath) { | ||
JsonReader jsonReader = new JsonReader(resourcePathToString(resourcePath)); | ||
BsonDocument testDocument = new BsonDocumentCodec().decode(jsonReader, DecoderContext.builder().build()); | ||
BsonDocument testDocument = BsonDocument.parse(resourcePathToString(resourcePath)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simplification of the parsing code.
@@ -72,6 +72,7 @@ protected ClientEncryption createClientEncryption(final ClientEncryptionSettings | |||
|
|||
@BeforeEach | |||
public void setUp() { | |||
assumeFalse(() -> true); // https://jira.mongodb.org/browse/JAVA-5837 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is required as at the schema version 1.21 commit of the specifications repo we doesn't contain have the test files yet
@@ -474,7 +531,7 @@ public TestApplicator testContains(final String dir, final String fragment) { | |||
* @param test the individual test's "description" field | |||
* @return this | |||
*/ | |||
public TestApplicator test(final String dir, final String test) { | |||
public TestApplicator debug(final String dir, final String test) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@katcharov I renamed this method as I found it too easy to use thinking it was a matcher.
@@ -51,6 +51,9 @@ public class ServerDiscoveryAndMonitoringTest extends AbstractServerDiscoveryAnd | |||
public ServerDiscoveryAndMonitoringTest(final String description, final BsonDocument definition) { | |||
super(definition); | |||
this.description = description; | |||
// Unified and monitoring tests have their own test runners |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to do this without skips? I'm concerned that it will be confusing, as it overloads the meaning of skipping a test, which is typically done because the driver has not implemented some feature or is otherwise incompatible with the test.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filtered the data instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I looked at some of the tasks on the patch build and found a handful of tests that are passing on the mainline and skipped in the patch. Easiest way I found to locate them is to filter by Status, including only Skip, then sort Base Status no way to filter by Base Status unfortunately) and scroll to ones with Base Status of Passed. As examples, I found these in test-core:
- com.mongodb.AuthConnectionStringTest.shouldPassAllOutcomes_should_accept_generic_mechanism_property__GSSAPI__
- com.mongodb.UriOptionsTest.shouldPassAllOutcomes_Valid_auth_options_are_parsed_correctly__GSSAPI__
- com.mongodb.UriOptionsTest.shouldPassAllOutcomes_tlsAllowInvalidCertificates_is_parsed_correctly_
- com.mongodb.internal.connection.ConnectionPoolAsyncTest.shouldPassAllOutcomes_pool-create-min-size-error.json__error_during_minPoolSize_population_clears_pool_
- com.mongodb.internal.connection.ConnectionPoolTest.shouldPassAllOutcomes_pool-create-min-size-error.json__error_during_minPoolSize_population_clears_pool_
and these in kotlkin-tests:
- com.mongodb.kotlin.client.coroutine.UnifiedCrudTest.find__Find_with_batchSize_equal_to_limit
- com.mongodb.kotlin.client.coroutine.UnifiedCrudTest.bulkWrite-comment__BulkWrite_with_string_comment
- com.mongodb.kotlin.client.coroutine.UnifiedCrudTest.bulkWrite-comment__BulkWrite_with_document_comment
- com.mongodb.kotlin.client.UnifiedCrudTest.find__Find_with_batchSize_equal_to_limit
- com.mongodb.kotlin.client.UnifiedCrudTest.bulkWrite-comment__BulkWrite_with_string_comment
- com.mongodb.kotlin.client.UnifiedCrudTest.bulkWrite-comment__BulkWrite_with_document_comment
Not sure of the root cause, but seems worth investigating.
Also, responding to:
Sets the specifications submodule to last schemaVersion 1.21 commit
I assume this will have to be updated to the latest commit before this PR is merged, otherwise we will be missing tests updated made in the last few months?
Update with one other thought: now that we are beholden to the directory structure of the specifications repository, there is a greater risk that a restructuring of that repository could cause us to miss an entire test suite (say, if the directory moves). Is there already a check to ensure that every test runner finds at least one test to consider running, and if not, could one be added?
@jyemin thanks for the review:
The kotlin tests:
|
No the latest commit contains work we haven't done yet but we can go to the last
We definitely could miss new tests - but then there should be a drivers ticket along the change to ensure its included. That would be the manual verification step. For unified tests - we could remove all runners and just include a single runner. That traverses all directories in I will add an assertion to ensure |
All sounds good. Please though take a quick look at other tasks, as there are more in driver-sync that are also skipped in this patch but passing in main. I didn't enumerate them all. Probably good reason for all of them but this is the time to check carefully. |
@jyemin all skips are expected - either we modified the tests / tests are different in specifications. Or there is a reason for the skip - eg timeoutMS too small. More tests will be reintroduced in subsequent prs as the schema support is updated. |
JAVA-5821