| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  | import TagSpec from "./Tag.spec"; | 
					
						
							|  |  |  | import ImageAttributionSpec from "./ImageAttribution.spec"; | 
					
						
							|  |  |  | import GeoOperationsSpec from "./GeoOperations.spec"; | 
					
						
							|  |  |  | import ThemeSpec from "./Theme.spec"; | 
					
						
							|  |  |  | import UtilsSpec from "./Utils.spec"; | 
					
						
							| 
									
										
										
										
											2021-06-28 18:06:54 +02:00
										 |  |  | import OsmObjectSpec from "./OsmObject.spec"; | 
					
						
							|  |  |  | import ScriptUtils from "../scripts/ScriptUtils"; | 
					
						
							| 
									
										
										
										
											2021-07-04 20:36:19 +02:00
										 |  |  | import UnitsSpec from "./Units.spec"; | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  | import RelationSplitHandlerSpec from "./RelationSplitHandler.spec"; | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  | import SplitActionSpec from "./SplitAction.spec"; | 
					
						
							|  |  |  | import {Utils} from "../Utils"; | 
					
						
							| 
									
										
										
										
											2021-09-30 04:13:23 +02:00
										 |  |  | import TileFreshnessCalculatorSpec from "./TileFreshnessCalculator.spec"; | 
					
						
							| 
									
										
										
										
											2021-10-03 01:38:57 +02:00
										 |  |  | import WikidataSpecTest from "./Wikidata.spec.test"; | 
					
						
							| 
									
										
										
										
											2021-06-28 18:06:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-28 18:06:54 +02:00
										 |  |  | ScriptUtils.fixUtils() | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  | const allTests = [ | 
					
						
							| 
									
										
										
										
											2021-06-28 18:06:54 +02:00
										 |  |  |     new OsmObjectSpec(), | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  |     new TagSpec(), | 
					
						
							|  |  |  |     new ImageAttributionSpec(), | 
					
						
							|  |  |  |     new GeoOperationsSpec(), | 
					
						
							|  |  |  |     new ThemeSpec(), | 
					
						
							| 
									
										
										
										
											2021-07-04 20:36:19 +02:00
										 |  |  |     new UtilsSpec(), | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  |     new UnitsSpec(), | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  |     new RelationSplitHandlerSpec(), | 
					
						
							| 
									
										
										
										
											2021-09-30 04:13:23 +02:00
										 |  |  |     new SplitActionSpec(), | 
					
						
							| 
									
										
										
										
											2021-10-03 01:38:57 +02:00
										 |  |  |     new TileFreshnessCalculatorSpec(), | 
					
						
							|  |  |  |     new WikidataSpecTest() | 
					
						
							| 
									
										
										
										
											2021-06-22 00:29:07 +02:00
										 |  |  | ] | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  | Utils.externalDownloadFunction = async (url) => { | 
					
						
							|  |  |  |     console.error("Fetching ", url, "blocked in tests, use Utils.injectJsonDownloadForTests") | 
					
						
							|  |  |  |     const data = await ScriptUtils.DownloadJSON(url) | 
					
						
							|  |  |  |     console.log("\n\n ----------- \nBLOCKED DATA\n Utils.injectJsonDownloadForTests(\n" + | 
					
						
							|  |  |  |         "       ", JSON.stringify(url),", \n", | 
					
						
							|  |  |  |         "       ", JSON.stringify(data), "\n    )\n------------------\n\n") | 
					
						
							|  |  |  |     throw "Detected internet access for URL " + url + ", please inject it with Utils.injectJsonDownloadForTests" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  | let args = [...process.argv] | 
					
						
							|  |  |  | args.splice(0, 2) | 
					
						
							|  |  |  | args = args.map(a => a.toLowerCase()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const allFailures: { testsuite: string, name: string, msg: string } [] = [] | 
					
						
							|  |  |  | let testsToRun = allTests | 
					
						
							|  |  |  | if (args.length > 0) { | 
					
						
							|  |  |  |     testsToRun = allTests.filter(t => args.indexOf(t.name) >= 0) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  | if (testsToRun.length == 0) { | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  |     throw "No tests found" | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  | for (let i = 0; i < testsToRun.length; i++) { | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  |     const test = testsToRun[i]; | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  |     console.log(" Running test", i, "/", allTests.length, test.name) | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  |     allFailures.push(...(test.Run() ?? [])) | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  |     console.log("OK!") | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  | } | 
					
						
							|  |  |  | if (allFailures.length > 0) { | 
					
						
							|  |  |  |     for (const failure of allFailures) { | 
					
						
							|  |  |  |         console.error("  !! " + failure.testsuite + "." + failure.name + " failed due to: " + failure.msg) | 
					
						
							| 
									
										
										
										
											2021-05-14 02:25:30 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-09-22 05:02:09 +02:00
										 |  |  |     throw "Some test failed" | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-09-22 16:07:56 +02:00
										 |  |  | console.log("All tests successful: ", testsToRun.map(t => t.name).join(", ")) |