From 49ac7be3671f5e322bd30b480f943f7464947718 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Thu, 10 Dec 2020 17:59:12 +0100 Subject: [PATCH] Moded runner get tests to a new file and added more of them ref #17 --- src/tests/runners/runner_add+get.spec.ts | 71 ++++------------ src/tests/runners/runner_add.spec.ts | 100 +++++++++++++++++++++++ 2 files changed, 114 insertions(+), 57 deletions(-) create mode 100644 src/tests/runners/runner_add.spec.ts diff --git a/src/tests/runners/runner_add+get.spec.ts b/src/tests/runners/runner_add+get.spec.ts index f92ef87..38f3508 100644 --- a/src/tests/runners/runner_add+get.spec.ts +++ b/src/tests/runners/runner_add+get.spec.ts @@ -18,55 +18,9 @@ describe('GET /api/runners/0', () => { }); }); // --------------- -describe('POST /api/runners with errors', () => { - it('creating a new runner without any parameters should return 400', async () => { - const res1 = await axios.post(base + '/api/runners', null, { validateStatus: undefined }); - expect(res1.status).toEqual(400); - expect(res1.headers['content-type']).toContain("application/json") - }); - it('creating a new runner without a group should return 400', async () => { - const res2 = await axios.post(base + '/api/runners', { - "firstname": "first", - "middlename": "middle", - "lastname": "last" - }, { validateStatus: undefined }); - expect(res2.status).toEqual(400); - expect(res2.headers['content-type']).toContain("application/json") - }); - it('creating a new runner with a invalid valid group should return 404', async () => { - const res2 = await axios.post(base + '/api/runners', { - "firstname": "first", - "middlename": "middle", - "lastname": "last", - "group": 0 - }, { validateStatus: undefined }); - expect(res2.status).toEqual(404); - expect(res2.headers['content-type']).toContain("application/json") - }); - it('creating a new runner without a invalid phone number should return 400', async () => { - const res2 = await axios.post(base + '/api/runners', { - "firstname": "first", - "middlename": "middle", - "lastname": "last", - "phone": "123" - }, { validateStatus: undefined }); - expect(res2.status).toEqual(400); - expect(res2.headers['content-type']).toContain("application/json") - }); - it('creating a new runner without a invalid mail address should return 400', async () => { - const res2 = await axios.post(base + '/api/runners', { - "firstname": "first", - "middlename": "middle", - "lastname": "last", - "email ": "123" - }, { validateStatus: undefined }); - expect(res2.status).toEqual(400); - expect(res2.headers['content-type']).toContain("application/json") - }); -}); -// --------------- -describe('POST /api/runners working', () => { +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/organisations', { "name": "test123" @@ -82,19 +36,22 @@ describe('POST /api/runners working', () => { "lastname": "last", "group": added_org_id }, { validateStatus: undefined }); + added_runner = res2.data; expect(res2.status).toEqual(200); expect(res2.headers['content-type']).toContain("application/json") }); - it('creating a new runner with all non-relationship optional params should return 200', async () => { - const res3 = await axios.post(base + '/api/runners', { - "firstname": "first", - "middlename": "middle", - "lastname": "last", - "email": "test@example.com", - "phone": "+4909123123456789", - "group": added_org_id - }, { validateStatus: undefined }); + it('explicit get should return 200', async () => { + const res3 = await axios.get(base + '/api/runners/' + added_runner.id, { validateStatus: undefined }); expect(res3.status).toEqual(200); expect(res3.headers['content-type']).toContain("application/json") + let gotten_runner = res3.data + expect(gotten_runner).toEqual(added_runner); + }); + it('get from all runners should return 200', async () => { + const res4 = await axios.get(base + '/api/runners/', { validateStatus: undefined }); + expect(res4.status).toEqual(200); + expect(res4.headers['content-type']).toContain("application/json") + let gotten_runner2 = res4.data[res4.data.length - 1] + expect(gotten_runner2).toEqual(added_runner); }); }); \ No newline at end of file diff --git a/src/tests/runners/runner_add.spec.ts b/src/tests/runners/runner_add.spec.ts new file mode 100644 index 0000000..f92ef87 --- /dev/null +++ b/src/tests/runners/runner_add.spec.ts @@ -0,0 +1,100 @@ +import axios from 'axios'; +import { config } from '../../config'; +const base = "http://localhost:" + config.internal_port + +describe('GET /api/runners', () => { + it('basic get should return 200', async () => { + const res = await axios.get(base + '/api/runners'); + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json") + }); +}); +// --------------- +describe('GET /api/runners/0', () => { + it('basic get should return 404', async () => { + const res = await axios.get(base + '/api/runners/0', { validateStatus: undefined }); + expect(res.status).toEqual(404); + expect(res.headers['content-type']).toContain("application/json") + }); +}); +// --------------- +describe('POST /api/runners with errors', () => { + it('creating a new runner without any parameters should return 400', async () => { + const res1 = await axios.post(base + '/api/runners', null, { validateStatus: undefined }); + expect(res1.status).toEqual(400); + expect(res1.headers['content-type']).toContain("application/json") + }); + it('creating a new runner without a group should return 400', async () => { + const res2 = await axios.post(base + '/api/runners', { + "firstname": "first", + "middlename": "middle", + "lastname": "last" + }, { validateStatus: undefined }); + expect(res2.status).toEqual(400); + expect(res2.headers['content-type']).toContain("application/json") + }); + it('creating a new runner with a invalid valid group should return 404', async () => { + const res2 = await axios.post(base + '/api/runners', { + "firstname": "first", + "middlename": "middle", + "lastname": "last", + "group": 0 + }, { validateStatus: undefined }); + expect(res2.status).toEqual(404); + expect(res2.headers['content-type']).toContain("application/json") + }); + it('creating a new runner without a invalid phone number should return 400', async () => { + const res2 = await axios.post(base + '/api/runners', { + "firstname": "first", + "middlename": "middle", + "lastname": "last", + "phone": "123" + }, { validateStatus: undefined }); + expect(res2.status).toEqual(400); + expect(res2.headers['content-type']).toContain("application/json") + }); + it('creating a new runner without a invalid mail address should return 400', async () => { + const res2 = await axios.post(base + '/api/runners', { + "firstname": "first", + "middlename": "middle", + "lastname": "last", + "email ": "123" + }, { validateStatus: undefined }); + expect(res2.status).toEqual(400); + expect(res2.headers['content-type']).toContain("application/json") + }); +}); +// --------------- +describe('POST /api/runners working', () => { + let added_org_id; + it('creating a new org with just a name should return 200', async () => { + const res1 = await axios.post(base + '/api/organisations', { + "name": "test123" + }); + let added_org = res1.data + added_org_id = added_org.id; + expect(res1.status).toEqual(200); + expect(res1.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', { + "firstname": "first", + "lastname": "last", + "group": added_org_id + }, { validateStatus: undefined }); + expect(res2.status).toEqual(200); + expect(res2.headers['content-type']).toContain("application/json") + }); + it('creating a new runner with all non-relationship optional params should return 200', async () => { + const res3 = await axios.post(base + '/api/runners', { + "firstname": "first", + "middlename": "middle", + "lastname": "last", + "email": "test@example.com", + "phone": "+4909123123456789", + "group": added_org_id + }, { validateStatus: undefined }); + expect(res3.status).toEqual(200); + expect(res3.headers['content-type']).toContain("application/json") + }); +}); \ No newline at end of file