mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-25 14:26:08 +03:00
67 lines
1.7 KiB
PHP
67 lines
1.7 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* FindBreakingChanges tests
|
||
|
*/
|
||
|
|
||
|
namespace GraphQL\Tests\Utils;
|
||
|
|
||
|
use GraphQL\Type\Definition\ObjectType;
|
||
|
use GraphQL\Type\Definition\Type;
|
||
|
use GraphQL\Type\Schema;
|
||
|
use GraphQL\Utils\FindBreakingChanges;
|
||
|
|
||
|
class FindBreakingChangesTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
$this->queryType = new ObjectType([
|
||
|
'name' => 'Type1',
|
||
|
'fields' => [
|
||
|
'field1' => [
|
||
|
'type' => Type::string()
|
||
|
]
|
||
|
]
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function testShouldDetectIfTypeWasRemoved()
|
||
|
{
|
||
|
$type1 = new ObjectType([
|
||
|
'name' => 'Type1',
|
||
|
'fields' => [
|
||
|
'field1' => ['type' => Type::string()],
|
||
|
]
|
||
|
]);
|
||
|
$type2 = new ObjectType([
|
||
|
'name' => 'Type2',
|
||
|
'fields' => [
|
||
|
'field1' => ['type' => Type::string()],
|
||
|
]
|
||
|
]);
|
||
|
$oldSchema = new Schema([
|
||
|
'query' => new ObjectType([
|
||
|
'name' => 'root',
|
||
|
'fields' => [
|
||
|
'type1' => $type1,
|
||
|
'type2' => $type2
|
||
|
]
|
||
|
])
|
||
|
]);
|
||
|
$newSchema = new Schema([
|
||
|
'query' => new ObjectType([
|
||
|
'name' => 'root',
|
||
|
'fields' => [
|
||
|
'type2' => $type2
|
||
|
]
|
||
|
])
|
||
|
]);
|
||
|
|
||
|
$this->assertEquals(['type' => FindBreakingChanges::BREAKING_CHANGE_TYPE_REMOVED, 'description' => 'Type1 was removed.'],
|
||
|
FindBreakingChanges::findRemovedTypes($oldSchema, $newSchema)[0]
|
||
|
);
|
||
|
|
||
|
$this->assertEquals([], FindBreakingChanges::findRemovedTypes($oldSchema, $oldSchema));
|
||
|
}
|
||
|
|
||
|
}
|