Added selfservice forgott positive tests
Some checks reported errors
continuous-integration/drone/pr Build was killed
Some checks reported errors
continuous-integration/drone/pr Build was killed
ref #154
This commit is contained in:
parent
d0a7e34de8
commit
bf1ec976e3
@ -14,7 +14,7 @@ beforeAll(async () => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('POST /api/runners/me/forgot invalid syntax/mail should return fail', () => {
|
describe('POST /api/runners/me/forgot invalid syntax/mail should fail', () => {
|
||||||
it('get without mail return 404', async () => {
|
it('get without mail return 404', async () => {
|
||||||
const res = await axios.post(base + '/api/runners/forgot', null, axios_config);
|
const res = await axios.post(base + '/api/runners/forgot', null, axios_config);
|
||||||
expect(res.status).toEqual(404);
|
expect(res.status).toEqual(404);
|
||||||
@ -26,7 +26,8 @@ describe('POST /api/runners/me/forgot invalid syntax/mail should return fail', (
|
|||||||
expect(res.headers['content-type']).toContain("application/json");
|
expect(res.headers['content-type']).toContain("application/json");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
describe('POST /api/runners/me/forgot 2 times within timeout should return fail', () => {
|
// ---------------
|
||||||
|
describe('POST /api/runners/me/forgot 2 times within timeout should fail', () => {
|
||||||
let added_runner;
|
let added_runner;
|
||||||
it('registering as citizen should return 200', async () => {
|
it('registering as citizen should return 200', async () => {
|
||||||
const res = await axios.post(base + '/api/runners/register', {
|
const res = await axios.post(base + '/api/runners/register', {
|
||||||
@ -44,9 +45,37 @@ describe('POST /api/runners/me/forgot 2 times within timeout should return fail'
|
|||||||
expect(res.status).toEqual(200);
|
expect(res.status).toEqual(200);
|
||||||
expect(res.headers['content-type']).toContain("application/json");
|
expect(res.headers['content-type']).toContain("application/json");
|
||||||
});
|
});
|
||||||
it('2nd post with valid mail should return 400', async () => {
|
it('2nd post with valid mail should return 406', async () => {
|
||||||
const res = await axios.post(base + '/api/runners/forgot?mail=' + added_runner.email, null, axios_config);
|
const res = await axios.post(base + '/api/runners/forgot?mail=' + added_runner.email, null, axios_config);
|
||||||
expect(res.status).toEqual(400);
|
expect(res.status).toEqual(406);
|
||||||
|
expect(res.headers['content-type']).toContain("application/json");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// ---------------
|
||||||
|
describe('POST /api/runners/me/forgot valid should return 200', () => {
|
||||||
|
let added_runner;
|
||||||
|
let new_token;
|
||||||
|
it('registering as citizen should return 200', async () => {
|
||||||
|
const res = await axios.post(base + '/api/runners/register', {
|
||||||
|
"firstname": "string",
|
||||||
|
"middlename": "string",
|
||||||
|
"lastname": "string",
|
||||||
|
"email": "citizen69@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");
|
||||||
|
new_token = res.data.token;
|
||||||
|
});
|
||||||
|
it('get infos with valid jwt should return 200', async () => {
|
||||||
|
const res = await axios.get(base + '/api/runners/me/' + new_token, axios_config);
|
||||||
|
expect(res.status).toEqual(200);
|
||||||
expect(res.headers['content-type']).toContain("application/json");
|
expect(res.headers['content-type']).toContain("application/json");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user