@@ -66,13 +66,12 @@ public static void applyCustomizations(final TestDef def) {
66
66
// client-side-operation-timeout (CSOT)
67
67
68
68
def .skipNoncompliantReactive ("No good way to fulfill tryNext() requirement with a Publisher<T>" )
69
- .test ("client-side-operation-timeout" , "timeoutMS behaves correctly for tailable awaitData cursors" );
70
-
71
- def .skipNoncompliantReactive ("No good way to fulfill tryNext() requirement with a Publisher<T>" )
72
- .test ("client-side-operation-timeout" , "apply remaining timeoutMS if less than maxAwaitTimeMS" );
69
+ .test ("client-side-operations-timeout" , "timeoutMS behaves correctly for tailable awaitData cursors" ,
70
+ "apply remaining timeoutMS if less than maxAwaitTimeMS" );
73
71
74
72
def .skipJira ("https://jira.mongodb.org/browse/JAVA-5839" )
75
- .test ("client-side-operation-timeout" , "timeoutMS applied to entire download, not individual parts" );
73
+ .test ("client-side-operations-timeout" , "timeoutMS behaves correctly for GridFS download operations" ,
74
+ "timeoutMS applied to entire download, not individual parts" );
76
75
77
76
// TODO-JAVA-5712
78
77
@@ -94,7 +93,7 @@ public static void applyCustomizations(final TestDef def) {
94
93
.file ("command-logging-and-monitoring" , "pre-42-server-connection-id" );
95
94
96
95
def .skipNoncompliant ("The driver doesn't reduce the batchSize for the getMore" )
97
- .test ("command-logging-and-monitoring" ,
96
+ .test ("command-logging-and-monitoring" , "find" ,
98
97
"A successful find event with a getmore and the server kills the cursor (<= 4.4)" );
99
98
100
99
// connection-monitoring-and-pooling
@@ -164,6 +163,7 @@ public static void applyCustomizations(final TestDef def) {
164
163
def .skipNoncompliant ("https://jira.mongodb.org/browse/JAVA-5838" )
165
164
.when (() -> def .isReactive () && UnifiedTest .Language .KOTLIN .equals (def .getLanguage ()))
166
165
.file ("crud" , "findOne" );
166
+
167
167
// gridfs
168
168
169
169
def .skipDeprecated ("contentType is deprecated in GridFS spec, and 4.x Java driver no longer supports it" )
@@ -177,7 +177,6 @@ public static void applyCustomizations(final TestDef def) {
177
177
.file ("gridfs" , "gridfs-renameByName" );
178
178
179
179
180
-
181
180
// retryable-reads
182
181
183
182
def .modify (WAIT_FOR_BATCH_CURSOR_CREATION , IGNORE_EXTRA_EVENTS )
@@ -281,7 +280,7 @@ public static void applyCustomizations(final TestDef def) {
281
280
.test ("unified-test-format/tests/valid-pass" , "poc-retryable-writes" , "InsertOne fails after multiple retryable writeConcernErrors" );
282
281
283
282
def .skipNoncompliant ("The driver doesn't reduce the batchSize for the getMore" )
284
- .test ("unified-test-format/tests/valid-pass" ,
283
+ .test ("unified-test-format/tests/valid-pass" , "poc-command-monitoring" ,
285
284
"A successful find event with a getmore and the server kills the cursor (<= 4.4)" );
286
285
287
286
def .skipJira ("https://jira.mongodb.org/browse/JAVA-5389" )
0 commit comments