Skip to content

Commit 8bd6af2

Browse files
committed
tests: constructor options & schema
1 parent 95c5d85 commit 8bd6af2

File tree

5 files changed

+114
-7
lines changed

5 files changed

+114
-7
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ When reading docs, keep in mind that anything in `[]` is an optional prop.
2222
* `prefix`: optional, used in `redis` backend as key prefix
2323
* `args.encrypt`, used in `crypto.createCipher(algorithm, password)` when encoding long tokens:
2424
* `algorithm`: one of `openssl list-cipher-algorithms`, example: `aes192`
25-
* `password`: The password is used to derive the cipher key and initialization vector (IV).
25+
* `sharedSecret`: The password is used to derive the cipher key and initialization vector (IV).
2626
The value must be either a 'binary' encoded string or a Buffer.
2727

2828

@@ -37,7 +37,7 @@ const tokenManager = new TokenManager({
3737
},
3838
encrypt: {
3939
algorithm: 'aes256',
40-
password: Buffer.from('incredibly-long-secret'),
40+
sharedSecret: Buffer.from('incredibly-long-secret'),
4141
},
4242
});
4343
```

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@
3737
"eslint-config-airbnb-base": "^4.0.0",
3838
"eslint-plugin-import": "^1.10.2",
3939
"eslint-plugin-mocha": "^4.0.0",
40-
"ioredis": "^2.2.0"
40+
"ioredis": "^2.2.0",
41+
"mocha": "^2.5.3"
4142
},
4243
"dependencies": {
4344
"joi": "^8.4.2",

src/defaults.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
const Joi = require('joi');
2+
const pkg = require('../package.json');
23

34
const schema = Joi.object({
45
backend: {
56
name: Joi.string()
6-
.allow(['redis'])
7+
.only(['redis'])
78
.required(),
89

910
connection: Joi.alternatives()
@@ -14,21 +15,22 @@ const schema = Joi.object({
1415
return Joi.alternatives()
1516
.try(
1617
Joi.object().type(Redis),
17-
Joi.object.type(Redis.Cluster)
18+
Joi.object().type(Redis.Cluster)
1819
);
1920
}),
2021
})
2122
.required(),
2223

23-
prefix: Joi.string(),
24+
prefix: Joi.string()
25+
.default(`ms-token!${pkg.version}`),
2426
},
2527

2628
encrypt: {
2729

2830
algorithm: Joi.string()
2931
.required(),
3032

31-
password: Joi.binary()
33+
sharedSecret: Joi.binary()
3234
.encoding('utf8')
3335
.min(24)
3436
.required(),

test/unit.js

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
const assert = require('assert');
2+
const Redis = require('ioredis');
3+
const pkg = require('../package.json');
4+
5+
describe('TokenManager', () => {
6+
const TokenManager = require('../src');
7+
const redis = new Redis({ lazyConnect: true });
8+
9+
describe('#constructor()', () => {
10+
it('fails to init on invalid backend name', () => {
11+
const opts = {
12+
backend: {
13+
name: 'redis-boo',
14+
connection: redis,
15+
prefix: 'ok',
16+
},
17+
encryption: {
18+
algorithm: 'aes256',
19+
sharedSecret: '123456789012345678901234',
20+
},
21+
};
22+
23+
assert.throws(() => new TokenManager(opts), /\[1\] "name" must be one of \[redis\]/);
24+
});
25+
26+
describe('redis backend', () => {
27+
it('fails to init when connection has invalid constructor', () => {
28+
const opts = {
29+
backend: {
30+
name: 'redis',
31+
connection: {},
32+
},
33+
encryption: {
34+
algorithm: 'aes256',
35+
sharedSecret: '123456789012345678901234',
36+
},
37+
};
38+
39+
assert.throws(() => new TokenManager(opts), /"connection" must be an instance of "Redis"/);
40+
});
41+
42+
it('fails to init when connection has encryption is not specified', () => {
43+
const opts = {
44+
backend: {
45+
name: 'redis',
46+
connection: redis,
47+
},
48+
};
49+
50+
assert.throws(() => new TokenManager(opts), /"encrypt" is required/);
51+
});
52+
53+
it('throws when secret is too small', () => {
54+
const opts = {
55+
backend: {
56+
name: 'redis',
57+
connection: redis,
58+
},
59+
encrypt: {
60+
algorithm: 'aes256',
61+
sharedSecret: '0',
62+
},
63+
};
64+
65+
assert.throws(() => new TokenManager(opts), /"sharedSecret" must be at least 24 bytes/);
66+
});
67+
68+
it('initializes with correct configuration', () => {
69+
const opts = {
70+
backend: {
71+
name: 'redis',
72+
connection: redis,
73+
},
74+
encrypt: {
75+
algorithm: 'aes256',
76+
sharedSecret: '123456789012345678901234',
77+
},
78+
};
79+
80+
const tokenManager = new TokenManager(opts);
81+
82+
// check we have saved configuration
83+
assert.ok(tokenManager.config);
84+
85+
assert.equal(tokenManager.config.backend.name, 'redis');
86+
assert.equal(tokenManager.config.backend.connection, redis);
87+
assert.equal(tokenManager.config.backend.prefix, `ms-token!${pkg.version}`);
88+
});
89+
});
90+
});
91+
});

0 commit comments

Comments
 (0)