backend unit test for routes logout
This commit is contained in:
parent
09f244bc62
commit
7c36daf496
|
@ -85,7 +85,8 @@ module.exports = function(app) {
|
|||
});
|
||||
|
||||
app.get('/logout', function(req, res) {
|
||||
User.logout(req.accessToken.id,
|
||||
() => res.redirect('/'));
|
||||
User.logout(req.accessToken.id, () => {
|
||||
res.redirect('/');
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
|
@ -2,14 +2,18 @@ import app from '../../../server/server';
|
|||
import routes from '../routes';
|
||||
|
||||
describe('Auth routes', () => {
|
||||
let User = app.models.User;
|
||||
let loginFunction;
|
||||
let logoutFunction;
|
||||
let res;
|
||||
let req;
|
||||
|
||||
beforeEach(() => {
|
||||
spyOn(app, 'post');
|
||||
spyOn(app, 'get').and.callThrough();
|
||||
routes(app);
|
||||
loginFunction = app.post.calls.mostRecent().args[1];
|
||||
logoutFunction = app.get.calls.argsFor(2)[1];
|
||||
res = {};
|
||||
req = {body: {}};
|
||||
});
|
||||
|
@ -46,11 +50,22 @@ describe('Auth routes', () => {
|
|||
};
|
||||
loginFunction(req, res);
|
||||
});
|
||||
|
||||
it('should logout after login', done => {
|
||||
spyOn(User, 'logout').and.callThrough();
|
||||
req.accessToken = {id: 'testingTokenId'};
|
||||
logoutFunction(req, res);
|
||||
res.redirect = url => {
|
||||
expect(User.logout).toHaveBeenCalledWith('testingTokenId', jasmine.any(Function));
|
||||
expect(url).toBe('/');
|
||||
done();
|
||||
};
|
||||
});
|
||||
});
|
||||
|
||||
describe('when the user is incorrect', () => {
|
||||
it('should return a 401 unauthorized', done => {
|
||||
req.body.user = 'IDontExists';
|
||||
req.body.user = 'IDontExist';
|
||||
req.body.password = 'TotallyWrongPassword';
|
||||
res.status = status => {
|
||||
expect(status).toBe(401);
|
||||
|
|
|
@ -389,7 +389,6 @@ INSERT INTO `vn`.`client`(`id`,`name`,`fi`,`socialName`,`contact`,`street`,`city
|
|||
(9, 'Bruce Banner', '16104829E', 'Hulk', 'Black widow', 'Somewhere in New York', 'Silla', 46460, 1111111111, 222222222, 333333333, 1, 'BruceBanner@verdnatura.es', NULL, 0, 1234567890, 0, 1, 1, 300, 1, 1,NULL, 10, 5,CURDATE(), 1, 5, 1, 1, 1,'0000-00-00', 1, NULL, 1, 1, 1, 1, NULL, 0, 0, 4, 0, 1),
|
||||
(10, 'Jessica Jones', '58282869H', 'Jessica Jones', 'Luke Cage', 'NYCC 2015 Poster', 'Silla', 46460, 1111111111, 222222222, 333333333, 1, 'JessicaJones@verdnatura.es', NULL, 0, 1234567890, 0, 1, 1, 300, 1, 1,NULL, 10, 5,CURDATE(), 1, 5, 1, 1, 1,'0000-00-00', 1, NULL, 1, 1, 1, 1, NULL, 0, 0, 4, 0, 1);
|
||||
|
||||
|
||||
INSERT INTO `salix`.`Address`(`id`, `consignee`, `street`, `city`, `postcode`, `provinceFk`, `phone`, `mobile`, `isEnabled`, `isDefaultAddress`, `clientFk`, `defaultAgencyFk`, `longitude`, `latitude`, `isEqualizated`)
|
||||
VALUES
|
||||
(1, 'Bruce Wayne', 'The Bat cave', 'Silla', 46460, 1, NULL, NULL, 1, 1, 1, 2, NULL, NULL, 0),
|
||||
|
|
Loading…
Reference in New Issue