Skip to content

Commit 366c220

Browse files
committed
testkit-backend: Add Temporary:FastFailingDiscovery and Temporary:ResultKeys features
Most of the tests in `Temporary:FastFailingDiscovery` are skipped and they will be evaluated afterwards
1 parent 87a16a6 commit 366c220

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

packages/testkit-backend/src/request-handlers.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,8 @@ export function GetFeatures (_context, _params, wire) {
367367
'Feature:API:Result.List',
368368
'Feature:API:Result.Peek',
369369
'Temporary:ConnectionAcquisitionTimeout',
370+
'Temporary:FastFailingDiscovery',
371+
'Temporary:ResultKeys',
370372
'Temporary:TransactionClose',
371373
...SUPPORTED_TLS
372374
]

packages/testkit-backend/src/skipped-tests/common.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
import skip, { ifEquals, ifEndsWith, ifStartsWith } from './skip'
22

33
const skippedTests = [
4+
skip(
5+
'Fail while enable Temporary:FastFailingDiscovery',
6+
ifEndsWith('test_should_request_rt_from_all_initial_routers_until_successful_on_authorization_expired'),
7+
ifEndsWith('test_should_request_rt_from_all_initial_routers_until_successful_on_unknown_failure'),
8+
ifEndsWith('test_should_fail_with_routing_failure_on_any_security_discovery_failure'),
9+
ifEndsWith('test_should_fail_with_routing_failure_on_invalid_bookmark_mixture_discovery_failure'),
10+
ifEndsWith('test_should_fail_with_routing_failure_on_invalid_bookmark_discovery_failure'),
11+
ifEndsWith('test_should_fail_with_routing_failure_on_forbidden_discovery_failure')
12+
),
413
skip(
514
'Partial session iteration is not supported by the js driver',
615
ifEquals('neo4j.sessionrun.TestSessionRun.test_partial_iteration'),

0 commit comments

Comments
 (0)