@@ -3,7 +3,7 @@ import { DatabaseHelper } from '../../../../helpers/database';
3
3
import { BrowserPage } from '../../../../pageObjects' ;
4
4
import {
5
5
commonUrl ,
6
- ossStandaloneV8Config ,
6
+ ossStandaloneV6Config ,
7
7
} from '../../../../helpers/conf' ;
8
8
import { DatabaseAPIRequests } from '../../../../helpers/api/api-database' ;
9
9
import { populateListWithElements } from '../../../../helpers/keys' ;
@@ -17,7 +17,7 @@ const databaseAPIRequests = new DatabaseAPIRequests();
17
17
const apiKeyRequests = new APIKeyRequests ( ) ;
18
18
const telemetry = new Telemetry ( ) ;
19
19
20
- const dbParameters = { host : ossStandaloneV8Config . host , port : ossStandaloneV8Config . port } ;
20
+ const dbParameters = { host : ossStandaloneV6Config . host , port : ossStandaloneV6Config . port } ;
21
21
const keyName = `TestListKey-${ Common . generateWord ( 10 ) } ` ;
22
22
const elementForSearch = `SearchField-${ Common . generateWord ( 5 ) } ` ;
23
23
const keyToAddParameters = { elementsCount : 500000 , keyName, elementStartWith : 'listElement' } ;
@@ -34,12 +34,12 @@ fixture `List Key verification`
34
34
. meta ( { type : 'regression' , rte : rte . standalone } )
35
35
. page ( commonUrl )
36
36
. beforeEach ( async ( ) => {
37
- await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneV8Config ) ;
37
+ await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneV6Config ) ;
38
38
await browserPage . addListKey ( keyName , '2147476121' , [ 'testElement' ] ) ;
39
39
} )
40
40
. afterEach ( async ( ) => {
41
- await apiKeyRequests . deleteKeyByNameApi ( keyName , ossStandaloneV8Config . databaseName ) ;
42
- await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneV8Config ) ;
41
+ await apiKeyRequests . deleteKeyByNameApi ( keyName , ossStandaloneV6Config . databaseName ) ;
42
+ await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneV6Config ) ;
43
43
} ) ;
44
44
test . requestHooks ( logger )
45
45
( 'Verify that user can search per exact element index in List key in DB with 1 million of fields' , async t => {
@@ -63,12 +63,12 @@ test.requestHooks(logger)
63
63
64
64
test
65
65
. before ( async ( ) => {
66
- await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneV8Config ) ;
66
+ await databaseHelper . acceptLicenseTermsAndAddDatabaseApi ( ossStandaloneV6Config ) ;
67
67
68
68
} )
69
69
. after ( async ( ) => {
70
70
await browserPage . Cli . sendCommandInCli ( 'flushdb' ) ;
71
- await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneV8Config ) ;
71
+ await databaseAPIRequests . deleteStandaloneDatabaseApi ( ossStandaloneV6Config ) ;
72
72
} )
73
73
( 'Verify that user can add a multiple fields' , async t => {
74
74
0 commit comments