Skip to content

Commit dda5ccd

Browse files
committed
Remove node-fetch dependency
1 parent d85b82a commit dda5ccd

File tree

8 files changed

+11
-26
lines changed

8 files changed

+11
-26
lines changed

package.json

-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
"dependencies": {
1212
"liquidjs": "^10.9.2",
1313
"marked": "^15.0.0",
14-
"node-fetch": "3.1.1",
15-
"node-fetch-with-proxy": "^0.1.6",
1614
"npm": "^11.0.0"
1715
},
1816
"scripts": {

test-browser.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import * as display from './test-engine/lib/display.mjs'
1111
import baseTests from './tests/index.mjs'
1212

13-
runTests(baseTests, fetch, true)
13+
runTests(baseTests, true)
1414
.then(function() {
1515
let resultsTarget = document.getElementById('results')
1616
display.renderTestResults(baseTests, getResults(), testUUIDs, resultsTarget, true)

test-engine/cli.mjs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { runTests, getResults } from './client/runner.mjs'
22
import { determineTestResult } from './lib/results.mjs'
33
import { GREEN, NC } from './lib/defines.mjs'
4-
import fetch from 'node-fetch-with-proxy'
54
import tests from '../tests/index.mjs'
65

76
const baseUrl = process.env.npm_config_base || process.env.npm_package_config_base
@@ -27,7 +26,7 @@ if (testId !== '') {
2726
testsToRun = tests
2827
}
2928

30-
await runTests(testsToRun, fetch, false, baseUrl).catch(err => {
29+
await runTests(testsToRun, false, baseUrl).catch(err => {
3130
console.error(err)
3231
process.exit(1)
3332
})

test-engine/client/config.mjs

-11
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,7 @@
1-
export let fetch = null
21
export let useBrowserCache = false
32
export let baseUrl = ''
43
export const requestTimeout = 10 // seconds
54

6-
export function setFetch (call) {
7-
if (call !== undefined) {
8-
if ('bind' in call) {
9-
fetch = call.bind(fetch)
10-
} else {
11-
fetch = call
12-
}
13-
}
14-
}
15-
165
export function setUseBrowserCache (bool) {
176
if (bool !== undefined) useBrowserCache = bool
187
}

test-engine/client/fetching.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function init (idx, reqConfig, prevResp) {
1111
init.headers.push(['Cache-Control', 'nothing-to-see-here']) // ditto
1212
}
1313
if ('request_method' in reqConfig) init.method = reqConfig.request_method
14-
if ('request_headers' in reqConfig) init.headers = reqConfig.request_headers
14+
if ('request_headers' in reqConfig) init.headers = init.headers.concat(reqConfig.request_headers)
1515
if ('magic_ims' in reqConfig && reqConfig.magic_ims === true) {
1616
for (let i = 0; i < init.headers.length; i++) {
1717
const header = init.headers[i]

test-engine/client/runner.mjs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import * as config from './config.mjs'
22
import { makeTest, testResults } from './test.mjs'
33

4-
export async function runTests (tests, myFetch, browserCache, base, chunkSize = 50) {
5-
config.setFetch(myFetch)
4+
export async function runTests (tests, browserCache, base, chunkSize = 25) {
65
config.setBaseUrl(base)
76
config.setUseBrowserCache(browserCache)
87

test-engine/client/test.mjs

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export async function makeTest (test) {
3333
}, config.requestTimeout * 1000)
3434
init.signal = controller.signal
3535
if (test.dump === true) clientUtils.logRequest(url, init, reqNum)
36-
return config.fetch(url, init)
36+
return fetch(url, init)
3737
.then(response => {
3838
responses.push(response)
3939
return checkResponse(test, requests, idx, response)
@@ -61,6 +61,10 @@ export async function makeTest (test) {
6161
}
6262
}
6363

64+
function handleError (err) {
65+
console.error(`ERROR: ${uuid} ${err.name} ${err.message}`)
66+
}
67+
6468
return clientUtils.putTestConfig(uuid, requests)
6569
.catch(handleError)
6670
.then(runNextStep)
@@ -293,7 +297,3 @@ function checkServerRequests (requests, responses, serverState) {
293297
}
294298
}
295299
}
296-
297-
function handleError (err) {
298-
console.error(`ERROR: ${err}`)
299-
}

test-engine/client/utils.mjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export async function putTestConfig (uuid, requests) {
2929
headers: [['content-type', 'application/json']],
3030
body: JSON.stringify(requests)
3131
}
32-
return config.fetch(`${config.baseUrl}/config/${uuid}`, init)
32+
return fetch(`${config.baseUrl}/config/${uuid}`, init)
3333
.then(response => {
3434
if (response.status !== 201) {
3535
let headers = ''
@@ -44,7 +44,7 @@ export async function putTestConfig (uuid, requests) {
4444
}
4545

4646
export async function getServerState (uuid) {
47-
return config.fetch(`${config.baseUrl}/state/${uuid}`)
47+
return fetch(`${config.baseUrl}/state/${uuid}`)
4848
.then(response => {
4949
if (response.status === 200) {
5050
return response.text()

0 commit comments

Comments
 (0)