forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathonerror-test.ts
More file actions
93 lines (82 loc) · 2.12 KB
/
onerror-test.ts
File metadata and controls
93 lines (82 loc) · 2.12 KB
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
import { describe, it } from 'mocha';
import { expectJSON } from '../../__testUtils__/expectJSON.js';
import type { PromiseOrValue } from '../../jsutils/PromiseOrValue.js';
import { parse } from '../../language/parser.js';
import { buildSchema } from '../../utilities/buildASTSchema.js';
import { execute } from '../execute.js';
import type { ExecutionResult } from '../types.js';
const syncError = new Error('bar');
const throwingData = {
foo() {
throw syncError;
},
};
const schema = buildSchema(`
type Query {
foo : Int!
}
enum _ErrorAction { PROPAGATE, NULL }
directive @onError(action: _ErrorAction) on QUERY | MUTATION | SUBSCRIPTION
`);
function executeQuery(
query: string,
rootValue: unknown,
): PromiseOrValue<ExecutionResult> {
return execute({ schema, document: parse(query), rootValue });
}
describe('Execute: handles errors', () => {
it('with `@onError(action: NULL) returns null', async () => {
const query = `
query getFoo @onError(action: NULL) {
foo
}
`;
const result = await executeQuery(query, throwingData);
expectJSON(result).toDeepEqual({
data: { foo: null },
errors: [
{
message: 'bar',
path: ['foo'],
locations: [{ line: 3, column: 9 }],
},
],
});
});
it('with `@onError(action: PROPAGATE) propagates the error', async () => {
const query = `
query getFoo @onError(action: PROPAGATE) {
foo
}
`;
const result = await executeQuery(query, throwingData);
expectJSON(result).toDeepEqual({
data: null,
errors: [
{
message: 'bar',
path: ['foo'],
locations: [{ line: 3, column: 9 }],
},
],
});
});
it('by default propagates the error', async () => {
const query = `
query getFoo {
foo
}
`;
const result = await executeQuery(query, throwingData);
expectJSON(result).toDeepEqual({
data: null,
errors: [
{
message: 'bar',
path: ['foo'],
locations: [{ line: 3, column: 9 }],
},
],
});
});
});