-
Notifications
You must be signed in to change notification settings - Fork 5
/
TestDatabases.txt
23 lines (21 loc) · 1.03 KB
/
TestDatabases.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#Expects the following to exist on the server:
#Catalogue
#DQE
#DataExport
#Logging
#To achieve this, you can run DatabaseCreation.exe with argument 1 being your ServerName
#You can apply a prefix e.g. TEST_ as an argument to DatabaseCreation.exe and include that prefix below if you like
ServerName: (localdb)\MSSQLLocalDB
Prefix: TEST_
MySql: server=127.0.0.1;Uid=root;Pwd=;sslmode=None
PostgreSql: User ID=postgres;Password=;Host=127.0.0.1;Port=5432
Oracle:
#User accounts you can create with limited access rights (e.g. connect list databases etc). These users will be used in low privilege tests
#The account will be granted limited read/write access to databases on a per test basis (See DatabaseTests.SetupLowPrivilegeUserRightsFor)
#If you leave these commented out the associated tests will be Inconclusive
#SqlServerLowPrivilegeUsername: minion
#SqlServerLowPrivilegePassword: minionPass
#MySqlLowPrivilegeUsername: minion
#MySqlLowPrivilegePassword: minionPass
#OracleLowPrivilegeUsername: minion
#OracleLowPrivilegePassword: minionPass