-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathutils.js
More file actions
73 lines (62 loc) · 1.78 KB
/
utils.js
File metadata and controls
73 lines (62 loc) · 1.78 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
var fs = require('fs')
var fsExtra = require('fs-extra')
var rimraf = require('rimraf')
var path = require('path')
const OIDCProvider = require('@trust/oidc-op')
const dns = require('dns')
const TEST_HOSTS = ['nic.localhost', 'tim.localhost', 'nicola.localhost']
exports.rm = function (file) {
return rimraf.sync(path.join(__dirname, '/resources/' + file))
}
exports.write = function (text, file) {
return fs.writeFileSync(path.join(__dirname, '/resources/' + file), text)
}
exports.cp = function (src, dest) {
return fsExtra.copySync(
path.join(__dirname, '/resources/' + src),
path.join(__dirname, '/resources/' + dest))
}
exports.read = function (file) {
return fs.readFileSync(path.join(__dirname, '/resources/' + file), {
'encoding': 'utf8'
})
}
// Backs up the given file
exports.backup = function (src) {
exports.cp(src, src + '.bak')
}
// Restores a backup of the given file
exports.restore = function (src) {
exports.cp(src + '.bak', src)
exports.rm(src + '.bak')
}
// Verifies that all HOSTS entries are present
exports.checkDnsSettings = function () {
return Promise.all(TEST_HOSTS.map(hostname => {
return new Promise((resolve, reject) => {
dns.lookup(hostname, (error, ip) => {
if (error || ip !== '127.0.0.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>}
*/
exports.loadProvider = function loadProvider (configPath) {
return Promise.resolve()
.then(() => {
const config = require(configPath)
const provider = new OIDCProvider(config)
return provider.initializeKeyChain(config.keys)
})
}