-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtest-batches.json
More file actions
175 lines (175 loc) · 4.77 KB
/
test-batches.json
File metadata and controls
175 lines (175 loc) · 4.77 KB
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"configuration": {
"defaultTimeout": 600000,
"defaultFramework": "net9.0",
"runSettingsPath": "NEsper.runsettings",
"testProjectPath": "tst/NEsper.Regression.Runner",
"parallelBatches": false,
"stopOnFirstFailure": false
},
"batches": [
{
"name": "Client",
"filter": "TestClient",
"enabled": true,
"timeout": 300000,
"description": "Client basic tests - quick validation"
},
{
"name": "Context",
"filter": "TestContext",
"enabled": true,
"timeout": 600000,
"description": "Context tests - moderate complexity"
},
{
"name": "EPL-Database",
"filter": "TestEPLDatabase",
"enabled": true,
"timeout": 300000,
"description": "Database integration tests"
},
{
"name": "EPL-Dataflow",
"filter": "TestEPLDataflow",
"enabled": true,
"timeout": 600000,
"description": "Dataflow tests - some isolation issues"
},
{
"name": "EPL-FromClause",
"filter": "TestEPLFromClauseMethod",
"enabled": true,
"timeout": 300000,
"description": "FROM clause method tests"
},
{
"name": "EPL-Join",
"filter": "TestEPLJoin",
"enabled": true,
"timeout": 600000,
"description": "Join tests - complex queries"
},
{
"name": "EPL-Other",
"filter": "TestEPLOther",
"enabled": true,
"timeout": 600000,
"description": "Other EPL tests - large batch"
},
{
"name": "EPL-Subselect",
"filter": "TestEPLSubselect",
"enabled": true,
"timeout": 600000,
"description": "Subselect tests"
},
{
"name": "Event",
"filter": "TestEvent",
"enabled": true,
"timeout": 600000,
"description": "Event tests - includes 4 known XML XPath failures"
},
{
"name": "Expression",
"filter": "TestExpr",
"enabled": true,
"timeout": 600000,
"description": "Expression tests - large batch"
},
{
"name": "Infrastructure",
"filter": "TestInfra",
"enabled": true,
"timeout": 600000,
"description": "Infrastructure tests - tables, named windows"
},
{
"name": "Multithread",
"filter": "TestMultithreaded",
"enabled": true,
"timeout": 300000,
"description": "Multithreaded tests - may have timing issues"
},
{
"name": "Pattern",
"filter": "TestPattern",
"enabled": true,
"timeout": 600000,
"description": "Pattern tests - includes 2 intermittent failures"
},
{
"name": "ResultSet",
"filter": "TestResultSet",
"enabled": true,
"timeout": 600000,
"description": "Result set tests"
},
{
"name": "RowRecognition",
"filter": "TestRowRecog",
"enabled": true,
"timeout": 600000,
"description": "Row recognition tests - includes 1 intermittent failure"
},
{
"name": "View",
"filter": "TestView",
"enabled": true,
"timeout": 600000,
"description": "View tests"
}
],
"isolatedTests": {
"description": "Tests that should run in isolation due to state pollution",
"tests": [
{
"name": "WithParameterInjectionCallback-Isolated",
"filter": "FullyQualifiedName~WithParameterInjectionCallback",
"enabled": false,
"timeout": 120000,
"reason": "Fails when run with other dataflow tests due to static state pollution"
},
{
"name": "WithSingleMaxSimple-Isolated",
"filter": "FullyQualifiedName~WithSingleMaxSimple",
"enabled": false,
"timeout": 120000,
"reason": "Intermittent deployment name issue"
},
{
"name": "WithSinglePermFalseAndQuit-Isolated",
"filter": "FullyQualifiedName~WithSinglePermFalseAndQuit",
"enabled": false,
"timeout": 120000,
"reason": "Intermittent deployment name issue"
}
]
},
"knownFailures": {
"description": "Known failing tests - documented for reference",
"failures": [
{
"test": "TestEventXMLSchemaEventObservationDOM.WithCreateSchema",
"reason": "XPath property 'mytags[1].ID' assertion failure",
"issue": "XML-001"
},
{
"test": "TestEventXMLSchemaEventObservationDOM.WithPreconfig",
"reason": "XPath property 'mytags[1].ID' assertion failure",
"issue": "XML-001"
},
{
"test": "TestEventXMLSchemaEventObservationXPath.WithCreateSchema",
"reason": "XPath property 'mytags[1].ID' assertion failure",
"issue": "XML-001"
},
{
"test": "TestEventXMLSchemaEventObservationXPath.WithPreconfig",
"reason": "XPath property 'mytags[1].ID' assertion failure",
"issue": "XML-001"
}
]
}
}