function ViewAjaxControllerTest::testAjaxViewWithArguments

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php \Drupal\Tests\views\Unit\Controller\ViewAjaxControllerTest::testAjaxViewWithArguments()
  2. 8.9.x core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php \Drupal\Tests\views\Unit\Controller\ViewAjaxControllerTest::testAjaxViewWithArguments()
  3. 11.x core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php \Drupal\Tests\views\Unit\Controller\ViewAjaxControllerTest::testAjaxViewWithArguments()

Tests a valid view with arguments.

File

core/modules/views/tests/src/Unit/Controller/ViewAjaxControllerTest.php, line 272

Class

ViewAjaxControllerTest
@coversDefaultClass \Drupal\views\Controller\ViewAjaxController[[api-linebreak]] @group views

Namespace

Drupal\Tests\views\Unit\Controller

Code

public function testAjaxViewWithArguments() : void {
  $request = new Request();
  $request->request
    ->set('view_name', 'test_view');
  $request->request
    ->set('view_display_id', 'page_1');
  $request->request
    ->set('view_args', 'arg1/arg2');
  [
    $view,
    $executable,
  ] = $this->setupValidMocks();
  $executable->expects($this->once())
    ->method('preview')
    ->with('page_1', [
    'arg1',
    'arg2',
  ]);
  $response = $this->viewAjaxController
    ->ajaxView($request);
  $this->assertInstanceOf(ViewAjaxResponse::class, $response);
  $this->assertViewResultCommand($response);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.