Skip to content

Commit 8864542

Browse files
MitMaroziluvatar
authored andcommitted
Refactor tests related to kid and keyid (#545)
Thie change extracts the tests related to the kid header and the keyid option into a single file. Additonal tests were added that were missing.
1 parent 0906a3f commit 8864542

File tree

3 files changed

+97
-17
lines changed

3 files changed

+97
-17
lines changed

test/header-kid.test.js

+97
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
'use strict';
2+
3+
const jwt = require('../');
4+
const expect = require('chai').expect;
5+
const util = require('util');
6+
const testUtils = require('./test-utils');
7+
8+
function signWithKeyId(keyid, payload, callback) {
9+
const options = {algorithm: 'none'};
10+
if (keyid !== undefined) {
11+
options.keyid = keyid;
12+
}
13+
testUtils.signJWTHelper(payload, 'secret', options, callback);
14+
}
15+
16+
describe('keyid', function() {
17+
describe('`jwt.sign` "keyid" option validation', function () {
18+
[
19+
true,
20+
false,
21+
null,
22+
-1,
23+
0,
24+
1,
25+
-1.1,
26+
1.1,
27+
-Infinity,
28+
Infinity,
29+
NaN,
30+
[],
31+
['foo'],
32+
{},
33+
{foo: 'bar'},
34+
].forEach((keyid) => {
35+
it(`should error with with value ${util.inspect(keyid)}`, function (done) {
36+
signWithKeyId(keyid, {}, (err) => {
37+
testUtils.asyncCheck(done, () => {
38+
expect(err).to.be.instanceOf(Error);
39+
expect(err).to.have.property('message', '"keyid" must be a string');
40+
});
41+
});
42+
});
43+
});
44+
45+
// undefined needs special treatment because {} is not the same as {keyid: undefined}
46+
it('should error with with value undefined', function (done) {
47+
testUtils.signJWTHelper({}, undefined, {keyid: undefined, algorithm: 'none'}, (err) => {
48+
testUtils.asyncCheck(done, () => {
49+
expect(err).to.be.instanceOf(Error);
50+
expect(err).to.have.property('message', '"keyid" must be a string');
51+
});
52+
});
53+
});
54+
});
55+
56+
describe('when signing a token', function () {
57+
it('should not add "kid" header when "keyid" option not provided', function(done) {
58+
signWithKeyId(undefined, {}, (err, token) => {
59+
testUtils.asyncCheck(done, () => {
60+
const decoded = jwt.decode(token, {complete: true});
61+
expect(err).to.be.null;
62+
expect(decoded.header).to.not.have.property('kid');
63+
});
64+
});
65+
});
66+
67+
it('should add "kid" header when "keyid" option is provided and an object payload', function(done) {
68+
signWithKeyId('foo', {}, (err, token) => {
69+
testUtils.asyncCheck(done, () => {
70+
const decoded = jwt.decode(token, {complete: true});
71+
expect(err).to.be.null;
72+
expect(decoded.header).to.have.property('kid', 'foo');
73+
});
74+
});
75+
});
76+
77+
it('should add "kid" header when "keyid" option is provided and a Buffer payload', function(done) {
78+
signWithKeyId('foo', new Buffer('a Buffer payload'), (err, token) => {
79+
testUtils.asyncCheck(done, () => {
80+
const decoded = jwt.decode(token, {complete: true});
81+
expect(err).to.be.null;
82+
expect(decoded.header).to.have.property('kid', 'foo');
83+
});
84+
});
85+
});
86+
87+
it('should add "kid" header when "keyid" option is provided and a string payload', function(done) {
88+
signWithKeyId('foo', 'a string payload', (err, token) => {
89+
testUtils.asyncCheck(done, () => {
90+
const decoded = jwt.decode(token, {complete: true});
91+
expect(err).to.be.null;
92+
expect(decoded.header).to.have.property('kid', 'foo');
93+
});
94+
});
95+
});
96+
});
97+
});

test/keyid.tests.js

-9
This file was deleted.

test/schema.tests.js

-8
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,6 @@ describe('schema', function() {
5050
}).to.throw(/"noTimestamp" must be a boolean/);
5151
sign({noTimestamp: true});
5252
});
53-
54-
it('should validate keyid', function () {
55-
expect(function () {
56-
sign({ keyid: 10 });
57-
}).to.throw(/"keyid" must be a string/);
58-
sign({keyid: 'foo'});
59-
});
60-
6153
});
6254

6355
describe('sign payload registered claims', function() {

0 commit comments

Comments
 (0)