Skip to content

Commit 90174ef

Browse files
authored
Add Temporary:FastFailingDiscovery and Temporary:ResultKeys feature flags (#858)
Most of the tests in `Temporary:FastFailingDiscovery` are skipped and they will be evaluated afterwards. Skip tests related to `Temporary:ResultKeys`
1 parent c54329a commit 90174ef

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

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

+2
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,8 @@ export function GetFeatures (_context, _params, wire) {
370370
'Feature:API:Result.List',
371371
'Feature:API:Result.Peek',
372372
'Temporary:ConnectionAcquisitionTimeout',
373+
'Temporary:FastFailingDiscovery',
374+
'Temporary:ResultKeys',
373375
'Temporary:TransactionClose',
374376
'Temporary:CypherPathAndRelationship',
375377
'Temporary:DriverFetchSize',

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

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
import skip, { ifEquals, ifEndsWith, ifStartsWith } from './skip'
22

33
const skippedTests = [
4+
skip(
5+
'Fail while enable Temporary::ResultKeys',
6+
ifEquals('neo4j.test_bookmarks.TestBookmarks.test_can_pass_bookmark_into_next_session'),
7+
ifEquals('neo4j.test_tx_run.TestTxRun.test_consume_after_commit'),
8+
ifEquals('neo4j.test_tx_run.TestTxRun.test_tx_configuration'),
9+
ifEquals('neo4j.test_tx_run.TestTxRun.test_interwoven_queries'),
10+
ifEquals('neo4j.test_tx_run.TestTxRun.test_parallel_queries'),
11+
ifEquals('neo4j.test_session_run.TestSessionRun.test_iteration_smaller_than_fetch_size'),
12+
ifEquals('neo4j.test_tx_func_run.TestTxFuncRun.test_tx_func_configuration')
13+
),
14+
skip(
15+
'Fail while enable Temporary:FastFailingDiscovery',
16+
ifEndsWith('test_should_request_rt_from_all_initial_routers_until_successful_on_authorization_expired'),
17+
ifEndsWith('test_should_request_rt_from_all_initial_routers_until_successful_on_unknown_failure'),
18+
ifEndsWith('test_should_fail_with_routing_failure_on_any_security_discovery_failure'),
19+
ifEndsWith('test_should_fail_with_routing_failure_on_invalid_bookmark_mixture_discovery_failure'),
20+
ifEndsWith('test_should_fail_with_routing_failure_on_invalid_bookmark_discovery_failure'),
21+
ifEndsWith('test_should_fail_with_routing_failure_on_forbidden_discovery_failure')
22+
),
423
skip(
524
'Flaky in TeamCity',
625
ifEndsWith('test_should_fail_when_writing_to_unexpectedly_interrupting_writers_on_run_using_tx_function'),

0 commit comments

Comments
 (0)