-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathindex.mjs
More file actions
167 lines (147 loc) · 4.91 KB
/
index.mjs
File metadata and controls
167 lines (147 loc) · 4.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
import fs from 'fs-extra'
import rimraf from 'rimraf'
import path from 'path'
import { fileURLToPath } from 'url'
import OIDCProvider from '@solid/oidc-op'
import dns from 'dns'
import ldnode from '../../index.mjs'
// import ldnode from '../index.mjs'
import supertest from 'supertest'
import https from 'https'
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
const TEST_HOSTS = ['nic.localhost', 'tim.localhost', 'nicola.localhost']
export function rm (file) {
return rimraf.sync(path.normalize(path.join(__dirname, '../resources/' + file)))
}
export function cleanDir (dirPath) {
fs.removeSync(path.normalize(path.join(dirPath, '.well-known/.acl')))
fs.removeSync(path.normalize(path.join(dirPath, '.acl')))
fs.removeSync(path.normalize(path.join(dirPath, 'favicon.ico')))
fs.removeSync(path.normalize(path.join(dirPath, 'favicon.ico.acl')))
fs.removeSync(path.normalize(path.join(dirPath, 'index.html')))
fs.removeSync(path.normalize(path.join(dirPath, 'index.html.acl')))
fs.removeSync(path.normalize(path.join(dirPath, 'robots.txt')))
fs.removeSync(path.normalize(path.join(dirPath, 'robots.txt.acl')))
}
export function write (text, file) {
return fs.writeFileSync(path.normalize(path.join(__dirname, '../resources/' + file)), text)
}
export function cp (src, dest) {
return fs.copySync(
path.normalize(path.join(__dirname, '../resources/' + src)),
path.normalize(path.join(__dirname, '../resources/' + dest)))
}
export function read (file) {
return fs.readFileSync(path.normalize(path.join(__dirname, '../resources/' + file)), {
encoding: 'utf8'
})
}
// Backs up the given file
export function backup (src) {
cp(src, src + '.bak')
}
// Restores a backup of the given file
export function restore (src) {
cp(src + '.bak', src)
rm(src + '.bak')
}
// Verifies that all HOSTS entries are present
export function checkDnsSettings () {
return Promise.all(TEST_HOSTS.map(hostname => {
return new Promise((resolve, reject) => {
dns.lookup(hostname, (error, ip) => {
if (error || (ip !== '127.0.0.1' && ip !== '::1')) {
reject(error)
} else {
resolve(true)
}
})
})
}))
.catch(() => {
throw new Error(`Expected HOSTS entries of 127.0.0.1 for ${TEST_HOSTS.join()}`)
})
}
/**
* @param configPath {string}
*
* @returns {Promise<Provider>}
*/
export function loadProvider (configPath) {
return Promise.resolve()
.then(async () => {
const { default: config } = await import(configPath)
const provider = new OIDCProvider(config)
return provider.initializeKeyChain(config.keys)
})
}
export { createServer }
function createServer (options) {
return ldnode.createServer(options)
}
export { setupSupertestServer }
function setupSupertestServer (options) {
const ldpServer = ldnode.createServer(options)
return supertest(ldpServer)
}
// Lightweight adapter to replace `request` with `node-fetch` in tests
// Supports signatures:
// - request(options, cb)
// - request(url, options, cb)
// And methods: get, post, put, patch, head, delete, del
function buildAgentFn (options = {}) {
const aOpts = options.agentOptions || {}
if (!aOpts || (!aOpts.cert && !aOpts.key)) {
return undefined
}
const httpsAgent = new https.Agent({
cert: aOpts.cert,
key: aOpts.key,
// Tests often run with NODE_TLS_REJECT_UNAUTHORIZED=0; mirror that here
rejectUnauthorized: false
})
return (parsedURL) => parsedURL.protocol === 'https:' ? httpsAgent : undefined
}
async function doFetch (method, url, options = {}, cb) {
try {
const headers = options.headers || {}
const body = options.body
const agent = buildAgentFn(options)
const res = await fetch(url, { method, headers, body, agent })
// Build a response object similar to `request`'s
const headersObj = {}
res.headers.forEach((value, key) => { headersObj[key] = value })
const response = {
statusCode: res.status,
statusMessage: res.statusText,
headers: headersObj
}
const hasBody = method !== 'HEAD'
const text = hasBody ? await res.text() : ''
cb(null, response, text)
} catch (err) {
cb(err)
}
}
function requestAdapter (arg1, arg2, arg3) {
let url, options, cb
if (typeof arg1 === 'string') {
url = arg1
options = arg2 || {}
cb = arg3
} else {
options = arg1 || {}
url = options.url
cb = arg2
}
const method = (options && options.method) || 'GET'
return doFetch(method, url, options, cb)
}
;['GET', 'POST', 'PUT', 'PATCH', 'HEAD', 'DELETE'].forEach(m => {
const name = m.toLowerCase()
requestAdapter[name] = (options, cb) => doFetch(m, options.url, options, cb)
})
// Alias
requestAdapter.del = requestAdapter.delete
export const httpRequest = requestAdapter