forked from MapComplete/MapComplete
		
	Fix tests, version bump
This commit is contained in:
		
							parent
							
								
									c14cbc9fe9
								
							
						
					
					
						commit
						db1dbc0f07
					
				
					 5 changed files with 14 additions and 14 deletions
				
			
		|  | @ -1,6 +1,6 @@ | ||||||
| { | { | ||||||
|   "name": "mapcomplete", |   "name": "mapcomplete", | ||||||
|   "version": "0.33.1", |   "version": "0.33.2", | ||||||
|   "repository": "https://github.com/pietervdvn/MapComplete", |   "repository": "https://github.com/pietervdvn/MapComplete", | ||||||
|   "description": "A small website to edit OSM easily", |   "description": "A small website to edit OSM easily", | ||||||
|   "bugs": "https://github.com/pietervdvn/MapComplete/issues", |   "bugs": "https://github.com/pietervdvn/MapComplete/issues", | ||||||
|  |  | ||||||
|  | @ -179,7 +179,7 @@ export class OsmConnection { | ||||||
|     /** |     /** | ||||||
|      * The backend host, without path or trailing '/' |      * The backend host, without path or trailing '/' | ||||||
|      * |      * | ||||||
|      * new OsmConnection().Backend() // => "https://api.openstreetmap.org"
 |      * new OsmConnection().Backend() // => "https://www.openstreetmap.org"
 | ||||||
|      */ |      */ | ||||||
|     public Backend(): string { |     public Backend(): string { | ||||||
|         return this._oauth_config.url |         return this._oauth_config.url | ||||||
|  |  | ||||||
|  | @ -21,7 +21,7 @@ const latestTags = { | ||||||
|     "public_bookcase:type": "reading_box", |     "public_bookcase:type": "reading_box", | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| Utils.injectJsonDownloadForTests("https://api.openstreetmap.org/api/0.6/node/5568693115", { | Utils.injectJsonDownloadForTests("https://www.openstreetmap.org/api/0.6/node/5568693115", { | ||||||
|     version: "0.6", |     version: "0.6", | ||||||
|     generator: "CGImap 0.8.5 (1815943 spike-06.openstreetmap.org)", |     generator: "CGImap 0.8.5 (1815943 spike-06.openstreetmap.org)", | ||||||
|     copyright: "OpenStreetMap and contributors", |     copyright: "OpenStreetMap and contributors", | ||||||
|  |  | ||||||
|  | @ -327,7 +327,7 @@ describe("ReplaceGeometryAction", () => { | ||||||
|     const wayId = "way/160909312" |     const wayId = "way/160909312" | ||||||
| 
 | 
 | ||||||
|     Utils.injectJsonDownloadForTests( |     Utils.injectJsonDownloadForTests( | ||||||
|         "https://api.openstreetmap.org/api/0.6/map.json?bbox=3.2166673243045807,51.21467321525788,3.217007964849472,51.21482442824023", |         "https://www.openstreetmap.org/api/0.6/map.json?bbox=3.2166673243045807,51.21467321525788,3.217007964849472,51.21482442824023", | ||||||
|         { |         { | ||||||
|             version: "0.6", |             version: "0.6", | ||||||
|             generator: "CGImap 0.8.6 (1549677 spike-06.openstreetmap.org)", |             generator: "CGImap 0.8.6 (1549677 spike-06.openstreetmap.org)", | ||||||
|  | @ -715,7 +715,7 @@ describe("ReplaceGeometryAction", () => { | ||||||
|         } |         } | ||||||
|     ) |     ) | ||||||
| 
 | 
 | ||||||
|     Utils.injectJsonDownloadForTests("https://api.openstreetmap.org/api/0.6/way/160909312/full", { |     Utils.injectJsonDownloadForTests("https://www.openstreetmap.org/api/0.6/way/160909312/full", { | ||||||
|         version: "0.6", |         version: "0.6", | ||||||
|         generator: "CGImap 0.8.6 (2407324 spike-06.openstreetmap.org)", |         generator: "CGImap 0.8.6 (2407324 spike-06.openstreetmap.org)", | ||||||
|         copyright: "OpenStreetMap and contributors", |         copyright: "OpenStreetMap and contributors", | ||||||
|  | @ -880,7 +880,7 @@ describe("ReplaceGeometryAction", () => { | ||||||
|             [3.2166673243045807, 51.21467321525788], |             [3.2166673243045807, 51.21467321525788], | ||||||
|             [3.217007964849472, 51.21482442824023], |             [3.217007964849472, 51.21482442824023], | ||||||
|         ]) |         ]) | ||||||
|         const url = `https://api.openstreetmap.org/api/0.6/map.json?bbox=${bbox.minLon},${bbox.minLat},${bbox.maxLon},${bbox.maxLat}` |         const url = `https://www.openstreetmap.org/api/0.6/map.json?bbox=${bbox.minLon},${bbox.minLat},${bbox.maxLon},${bbox.maxLat}` | ||||||
|         const data = await Utils.downloadJson(url) |         const data = await Utils.downloadJson(url) | ||||||
|         const fullNodeDatabase = new FullNodeDatabaseSource() |         const fullNodeDatabase = new FullNodeDatabaseSource() | ||||||
|         fullNodeDatabase.handleOsmJson(data, 0, 0, 0) |         fullNodeDatabase.handleOsmJson(data, 0, 0, 0) | ||||||
|  |  | ||||||
|  | @ -9,7 +9,7 @@ describe("SplitAction", () => { | ||||||
|     { |     { | ||||||
|         // Setup of download
 |         // Setup of download
 | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/941079939/full", |             "https://www.openstreetmap.org/api/0.6/way/941079939/full", | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|                 generator: "CGImap 0.8.5 (957273 spike-08.openstreetmap.org)", |                 generator: "CGImap 0.8.5 (957273 spike-08.openstreetmap.org)", | ||||||
|  | @ -210,7 +210,7 @@ describe("SplitAction", () => { | ||||||
|         ) |         ) | ||||||
| 
 | 
 | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/941079939/relations", |             "https://www.openstreetmap.org/api/0.6/way/941079939/relations", | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|                 generator: "CGImap 0.8.5 (2419440 spike-07.openstreetmap.org)", |                 generator: "CGImap 0.8.5 (2419440 spike-07.openstreetmap.org)", | ||||||
|  | @ -222,7 +222,7 @@ describe("SplitAction", () => { | ||||||
|         ) |         ) | ||||||
| 
 | 
 | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/295132739/full", |             "https://www.openstreetmap.org/api/0.6/way/295132739/full", | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|                 generator: "CGImap 0.8.5 (3138407 spike-07.openstreetmap.org)", |                 generator: "CGImap 0.8.5 (3138407 spike-07.openstreetmap.org)", | ||||||
|  | @ -409,7 +409,7 @@ describe("SplitAction", () => { | ||||||
|             } |             } | ||||||
|         ) |         ) | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/295132739/relations", |             "https://www.openstreetmap.org/api/0.6/way/295132739/relations", | ||||||
|             // Mimick that there are no relations relation is missing
 |             // Mimick that there are no relations relation is missing
 | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|  | @ -422,7 +422,7 @@ describe("SplitAction", () => { | ||||||
|         ) |         ) | ||||||
| 
 | 
 | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/61435323/full", |             "https://www.openstreetmap.org/api/0.6/way/61435323/full", | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|                 generator: "CGImap 0.8.5 (53092 spike-08.openstreetmap.org)", |                 generator: "CGImap 0.8.5 (53092 spike-08.openstreetmap.org)", | ||||||
|  | @ -488,7 +488,7 @@ describe("SplitAction", () => { | ||||||
|             } |             } | ||||||
|         ) |         ) | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/61435323/relations", |             "https://www.openstreetmap.org/api/0.6/way/61435323/relations", | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|                 generator: "CGImap 0.8.5 (3622541 spike-06.openstreetmap.org)", |                 generator: "CGImap 0.8.5 (3622541 spike-06.openstreetmap.org)", | ||||||
|  | @ -2567,7 +2567,7 @@ describe("SplitAction", () => { | ||||||
|             } |             } | ||||||
|         ) |         ) | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/61435332/full", |             "https://www.openstreetmap.org/api/0.6/way/61435332/full", | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|                 generator: "CGImap 0.8.5 (3819319 spike-06.openstreetmap.org)", |                 generator: "CGImap 0.8.5 (3819319 spike-06.openstreetmap.org)", | ||||||
|  | @ -2620,7 +2620,7 @@ describe("SplitAction", () => { | ||||||
|             } |             } | ||||||
|         ) |         ) | ||||||
|         Utils.injectJsonDownloadForTests( |         Utils.injectJsonDownloadForTests( | ||||||
|             "https://api.openstreetmap.org/api/0.6/way/509668834/full", |             "https://www.openstreetmap.org/api/0.6/way/509668834/full", | ||||||
|             { |             { | ||||||
|                 version: "0.6", |                 version: "0.6", | ||||||
|                 generator: "CGImap 0.8.5 (3735280 spike-06.openstreetmap.org)", |                 generator: "CGImap 0.8.5 (3735280 spike-06.openstreetmap.org)", | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue