This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
evaluate_tests.py
291 lines (243 loc) · 14.5 KB
/
evaluate_tests.py
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
"""
Copyright 2018 IBM Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import json, sys, argparse, requests, os, time, datetime, re
import lxml.etree as LET
from wawCommons import setLoggerConfig, getScriptLogger, openFile
import logging
logger = getScriptLogger(__file__)
try:
basestring # Python 2
except NameError:
basestring = (str, ) # Python 3
def areSame(expectedOutputJson, receivedOutputJson, failureData, parentPath):
logger.info("ARE SAME: %s and %s", expectedOutputJson, receivedOutputJson)
if isinstance(expectedOutputJson, basestring):
if not isinstance(receivedOutputJson, basestring):
failureData['message'] = 'Received output differs in type from expected output.' + " (" + parentPath + ")"
failureData['expectedElement'] = "Element of the type string (" + expectedOutputJson + ")"
failureData['receivedElement'] = "Element of the type " + receivedOutputJson.__class__.__name__
logger.info("Different type: %s and %s", expectedOutputJson, receivedOutputJson)
return False
if expectedOutputJson != receivedOutputJson:
failureData['message'] = 'Received output differs from expected output.' + " (" + parentPath + ")"
failureData['expectedElement'] = expectedOutputJson
failureData['receivedElement'] = receivedOutputJson
logger.info("NOT SAME: %s and %s", expectedOutputJson, receivedOutputJson)
return False
else:
logger.info('SAME: basestring %s and %s are same', expectedOutputJson, receivedOutputJson)
return True
elif isinstance(expectedOutputJson, int):
if not isinstance(receivedOutputJson, int):
failureData['message'] = 'Received output differs in type from expected output.' + " (" + parentPath + ")"
failureData['expectedElement'] = "Element of the type int (" + str(expectedOutputJson) + ")"
failureData['receivedElement'] = "Element of the type " + receivedOutputJson.__class__.__name__
logger.info("Different type: %s and %s", expectedOutputJson, receivedOutputJson)
return False
if expectedOutputJson != receivedOutputJson:
failureData['message'] = 'Received output differs from expected output.' + " (" + parentPath + ")"
failureData['expectedElement'] = str(expectedOutputJson)
failureData['receivedElement'] = str(receivedOutputJson)
logger.info("NOT SAME: %s and %s", expectedOutputJson, receivedOutputJson)
return False
else:
logger.info('SAME: int %s and %s are same', expectedOutputJson, receivedOutputJson)
return True
elif isinstance(expectedOutputJson, list):
if not isinstance(receivedOutputJson, list):
failureData['message'] = 'Received output differs in type from expected output.' + " (" + parentPath + ")"
failureData['expectedElement'] = "Element of the type list"
failureData['receivedElement'] = "Element of the type " + receivedOutputJson.__class__.__name__
logger.info("Different type: %s and %s", expectedOutputJson, receivedOutputJson)
return False
if len(expectedOutputJson) != len(receivedOutputJson):
failureData['message'] = 'List in received output differs in length from list in expected output.' + " (" + parentPath + ")"
failureData['expectedElement'] = "List of the length " + str(len(expectedOutputJson))
failureData['receivedElement'] = "List of the length " + str(len(receivedOutputJson))
logger.error('Different list length!')
logger.error('expected %s', expectedOutputJson)
logger.error('received %s', receivedOutputJson)
return False
else:
for i in range(len(expectedOutputJson)):
logger.info("STEP: Item %d", i)
if not areSame(expectedOutputJson[i], receivedOutputJson[i], failureData, parentPath + " - " + str(i) + "th item in list"):
logger.error('Different list items in positon %d!', i)
return False
return True
elif isinstance(expectedOutputJson, dict):
if not isinstance(receivedOutputJson, dict):
failureData['message'] = 'Received output differs in type from expected output.' + " (" + parentPath + ")"
failureData['expectedElement'] = "Element of the type dict"
failureData['receivedElement'] = "Element of the type " + receivedOutputJson.__class__.__name__
logger.info("Different type: %s and %s", expectedOutputJson, receivedOutputJson)
return False
for elementKey in expectedOutputJson:
logger.info("STEP: Element key %s", elementKey)
if expectedOutputJson[elementKey] is None:
logger.info("NONE: Element with key %s is none", elementKey)
continue
if elementKey not in receivedOutputJson or receivedOutputJson[elementKey] is None:
failureData['message'] = 'Received output has no key ' + elementKey + '.' + " (" + parentPath + ")"
failureData['expectedElement'] = "Dict with key " + elementKey
failureData['receivedElement'] = "None"
logger.error('Missing key in received json!')
return False
else:
if not areSame(expectedOutputJson[elementKey], receivedOutputJson[elementKey], failureData, parentPath + " - " + elementKey):
logger.error('Different dict items for key %s!', elementKey)
return False
return True
else:
logger.error('Unsupported type of element %s, type %s!', str(expectedOutputJson), expectedOutputJson.__class__.__name__)
return False
def createLineFailureXML(failureData):
lineFailureXml = LET.Element('failure')
lineFailureXml.attrib['message'] = failureData['message']
# expected element
lineFailureExpectedXml = LET.Element('expected')
lineFailureXml.append(lineFailureExpectedXml)
lineFailureExpectedXml.text = failureData['expectedElement']
# received element
lineFailureReceivedXml = LET.Element('received')
lineFailureXml.append(lineFailureReceivedXml)
lineFailureReceivedXml.text = failureData['receivedElement']
return lineFailureXml
def main(argv):
parser = argparse.ArgumentParser(description='Compares all dialog flows from given files and generate xml report', formatter_class=argparse.ArgumentDefaultsHelpFormatter)
# positional arguments
parser.add_argument('expectedFileName', help='file with expected JSONs (One at each line at key \'output_message\')')
parser.add_argument('receivedFileName', help='file with received JSONs')
# optional arguments
parser.add_argument('-o','--output', required=False, help='name of generated xml file', default='test.junit.xml')
parser.add_argument('-v','--verbose', required=False, help='verbosity', action='store_true')
parser.add_argument('--log', type=str.upper, default=None, choices=list(logging._levelToName.values()))
parser.add_argument('-e','--exception_if_fail', required=False, help='script throws exception if any test fails', action='store_true')
args = parser.parse_args(argv)
if __name__ == '__main__':
setLoggerConfig(args.log, args.verbose)
testName = re.sub(r"\.[^\.]*$", "", os.path.basename(args.expectedFileName))
# expected JSON
with openFile(args.expectedFileName, "r") as expectedJsonFile:
# received JSON
with openFile(args.receivedFileName, "r") as receivedJsonFile:
# init whole test
nDialogs = 0
nDialogsFailed = 0
firstFailedLine = None
timeStart = time.time()
# XML (whole test)
outputXml = LET.Element('testsuites')
# print (whole test)
logger.info('--------------------------------------------------------------------------------')
logger.info('-- TEST: ' + testName)
logger.info('--------------------------------------------------------------------------------')
# XML (new dialouge)
dialogXml = LET.Element('testsuite')
outputXml.append(dialogXml)
expectedJsonLine = expectedJsonFile.readline()
receivedJsonLine = receivedJsonFile.readline()
line = 0
dialogId = 0
nTestsinDialog = 0
nFailuresInDialog = 0
timeDialogStart = time.time()
# for every line
while expectedJsonLine:
line += 1
if not receivedJsonLine: # no more received line
logger.error('Missing output JSON in file %s, line %d', args.receivedFileName, line)
sys.exit(1)
expectedData = json.loads(expectedJsonLine)
expectedJson = expectedData['output_message']
receivedJson = json.loads(receivedJsonLine)
if (dialogId == 0 or dialogId != expectedData['dialog_id']):
if nDialogs > 0:
# end previous dialog
logger.info('--------------------------------------------------------------------------------')
if nFailuresInDialog: # at least one failure in this dialog
logger.info('-- TEST RESULT: FAILED, TOTAL FAILURES: %d, LINE OF THE FIRST FAILURE: %d', nFailuresInDialog, firstFailedLine)
nDialogsFailed += 1
else:
logger.info('-- TEST RESULT: OK')
logger.info('--------------------------------------------------------------------------------')
# XML previous dialog
dialogXml.attrib['name'] = 'dialog ' + str(dialogId)
dialogXml.attrib['tests'] = str(nTestsinDialog)
dialogXml.attrib['failures'] = str(nFailuresInDialog)
dialogXml.attrib['time'] = str(time.time() - timeDialogStart)
# XML (new dialouge)
dialogXml = LET.Element('testsuite')
outputXml.append(dialogXml)
# init new dialog
nDialogs += 1
nTestsinDialog = 0
nFailuresInDialog = 0
timeDialogStart = time.time()
dialogId = expectedData['dialog_id']
nTestsinDialog += 1
timeLineStart = time.time()
checkMessagesTime = 0
failureData = {'expectedElement': "", 'receivedElement': ""}
# XML
lineXml = LET.Element('testcase')
dialogXml.append(lineXml)
lineXml.attrib['name'] = 'line ' + str(line)
lineXml.attrib['time'] = str(time.time() - timeLineStart)
if not areSame(expectedJson, receivedJson, failureData, "root"):
# line failure
lineXml.append(createLineFailureXML(failureData))
nFailuresInDialog += 1 # in this file
if firstFailedLine is None:
firstFailedLine = line
logger.info('EXPECTED OUTPUT: ' + json.dumps(expectedJson, indent=4, ensure_ascii=False))
logger.info('RECEIVED OUTPUT: ' + json.dumps(receivedJson, indent=4, ensure_ascii=False))
resultText = 'FAILED'
else:
resultText = 'OK'
logger.info(' LINE: %d, RESULT: %s, TIME: %.2f sec', line, resultText, checkMessagesTime)
expectedJsonLine = expectedJsonFile.readline()
receivedJsonLine = receivedJsonFile.readline()
# end for each line
# end previous dialog
logger.info('--------------------------------------------------------------------------------')
if nFailuresInDialog: # at least one failure in this dialog
logger.info('-- TEST RESULT: FAILED, TOTAL FAILURES: %d, LINE OF THE FIRST FAILURE: %d', nFailuresInDialog, firstFailedLine)
nDialogsFailed += 1
else:
logger.info('-- TEST RESULT: OK')
logger.info('--------------------------------------------------------------------------------')
# XML previous dialog
dialogXml.attrib['name'] = 'dialog ' + str(dialogId)
dialogXml.attrib['tests'] = str(nTestsinDialog)
dialogXml.attrib['failures'] = str(nFailuresInDialog)
dialogXml.attrib['time'] = str(time.time() - timeDialogStart)
if receivedJsonLine: logger.error('More than expected lines in file %s, line %d', args.receivedFileName, line)
# close files
logger.info('-------------------------------------------------------------------------------')
logger.info('--------------------------------------------------------------------------------')
if nDialogsFailed: logger.info('-- SUMMARY - DIALOUGES: %s, RESULT: FAILED, FAILED DIALOGS: %d', nDialogs, nDialogsFailed)
else: logger.info('-- SUMMARY - DIALOUGES: %s, RESULT: OK', nDialogs)
logger.info('--------------------------------------------------------------------------------')
outputXml.attrib['name'] = testName
outputXml.attrib['tests'] = str(nDialogs)
outputXml.attrib['failures'] = str(nDialogsFailed)
outputXml.attrib['timestamp'] = '{0:%Y-%b-%d %H:%M:%S}'.format(datetime.datetime.now())
outputXml.attrib['time'] = str(time.time() - timeStart)
with openFile(args.output, "w") as outputFile:
outputFile.write(LET.tostring(outputXml, pretty_print=True, encoding='unicode'))
#as last step of our script, we raise an exception in case user required such behavior and any test failure was detected
if args.exception_if_fail and nDialogsFailed:
raise NameError('FailedTestDetected')
if __name__ == '__main__':
main(sys.argv[1:])