forked from pester/Pester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PesterState.Tests.ps1
155 lines (127 loc) · 5.43 KB
/
PesterState.Tests.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
Set-StrictMode -Version Latest
InModuleScope Pester {
Describe "New-PesterState" {
Context "TestNameFilter parameter is set" {
$p = new-pesterstate -TestNameFilter "filter"
it "sets the TestNameFilter property" {
$p.TestNameFilter | should -be "filter"
}
}
Context "TagFilter parameter is set" {
$p = new-pesterstate -TagFilter "tag","tag2"
it "sets the TestNameFilter property" {
$p.TagFilter | should -be ("tag","tag2")
}
}
Context "ExcludeTagFilter parameter is set" {
$p = new-pesterstate -ExcludeTagFilter "tag3", "tag"
it "sets the ExcludeTagFilter property" {
$p.ExcludeTagFilter | should -be ("tag3", "tag")
}
}
Context "TagFilter and ExcludeTagFilter parameter are set" {
$p = new-pesterstate -TagFilter "tag","tag2" -ExcludeTagFilter "tag3"
it "sets the TestNameFilter property" {
$p.TagFilter | should -be ("tag","tag2")
}
it "sets the ExcludeTagFilter property" {
$p.ExcludeTagFilter | should -be ("tag3")
}
}
Context "TestNameFilter and TagFilter parameter is set" {
$p = new-pesterstate -TagFilter "tag","tag2" -testnamefilter "filter"
it "sets the TestNameFilter property" {
$p.TagFilter | should -be ("tag","tag2")
}
it "sets the TestNameFilter property" {
$p.TagFilter | should -be ("tag","tag2")
}
}
}
Describe "Pester state object" {
$p = New-PesterState
Context "entering describe" {
It "enters describe" {
$p.EnterTestGroup("describeName", "describe")
$p.CurrentTestGroup.Name | Should -Be "describeName"
$p.CurrentTestGroup.Hint | Should -Be "describe"
}
}
Context "leaving describe" {
It "leaves describe" {
$p.LeaveTestGroup("describeName", "describe")
$p.CurrentTestGroup.Name | Should -Not -Be "describeName"
$p.CurrentTestGroup.Hint | Should -Not -Be "describe"
}
}
context "adding test result" {
$p.EnterTestGroup('Describe', 'Describe')
it "adds passed test" {
$p.AddTestResult("result","Passed", 100)
$result = $p.TestResult[-1]
$result.Name | should -be "result"
$result.passed | should -be $true
$result.Result | Should -be "Passed"
$result.time.ticks | should -be 100
}
it "adds failed test" {
try { throw 'message' } catch { $e = $_ }
$p.AddTestResult("result","Failed", 100, "fail", "stack","suite name",@{param='eters'},$e)
$result = $p.TestResult[-1]
$result.Name | should -be "result"
$result.passed | should -be $false
$result.Result | Should -be "Failed"
$result.time.ticks | should -be 100
$result.FailureMessage | should -be "fail"
$result.StackTrace | should -be "stack"
$result.ParameterizedSuiteName | should -be "suite name"
$result.Parameters['param'] | should -be 'eters'
$result.ErrorRecord.Exception.Message | should -be 'message'
}
it "adds skipped test" {
$p.AddTestResult("result","Skipped", 100)
$result = $p.TestResult[-1]
$result.Name | should -be "result"
$result.passed | should -be $true
$result.Result | Should -be "Skipped"
$result.time.ticks | should -be 100
}
it "adds Pending test" {
$p.AddTestResult("result","Pending", 100)
$result = $p.TestResult[-1]
$result.Name | should -be "result"
$result.passed | should -be $true
$result.Result | Should -be "Pending"
$result.time.ticks | should -be 100
}
$p.LeaveTestGroup('Describe', 'Describe')
}
Context "Path and TestNameFilter parameter is set" {
$strict = New-PesterState -Strict
It "Keeps Passed state" {
$strict.AddTestResult("test","Passed")
$result = $strict.TestResult[-1]
$result.passed | should -be $true
$result.Result | Should -be "Passed"
}
It "Keeps Failed state" {
$strict.AddTestResult("test","Failed")
$result = $strict.TestResult[-1]
$result.passed | should -be $false
$result.Result | Should -be "Failed"
}
It "Changes Pending state to Failed" {
$strict.AddTestResult("test","Pending")
$result = $strict.TestResult[-1]
$result.passed | should -be $false
$result.Result | Should -be "Failed"
}
It "Changes Skipped state to Failed" {
$strict.AddTestResult("test","Skipped")
$result = $strict.TestResult[-1]
$result.passed | should -be $false
$result.Result | Should -be "Failed"
}
}
}
}