Skip to content

Commit 7cce427

Browse files
committed
feat: testrail v7 support (#15)
* fix: update packages * feat: update api to support testrail v7
1 parent 7072dea commit 7cce427

14 files changed

+6490
-1758
lines changed

jest.config.js jest.config.ts

File renamed without changes.

package-lock.json

+6,261-1,692
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+11-10
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,18 @@
3434
"node-fetch": "^2.6.1"
3535
},
3636
"devDependencies": {
37-
"@types/jest": "^26.0.23",
38-
"@types/node": "^15.12.2",
37+
"@types/jest": "^27.0.2",
38+
"@types/node": "^16.9.6",
3939
"@types/node-fetch": "^2.5.10",
40-
"@typescript-eslint/eslint-plugin": "^4.26.1",
41-
"@typescript-eslint/parser": "^4.26.1",
42-
"eslint": "^7.28.0",
40+
"@typescript-eslint/eslint-plugin": "^4.31.2",
41+
"@typescript-eslint/parser": "^4.31.2",
42+
"eslint": "^7.32.0",
4343
"eslint-config-prettier": "^8.3.0",
44-
"eslint-plugin-prettier": "^3.4.0",
45-
"jest": "^27.0.4",
46-
"prettier": "^2.3.1",
47-
"ts-jest": "^27.0.3",
48-
"typescript": "^4.3.2"
44+
"eslint-plugin-prettier": "^4.0.0",
45+
"jest": "^27.2.1",
46+
"prettier": "^2.4.1",
47+
"ts-jest": "^27.0.5",
48+
"ts-node": "^10.2.1",
49+
"typescript": "^4.4.3"
4950
}
5051
}

src/api.ts

+8
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ import qs from "querystring";
22
import fetch, { Response } from "node-fetch";
33

