public function ViewAjaxControllerTest::testMissingView in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php \Drupal\Tests\views\Unit\Controller\ViewAjaxControllerTest::testMissingView()
Tests non-existent view with view_name and view_display_id.
File
- core/modules/ views/ tests/ src/ Unit/ Controller/ ViewAjaxControllerTest.php, line 132 
Class
- ViewAjaxControllerTest
- @coversDefaultClass \Drupal\views\Controller\ViewAjaxController @group views
Namespace
Drupal\Tests\views\Unit\ControllerCode
public function testMissingView() {
  $request = new Request();
  $request->request
    ->set('view_name', 'test_view');
  $request->request
    ->set('view_display_id', 'page_1');
  $this->viewStorage
    ->expects($this
    ->once())
    ->method('load')
    ->with('test_view')
    ->will($this
    ->returnValue(FALSE));
  $this
    ->expectException(NotFoundHttpException::class);
  $this->viewAjaxController
    ->ajaxView($request);
}