-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathfindSchemaChanges-test.ts
180 lines (156 loc) · 4.11 KB
/
findSchemaChanges-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
import { expect } from 'chai';
import { describe, it } from 'mocha';
import { buildSchema } from '../buildASTSchema.js';
import { findSchemaChanges, SafeChangeType } from '../findSchemaChanges.js';
describe('findSchemaChanges', () => {
it('should detect if a type was added', () => {
const newSchema = buildSchema(`
type Type1
type Type2
`);
const oldSchema = buildSchema(`
type Type1
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
type: SafeChangeType.TYPE_ADDED,
description: 'Type2 was added.',
},
]);
});
it('should detect if a field was added', () => {
const oldSchema = buildSchema(`
type Query {
foo: String
}
`);
const newSchema = buildSchema(`
type Query {
foo: String
bar: String
}
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
type: SafeChangeType.FIELD_ADDED,
description: 'Field Query.bar was added.',
},
]);
});
it('should detect if a default value was added', () => {
const oldSchema = buildSchema(`
type Query {
foo(x: String): String
}
`);
const newSchema = buildSchema(`
type Query {
foo(x: String = "bar"): String
}
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
type: SafeChangeType.ARG_DEFAULT_VALUE_ADDED,
description: 'Query.foo(x:) added a defaultValue "bar".',
},
]);
});
it('should detect if an arg value changes safely', () => {
const oldSchema = buildSchema(`
type Query {
foo(x: String!): String
}
`);
const newSchema = buildSchema(`
type Query {
foo(x: String): String
}
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
type: SafeChangeType.ARG_CHANGED_KIND_SAFE,
description:
'Argument Query.foo(x:) has changed type from String! to String.',
},
]);
});
it('should detect if a directive was added', () => {
const oldSchema = buildSchema(`
type Query {
foo: String
}
`);
const newSchema = buildSchema(`
directive @Foo on FIELD_DEFINITION
type Query {
foo: String
}
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
description: 'Directive @Foo was added.',
type: SafeChangeType.DIRECTIVE_ADDED,
},
]);
});
it('should detect if a directive becomes repeatable', () => {
const oldSchema = buildSchema(`
directive @Foo on FIELD_DEFINITION
type Query {
foo: String
}
`);
const newSchema = buildSchema(`
directive @Foo repeatable on FIELD_DEFINITION
type Query {
foo: String
}
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
description: 'Repeatable flag was added to @Foo.',
type: SafeChangeType.DIRECTIVE_REPEATABLE_ADDED,
},
]);
});
it('should detect if a directive adds locations', () => {
const oldSchema = buildSchema(`
directive @Foo on FIELD_DEFINITION
type Query {
foo: String
}
`);
const newSchema = buildSchema(`
directive @Foo on FIELD_DEFINITION | QUERY
type Query {
foo: String
}
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
description: 'QUERY was added to @Foo.',
type: SafeChangeType.DIRECTIVE_LOCATION_ADDED,
},
]);
});
it('should detect if a directive arg gets added', () => {
const oldSchema = buildSchema(`
directive @Foo on FIELD_DEFINITION
type Query {
foo: String
}
`);
const newSchema = buildSchema(`
directive @Foo(arg1: String) on FIELD_DEFINITION
type Query {
foo: String
}
`);
expect(findSchemaChanges(oldSchema, newSchema)).to.deep.equal([
{
description: 'An optional argument @Foo(arg1:) was added.',
type: SafeChangeType.OPTIONAL_DIRECTIVE_ARG_ADDED,
},
]);
});
});