parent
71e5be2ba4
commit
6e316a7533
@ -6,42 +6,39 @@ const base = "http://localhost:" + config.internal_port
|
|||||||
describe('adding + deletion (successfull)', () => {
|
describe('adding + deletion (successfull)', () => {
|
||||||
let added_org_id
|
let added_org_id
|
||||||
let added_org
|
let added_org
|
||||||
describe('adding org', () => {
|
it('creating a new org with just a name should return 200', async () => {
|
||||||
it('creating a new org with just a name should return 200', async () => {
|
const res1 = await axios.post(base + '/api/organisations', {
|
||||||
const res1 = await axios.post(base + '/api/organisations', {
|
"name": "test123"
|
||||||
"name": "test123"
|
|
||||||
});
|
|
||||||
added_org = res1.data
|
|
||||||
added_org_id = added_org.id;
|
|
||||||
expect(res1.status).toEqual(200);
|
|
||||||
expect(res1.headers['content-type']).toContain("application/json")
|
|
||||||
});
|
});
|
||||||
it('delete', async () => {
|
added_org = res1.data
|
||||||
const res2 = await axios.delete(base + '/api/organisations/' + added_org_id);
|
added_org_id = added_org.id;
|
||||||
expect(res2.status).toEqual(200);
|
expect(res1.status).toEqual(200);
|
||||||
expect(res2.headers['content-type']).toContain("application/json")
|
expect(res1.headers['content-type']).toContain("application/json")
|
||||||
let added_org2 = res2.data
|
});
|
||||||
added_org_id = added_org2.id;
|
it('delete', async () => {
|
||||||
delete added_org2.id
|
const res2 = await axios.delete(base + '/api/organisations/' + added_org_id);
|
||||||
expect(added_org2).toEqual({
|
expect(res2.status).toEqual(200);
|
||||||
"name": "test123",
|
expect(res2.headers['content-type']).toContain("application/json")
|
||||||
"contact": null,
|
let added_org2 = res2.data
|
||||||
"address": null,
|
added_org_id = added_org2.id;
|
||||||
"teams": []
|
delete added_org2.id
|
||||||
});
|
expect(added_org2).toEqual({
|
||||||
});
|
"name": "test123",
|
||||||
it('check if org really was deleted', async () => {
|
"contact": null,
|
||||||
const res3 = await axios.get(base + '/api/organisations/' + added_org_id, { validateStatus: undefined });
|
"address": null,
|
||||||
expect(res3.status).toEqual(404);
|
"teams": []
|
||||||
expect(res3.headers['content-type']).toContain("application/json")
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
it('check if org really was deleted', async () => {
|
||||||
|
const res3 = await axios.get(base + '/api/organisations/' + added_org_id, { validateStatus: undefined });
|
||||||
|
expect(res3.status).toEqual(404);
|
||||||
|
expect(res3.headers['content-type']).toContain("application/json")
|
||||||
|
});
|
||||||
});
|
});
|
||||||
// ---------------
|
// ---------------
|
||||||
describe('adding + deletion (non-existant)', () => {
|
describe('adding + deletion (non-existant)', () => {
|
||||||
it('delete', async () => {
|
it('delete', async () => {
|
||||||
const res2 = await axios.delete(base + '/api/organisations/0', { validateStatus: undefined });
|
const res2 = await axios.delete(base + '/api/organisations/0', { validateStatus: undefined });
|
||||||
expect(res2.status).toEqual(204);
|
expect(res2.status).toEqual(204);
|
||||||
expect(res2.headers['content-type']).toContain("application/json")
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -52,29 +52,27 @@ describe('adding + getting from all orgs', () => {
|
|||||||
// ---------------
|
// ---------------
|
||||||
describe('adding + getting explicitly', () => {
|
describe('adding + getting explicitly', () => {
|
||||||
let added_org_id
|
let added_org_id
|
||||||
describe('adding + getting orgs', () => {
|
it('creating a new org with just a name should return 200', async () => {
|
||||||
it('creating a new org with just a name should return 200', async () => {
|
const res1 = await axios.post(base + '/api/organisations', {
|
||||||
const res1 = await axios.post(base + '/api/organisations', {
|
"name": "test123"
|
||||||
"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('check if org was added', async () => {
|
|
||||||
const res2 = await axios.get(base + '/api/organisations/' + added_org_id);
|
|
||||||
expect(res2.status).toEqual(200);
|
|
||||||
expect(res2.headers['content-type']).toContain("application/json")
|
|
||||||
let added_org2 = res2.data
|
|
||||||
added_org_id = added_org2.id;
|
|
||||||
delete added_org2.id
|
|
||||||
expect(added_org2).toEqual({
|
|
||||||
"name": "test123",
|
|
||||||
"contact": null,
|
|
||||||
"address": null,
|
|
||||||
"teams": []
|
|
||||||
})
|
|
||||||
});
|
});
|
||||||
|
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('check if org was added', async () => {
|
||||||
|
const res2 = await axios.get(base + '/api/organisations/' + added_org_id);
|
||||||
|
expect(res2.status).toEqual(200);
|
||||||
|
expect(res2.headers['content-type']).toContain("application/json")
|
||||||
|
let added_org2 = res2.data
|
||||||
|
added_org_id = added_org2.id;
|
||||||
|
delete added_org2.id
|
||||||
|
expect(added_org2).toEqual({
|
||||||
|
"name": "test123",
|
||||||
|
"contact": null,
|
||||||
|
"address": null,
|
||||||
|
"teams": []
|
||||||
|
})
|
||||||
});
|
});
|
||||||
});
|
});
|
@ -6,60 +6,56 @@ const base = "http://localhost:" + config.internal_port
|
|||||||
describe('adding + updating name', () => {
|
describe('adding + updating name', () => {
|
||||||
let added_org_id
|
let added_org_id
|
||||||
let added_org
|
let added_org
|
||||||
describe('adding org', () => {
|
it('creating a new org with just a name should return 200', async () => {
|
||||||
it('creating a new org with just a name should return 200', async () => {
|
const res1 = await axios.post(base + '/api/organisations', {
|
||||||
const res1 = await axios.post(base + '/api/organisations', {
|
"name": "test123"
|
||||||
"name": "test123"
|
|
||||||
});
|
|
||||||
added_org = res1.data
|
|
||||||
added_org_id = added_org.id;
|
|
||||||
expect(res1.status).toEqual(200);
|
|
||||||
expect(res1.headers['content-type']).toContain("application/json")
|
|
||||||
});
|
});
|
||||||
it('update org', async () => {
|
added_org = res1.data
|
||||||
const res2 = await axios.put(base + '/api/organisations/' + added_org_id, {
|
added_org_id = added_org.id;
|
||||||
"id": added_org_id,
|
expect(res1.status).toEqual(200);
|
||||||
"name": "testlelele",
|
expect(res1.headers['content-type']).toContain("application/json")
|
||||||
"contact": null,
|
});
|
||||||
"address": null,
|
it('update org', async () => {
|
||||||
});
|
const res2 = await axios.put(base + '/api/organisations/' + added_org_id, {
|
||||||
expect(res2.status).toEqual(200);
|
"id": added_org_id,
|
||||||
expect(res2.headers['content-type']).toContain("application/json")
|
"name": "testlelele",
|
||||||
let added_org2 = res2.data
|
"contact": null,
|
||||||
added_org_id = added_org2.id;
|
"address": null,
|
||||||
delete added_org2.id
|
|
||||||
expect(added_org2).toEqual({
|
|
||||||
"name": "testlelele",
|
|
||||||
"contact": null,
|
|
||||||
"address": null,
|
|
||||||
"teams": []
|
|
||||||
})
|
|
||||||
});
|
});
|
||||||
|
expect(res2.status).toEqual(200);
|
||||||
|
expect(res2.headers['content-type']).toContain("application/json")
|
||||||
|
let added_org2 = res2.data
|
||||||
|
added_org_id = added_org2.id;
|
||||||
|
delete added_org2.id
|
||||||
|
expect(added_org2).toEqual({
|
||||||
|
"name": "testlelele",
|
||||||
|
"contact": null,
|
||||||
|
"address": null,
|
||||||
|
"teams": []
|
||||||
|
})
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
// ---------------
|
// ---------------
|
||||||
describe('adding + try updating id (should return 406)', () => {
|
describe('adding + try updating id (should return 406)', () => {
|
||||||
let added_org_id
|
let added_org_id
|
||||||
let added_org
|
let added_org
|
||||||
describe('adding org', () => {
|
it('creating a new org with just a name should return 200', async () => {
|
||||||
it('creating a new org with just a name should return 200', async () => {
|
const res1 = await axios.post(base + '/api/organisations', {
|
||||||
const res1 = await axios.post(base + '/api/organisations', {
|
"name": "test123"
|
||||||
"name": "test123"
|
|
||||||
});
|
|
||||||
added_org = res1.data
|
|
||||||
added_org_id = added_org.id;
|
|
||||||
expect(res1.status).toEqual(200);
|
|
||||||
expect(res1.headers['content-type']).toContain("application/json")
|
|
||||||
});
|
|
||||||
it('update org', async () => {
|
|
||||||
const res2 = await axios.put(base + '/api/organisations/' + added_org_id, {
|
|
||||||
"id": added_org_id + 1,
|
|
||||||
"name": "testlelele",
|
|
||||||
"contact": null,
|
|
||||||
"address": null,
|
|
||||||
}, { validateStatus: undefined });
|
|
||||||
expect(res2.status).toEqual(406);
|
|
||||||
expect(res2.headers['content-type']).toContain("application/json")
|
|
||||||
});
|
});
|
||||||
|
added_org = res1.data
|
||||||
|
added_org_id = added_org.id;
|
||||||
|
expect(res1.status).toEqual(200);
|
||||||
|
expect(res1.headers['content-type']).toContain("application/json")
|
||||||
|
});
|
||||||
|
it('update org', async () => {
|
||||||
|
const res2 = await axios.put(base + '/api/organisations/' + added_org_id, {
|
||||||
|
"id": added_org_id + 1,
|
||||||
|
"name": "testlelele",
|
||||||
|
"contact": null,
|
||||||
|
"address": null,
|
||||||
|
}, { validateStatus: undefined });
|
||||||
|
expect(res2.status).toEqual(406);
|
||||||
|
expect(res2.headers['content-type']).toContain("application/json")
|
||||||
});
|
});
|
||||||
});
|
});
|
Loading…
x
Reference in New Issue
Block a user