graphql-php/tests/StarWarsIntrospectionTest.php

426 lines
12 KiB
PHP
Raw Normal View History

2015-07-15 20:05:46 +03:00
<?php
2016-04-09 10:36:53 +03:00
namespace GraphQL\Tests;
2015-07-15 20:05:46 +03:00
2016-04-09 10:36:53 +03:00
use GraphQL\GraphQL;
2015-07-15 20:05:46 +03:00
class StarWarsIntrospectionTest extends \PHPUnit_Framework_TestCase
{
// Star Wars Introspection Tests
// Basic Introspection
/**
* @it Allows querying the schema for types
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingTheSchemaForTypes()
{
$query = '
query IntrospectionTypeQuery {
__schema {
types {
name
}
}
}
';
$expected = [
'__schema' => [
'types' => [
['name' => 'ID'],
['name' => 'String'],
['name' => 'Float'],
['name' => 'Int'],
['name' => 'Boolean'],
2015-07-15 20:05:46 +03:00
['name' => '__Schema'],
['name' => '__Type'],
['name' => '__TypeKind'],
2015-07-15 20:05:46 +03:00
['name' => '__Field'],
['name' => '__InputValue'],
['name' => '__EnumValue'],
['name' => '__Directive'],
['name' => '__DirectiveLocation'],
['name' => 'Query'],
['name' => 'Episode'],
['name' => 'Character'],
['name' => 'Human'],
['name' => 'Droid'],
2015-07-15 20:05:46 +03:00
]
]
];
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for query type
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingTheSchemaForQueryType()
{
$query = '
query IntrospectionQueryTypeQuery {
__schema {
queryType {
name
}
}
}
';
$expected = [
'__schema' => [
'queryType' => [
'name' => 'Query'
],
]
];
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for a specific type
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingTheSchemaForASpecificType()
{
$query = '
query IntrospectionDroidTypeQuery {
__type(name: "Droid") {
name
}
}
';
$expected = [
'__type' => [
'name' => 'Droid'
]
];
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for an object kind
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingForAnObjectKind()
{
$query = '
query IntrospectionDroidKindQuery {
__type(name: "Droid") {
name
kind
}
}
';
$expected = [
'__type' => [
'name' => 'Droid',
'kind' => 'OBJECT'
]
];
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for an interface kind
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingForInterfaceKind()
{
$query = '
query IntrospectionCharacterKindQuery {
__type(name: "Character") {
name
kind
}
}
';
$expected = [
'__type' => [
'name' => 'Character',
'kind' => 'INTERFACE'
]
];
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for object fields
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingForObjectFields()
{
$query = '
query IntrospectionDroidFieldsQuery {
__type(name: "Droid") {
name
fields {
name
type {
name
kind
}
}
}
}
';
$expected = [
'__type' => [
'name' => 'Droid',
'fields' => [
[
'name' => 'id',
'type' => [
'name' => null,
'kind' => 'NON_NULL'
]
],
[
'name' => 'name',
'type' => [
'name' => 'String',
'kind' => 'SCALAR'
]
],
[
'name' => 'friends',
'type' => [
'name' => null,
'kind' => 'LIST'
]
],
[
'name' => 'appearsIn',
'type' => [
'name' => null,
'kind' => 'LIST'
]
],
2016-10-22 20:46:15 +03:00
[
'name' => 'secretBackstory',
'type' => [
'name' => 'String',
'kind' => 'SCALAR'
]
],
2015-07-15 20:05:46 +03:00
[
'name' => 'primaryFunction',
'type' => [
'name' => 'String',
'kind' => 'SCALAR'
]
]
]
]
];
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for nested object fields
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingTheSchemaForNestedObjectFields()
{
$query = '
query IntrospectionDroidNestedFieldsQuery {
__type(name: "Droid") {
name
fields {
name
type {
name
kind
ofType {
name
kind
}
}
}
}
}
';
$expected = [
'__type' => [
'name' => 'Droid',
'fields' => [
[
'name' => 'id',
'type' => [
'name' => null,
'kind' => 'NON_NULL',
'ofType' => [
'name' => 'String',
'kind' => 'SCALAR'
]
]
],
[
'name' => 'name',
'type' => [
'name' => 'String',
'kind' => 'SCALAR',
'ofType' => null
]
],
[
'name' => 'friends',
'type' => [
'name' => null,
'kind' => 'LIST',
'ofType' => [
'name' => 'Character',
'kind' => 'INTERFACE'
]
]
],
[
'name' => 'appearsIn',
'type' => [
'name' => null,
'kind' => 'LIST',
'ofType' => [
'name' => 'Episode',
'kind' => 'ENUM'
]
]
],
2016-10-22 20:46:15 +03:00
[
'name' => 'secretBackstory',
'type' => [
'name' => 'String',
'kind' => 'SCALAR',
'ofType' => null
]
],
2015-07-15 20:05:46 +03:00
[
'name' => 'primaryFunction',
'type' => [
'name' => 'String',
'kind' => 'SCALAR',
'ofType' => null
]
]
]
]
];
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for field args
*/
2015-08-16 13:17:35 +03:00
public function testAllowsQueryingTheSchemaForFieldArgs()
{
$query = '
query IntrospectionQueryTypeQuery {
__schema {
queryType {
fields {
name
args {
name
description
type {
name
kind
ofType {
name
kind
}
}
defaultValue
}
}
}
}
}
';
$expected = array(
'__schema' => [
'queryType' => [
'fields' => [
[
'name' => 'hero',
'args' => [
[
'defaultValue' => NULL,
'description' => 'If omitted, returns the hero of the whole saga. If provided, returns the hero of that particular episode.',
'name' => 'episode',
'type' => [
'kind' => 'ENUM',
'name' => 'Episode',
'ofType' => NULL,
],
],
],
],
[
'name' => 'human',
'args' => [
[
'name' => 'id',
'description' => 'id of the human',
'type' => [
'kind' => 'NON_NULL',
'name' => NULL,
'ofType' => [
'kind' => 'SCALAR',
'name' => 'String',
],
],
'defaultValue' => NULL,
],
],
],
[
'name' => 'droid',
'args' => [
[
'name' => 'id',
'description' => 'id of the droid',
'type' => [
'kind' => 'NON_NULL',
'name' => NULL,
'ofType' =>
[
'kind' => 'SCALAR',
'name' => 'String',
],
],
'defaultValue' => NULL,
],
],
],
],
],
],
);
$this->assertValidQuery($query, $expected);
}
/**
* @it Allows querying the schema for documentation
*/
2015-07-15 20:05:46 +03:00
public function testAllowsQueryingTheSchemaForDocumentation()
{
$query = '
query IntrospectionDroidDescriptionQuery {
__type(name: "Droid") {
name
description
}
}
';
$expected = [
'__type' => [
'name' => 'Droid',
'description' => 'A mechanical creature in the Star Wars universe.'
]
];
$this->assertValidQuery($query, $expected);
}
/**
* Helper function to test a query and the expected response.
*/
private function assertValidQuery($query, $expected)
{
$this->assertEquals(['data' => $expected], GraphQL::execute(StarWarsSchema::build(), $query));
}
}