From 838728183df7d6e4ae993faa950455cac4b42e9d Mon Sep 17 00:00:00 2001 From: marc tobias Date: Mon, 26 Jun 2023 23:33:28 +0200 Subject: [PATCH] test-suite: remove httpbin HTTP calls, server is unreliable --- CHANGES.md | 2 +- src/lib/api_utils.js | 20 +++++++++----------- test/_bootstrap.js | 1 + test/api_errors.js | 6 ++---- 4 files changed, 13 insertions(+), 16 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f1e3834..7e0cc6f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,7 +2,7 @@ * version 3.2.13 - 2023-06-26 * Reverse map: show search position (red circle) also when no search results - * text-suite: replace httpbin with beeceptor for mocking HTTP error codes + * test-suite: remove httpbin HTTP calls, server is unreliable * NPM package updates (Bootstrap 5.3, Leaflet 1.9.4) * version 3.2.12 - 2023-04-04 diff --git a/src/lib/api_utils.js b/src/lib/api_utils.js index defaf25..3cbc0df 100644 --- a/src/lib/api_utils.js +++ b/src/lib/api_utils.js @@ -10,15 +10,7 @@ function api_request_progress(status) { export async function fetch_from_api(endpoint_name, params, callback) { var api_url = generate_nominatim_api_url(endpoint_name, params); - // For the test suite: - // If mock_http_status URL parameter is set we call an external webservice. First - // https://httpbin.org/#/Status_codes but we saw timeouts. Now beeceptor.com - // If that turns out unreliable or expensive (only 50/day free) we might have to - // start running a local webserver for the test suite - var tmp_params = new URLSearchParams(window.location.search); - if (tmp_params && tmp_params.get('mock_http_status')) { - api_url = 'https://nominatim-ui.free.beeceptor.com/status/' + parseInt(tmp_params.get('mock_http_status'), 10); - } + const mock_api_error = (new URLSearchParams(window.location.search)).get('mock_api_error'); api_request_progress('start'); if (endpoint_name !== 'status') last_api_request_url_store.set(null); @@ -26,7 +18,9 @@ export async function fetch_from_api(endpoint_name, params, callback) { try { await fetch(api_url, { headers: Nominatim_Config.Nominatim_API_Endpoint_Headers || {} }) .then(async (response) => { - if (!((response.status >= 200 && response.status < 300) || response.status === 404)) { + if ((!((response.status >= 200 && response.status < 300) || response.status === 404)) + || mock_api_error === 'fetch' + ) { error_store.set(`Error fetching data from ${api_url} (${response.statusText})`); return undefined; } @@ -35,7 +29,11 @@ export async function fetch_from_api(endpoint_name, params, callback) { // errors. var data; try { - data = await response.json(); + if (mock_api_error === 'parse') { + data = JSON.parse('{'); + } else { + data = await response.json(); + } } catch (err) { // e.g. 'JSON.parse: unexpected non-whitespace character after JSON data at line 1' error_store.set(`Error parsing JSON data from ${api_url} (${err})`); diff --git a/test/_bootstrap.js b/test/_bootstrap.js index ad7733a..f44e217 100644 --- a/test/_bootstrap.js +++ b/test/_bootstrap.js @@ -64,6 +64,7 @@ Nominatim_Config.Reverse_Only = ${reverse_only}; defaultViewport: { width: 1024, height: 768 }, timeout: 10000, // latency: 1000, + headless: 'new', args: [ '--user-agent=Nominatim UI test suite Mozilla/5.0 Gecko/20100101 HeadlessChrome/90.0' ] diff --git a/test/api_errors.js b/test/api_errors.js index 05b2b35..365126e 100644 --- a/test/api_errors.js +++ b/test/api_errors.js @@ -6,7 +6,7 @@ describe('Nominatim API errors', function () { describe('HTTP 503 - service unavailable', function () { before(async function () { page = await browser.newPage(); - await page.goto('http://localhost:9999/search.html?q=london&mock_http_status=503'); + await page.goto('http://localhost:9999/search.html?q=london&mock_api_error=fetch'); }); after(async function () { @@ -17,7 +17,6 @@ describe('Nominatim API errors', function () { await page.waitForSelector('#error'); let message = await page.$eval('#error', el => el.textContent); - assert.ok(message.includes('/status/503')); assert.ok(message.includes('Error fetching data from')); }); }); @@ -25,7 +24,7 @@ describe('Nominatim API errors', function () { describe('HTTP 200 - JSON parsing fails', function () { before(async function () { page = await browser.newPage(); - await page.goto('http://localhost:9999/search.html?q=london&mock_http_status=200'); + await page.goto('http://localhost:9999/search.html?q=london&mock_api_error=parse'); }); after(async function () { @@ -36,7 +35,6 @@ describe('Nominatim API errors', function () { await page.waitForSelector('#error'); let message = await page.$eval('#error', el => el.textContent); - assert.ok(message.includes('/status/200')); assert.ok(message.includes('Error parsing JSON data from')); }); }); -- 2.45.1