44
import {
5+
addAttachmentToCase,
56
addAttachmentToPlan,
67
addAttachmentToPlanEntry,
78
addAttachmentToResult,
9+
addAttachmentToRun,
810
delete_attachment,
911
get_attachment,
1012
get_attachments_for_case,
@@ -15,11 +17,13 @@ import {
1517
} from "./attachments";
1618
import {
1719
addCase,
20+
copyCasesToSection,
1821
deleteCase,
1922
deleteCases,
2023
getCase,
2124
getCases,
2225
getHistoryForCase,
26+
moveCasesToSection,
2327
updateCase,
2428
updateCases,
2529
} from "./cases";
@@ -213,9 +217,11 @@ export class TestRail {
213217
//#endregion
214218

215219
//#region Attachments
220+
addAttachmentToCase = addAttachmentToCase;
216221
addAttachmentToPlan = addAttachmentToPlan;
217222
addAttachmentToPlanEntry = addAttachmentToPlanEntry;
218223
addAttachmentToResult = addAttachmentToResult;
224+
addAttachmentToRun = addAttachmentToRun;
219225
get_attachments_for_case = get_attachments_for_case;
220226
get_attachments_for_plan = get_attachments_for_plan;
221227
get_attachments_for_plan_entry = get_attachments_for_plan_entry;
@@ -230,8 +236,10 @@ export class TestRail {
230236
getCases = getCases;
231237
getHistoryForCase = getHistoryForCase;
232238
addCase = addCase;
239+
copyCasesToSection = copyCasesToSection;
233240
updateCase = updateCase;
234241
updateCases = updateCases;
242+
moveCasesToSection = moveCasesToSection;
235243
deleteCase = deleteCase;
236244
deleteCases = deleteCases;
237245
//#endregion

src/attachments.ts

+83-12
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,30 @@ import FormData from "form-data";
33
import { RequestType } from "./interfaces";
44

55
import type { TestRail } from "./api";
6-
import type { Attachment, AddAttachmentResult } from "./interfaces";
6+
import type {
7+
AddAttachmentResult,
8+
Attachment,
9+
BulkFilters,
10+
BulkResult,
11+
} from "./interfaces";
12+
13+
export function addAttachmentToCase(
14+
this: TestRail,
15+
case_id: number,
16+
filePath: string
17+
) {
18+
const formData = new FormData();
19+
formData.append("attachment", fs.createReadStream(filePath));
20+
21+
return this.apiPost<AddAttachmentResult>(
22+
"add_attachment_to_case/" + case_id,
23+
formData,
24+
{
25+
headers: {},
26+
requestType: RequestType.Blob,
27+
}
28+
);
29+
}
730

831
export function addAttachmentToPlan(
932
this: TestRail,
@@ -63,30 +86,78 @@ export function addAttachmentToResult(
6386
);
6487
}
6588

66-
export function get_attachments_for_case(this: TestRail, case_id: number) {
67-
return this.apiGet<Attachment[]>("get_attachments_for_case/" + case_id);
89+
export function addAttachmentToRun(
90+
this: TestRail,
91+
run_id: number,
92+
filePath: string
93+
) {
94+
const formData = new FormData();
95+
formData.append("attachment", fs.createReadStream(filePath));
96+
97+
return this.apiPost<AddAttachmentResult>(
98+
"add_attachment_to_run/" + run_id,
99+
formData,
100+
{
101+
headers: {},
102+
requestType: RequestType.Blob,
103+
}
104+
);
105+
}
106+
107+
export function get_attachments_for_case(
108+
this: TestRail,
109+
case_id: number,
110+
queryVariables?: BulkFilters
111+
) {
112+
return this.apiGet<BulkResult<Attachment, "attachments">>(
113+
"get_attachments_for_case/" + case_id,
114+
{ queryVariables }
115+
);
68116
}
69117

70-
export function get_attachments_for_plan(this: TestRail, plan_id: number) {
71-
return this.apiGet<Attachment[]>("get_attachments_for_plan/" + plan_id);
118+
export function get_attachments_for_plan(
119+
this: TestRail,
120+
plan_id: number,
121+
queryVariables?: BulkFilters
122+
) {
123+
return this.apiGet<BulkResult<Attachment, "attachments">>(
124+
"get_attachments_for_plan/" + plan_id,
125+
{ queryVariables }
126+
);
72127
}
73128

74129
export function get_attachments_for_plan_entry(
75130
this: TestRail,
76131
plan_id: number,
77-
entry_id: number
132+
entry_id: number,
133+
queryVariables?: BulkFilters
78134
) {
79-
return this.apiGet<Attachment[]>(
80-
"get_attachments_for_plan_entry/" + plan_id + "/" + entry_id
135+
return this.apiGet<BulkResult<Attachment, "attachments">>(
136+
"get_attachments_for_plan_entry/" + plan_id + "/" + entry_id,
137+
{ queryVariables }
81138
);
82139
}
83140

84-
export function get_attachments_for_run(this: TestRail, run_id: number) {
85-
return this.apiGet<Attachment[]>("get_attachments_for_run/" + run_id);
141+
export function get_attachments_for_run(
142+
this: TestRail,
143+
run_id: number,
144+
queryVariables?: BulkFilters
145+
) {
146+
return this.apiGet<BulkResult<Attachment, "attachments">>(
147+
"get_attachments_for_run/" + run_id,
148+
{ queryVariables }
149+
);
86150
}
87151

88-
export function get_attachments_for_test(this: TestRail, test_id: number) {
89-
return this.apiGet<Attachment[]>("get_attachments_for_test/" + test_id);
152+
export function get_attachments_for_test(
153+
this: TestRail,
154+
test_id: number,
155+
queryVariables?: BulkFilters
156+
) {
157+
return this.apiGet<BulkResult<Attachment, "attachments">>(
158+
"get_attachments_for_test/" + test_id,
159+
{ queryVariables }
160+
);
90161
}
91162

92163
export function get_attachment(this: TestRail, attachment_id: number) {

src/cases.ts

+31-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { BulkFilters, BulkResult } from ".";
12
import type { TestRail } from "./api";
23
import type { Case, AddCase, CaseHistory } from "./interfaces";
34

@@ -27,13 +28,20 @@ export function getCases(
2728
updated_by?: number[];
2829
}
2930
) {
30-
return this.apiGet<Case[]>("get_cases/" + project_id, {
31+
return this.apiGet<BulkResult<Case, "cases">>("get_cases/" + project_id, {
3132
queryVariables,
3233
});
3334
}
3435

35-
export function getHistoryForCase(this: TestRail, case_id: number) {
36-
return this.apiGet<CaseHistory>("get_history_for_case/" + case_id);
36+
export function getHistoryForCase(
37+
this: TestRail,
38+
case_id: number,
39+
queryVariables?: BulkFilters
40+
) {
41+
return this.apiGet<BulkResult<CaseHistory, "history">>(
42+
"get_history_for_case/" + case_id,
43+
{ queryVariables }
44+
);
3745
}
3846

3947
export function addCase(
@@ -44,6 +52,16 @@ export function addCase(
4452
return this.apiPost<Case>("add_case/" + section_id, case_data);
4553
}
4654

55+
export function copyCasesToSection(
56+
this: TestRail,
57+
section_id: number,
58+
case_ids: number[]
59+
) {
60+
return this.apiPost("copy_cases_to_section/" + section_id, {
61+
case_ids,
62+
});
63+
}
64+
4765
export function updateCase(
4866
this: TestRail,
4967
case_id: number,
@@ -65,6 +83,16 @@ export function updateCases(
6583
});
6684
}
6785

86+
export function moveCasesToSection(
87+
this: TestRail,
88+
section_id: number,
89+
case_ids: number[]
90+
) {
91+
return this.apiPost("move_cases_to_section/" + section_id, {
92+
case_ids,
93+
});
94+
}
95+
6896
/**
6997
* Please Note: Deleting a test case cannot be undone and also permanently deletes all test results in active test runs (i.e. test runs that haven’t been closed (archived) yet).
7098
*/

src/interfaces.ts

+16-2
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,31 @@ export interface Context {
4949
project_ids: null;
5050
}
5151

52+
export type BulkResult<Type, PropertyName extends string> = {
53+
offset: number;
54+
limit: number;
55+
size: number;
56+
_link: {
57+
next: string | null;
58+
prev: string | null;
59+
};
60+
} & { [P in PropertyName]: Type[] };
61+
62+
export type BulkFilters = {
63+
limit?: number;
64+
offset?: number;
65+
};
66+
5267
//#region Attachments
5368
export interface Attachment {
5469
id: number;
5570
name: string;
56-
filename: string;
5771
size: number;
5872
created_on: number;
5973
project_id: number;
6074
case_id: number;
61-
test_change_id?: number;
6275
user_id: number;
76+
result_id: number;
6377
}
6478

6579
export interface AddAttachmentResult {

src/milestones.ts

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
import type { TestRail } from "./api";
2-
import type { Milestone, AddMilestone, UpdateMilestone } from "./interfaces";
2+
import type {
3+
BulkFilters,
4+
BulkResult,
5+
Milestone,
6+
AddMilestone,
7+
UpdateMilestone,
8+
} from "./interfaces";
39

410
export function getMilestone(this: TestRail, milestone_id: number) {
511
return this.apiGet<Milestone>("get_milestone/" + milestone_id);
@@ -8,14 +14,17 @@ export function getMilestone(this: TestRail, milestone_id: number) {
814
export function getMilestones(
915
this: TestRail,
1016
project_id: number,
11-
filters?: {
17+
filters?: BulkFilters & {
1218
is_completed?: 0 | 1;
1319
is_started?: 0 | 1;
1420
}
1521
) {
16-
return this.apiGet<Milestone[]>("get_milestones/" + project_id, {
17-
queryVariables: filters,
18-
});
22+
return this.apiGet<BulkResult<Milestone, "milestones">>(
23+
"get_milestones/" + project_id,
24+
{
25+
queryVariables: filters,
26+
}
27+
);
1928
}
2029

2130
export function addMilestone(

src/plans.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import type { TestRail } from "./api";
22
import type {
3+
BulkFilters,
4+
BulkResult,
35
Plan,
46
AddPlan,
57
PlanEntry,
@@ -15,17 +17,15 @@ export function getPlan(this: TestRail, plan_id: number) {
1517
export function getPlans(
1618
this: TestRail,
1719
project_id: number,
18-
filters?: {
20+
filters?: BulkFilters & {
1921
created_after?: number;
2022
created_before?: number;
2123
created_by?: number[];
2224
is_completed?: 0 | 1;
23-
limit?: number;
24-
offset?: number;
2525
milestone_id?: number[];
2626
}
2727
) {
28-
return this.apiGet<Plan[]>("get_plans/" + project_id, {
28+
return this.apiGet<BulkResult<Plan, "plans">>("get_plans/" + project_id, {
2929
queryVariables: filters,
3030
});
3131
}

src/projects.ts

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
import type { TestRail } from "./api";
2-
import type { Project, AddProject, UpdateProject } from "./interfaces";
2+
import type {
3+
BulkFilters,
4+
BulkResult,
5+
Project,
6+
AddProject,
7+
UpdateProject,
8+
} from "./interfaces";
39

410
export function getProject(this: TestRail, project_id: number) {
511
return this.apiGet<Project>("get_project/" + project_id);
612
}
713

814
export function getProjects(
915
this: TestRail,
10-
filters?: { is_completed?: 0 | 1 }
16+
filters?: BulkFilters & { is_completed?: 0 | 1 }
1117
) {
12-
return this.apiGet<Project[]>("get_projects", { queryVariables: filters });
18+
return this.apiGet<BulkResult<Project, "projects">>("get_projects", {
19+
queryVariables: filters,
20+
});
1321
}
1422

1523
export function addProject(this: TestRail, data: AddProject) {

0 commit comments

Comments
 (0)