| 
									
										
										
										
											2017-01-19 22:48:23 +01:00
										 |  |  | #!/usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  | from  __future__ import print_function | 
					
						
							| 
									
										
										
										
											2014-03-08 11:31:38 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-29 08:41:17 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import subprocess | 
					
						
							|  |  |  | import re | 
					
						
							| 
									
										
										
										
											2017-01-19 22:48:23 +01:00
										 |  |  | import difflib | 
					
						
							| 
									
										
										
										
											2012-11-29 08:41:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  | import scriptCommon | 
					
						
							| 
									
										
										
										
											2013-04-24 18:58:57 +01:00
										 |  |  | from scriptCommon import catchPath | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  | rootPath = os.path.join(catchPath, 'projects/SelfTest/Baselines') | 
					
						
							| 
									
										
										
										
											2013-09-30 07:39:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-19 23:56:31 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | filelocParser = re.compile(r'''
 | 
					
						
							|  |  |  |     .*/ | 
					
						
							|  |  |  |     (.+\.[ch]pp)  # filename | 
					
						
							|  |  |  |     (?::|\()      # : is starting separator between filename and line number on Linux, ( on Windows | 
					
						
							|  |  |  |     ([0-9]*)      # line number | 
					
						
							|  |  |  |     \)?           # Windows also has an ending separator, ) | 
					
						
							|  |  |  | ''', re.VERBOSE)
 | 
					
						
							| 
									
										
										
										
											2017-01-19 15:15:06 +01:00
										 |  |  | lineNumberParser = re.compile(r' line="[0-9]*"') | 
					
						
							|  |  |  | hexParser = re.compile(r'\b(0[xX][0-9a-fA-F]+)\b') | 
					
						
							|  |  |  | durationsParser = re.compile(r' time="[0-9]*\.[0-9]*"') | 
					
						
							|  |  |  | timestampsParser = re.compile(r' timestamp="\d{4}-\d{2}-\d{2}T\d{2}\:\d{2}\:\d{2}Z"') | 
					
						
							|  |  |  | versionParser = re.compile(r'Catch v[0-9]+\.[0-9]+\.[0-9]+(-develop\.[0-9]+)?') | 
					
						
							|  |  |  | nullParser = re.compile(r'\b(__null|nullptr)\b') | 
					
						
							| 
									
										
										
										
											2017-01-19 23:56:31 +01:00
										 |  |  | exeNameParser = re.compile(r'''
 | 
					
						
							|  |  |  |     \b | 
					
						
							|  |  |  |     (CatchSelfTest|SelfTest)  # Expected executable name | 
					
						
							|  |  |  |     (?:.exe)?                 # Executable name contains .exe on Windows. | 
					
						
							|  |  |  |     \b | 
					
						
							|  |  |  | ''', re.VERBOSE)
 | 
					
						
							|  |  |  | # This is a hack until something more reasonable is figured out | 
					
						
							|  |  |  | specialCaseParser = re.compile(r'file\((\d+)\)') | 
					
						
							| 
									
										
										
										
											2012-11-29 08:41:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 19:58:04 +00:00
										 |  |  | if len(sys.argv) == 2: | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  |     cmdPath = sys.argv[1] | 
					
						
							| 
									
										
										
										
											2013-02-02 19:58:04 +00:00
										 |  |  | else: | 
					
						
							| 
									
										
										
										
											2017-01-19 22:08:51 +01:00
										 |  |  |     cmdPath = os.path.join(catchPath, scriptCommon.getBuildExecutable()) | 
					
						
							| 
									
										
										
										
											2012-11-29 08:41:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-27 19:01:14 +01:00
										 |  |  | overallResult = 0 | 
					
						
							| 
									
										
										
										
											2012-11-29 08:41:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-19 22:48:23 +01:00
										 |  |  | def diffFiles(fileA, fileB): | 
					
						
							|  |  |  |     with open(fileA, 'r') as file: | 
					
						
							|  |  |  |         aLines = file.readlines() | 
					
						
							|  |  |  |     with open(fileB, 'r') as file: | 
					
						
							|  |  |  |         bLines = file.readlines() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     shortenedFilenameA = fileA.rsplit(os.sep, 1)[-1] | 
					
						
							|  |  |  |     shortenedFilenameB = fileB.rsplit(os.sep, 1)[-1] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     diff = difflib.unified_diff(aLines, bLines, fromfile=shortenedFilenameA, tofile=shortenedFilenameB, n=0) | 
					
						
							|  |  |  |     return [line for line in diff if line[0] in ('+', '-')] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  | def filterLine(line): | 
					
						
							| 
									
										
										
										
											2017-01-19 23:56:31 +01:00
										 |  |  |     if catchPath in line: | 
					
						
							|  |  |  |         # make paths relative to Catch root | 
					
						
							|  |  |  |         line = line.replace(catchPath + os.sep, '') | 
					
						
							|  |  |  |         # go from \ in windows paths to / | 
					
						
							|  |  |  |         line = line.replace('\\', '/') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-19 15:15:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # strip source line numbers | 
					
						
							|  |  |  |     m = filelocParser.match(line) | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  |     if m: | 
					
						
							| 
									
										
										
										
											2017-01-19 15:15:06 +01:00
										 |  |  |         # note that this also strips directories, leaving only the filename | 
					
						
							|  |  |  |         filename, lnum = m.groups() | 
					
						
							| 
									
										
										
										
											2017-01-19 23:56:31 +01:00
										 |  |  |         lnum = ":<line number>" if lnum else "" | 
					
						
							| 
									
										
										
										
											2017-01-19 15:15:06 +01:00
										 |  |  |         line = filename + lnum + line[m.end():] | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2017-01-19 15:15:06 +01:00
										 |  |  |         line = lineNumberParser.sub(" ", line) | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-19 15:15:06 +01:00
										 |  |  |     # strip Catch version number | 
					
						
							|  |  |  |     line = versionParser.sub("<version>", line) | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-19 15:15:06 +01:00
										 |  |  |     # replace *null* with 0 | 
					
						
							|  |  |  |     line = nullParser.sub("0", line) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # strip executable name | 
					
						
							|  |  |  |     line = exeNameParser.sub("<exe-name>", line) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # strip hexadecimal numbers (presumably pointer values) | 
					
						
							|  |  |  |     line = hexParser.sub("0x<hex digits>", line) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # strip durations and timestamps | 
					
						
							|  |  |  |     line = durationsParser.sub(' time="{duration}"', line) | 
					
						
							|  |  |  |     line = timestampsParser.sub(' timestamp="{iso8601-timestamp}"', line) | 
					
						
							| 
									
										
										
										
											2017-01-19 23:56:31 +01:00
										 |  |  |     line = specialCaseParser.sub('file:\g<1>', line) | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  |     return line | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def approve(baseName, args): | 
					
						
							|  |  |  |     global overallResult | 
					
						
							|  |  |  |     args[0:0] = [cmdPath] | 
					
						
							|  |  |  |     if not os.path.exists(cmdPath): | 
					
						
							|  |  |  |         raise Exception("Executable doesn't exist at " + cmdPath) | 
					
						
							|  |  |  |     baselinesPath = os.path.join(rootPath, '{0}.approved.txt'.format(baseName)) | 
					
						
							|  |  |  |     rawResultsPath = os.path.join(rootPath, '_{0}.tmp'.format(baseName)) | 
					
						
							|  |  |  |     filteredResultsPath = os.path.join(rootPath, '{0}.unapproved.txt'.format(baseName)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     f = open(rawResultsPath, 'w') | 
					
						
							|  |  |  |     subprocess.call(args, stdout=f, stderr=f) | 
					
						
							|  |  |  |     f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rawFile = open(rawResultsPath, 'r') | 
					
						
							|  |  |  |     filteredFile = open(filteredResultsPath, 'w') | 
					
						
							|  |  |  |     for line in rawFile: | 
					
						
							|  |  |  |         filteredFile.write(filterLine(line).rstrip() + "\n") | 
					
						
							|  |  |  |     filteredFile.close() | 
					
						
							|  |  |  |     rawFile.close() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     os.remove(rawResultsPath) | 
					
						
							|  |  |  |     print() | 
					
						
							|  |  |  |     print(baseName + ":") | 
					
						
							|  |  |  |     if os.path.exists(baselinesPath): | 
					
						
							| 
									
										
										
										
											2017-01-19 22:48:23 +01:00
										 |  |  |         diffResult = diffFiles(baselinesPath, filteredResultsPath) | 
					
						
							|  |  |  |         if diffResult: | 
					
						
							|  |  |  |             print(''.join(diffResult)) | 
					
						
							|  |  |  |             print("  \n****************************\n  \033[91mResults differed") | 
					
						
							|  |  |  |             if len(diffResult) > overallResult: | 
					
						
							|  |  |  |                 overallResult = len(diffResult) | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  |             os.remove(filteredResultsPath) | 
					
						
							|  |  |  |             print("  \033[92mResults matched") | 
					
						
							|  |  |  |         print("\033[0m") | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         print("  first approval") | 
					
						
							|  |  |  |         if overallResult == 0: | 
					
						
							|  |  |  |             overallResult = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | print("Running approvals against executable:") | 
					
						
							|  |  |  | print("  " + cmdPath) | 
					
						
							| 
									
										
										
										
											2013-09-27 19:01:14 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Standard console reporter | 
					
						
							| 
									
										
										
										
											2017-01-23 17:47:58 +00:00
										 |  |  | approve("console.std", ["~[c++11]~[!nonportable]", "--order", "lex"]) | 
					
						
							| 
									
										
										
										
											2013-09-27 19:01:14 +01:00
										 |  |  | # console reporter, include passes, warn about No Assertions | 
					
						
							| 
									
										
										
										
											2017-01-23 17:47:58 +00:00
										 |  |  | approve("console.sw", ["~[c++11]~[!nonportable]", "-s", "-w", "NoAssertions", "--order", "lex"]) | 
					
						
							| 
									
										
										
										
											2013-09-27 19:01:14 +01:00
										 |  |  | # console reporter, include passes, warn about No Assertions, limit failures to first 4 | 
					
						
							| 
									
										
										
										
											2017-01-23 17:47:58 +00:00
										 |  |  | approve("console.swa4", ["~[c++11]~[!nonportable]", "-s", "-w", "NoAssertions", "-x", "4", "--order", "lex"]) | 
					
						
							| 
									
										
										
										
											2013-09-27 19:01:14 +01:00
										 |  |  | # junit reporter, include passes, warn about No Assertions | 
					
						
							| 
									
										
										
										
											2017-01-23 17:47:58 +00:00
										 |  |  | approve("junit.sw", ["~[c++11]~[!nonportable]", "-s", "-w", "NoAssertions", "-r", "junit", "--order", "lex"]) | 
					
						
							| 
									
										
										
										
											2013-09-27 19:01:14 +01:00
										 |  |  | # xml reporter, include passes, warn about No Assertions | 
					
						
							| 
									
										
										
										
											2017-01-23 17:47:58 +00:00
										 |  |  | approve("xml.sw", ["~[c++11]~[!nonportable]", "-s", "-w", "NoAssertions", "-r", "xml", "--order", "lex"]) | 
					
						
							| 
									
										
										
										
											2013-09-27 19:01:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-08 11:31:11 +01:00
										 |  |  | if overallResult != 0: | 
					
						
							| 
									
										
										
										
											2017-01-09 14:12:12 +00:00
										 |  |  |     print("If these differenecs are expected run approve.py to approve new baselines") | 
					
						
							|  |  |  | exit(overallResult) |