forked from connamara/quickfixn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acceptance_test.ps1
92 lines (65 loc) · 2.92 KB
/
acceptance_test.ps1
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
$return_value=0
$success_string="`r`nTest Suite Results:"
function TestSpec
{
param(
[Parameter(Mandatory=$True,Position=0)]
[string]$configuration,
[Parameter(Mandatory=$True,Position=1)]
[string]$framework,
[Parameter(Mandatory=$True,Position=2)]
[string]$port,
[Parameter(Mandatory=$True,Position=3)]
[string]$def,
[Parameter(Mandatory=$True,Position=4)]
[string]$conf,
[Parameter(Mandatory=$True,Position=5)]
[string]$dest
)
if(Test-Path TestResult.xml){ Remove-Item TestResult.xml }
$Command = ".\runat.ps1 $configuration $port $def $conf $framework"
Invoke-Expression $Command
if($LASTEXITCODE -ne 0){ $script:return_value = $script:return_value + 1 }
$result = "$dest tests result:$LASTEXITCODE"
echo $result
$script:success_string = $script:success_string + "`r`n`t$result"
Copy-Item TestResult.xml -Destination $dest
}
function RunSuite
{
param(
[Parameter(Mandatory=$True,Position=0)]
[string]$configuration,
[Parameter(Mandatory=$True,Position=1)]
[string]$framework
)
# Fix 40
TestSpec $configuration $framework "5001" "definitions/server/fix40/*.def" "cfg/at_40.cfg" "AcceptanceTests_40_$framework.xml"
# Fix 41
TestSpec $configuration $framework "5002" "definitions/server/fix41/*.def" "cfg/at_41.cfg" "AcceptanceTests_41_$framework.xml"
# Fix 42
TestSpec $configuration $framework "5003" "definitions/server/fix42/*.def" "cfg/at_42.cfg" "AcceptanceTests_42_$framework.xml"
# Fix 43
TestSpec $configuration $framework "5004" "definitions/server/fix43/*.def" "cfg/at_43.cfg" "AcceptanceTests_43_$framework.xml"
# Fix 44
TestSpec $configuration $framework "5005" "definitions/server/fix44/*.def" "cfg/at_44.cfg" "AcceptanceTests_44_$framework.xml"
# Fix 44 No Reset
TestSpec $configuration $framework "5005" "definitions/server/fix44noreset/*.def" "cfg/at_44_noreset.cfg" "AcceptanceTests_44_noreset_$framework.xml"
# Fix 50
TestSpec $configuration $framework "5006" "definitions/server/fix50/*.def" "cfg/at_50.cfg" "AcceptanceTests_50_$framework.xml"
# Fix 50sp1
TestSpec $configuration $framework "5007" "definitions/server/fix50sp1/*.def" "cfg/at_50_sp1.cfg" "AcceptanceTests_50_SP1_$framework.xml"
# Fix 50sp2
TestSpec $configuration $framework "5008" "definitions/server/fix50sp2/*.def" "cfg/at_50_sp2.cfg" "AcceptanceTests_50_SP2_$framework.xml"
# Misc
TestSpec $configuration $framework "5003" "definitions/server/misc/*.def" "cfg/at_42.misc.cfg" "AcceptanceTests_Misc_$framework.xml"
}
Push-Location -Path "AcceptanceTest" -StackName AcceptanceTest
Remove-Item AcceptanceTests_*.xml
RunSuite "release" "net452"
RunSuite "release" "netcoreapp2.0"
Pop-Location -StackName AcceptanceTest
echo $success_string
echo "Script returns: $return_value"
echo "(0 means success)"
Exit $return_value