forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoidc-manager-test.js
More file actions
38 lines (30 loc) · 1.07 KB
/
oidc-manager-test.js
File metadata and controls
38 lines (30 loc) · 1.07 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
'use strict'
/* eslint-disable no-unused-expressions */
const chai = require('chai')
const expect = chai.expect
const path = require('path')
const OidcManager = require('../../lib/models/oidc-manager')
const SolidHost = require('../../lib/models/solid-host')
describe('OidcManager', () => {
describe('fromServerConfig()', () => {
it('should error if no serverUri is provided in argv', () => {
})
it('should result in an initialized oidc object', () => {
const serverUri = 'https://localhost:8443'
const host = SolidHost.from({ serverUri })
const dbPath = path.join(__dirname, '../resources/db')
const saltRounds = 5
const argv = {
host,
dbPath,
saltRounds
}
const oidc = OidcManager.fromServerConfig(argv)
expect(oidc.rs.defaults.query).to.be.true
expect(oidc.clients.store.backend.path.endsWith('db/rp/clients'))
expect(oidc.provider.issuer).to.equal(serverUri)
expect(oidc.users.backend.path.endsWith('db/users'))
expect(oidc.users.saltRounds).to.equal(saltRounds)
})
})
})