forked from HexisData/hqTestLite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshared_config_template.psd1
99 lines (87 loc) · 6.8 KB
/
shared_config_template.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
####################################################################
#
# DELTATEST v2.0.0
#
# Shared Configuration File
#
# The settings below are available to all users who have installed
# deltaTest locally against this repository.
#
####################################################################
#
# Copyright 2016-2019 by the following contributors:
#
# Continuus Technologies, LLC
# Enterprise Data Foundation, Inc.
# HexisData, Inc.
# HotQuant, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
####################################################################
@{
# DEFAULT LOCAL CONFIGURATIONS. These can be overridden locally.
# If true, tests will execute without user input or diff visualization.
NoInput = $false
# Tests will be run against this environment. Must be specified in Environments below.
ActiveEnvironment = "DEV"
# Path to Markit EDM command line executable.
ProcessAgentPath = "C:\Program Files\Markit Group\Markit EDM_18_2_12_1\CadisProcessAgent.exe"
# Path to text differencing engine executable.
TextDiffExe = "C:\Program Files (x86)\WinMerge\WinMergeU.exe"
# Text differencing engine command line params. {{CurrentResult}} and {{CertifiedResult}}
# will be replaced by the appropriate paths at run time.
TextDiffParams = @("/e", "/s", "/u", "/wl", "/wr", "/dl", "Current Result", "/dr", "Certified Result", "{{CurrentResult}}", "{{CertifiedResult}}")
# SHARED CONFIGURATIONS. These cannot be overridden locally.
# Colors used on interactive screens.
Colors = @{
Title = 'Cyan'
Label = 'White'
Prompt = 'Yellow'
Description = 'Gray'
Default = 'Gray'
Pattern = 'Gray'
Error = 'Red'
Confirmation = 'Green'
}
# deltaTest version number.
Version = "2.0.0"
# ENVIRONMENT-SPECIFIC SETTINGS. These are global and cannot be overridden. Add as many
# environments as needed, but each environment should express the same properties to
# support consistent testing across environments. Variable names and values are arbitrary:
# they are only consumed in test scripts, and can be whatever they need to be to support
# testing.
Environments = @{
DEV = @{
MedmDbServer = "DevServerName"
MedmDbName = "DevDbName"
DirInBbgPrc = "\\netshare\Environments\DEV\Inbound\BBG\PRC"
DirInBbgSec = "\\netshare\Environments\DEV\Inbound\BBG\SEC"
}
TEST = @{
MedmDbServer = "TestServerName"
MedmDbName = "TestDbName"
DirInBbgPrc = "\\netshare\Environments\TEST\Inbound\BBG\PRC"
DirInBbgSec = "\\netshare\Environments\TEST\Inbound\BBG\SEC"
}
STAGE = @{
MedmDbServer = "StageServerName"
MedmDbName = "StageDbName"
DirInBbgPrc = "\\netshare\Environments\STAGE\Inbound\BBG\PRC"
DirInBbgSec = "\\netshare\Environments\STAGE\Inbound\BBG\SEC"
}
PROD = @{
MedmDbServer = "ProdServerName"
MedmDbName = "ProdDbName"
DirInBbgPrc = "\\netshare\Environments\PROD\Inbound\BBG\PRC"
DirInBbgSec = "\\netshare\Environments\PROD\Inbound\BBG\SEC"
}
}
}