Added auth to all tests
Some checks failed
continuous-integration/drone/pr Build is failing

ref #6
This commit is contained in:
2020-12-18 22:11:41 +01:00
parent d742ccd581
commit b19f18ada1
14 changed files with 259 additions and 94 deletions

View File

@@ -2,6 +2,18 @@ import axios from 'axios';
import { config } from '../../config';
const base = "http://localhost:" + config.internal_port
let access_token;
let axios_config;
beforeAll(async () => {
const res = await axios.post(base + '/api/auth/login', { username: "demo", password: "demo" });
access_token = res.data["access_token"];
axios_config = {
headers: { "authorization": "Bearer " + access_token },
validateStatus: undefined
};
});
// ---------------
describe('adding org', () => {
let added_org;
@@ -11,7 +23,7 @@ describe('adding org', () => {
it('creating a new org with just a name should return 200', async () => {
const res1 = await axios.post(base + '/api/organisations', {
"name": "test123"
});
}, axios_config);
added_org = res1.data;
added_org_id = added_org.id;
expect(res1.status).toEqual(200);
@@ -21,14 +33,14 @@ describe('adding org', () => {
const res2 = await axios.post(base + '/api/teams', {
"name": "test123",
"parentGroup": added_org_id
});
}, axios_config);
added_team = res2.data;
added_team_id = added_team.id;
expect(res2.status).toEqual(200);
expect(res2.headers['content-type']).toContain("application/json")
});
it('delete team', async () => {
const res2 = await axios.delete(base + '/api/teams/' + added_team_id);
const res2 = await axios.delete(base + '/api/teams/' + added_team_id, axios_config);
expect(res2.status).toEqual(200);
expect(res2.headers['content-type']).toContain("application/json")
let deleted_team = res2.data
@@ -40,7 +52,7 @@ describe('adding org', () => {
});
});
it('check if team really was deleted', async () => {
const res3 = await axios.get(base + '/api/teams/' + added_team_id, { validateStatus: undefined });
const res3 = await axios.get(base + '/api/teams/' + added_team_id, axios_config);
expect(res3.status).toEqual(404);
expect(res3.headers['content-type']).toContain("application/json")
});
@@ -48,7 +60,7 @@ describe('adding org', () => {
// ---------------
describe('adding + deletion (non-existant)', () => {
it('delete', async () => {
const res2 = await axios.delete(base + '/api/teams/0', { validateStatus: undefined });
const res2 = await axios.delete(base + '/api/teams/0', axios_config);
expect(res2.status).toEqual(204);
});
});