-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathStarWarsMutationTest.php
60 lines (52 loc) · 1.47 KB
/
StarWarsMutationTest.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
<?php
/**
* @author: Ivo Meißner
* Date: 29.02.16
* Time: 12:11
*/
namespace GraphQLRelay\tests;
use GraphQL\GraphQL;
use PHPUnit\Framework\TestCase;
class StarWarsMutationTest extends TestCase
{
public function testMutatesTheDataSet()
{
$mutation = 'mutation AddBWingQuery($input: IntroduceShipInput!) {
introduceShip(input: $input) {
ship {
id
name
}
faction {
name
}
clientMutationId
}
}';
$params = array (
'input' =>
array (
'shipName' => 'B-Wing',
'factionId' => '1',
'clientMutationId' => 'abcde',
),
);
$expected = array (
'introduceShip' =>
array (
'ship' =>
array (
'id' => 'U2hpcDo5',
'name' => 'B-Wing',
),
'faction' =>
array (
'name' => 'Alliance to Restore the Republic',
),
'clientMutationId' => 'abcde',
),
);
$result = GraphQL::executeQuery(StarWarsSchema::getSchema(), $mutation, null, null, $params)->toArray();
$this->assertEquals(['data' => $expected], $result);
}
}