-
-
Notifications
You must be signed in to change notification settings - Fork 660
Expand file tree
/
Copy pathtest_inaccessible.py
More file actions
318 lines (235 loc) 路 7.12 KB
/
Copy pathtest_inaccessible.py
File metadata and controls
318 lines (235 loc) 路 7.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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
import textwrap
from enum import Enum
from typing import Annotated
import pytest
import strawberry
def test_field_inaccessible_printed_correctly():
@strawberry.federation.interface(inaccessible=True)
class AnInterface:
id: strawberry.ID
@strawberry.interface
class SomeInterface:
id: strawberry.ID
a_field: str = strawberry.federation.field(inaccessible=True)
@strawberry.federation.type(keys=["upc"], extend=True)
class Product(SomeInterface):
upc: str = strawberry.federation.field(external=True, inaccessible=True)
@strawberry.federation.input(inaccessible=True)
class AnInput:
id: strawberry.ID = strawberry.federation.field(inaccessible=True)
@strawberry.federation.type(inaccessible=True)
class AnInaccessibleType:
id: strawberry.ID
@strawberry.federation.type
class Query:
@strawberry.field
def top_products(
self,
first: Annotated[int, strawberry.federation.argument(inaccessible=True)],
) -> list[Product]: # pragma: no cover
return []
schema = strawberry.federation.Schema(
query=Query,
types=[AnInterface, AnInput, AnInaccessibleType],
)
expected = """
schema @link(url: "https://specs.apollo.dev/federation/v2.11", import: ["@external", "@inaccessible", "@key"]) {
query: Query
}
type AnInaccessibleType @inaccessible {
id: ID!
}
input AnInput @inaccessible {
id: ID! @inaccessible
}
interface AnInterface @inaccessible {
id: ID!
}
extend type Product implements SomeInterface @key(fields: "upc") {
id: ID!
aField: String! @inaccessible
upc: String! @external @inaccessible
}
type Query {
_entities(representations: [_Any!]!): [_Entity]!
_service: _Service!
topProducts(first: Int! @inaccessible): [Product!]!
}
interface SomeInterface {
id: ID!
aField: String! @inaccessible
}
scalar _Any
union _Entity = Product
scalar _FieldSet
type _Service {
sdl: String!
}
"""
assert schema.as_str() == textwrap.dedent(expected).strip()
def test_inaccessible_on_mutation():
@strawberry.type
class Query:
hello: str
@strawberry.type
class Mutation:
@strawberry.federation.mutation(inaccessible=True)
def hello(self) -> str: # pragma: no cover
return "Hello"
schema = strawberry.federation.Schema(
query=Query,
mutation=Mutation,
)
expected = """
schema @link(url: "https://specs.apollo.dev/federation/v2.11", import: ["@inaccessible"]) {
query: Query
mutation: Mutation
}
type Mutation {
hello: String! @inaccessible
}
type Query {
_service: _Service!
hello: String!
}
scalar _Any
type _Service {
sdl: String!
}
"""
assert schema.as_str() == textwrap.dedent(expected).strip()
def test_inaccessible_on_scalar():
SomeScalar = strawberry.federation.scalar(str, name="SomeScalar", inaccessible=True)
@strawberry.type
class Query:
hello: SomeScalar
schema = strawberry.federation.Schema(
query=Query,
)
expected = """
schema @link(url: "https://specs.apollo.dev/federation/v2.11", import: ["@inaccessible"]) {
query: Query
}
type Query {
_service: _Service!
hello: SomeScalar!
}
scalar SomeScalar @inaccessible
scalar _Any
type _Service {
sdl: String!
}
"""
assert schema.as_str() == textwrap.dedent(expected).strip()
def test_inaccessible_on_enum():
@strawberry.federation.enum(inaccessible=True)
class SomeEnum(Enum):
A = "A"
@strawberry.type
class Query:
hello: SomeEnum
schema = strawberry.federation.Schema(
query=Query,
)
expected = """
schema @link(url: "https://specs.apollo.dev/federation/v2.11", import: ["@inaccessible"]) {
query: Query
}
type Query {
_service: _Service!
hello: SomeEnum!
}
enum SomeEnum @inaccessible {
A
}
scalar _Any
type _Service {
sdl: String!
}
"""
assert schema.as_str() == textwrap.dedent(expected).strip()
def test_inaccessible_on_enum_value():
@strawberry.enum
class SomeEnum(Enum):
A = strawberry.federation.enum_value("A", inaccessible=True)
@strawberry.type
class Query:
hello: SomeEnum
schema = strawberry.federation.Schema(
query=Query,
)
expected = """
schema @link(url: "https://specs.apollo.dev/federation/v2.11", import: ["@inaccessible"]) {
query: Query
}
type Query {
_service: _Service!
hello: SomeEnum!
}
enum SomeEnum {
A @inaccessible
}
scalar _Any
type _Service {
sdl: String!
}
"""
assert schema.as_str() == textwrap.dedent(expected).strip()
def test_field_tag_printed_correctly_on_union():
@strawberry.type
class A:
a: str
@strawberry.type
class B:
b: str
MyUnion = Annotated[A | B, strawberry.federation.union("Union", inaccessible=True)]
@strawberry.federation.type
class Query:
hello: MyUnion
schema = strawberry.federation.Schema(query=Query)
expected = """
schema @link(url: "https://specs.apollo.dev/federation/v2.11", import: ["@inaccessible"]) {
query: Query
}
type A {
a: String!
}
type B {
b: String!
}
type Query {
_service: _Service!
hello: Union!
}
union Union @inaccessible = A | B
scalar _Any
type _Service {
sdl: String!
}
"""
assert schema.as_str() == textwrap.dedent(expected).strip()
@pytest.mark.parametrize("inaccessible", [True, False])
def test_inaccessible_on_type_and_interface(inaccessible: bool):
"""Test that inaccessible correctly adds/omits @inaccessible on types and interfaces."""
@strawberry.federation.type(inaccessible=inaccessible)
class SomeType:
id: strawberry.ID
@strawberry.federation.interface(inaccessible=inaccessible)
class SomeInterface:
id: strawberry.ID
@strawberry.federation.type
class Query:
@strawberry.field
def some(self) -> SomeType: # pragma: no cover
return SomeType(id=strawberry.ID("1"))
schema = strawberry.federation.Schema(
query=Query,
types=[SomeInterface],
)
schema_str = schema.as_str()
if inaccessible:
assert "SomeType @inaccessible" in schema_str
assert "SomeInterface @inaccessible" in schema_str
else:
assert "SomeType @inaccessible" not in schema_str
assert "SomeInterface @inaccessible" not in schema_str