Merge pull request 'new advanced endpoints feature/125-team_runner' (#126) from feature/125-team_runner into dev
Reviewed-on: #126
This commit is contained in:
commit
870fd47c83
@ -4,8 +4,10 @@ import { getConnectionManager, Repository } from 'typeorm';
|
|||||||
import { RunnerOrganizationHasRunnersError, RunnerOrganizationHasTeamsError, RunnerOrganizationIdsNotMatchingError, RunnerOrganizationNotFoundError } from '../errors/RunnerOrganizationErrors';
|
import { RunnerOrganizationHasRunnersError, RunnerOrganizationHasTeamsError, RunnerOrganizationIdsNotMatchingError, RunnerOrganizationNotFoundError } from '../errors/RunnerOrganizationErrors';
|
||||||
import { CreateRunnerOrganization } from '../models/actions/create/CreateRunnerOrganization';
|
import { CreateRunnerOrganization } from '../models/actions/create/CreateRunnerOrganization';
|
||||||
import { UpdateRunnerOrganization } from '../models/actions/update/UpdateRunnerOrganization';
|
import { UpdateRunnerOrganization } from '../models/actions/update/UpdateRunnerOrganization';
|
||||||
|
import { Runner } from '../models/entities/Runner';
|
||||||
import { RunnerOrganization } from '../models/entities/RunnerOrganization';
|
import { RunnerOrganization } from '../models/entities/RunnerOrganization';
|
||||||
import { ResponseEmpty } from '../models/responses/ResponseEmpty';
|
import { ResponseEmpty } from '../models/responses/ResponseEmpty';
|
||||||
|
import { ResponseRunner } from '../models/responses/ResponseRunner';
|
||||||
import { ResponseRunnerOrganization } from '../models/responses/ResponseRunnerOrganization';
|
import { ResponseRunnerOrganization } from '../models/responses/ResponseRunnerOrganization';
|
||||||
import { RunnerController } from './RunnerController';
|
import { RunnerController } from './RunnerController';
|
||||||
import { RunnerTeamController } from './RunnerTeamController';
|
import { RunnerTeamController } from './RunnerTeamController';
|
||||||
@ -48,6 +50,22 @@ export class RunnerOrganizationController {
|
|||||||
return new ResponseRunnerOrganization(runnerOrg);
|
return new ResponseRunnerOrganization(runnerOrg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Get('/:id/runners')
|
||||||
|
@Authorized(["RUNNER:GET", "SCAN:GET"])
|
||||||
|
@ResponseSchema(ResponseRunner, { isArray: true })
|
||||||
|
@ResponseSchema(RunnerOrganizationNotFoundError, { statusCode: 404 })
|
||||||
|
@OpenAPI({ description: 'Lists all runners from this org and it\'s teams (if you don\'t provide the ?onlyDirect=true param). <br> This includes the runner\'s group and distance ran.' })
|
||||||
|
async getRunners(@Param('id') id: number, @QueryParam('onlyDirect') onlyDirect: boolean) {
|
||||||
|
let responseRunners: ResponseRunner[] = new Array<ResponseRunner>();
|
||||||
|
let runners: Runner[];
|
||||||
|
if (!onlyDirect) { runners = (await this.runnerOrganizationRepository.findOne({ id: id }, { relations: ['runners', 'runners.group', 'runners.scans', 'runners.scans.track', 'teams', 'teams.runners', 'teams.runners.group', 'teams.runners.scans', 'teams.runners.scans.track'] })).allRunners; }
|
||||||
|
else { runners = (await this.runnerOrganizationRepository.findOne({ id: id }, { relations: ['runners', 'runners.group', 'runners.scans', 'runners.scans.track'] })).runners; }
|
||||||
|
runners.forEach(runner => {
|
||||||
|
responseRunners.push(new ResponseRunner(runner));
|
||||||
|
});
|
||||||
|
return responseRunners;
|
||||||
|
}
|
||||||
|
|
||||||
@Post()
|
@Post()
|
||||||
@Authorized("ORGANIZATION:CREATE")
|
@Authorized("ORGANIZATION:CREATE")
|
||||||
@ResponseSchema(ResponseRunnerOrganization)
|
@ResponseSchema(ResponseRunnerOrganization)
|
||||||
|
@ -6,6 +6,7 @@ import { CreateRunnerTeam } from '../models/actions/create/CreateRunnerTeam';
|
|||||||
import { UpdateRunnerTeam } from '../models/actions/update/UpdateRunnerTeam';
|
import { UpdateRunnerTeam } from '../models/actions/update/UpdateRunnerTeam';
|
||||||
import { RunnerTeam } from '../models/entities/RunnerTeam';
|
import { RunnerTeam } from '../models/entities/RunnerTeam';
|
||||||
import { ResponseEmpty } from '../models/responses/ResponseEmpty';
|
import { ResponseEmpty } from '../models/responses/ResponseEmpty';
|
||||||
|
import { ResponseRunner } from '../models/responses/ResponseRunner';
|
||||||
import { ResponseRunnerTeam } from '../models/responses/ResponseRunnerTeam';
|
import { ResponseRunnerTeam } from '../models/responses/ResponseRunnerTeam';
|
||||||
import { RunnerController } from './RunnerController';
|
import { RunnerController } from './RunnerController';
|
||||||
|
|
||||||
@ -47,6 +48,20 @@ export class RunnerTeamController {
|
|||||||
return new ResponseRunnerTeam(runnerTeam);
|
return new ResponseRunnerTeam(runnerTeam);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Get('/:id/runners')
|
||||||
|
@Authorized(["RUNNER:GET", "SCAN:GET"])
|
||||||
|
@ResponseSchema(ResponseRunner, { isArray: true })
|
||||||
|
@ResponseSchema(RunnerTeamNotFoundError, { statusCode: 404 })
|
||||||
|
@OpenAPI({ description: 'Lists all runners from this team. <br> This includes the runner\'s group and distance ran.' })
|
||||||
|
async getRunners(@Param('id') id: number) {
|
||||||
|
let responseRunners: ResponseRunner[] = new Array<ResponseRunner>();
|
||||||
|
const runners = (await this.runnerTeamRepository.findOne({ id: id }, { relations: ['runners', 'runners.group', 'runners.scans', 'runners.scans.track'] })).runners;
|
||||||
|
runners.forEach(runner => {
|
||||||
|
responseRunners.push(new ResponseRunner(runner));
|
||||||
|
});
|
||||||
|
return responseRunners;
|
||||||
|
}
|
||||||
|
|
||||||
@Post()
|
@Post()
|
||||||
@Authorized("TEAM:CREATE")
|
@Authorized("TEAM:CREATE")
|
||||||
@ResponseSchema(ResponseRunnerTeam)
|
@ResponseSchema(ResponseRunnerTeam)
|
||||||
|
@ -33,36 +33,106 @@ describe('GET /api/runners after adding', () => {
|
|||||||
let added_org_id;
|
let added_org_id;
|
||||||
let added_runner;
|
let added_runner;
|
||||||
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/organizations', {
|
const res = await axios.post(base + '/api/organizations', {
|
||||||
"name": "test123"
|
"name": "test123"
|
||||||
}, axios_config);
|
}, axios_config);
|
||||||
let added_org = res1.data
|
let added_org = res.data
|
||||||
added_org_id = added_org.id;
|
added_org_id = added_org.id;
|
||||||
expect(res1.status).toEqual(200);
|
expect(res.status).toEqual(200);
|
||||||
expect(res1.headers['content-type']).toContain("application/json")
|
expect(res.headers['content-type']).toContain("application/json")
|
||||||
});
|
});
|
||||||
it('creating a new runner with only needed params should return 200', async () => {
|
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",
|
"firstname": "first",
|
||||||
"lastname": "last",
|
"lastname": "last",
|
||||||
"group": added_org_id
|
"group": added_org_id
|
||||||
}, axios_config);
|
}, axios_config);
|
||||||
added_runner = res2.data;
|
added_runner = res.data;
|
||||||
expect(res2.status).toEqual(200);
|
expect(res.status).toEqual(200);
|
||||||
expect(res2.headers['content-type']).toContain("application/json")
|
expect(res.headers['content-type']).toContain("application/json")
|
||||||
});
|
});
|
||||||
it('explicit get should return 200', async () => {
|
it('explicit get should return 200', async () => {
|
||||||
const res3 = await axios.get(base + '/api/runners/' + added_runner.id, axios_config);
|
const res = await axios.get(base + '/api/runners/' + added_runner.id, axios_config);
|
||||||
expect(res3.status).toEqual(200);
|
expect(res.status).toEqual(200);
|
||||||
expect(res3.headers['content-type']).toContain("application/json")
|
expect(res.headers['content-type']).toContain("application/json")
|
||||||
let gotten_runner = res3.data
|
let gotten_runner = res.data
|
||||||
expect(gotten_runner).toEqual(added_runner);
|
expect(gotten_runner).toEqual(added_runner);
|
||||||
});
|
});
|
||||||
it('get from all runners should return 200', async () => {
|
it('get from all runners should return 200', async () => {
|
||||||
const res4 = await axios.get(base + '/api/runners/', axios_config);
|
const res = await axios.get(base + '/api/runners/', axios_config);
|
||||||
expect(res4.status).toEqual(200);
|
expect(res.status).toEqual(200);
|
||||||
expect(res4.headers['content-type']).toContain("application/json")
|
expect(res.headers['content-type']).toContain("application/json")
|
||||||
let gotten_runners = res4.data
|
let gotten_runners = res.data
|
||||||
expect(gotten_runners).toContainEqual(added_runner);
|
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);
|
||||||
|
});
|
||||||
|
});
|
Loading…
x
Reference in New Issue
Block a user