diff --git a/src/tests/auth/auth_refresh.spec.ts b/src/tests/auth/auth_refresh.spec.ts new file mode 100644 index 0000000..02d2a02 --- /dev/null +++ b/src/tests/auth/auth_refresh.spec.ts @@ -0,0 +1,49 @@ +import axios from 'axios'; +import { config } from '../../config'; + +const base = "http://localhost:" + config.internal_port + +const axios_config = { + validateStatus: undefined +};; + +beforeAll(async () => { + const res_login = await axios.post(base + '/api/auth/login', { username: "demo", password: "demo" }); + await axios.post(base + '/api/users', { + "firstname": "demo_refresh", + "middlename": "demo_refresh", + "lastname": "demo_refresh", + "username": "demo_refresh", + "password": "demo_refresh" + }, { + headers: { "authorization": "Bearer " + res_login.data["access_token"] }, + validateStatus: undefined + }); +}); + +describe('POST /api/auth/refresh valid', () => { + it('valid refresh with token in cookie should return 200', async () => { + const res_login = await axios.post(base + '/api/auth/login', { username: "demo_refresh", password: "demo_refresh" }); + const res = await axios.post(base + '/api/auth/refresh', null, { + headers: { "Cookie": res_login.headers["set-cookie"] }, + validateStatus: undefined + }); + expect(res.status).toEqual(200); + }); + it('valid refresh with token in body should return 200', async () => { + const res_login = await axios.post(base + '/api/auth/login', { username: "demo_refresh", password: "demo_refresh" }); + const res = await axios.post(base + '/api/auth/refresh', { token: res_login.data["refresh_token"] }, axios_config); + expect(res.status).toEqual(200); + }); +}); +// --------------- +describe('POST /api/auth/refresh ivalid', () => { + it('invalid refresh without token should return 406', async () => { + const res = await axios.post(base + '/api/auth/refresh', null, axios_config); + expect(res.status).toEqual(406); + }); + it('invalid refresh with invalid token in body should return 401', async () => { + const res = await axios.post(base + '/api/auth/refresh', { token: "1" }, axios_config); + expect(res.status).toEqual(401); + }); +}); \ No newline at end of file