-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy patherror.test.ts
191 lines (178 loc) · 4.47 KB
/
error.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import fetchMock from "fetch-mock";
import { graphql, GraphqlResponseError } from "../src";
describe("errors", () => {
it("Invalid query", () => {
const query = `{
viewer {
bioHtml
}
}`;
const mockResponse = {
data: null,
errors: [
{
locations: [
{
column: 5,
line: 3,
},
],
message: "Field 'bioHtml' doesn't exist on type 'User'",
},
],
};
return graphql(query, {
headers: {
authorization: `token secret123`,
},
request: {
fetch: fetchMock
.sandbox()
.post("https://api.github.com/graphql", mockResponse),
},
})
.then(() => {
throw new Error("Should not resolve");
})
.catch((error) => {
expect(error.message).toEqual(
"Request failed due to following response errors:\n" +
" - Field 'bioHtml' doesn't exist on type 'User'",
);
expect(JSON.stringify(error.errors)).toStrictEqual(
JSON.stringify(mockResponse.errors),
);
expect(error.request.query).toEqual(query);
});
});
it("Should be able check if an error is instance of a GraphQL response error", () => {
const query = `{
repository {
name
}
}`;
const mockResponse = {
data: null,
errors: [
{
locations: [
{
column: 5,
line: 3,
},
],
message: "Some error message",
},
],
};
return graphql(query, {
headers: {
authorization: `token secret123`,
},
request: {
fetch: fetchMock
.sandbox()
.post("https://api.github.com/graphql", mockResponse),
},
})
.then(() => {
throw new Error("Should not resolve");
})
.catch((error) => {
expect(error instanceof GraphqlResponseError).toBe(true);
});
});
it("Should throw an error for a partial response accompanied by errors", () => {
const query = `{
repository(name: "probot", owner: "probot") {
name
ref(qualifiedName: "master") {
target {
... on Commit {
history(first: 25, after: "invalid cursor") {
nodes {
message
}
}
}
}
}
}
}`;
const mockResponse = {
data: {
repository: {
name: "probot",
ref: null,
},
},
errors: [
{
locations: [
{
column: 11,
line: 7,
},
],
message: "`invalid cursor` does not appear to be a valid cursor.",
path: ["repository", "ref", "target", "history"],
type: "INVALID_CURSOR_ARGUMENTS",
},
],
};
return graphql(query, {
headers: {
authorization: `token secret123`,
},
request: {
fetch: fetchMock.sandbox().post("https://api.github.com/graphql", {
body: mockResponse,
headers: {
"x-github-request-id": "C5E6:259A:1351B40:2E88B87:5F1F9C41",
},
}),
},
})
.then(() => {
throw new Error("Should not resolve");
})
.catch((error) => {
expect(error.message).toEqual(
"Request failed due to following response errors:\n" +
" - `invalid cursor` does not appear to be a valid cursor.",
);
expect(JSON.stringify(error.errors)).toStrictEqual(
JSON.stringify(mockResponse.errors),
);
expect(error.request.query).toEqual(query);
expect(JSON.stringify(error.data)).toStrictEqual(
JSON.stringify(mockResponse.data),
);
expect(error.headers).toHaveProperty("x-github-request-id");
expect(error.headers["x-github-request-id"]).toEqual(
"C5E6:259A:1351B40:2E88B87:5F1F9C41",
);
});
});
it("Should throw for server error", () => {
const query = `{
viewer {
login
}
}`;
return graphql(query, {
headers: {
authorization: `token secret123`,
},
request: {
fetch: fetchMock.sandbox().post("https://api.github.com/graphql", 500),
},
})
.then(() => {
throw new Error("Should not resolve");
})
.catch((error) => {
expect(error.status).toEqual(500);
});
});
});