function CollectRoutesTest::setUp
Same name in other branches
- 9 core/modules/rest/tests/src/Unit/CollectRoutesTest.php \Drupal\Tests\rest\Unit\CollectRoutesTest::setUp()
- 8.9.x core/modules/rest/tests/src/Unit/CollectRoutesTest.php \Drupal\Tests\rest\Unit\CollectRoutesTest::setUp()
- 10 core/modules/rest/tests/src/Unit/CollectRoutesTest.php \Drupal\Tests\rest\Unit\CollectRoutesTest::setUp()
Overrides UnitTestCase::setUp
File
-
core/
modules/ rest/ tests/ src/ Unit/ CollectRoutesTest.php, line 36
Class
- CollectRoutesTest
- Tests the REST export view plugin.
Namespace
Drupal\Tests\rest\UnitCode
protected function setUp() : void {
parent::setUp();
$container = new ContainerBuilder();
$view = new View([
'id' => 'test_view',
], 'view');
$view_executable = $this->getMockBuilder('\\Drupal\\views\\ViewExecutable')
->onlyMethods([
'initHandlers',
'getTitle',
])
->disableOriginalConstructor()
->getMock();
$view_executable->expects($this->any())
->method('getTitle')
->willReturn('View title');
$view_executable->storage = $view;
$view_executable->argument = [];
$display_manager = $this->getMockBuilder('\\Drupal\\views\\Plugin\\ViewsPluginManager')
->disableOriginalConstructor()
->getMock();
$container->set('plugin.manager.views.display', $display_manager);
$access_manager = $this->getMockBuilder('\\Drupal\\views\\Plugin\\ViewsPluginManager')
->disableOriginalConstructor()
->getMock();
$container->set('plugin.manager.views.access', $access_manager);
$route_provider = $this->getMockBuilder('\\Drupal\\Core\\Routing\\RouteProviderInterface')
->disableOriginalConstructor()
->getMock();
$container->set('router.route_provider', $route_provider);
$container->setParameter('authentication_providers', [
'basic_auth' => 'basic_auth',
]);
$state = $this->createMock('\\Drupal\\Core\\State\\StateInterface');
$container->set('state', $state);
$style_manager = $this->getMockBuilder('\\Drupal\\views\\Plugin\\ViewsPluginManager')
->disableOriginalConstructor()
->getMock();
$container->set('plugin.manager.views.style', $style_manager);
$container->set('renderer', $this->createMock('Drupal\\Core\\Render\\RendererInterface'));
$authentication_collector = $this->createMock('\\Drupal\\Core\\Authentication\\AuthenticationCollectorInterface');
$container->set('authentication_collector', $authentication_collector);
$authentication_collector->expects($this->any())
->method('getSortedProviders')
->willReturn([
'basic_auth' => 'data',
'cookie' => 'data',
]);
$container->setParameter('serializer.format_providers', [
'json',
]);
\Drupal::setContainer($container);
$this->restExport = RestExport::create($container, [], "test_routes", []);
$this->restExport->view = $view_executable;
// Initialize a display.
$this->restExport->display = [
'id' => 'page_1',
];
// Set the style option.
$this->restExport
->setOption('style', [
'type' => 'serializer',
]);
// Set the auth option.
$this->restExport
->setOption('auth', [
'basic_auth',
]);
$display_manager->expects($this->once())
->method('getDefinition')
->willReturn([
'id' => 'test',
'provider' => 'test',
]);
$none = $this->getMockBuilder('\\Drupal\\views\\Plugin\\views\\access\\None')
->disableOriginalConstructor()
->getMock();
$access_manager->expects($this->once())
->method('createInstance')
->willReturn($none);
$style_plugin = $this->getMockBuilder('\\Drupal\\rest\\Plugin\\views\\style\\Serializer')
->onlyMethods([
'getFormats',
'init',
])
->disableOriginalConstructor()
->getMock();
$style_plugin->expects($this->once())
->method('getFormats')
->willReturn([
'json',
]);
$style_plugin->expects($this->once())
->method('init')
->with($view_executable)
->willReturn(TRUE);
$style_manager->expects($this->once())
->method('createInstance')
->willReturn($style_plugin);
$this->routes = new RouteCollection();
$this->routes
->add('test_1', new Route('/test/1'));
$this->routes
->add('view.test_view.page_1', new Route('/test/2'));
$view->addDisplay('page', NULL, 'page_1');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.