forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRequiredStatusOnFieldMatchesDefinitionRule-test.ts
More file actions
83 lines (74 loc) · 1.95 KB
/
RequiredStatusOnFieldMatchesDefinitionRule-test.ts
File metadata and controls
83 lines (74 loc) · 1.95 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
import { describe, it } from 'mocha';
import { buildSchema } from '../../utilities/buildASTSchema.js';
import { RequiredStatusOnFieldMatchesDefinitionRule } from '../rules/RequiredStatusOnFieldMatchesDefinitionRule.js';
import { expectValidationErrorsWithSchema } from './harness.js';
function expectErrors(queryStr: string) {
return expectValidationErrorsWithSchema(
testSchema,
RequiredStatusOnFieldMatchesDefinitionRule,
queryStr,
{ experimentalClientControlledNullability: true },
);
}
function expectValid(queryStr: string) {
expectErrors(queryStr).toDeepEqual([]);
}
const testSchema = buildSchema(`
type Lists {
nonList: Int
list: [Int]
requiredList: [Int]!
mixedThreeDList: [[[Int]]]
}
type Query {
lists: Lists
}
`);
describe('Validate: Field uses correct list depth', () => {
it('Fields are valid', () => {
expectValid(`
fragment listFragment on Lists {
list[!]
nonList!
nonList?
mixedThreeDList[[[!]!]!]!
requiredList[]
unmodifiedList: list
}
`);
});
it('reports errors when list depth is too high', () => {
expectErrors(`
fragment listFragment on Lists {
notAList: nonList[!]
list[[]]
}
`).toDeepEqual([
{
message: 'List nullability modifier is too deep.',
locations: [{ line: 3, column: 26 }],
},
{
message: 'List nullability modifier is too deep.',
locations: [{ line: 4, column: 13 }],
},
]);
});
it('reports errors when list depth is too low', () => {
expectErrors(`
fragment listFragment on Lists {
list!
mixedThreeDList[[]!]!
}
`).toDeepEqual([
{
message: 'List nullability modifier is too shallow.',
locations: [{ line: 3, column: 13 }],
},
{
message: 'List nullability modifier is too shallow.',
locations: [{ line: 4, column: 24 }],
},
]);
});
});