-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScalarTypesUseCaseTest.php
292 lines (250 loc) · 7.86 KB
/
ScalarTypesUseCaseTest.php
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
<?php
namespace Palshin\ObjectToGraphQL\Tests;
use GraphQL\Type\Definition\InputObjectType;
use GraphQL\Type\Definition\Type;
use Palshin\ObjectToGraphQL\ObjectToGraphQL;
use Palshin\ObjectToGraphQL\Tests\TestClasses\ScalarClass;
use PHPUnit\Framework\TestCase;
class ScalarTypesUseCaseTest extends TestCase
{
/** @test */
public function object_type_can_be_created(): InputObjectType
{
$objectToGraphQL = new ObjectToGraphQL();
/**
* @var InputObjectType $objectType
*/
$objectType = array_values($objectToGraphQL->getObjectTypes(ScalarClass::class))[0];
$this->assertSame('ScalarClassInput', $objectType->name);
return $objectType;
}
/**
* @test
* @depends object_type_can_be_created
*/
public function int_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$intValFieldDefinition = $objectType->getField('intVal');
$this->assertEquals(Type::nonNull(Type::int()), $intValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends int_property_can_be_represented
*/
public function null_int_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullIntValFieldDefinition = $objectType->getField('nullIntVal');
$this->assertEquals(Type::int(), $nullIntValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends null_int_property_can_be_represented
*/
public function attribute_int_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullIntValFieldDefinition = $objectType->getField('attributeIntVal');
$this->assertEquals(Type::int(), $nullIntValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends attribute_int_property_can_be_represented
*/
public function float_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$floatValFieldDefinition = $objectType->getField('floatVal');
$this->assertEquals(Type::nonNull(Type::float()), $floatValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends float_property_can_be_represented
*/
public function null_float_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullFloatValFieldDefinition = $objectType->getField('nullFloatVal');
$this->assertEquals(Type::float(), $nullFloatValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends null_float_property_can_be_represented
*/
public function attribute_float_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullFloatValFieldDefinition = $objectType->getField('attributeFloatVal');
$this->assertEquals(Type::float(), $nullFloatValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends attribute_float_property_can_be_represented
*/
public function string_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$stringFieldDefinition = $objectType->getField('stringVal');
$this->assertEquals(Type::nonNull(Type::string()), $stringFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends string_property_can_be_represented
*/
public function null_string_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullStringFieldDefinition = $objectType->getField('nullStringVal');
$this->assertEquals(Type::string(), $nullStringFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends null_string_property_can_be_represented
*/
public function attribute_string_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullStringFieldDefinition = $objectType->getField('attributeStringVal');
$this->assertEquals(Type::string(), $nullStringFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends attribute_string_property_can_be_represented
*/
public function bool_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$boolValFieldDefinition = $objectType->getField('boolVal');
$this->assertEquals(Type::nonNull(Type::boolean()), $boolValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends bool_property_can_be_represented
*/
public function null_bool_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullBoolValFieldDefinition = $objectType->getField('nullBoolVal');
$this->assertEquals(Type::boolean(), $nullBoolValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends null_bool_property_can_be_represented
*/
public function attribute_bool_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$nullBoolValFieldDefinition = $objectType->getField('attributeBoolVal');
$this->assertEquals(Type::boolean(), $nullBoolValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends attribute_bool_property_can_be_represented
*/
public function id_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$idValFieldDefinition = $objectType->getField('idVal');
$this->assertEquals(Type::nonNull(Type::id()), $idValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends id_property_can_be_represented
*/
public function null_id_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$idValFieldDefinition = $objectType->getField('nullIdVal');
$this->assertEquals(Type::id(), $idValFieldDefinition->getType());
return $objectType;
}
/**
* @test
* @depends null_id_property_can_be_represented
*/
public function int_array_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$intArrayFieldDefinition = $objectType->getField('intArray');
$this->assertEquals(
Type::nonNull(
Type::listOf(
Type::nonNull(
Type::int()
)
)
),
$intArrayFieldDefinition->getType()
);
return $objectType;
}
/**
* @test
* @depends int_array_property_can_be_represented
*/
public function float_array_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$floatArrayFieldDefinition = $objectType->getField('floatArray');
$this->assertEquals(
Type::nonNull(
Type::listOf(
Type::nonNull(
Type::float()
)
)
),
$floatArrayFieldDefinition->getType()
);
return $objectType;
}
/**
* @test
* @depends float_array_property_can_be_represented
*/
public function string_array_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$stringArrayFieldDefinition = $objectType->getField('stringArray');
$this->assertEquals(
Type::nonNull(
Type::listOf(
Type::string()
)
),
$stringArrayFieldDefinition->getType()
);
return $objectType;
}
/**
* @test
* @depends string_array_property_can_be_represented
*/
public function bool_array_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$boolArrayFieldDefinition = $objectType->getField('boolArray');
$this->assertEquals(
Type::nonNull(
Type::listOf(
Type::nonNull(
Type::boolean()
)
)
),
$boolArrayFieldDefinition->getType()
);
return $objectType;
}
/**
* @test
* @depends bool_array_property_can_be_represented
*/
public function id_array_property_can_be_represented(InputObjectType $objectType): InputObjectType
{
$idArrayFieldDefinition = $objectType->getField('idArray');
$this->assertEquals(
Type::listOf(
Type::id()
),
$idArrayFieldDefinition->getType()
);
return $objectType;
}
}