From d0a7e34de8095fca282adefff01fa5f72e7cdba3 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Sat, 6 Mar 2021 14:08:39 +0100 Subject: [PATCH] Added all "negative" tests ref #154 --- .../selfservice/selfservice_forgotten.spec.ts | 34 +++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/src/tests/selfservice/selfservice_forgotten.spec.ts b/src/tests/selfservice/selfservice_forgotten.spec.ts index f148490..ef365cf 100644 --- a/src/tests/selfservice/selfservice_forgotten.spec.ts +++ b/src/tests/selfservice/selfservice_forgotten.spec.ts @@ -14,9 +14,39 @@ beforeAll(async () => { }; }); -describe('GET /api/runners/me/forgot invalid should return fail', () => { +describe('POST /api/runners/me/forgot invalid syntax/mail should return fail', () => { it('get without mail return 404', async () => { - const res = await axios.get(base + '/api/runners/forgot', axios_config); + const res = await axios.post(base + '/api/runners/forgot', null, axios_config); expect(res.status).toEqual(404); expect(res.headers['content-type']).toContain("application/json"); }); + it('get without bs mail return 404', async () => { + const res = await axios.post(base + '/api/runners/forgot?mail=asdasdasdasdasd@tester.test.dev.lauf-fuer-kaya.de', null, axios_config); + expect(res.status).toEqual(404); + expect(res.headers['content-type']).toContain("application/json"); + }); +}); +describe('POST /api/runners/me/forgot 2 times within timeout should return fail', () => { + let added_runner; + it('registering as citizen should return 200', async () => { + const res = await axios.post(base + '/api/runners/register', { + "firstname": "string", + "middlename": "string", + "lastname": "string", + "email": "citizen420@dev.lauf-fuer-kaya.de" + }, axios_config); + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json"); + added_runner = res.data; + }); + it('post with valid mail should return 200', async () => { + const res = await axios.post(base + '/api/runners/forgot?mail=' + added_runner.email, null, axios_config); + expect(res.status).toEqual(200); + expect(res.headers['content-type']).toContain("application/json"); + }); + it('2nd post with valid mail should return 400', async () => { + const res = await axios.post(base + '/api/runners/forgot?mail=' + added_runner.email, null, axios_config); + expect(res.status).toEqual(400); + expect(res.headers['content-type']).toContain("application/json"); + }); +});