File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
testkit-backend/src/main/java/neo4j/org/testkit/backend/messages/requests Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -55,13 +55,13 @@ public class GetFeatures implements TestkitRequest
55
55
"Feature:API:SSLSchemes" ,
56
56
"Feature:API:Liveness.Check" ,
57
57
"Temporary:DriverMaxConnectionPoolSize" ,
58
- "Temporary:ConnectionAcquisitionTimeout" ,
59
58
"Temporary:GetConnectionPoolMetrics" ,
60
59
"Temporary:CypherPathAndRelationship" ,
61
60
"Temporary:FullSummary" ,
62
61
"Temporary:ResultKeys" ,
63
62
"Temporary:TransactionClose" ,
64
63
"Optimization:EagerTransactionBegin" ,
64
+ "Feature:API:ConnectionAcquisitionTimeout" ,
65
65
"Feature:API:Driver.IsEncrypted" ,
66
66
"Feature:API:SSLConfig" ,
67
67
"Detail:DefaultSecurityConfigValueEquality"
Original file line number Diff line number Diff line change @@ -58,6 +58,11 @@ public class StartTest implements TestkitRequest
58
58
String skipMessage = "This test expects hostname verification to be turned off when all certificates are trusted" ;
59
59
COMMON_SKIP_PATTERN_TO_REASON .put ( "^.*\\ .TestTrustAllCertsConfig\\ .test_trusted_ca_wrong_hostname$" , skipMessage );
60
60
COMMON_SKIP_PATTERN_TO_REASON .put ( "^.*\\ .TestTrustAllCertsConfig\\ .test_untrusted_ca_wrong_hostname$" , skipMessage );
61
+ skipMessage = "Driver handles connection acquisition timeout differently" ;
62
+ COMMON_SKIP_PATTERN_TO_REASON .put ( "^.*\\ .TestConnectionAcquisitionTimeoutMs\\ .test_should_encompass_the_handshake_time.*$" , skipMessage );
63
+ COMMON_SKIP_PATTERN_TO_REASON .put ( "^.*\\ .TestConnectionAcquisitionTimeoutMs\\ .test_should_fail_when_acquisition_timeout_is_reached_first.*$" ,
64
+ skipMessage );
65
+
61
66
ASYNC_SKIP_PATTERN_TO_REASON .putAll ( COMMON_SKIP_PATTERN_TO_REASON );
62
67
63
68
REACTIVE_SKIP_PATTERN_TO_REASON .putAll ( COMMON_SKIP_PATTERN_TO_REASON );
You can’t perform that action at this time.
0 commit comments