TypeTest.php in GraphQL 8.3
File
tests/src/Kernel/Extension/TypeTest.php
View source
<?php
namespace Drupal\Tests\graphql\Kernel\Extension;
use Drupal\graphql_plugin_test\GarageInterface;
use Drupal\Tests\graphql\Kernel\GraphQLTestBase;
class TypeTest extends GraphQLTestBase {
public static $modules = [
'graphql_plugin_test',
];
public function testQuery() {
$vehicles = [
[
'type' => 'Car',
'wheels' => 4,
'engine' => 'fuel',
],
[
'type' => 'Car',
'wheels' => 4,
'engine' => 'diesel',
],
[
'type' => 'Bike',
'wheels' => 2,
'gears' => 21,
],
];
$prophecy = $this
->prophesize(GarageInterface::class);
$prophecy
->getVehicles()
->willReturn($vehicles);
$this->container
->set('graphql_test.garage', $prophecy
->reveal());
$query = $this
->getQueryFromFile('garage.gql');
$this
->assertResults($query, [], [
'garage' => $vehicles,
], $this
->defaultCacheMetaData());
}
}
Classes
Name |
Description |
TypeTest |
Test plugin based schema generation. |