ref #6
This commit is contained in:
		@@ -2,6 +2,17 @@ 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 + updating name', () => {
 | 
			
		||||
    let added_org;
 | 
			
		||||
@@ -11,7 +22,7 @@ describe('adding + updating name', () => {
 | 
			
		||||
    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,7 +32,7 @@ describe('adding + updating name', () => {
 | 
			
		||||
        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);
 | 
			
		||||
@@ -33,7 +44,7 @@ describe('adding + updating name', () => {
 | 
			
		||||
            "name": "testlelele",
 | 
			
		||||
            "contact": null,
 | 
			
		||||
            "parentGroup": added_org
 | 
			
		||||
        });
 | 
			
		||||
        }, axios_config);
 | 
			
		||||
        expect(res3.status).toEqual(200);
 | 
			
		||||
        expect(res3.headers['content-type']).toContain("application/json")
 | 
			
		||||
        let updated_team = res3.data;
 | 
			
		||||
@@ -50,7 +61,7 @@ describe('adding + try updating id (should return 406)', () => {
 | 
			
		||||
    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);
 | 
			
		||||
@@ -60,7 +71,7 @@ describe('adding + try updating id (should return 406)', () => {
 | 
			
		||||
        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);
 | 
			
		||||
@@ -68,7 +79,7 @@ describe('adding + try updating id (should return 406)', () => {
 | 
			
		||||
    });
 | 
			
		||||
    it('update team', async () => {
 | 
			
		||||
        added_team.id = added_team.id + 1;
 | 
			
		||||
        const res3 = await axios.put(base + '/api/teams/' + added_team_id, added_team, { validateStatus: undefined });
 | 
			
		||||
        const res3 = await axios.put(base + '/api/teams/' + added_team_id, added_team, axios_config);
 | 
			
		||||
        expect(res3.status).toEqual(406);
 | 
			
		||||
        expect(res3.headers['content-type']).toContain("application/json")
 | 
			
		||||
    });
 | 
			
		||||
@@ -82,7 +93,7 @@ describe('add+update parent org (valid)', () => {
 | 
			
		||||
    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;
 | 
			
		||||
        expect(res1.status).toEqual(200);
 | 
			
		||||
        expect(res1.headers['content-type']).toContain("application/json")
 | 
			
		||||
@@ -91,7 +102,7 @@ describe('add+update parent org (valid)', () => {
 | 
			
		||||
        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);
 | 
			
		||||
@@ -100,14 +111,14 @@ describe('add+update parent org (valid)', () => {
 | 
			
		||||
    it('creating a new org with just a name should return 200', async () => {
 | 
			
		||||
        const res3 = await axios.post(base + '/api/organisations', {
 | 
			
		||||
            "name": "test123"
 | 
			
		||||
        });
 | 
			
		||||
        }, axios_config);
 | 
			
		||||
        added_org2 = res3.data;
 | 
			
		||||
        expect(res3.status).toEqual(200);
 | 
			
		||||
        expect(res3.headers['content-type']).toContain("application/json")
 | 
			
		||||
    });
 | 
			
		||||
    it('update team', async () => {
 | 
			
		||||
        added_team.parentGroup = added_org2;
 | 
			
		||||
        const res4 = await axios.put(base + '/api/teams/' + added_team_id, added_team, { validateStatus: undefined });
 | 
			
		||||
        const res4 = await axios.put(base + '/api/teams/' + added_team_id, added_team, axios_config);
 | 
			
		||||
        let updated_team = res4.data;
 | 
			
		||||
        expect(res4.status).toEqual(200);
 | 
			
		||||
        expect(res4.headers['content-type']).toContain("application/json")
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user