-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for private claims in the payload (#555)
This change adds tests for private claims added to the payload during sign and ensures that after verifying the payload contains the expected claim.
- Loading branch information
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
'use strict'; | ||
|
||
const expect = require('chai').expect; | ||
const util = require('util'); | ||
const testUtils = require('./test-utils'); | ||
|
||
function signWithPayload(payload, callback) { | ||
testUtils.signJWTHelper(payload, 'secret', {algorithm: 'none'}, callback); | ||
} | ||
|
||
describe('with a private claim', function() { | ||
[ | ||
true, | ||
false, | ||
null, | ||
-1, | ||
0, | ||
1, | ||
-1.1, | ||
1.1, | ||
'', | ||
'private claim', | ||
'UTF8 - José', | ||
[], | ||
['foo'], | ||
{}, | ||
{foo: 'bar'}, | ||
].forEach((privateClaim) => { | ||
it(`should sign and verify with claim of ${util.inspect(privateClaim)}`, function (done) { | ||
signWithPayload({privateClaim}, (e1, token) => { | ||
testUtils.verifyJWTHelper(token, undefined, {}, (e2, decoded) => { | ||
testUtils.asyncCheck(done, () => { | ||
expect(e1).to.be.null; | ||
expect(e2).to.be.null; | ||
expect(decoded).to.have.property('privateClaim').to.deep.equal(privateClaim); | ||
}); | ||
}) | ||
}); | ||
}); | ||
}); | ||
|
||
// these values JSON.stringify to null | ||
[ | ||
-Infinity, | ||
Infinity, | ||
NaN, | ||
].forEach((privateClaim) => { | ||
it(`should sign and verify with claim of ${util.inspect(privateClaim)}`, function (done) { | ||
signWithPayload({privateClaim}, (e1, token) => { | ||
testUtils.verifyJWTHelper(token, undefined, {}, (e2, decoded) => { | ||
testUtils.asyncCheck(done, () => { | ||
expect(e1).to.be.null; | ||
expect(e2).to.be.null; | ||
expect(decoded).to.have.property('privateClaim', null); | ||
}); | ||
}) | ||
}); | ||
}); | ||
}); | ||
|
||
// private claims with value undefined are not added to the payload | ||
it(`should sign and verify with claim of undefined`, function (done) { | ||
signWithPayload({privateClaim: undefined}, (e1, token) => { | ||
testUtils.verifyJWTHelper(token, undefined, {}, (e2, decoded) => { | ||
testUtils.asyncCheck(done, () => { | ||
expect(e1).to.be.null; | ||
expect(e2).to.be.null; | ||
expect(decoded).to.not.have.property('privateClaim'); | ||
}); | ||
}) | ||
}); | ||
}); | ||
}); |