Auth tokens back to simple strings as private key used for token refresh which not doing

This commit is contained in:
simojenki
2021-02-26 12:36:43 +11:00
parent 57cecad469
commit 0cb02707f1
5 changed files with 9 additions and 10 deletions

View File

@@ -18,7 +18,7 @@ describe("InMemoryLinkCodes", () => {
describe('when token is valid', () => {
it('should associate the token', () => {
const linkCode = linkCodes.mint();
const association = { authToken: { value: "token123", version: "22" }, nickname: "bob", userId: "1" };
const association = { authToken: "token123", nickname: "bob", userId: "1" };
linkCodes.associate(linkCode, association);
@@ -29,7 +29,7 @@ describe("InMemoryLinkCodes", () => {
describe('when token is valid', () => {
it('should throw an error', () => {
const invalidLinkCode = "invalidLinkCode";
const association = { authToken: { value: "token123", version: "33" }, nickname: "bob", userId: "1" };
const association = { authToken: "token456", nickname: "bob", userId: "1" };
expect(() => linkCodes.associate(invalidLinkCode, association)).toThrow(`Invalid linkCode ${invalidLinkCode}`)
});