From 69417e93c081422561db1e211b12f32e539010ce Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 26 Jan 2021 20:13:39 +0100 Subject: [PATCH] Added get runners by team test ref #125 --- src/tests/runners/runner_get.spec.ts | 96 +++++++++++++++++++++++----- 1 file changed, 80 insertions(+), 16 deletions(-) diff --git a/src/tests/runners/runner_get.spec.ts b/src/tests/runners/runner_get.spec.ts index 1b1390b..1b71abd 100644 --- a/src/tests/runners/runner_get.spec.ts +++ b/src/tests/runners/runner_get.spec.ts @@ -33,42 +33,106 @@ describe('GET /api/runners after adding', () => { let added_org_id; let added_runner; it('creating a new org with just a name should return 200', async () => { - const res1 = await axios.post(base + '/api/organizations', { + const res = await axios.post(base + '/api/organizations', { "name": "test123" }, axios_config); - let added_org = res1.data + let added_org = res.data added_org_id = added_org.id; - expect(res1.status).toEqual(200); - expect(res1.headers['content-type']).toContain("application/json") + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") }); it('creating a new runner with only needed params should return 200', async () => { - const res2 = await axios.post(base + '/api/runners', { + const res = await axios.post(base + '/api/runners', { "firstname": "first", "lastname": "last", "group": added_org_id }, axios_config); - added_runner = res2.data; - expect(res2.status).toEqual(200); - expect(res2.headers['content-type']).toContain("application/json") + added_runner = res.data; + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") }); it('explicit get should return 200', async () => { - const res3 = await axios.get(base + '/api/runners/' + added_runner.id, axios_config); - expect(res3.status).toEqual(200); - expect(res3.headers['content-type']).toContain("application/json") - let gotten_runner = res3.data + const res = await axios.get(base + '/api/runners/' + added_runner.id, axios_config); + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + let gotten_runner = res.data expect(gotten_runner).toEqual(added_runner); }); it('get from all runners should return 200', async () => { - const res4 = await axios.get(base + '/api/runners/', axios_config); - expect(res4.status).toEqual(200); - expect(res4.headers['content-type']).toContain("application/json") - let gotten_runners = res4.data + const res = await axios.get(base + '/api/runners/', axios_config); + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + let gotten_runners = res.data expect(gotten_runners).toContainEqual(added_runner); }); +}); +// --------------- +describe('GET /api/organizations/:id/runners after adding', () => { + let added_org_id; + let added_runner; + it('creating a new org with just a name should return 200', async () => { + const res = await axios.post(base + '/api/organizations', { + "name": "test123" + }, axios_config); + let added_org = res.data + added_org_id = added_org.id; + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + }); + it('creating a new runner with only needed params should return 200', async () => { + const res = await axios.post(base + '/api/runners', { + "firstname": "first", + "lastname": "last", + "group": added_org_id + }, axios_config); + added_runner = res.data; + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + }); it('check if scans was added via the orgs/runners endpoint.', async () => { const res = await axios.get(base + '/api/organizations/' + added_org_id + "/runners", axios_config); expect(res.status).toEqual(200); expect(res.headers['content-type']).toContain("application/json"); expect(res.data).toContainEqual(added_runner); }); +}); +// --------------- +describe('GET /api/teams/:id/runners after adding', () => { + let added_org_id; + let added_team; + let added_runner; + it('creating a new org with just a name should return 200', async () => { + const res = await axios.post(base + '/api/organizations', { + "name": "test123" + }, axios_config); + let added_org = res.data + added_org_id = added_org.id; + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + }); + it('creating a new team with a parent org should return 200', async () => { + const res = await axios.post(base + '/api/teams', { + "name": "test_team", + "parentGroup": added_org_id + }, axios_config); + added_team = res.data; + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + }); + it('creating a new runner with only needed params should return 200', async () => { + const res = await axios.post(base + '/api/runners', { + "firstname": "first", + "lastname": "last", + "group": added_team.id + }, axios_config); + added_runner = res.data; + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + }); + it('check if scans was added via the orgs/runners endpoint.', async () => { + const res = await axios.get(base + '/api/teams/' + added_team.id + "/runners", axios_config); + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json"); + expect(res.data).toContainEqual(added_runner); + }); }); \ No newline at end of file