5554-renovar_token #1566

Merged
vicent merged 24 commits from 5554-renovar_token into dev 2023-06-20 12:38:47 +00:00
1 changed files with 0 additions and 28 deletions
Showing only changes of commit 2b34dd19e8 - Show all commits

View File

@ -1,28 +0,0 @@
const {models} = require('vn-loopback/server/server');
describe('VnUser renewToken()', () => {
describe('when credentials are correct', () => {
it('should not do anything', async() => {
const login = await models.VnUser.signIn('employee', 'nightmare');
const accessToken = await models.AccessToken.findById(login.token);
const ctx = {req: {accessToken: accessToken}};
const response = await models.VnUser.renewToken(ctx);
expect(response.data.message).toBe('Token is active');
});
it('should invalidate the current token and create a new one', async() => {
const login = await models.VnUser.signIn('employee', 'nightmare');
const accessToken = await models.AccessToken.findById(login.token);
const ctx = {req: {accessToken: accessToken}};
const sevenHoursBefore = new Date(Date.now() - (7 * 60 * 60 * 1000));
ctx.req.accessToken.created = sevenHoursBefore;
const renewToken = await models.VnUser.renewToken(ctx);
expect(renewToken.token).toBeDefined();
expect(renewToken.created).toBeDefined();
});
});
});