You are here

public function BasicTest::testViewsWizardAndListing in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/tests/src/Functional/Wizard/BasicTest.php \Drupal\Tests\views\Functional\Wizard\BasicTest::testViewsWizardAndListing()

File

core/modules/views/tests/src/Functional/Wizard/BasicTest.php, line 28

Class

BasicTest
Tests creating views with the wizard and viewing them on the listing page.

Namespace

Drupal\Tests\views\Functional\Wizard

Code

public function testViewsWizardAndListing() {
  $this
    ->drupalCreateContentType([
    'type' => 'article',
  ]);
  $this
    ->drupalCreateContentType([
    'type' => 'page',
  ]);

  // Check if we can access the main views admin page.
  $this
    ->drupalGet('admin/structure/views');
  $this
    ->assertSession()
    ->pageTextContains('Add view');

  // Create a simple and not at all useful view.
  $view1 = [];
  $view1['label'] = $this
    ->randomMachineName(16);
  $view1['id'] = strtolower($this
    ->randomMachineName(16));
  $view1['description'] = $this
    ->randomMachineName(16);
  $view1['page[create]'] = FALSE;
  $this
    ->drupalGet('admin/structure/views/add');
  $this
    ->submitForm($view1, 'Save and edit');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $this
    ->drupalGet('admin/structure/views');
  $this
    ->assertSession()
    ->pageTextContains($view1['label']);
  $this
    ->assertSession()
    ->pageTextContains($view1['description']);
  $this
    ->assertSession()
    ->linkByHrefExists(Url::fromRoute('entity.view.edit_form', [
    'view' => $view1['id'],
  ])
    ->toString());
  $this
    ->assertSession()
    ->linkByHrefExists(Url::fromRoute('entity.view.delete_form', [
    'view' => $view1['id'],
  ])
    ->toString());
  $this
    ->assertSession()
    ->linkByHrefExists(Url::fromRoute('entity.view.duplicate_form', [
    'view' => $view1['id'],
  ])
    ->toString());

  // The view should not have a REST export display.
  $this
    ->assertSession()
    ->pageTextNotContains('REST export');

  // This view should not have a block.
  $this
    ->drupalGet('admin/structure/block');
  $this
    ->assertSession()
    ->pageTextNotContains($view1['label']);

  // Create two nodes.
  $node1 = $this
    ->drupalCreateNode([
    'type' => 'page',
  ]);
  $node2 = $this
    ->drupalCreateNode([
    'type' => 'article',
  ]);

  // Now create a page with simple node listing and an attached feed.
  $view2 = [];
  $view2['label'] = $this
    ->randomMachineName(16);
  $view2['id'] = strtolower($this
    ->randomMachineName(16));
  $view2['description'] = $this
    ->randomMachineName(16);
  $view2['page[create]'] = 1;
  $view2['page[title]'] = $this
    ->randomMachineName(16);
  $view2['page[path]'] = $this
    ->randomMachineName(16);
  $view2['page[feed]'] = 1;
  $view2['page[feed_properties][path]'] = $this
    ->randomMachineName(16);
  $this
    ->drupalGet('admin/structure/views/add');
  $this
    ->submitForm($view2, 'Save and edit');
  $this
    ->drupalGet($view2['page[path]']);
  $this
    ->assertSession()
    ->statusCodeEquals(200);

  // Since the view has a page, we expect to be automatically redirected to
  // it.
  $this
    ->assertSession()
    ->addressEquals($view2['page[path]']);
  $this
    ->assertSession()
    ->pageTextContains($view2['page[title]']);
  $this
    ->assertSession()
    ->pageTextContains($node1
    ->label());
  $this
    ->assertSession()
    ->pageTextContains($node2
    ->label());

  // Check if we have the feed.
  $this
    ->assertSession()
    ->linkByHrefExists(Url::fromRoute('view.' . $view2['id'] . '.feed_1')
    ->toString());
  $elements = $this
    ->cssSelect('link[href="' . Url::fromRoute('view.' . $view2['id'] . '.feed_1', [], [
    'absolute' => TRUE,
  ])
    ->toString() . '"]');
  $this
    ->assertCount(1, $elements, 'Feed found.');
  $this
    ->drupalGet($view2['page[feed_properties][path]']);

  // Because the response is XML we can't use the page which depends on an
  // HTML tag being present.
  $this
    ->assertEquals('2.0', $this
    ->getSession()
    ->getDriver()
    ->getAttribute('//rss', 'version'));

  // The feed should have the same title and nodes as the page.
  $this
    ->assertSession()
    ->responseContains($view2['page[title]']);
  $this
    ->assertSession()
    ->responseContains($node1
    ->toUrl('canonical', [
    'absolute' => TRUE,
  ])
    ->toString());
  $this
    ->assertSession()
    ->responseContains($node1
    ->label());
  $this
    ->assertSession()
    ->responseContains($node2
    ->toUrl('canonical', [
    'absolute' => TRUE,
  ])
    ->toString());
  $this
    ->assertSession()
    ->responseContains($node2
    ->label());

  // Go back to the views page and check if this view is there.
  $this
    ->drupalGet('admin/structure/views');
  $this
    ->assertSession()
    ->pageTextContains($view2['label']);
  $this
    ->assertSession()
    ->pageTextContains($view2['description']);
  $this
    ->assertSession()
    ->linkByHrefExists(Url::fromRoute('view.' . $view2['id'] . '.page_1')
    ->toString());

  // The view should not have a REST export display.
  $this
    ->assertSession()
    ->pageTextNotContains('REST export');

  // This view should not have a block.
  $this
    ->drupalGet('admin/structure/block');
  $this
    ->assertSession()
    ->pageTextNotContains('View: ' . $view2['label']);

  // Create a view with a page and a block, and filter the listing.
  $view3 = [];
  $view3['label'] = $this
    ->randomMachineName(16);
  $view3['id'] = strtolower($this
    ->randomMachineName(16));
  $view3['description'] = $this
    ->randomMachineName(16);
  $view3['show[wizard_key]'] = 'node';
  $view3['show[type]'] = 'page';
  $view3['page[create]'] = 1;
  $view3['page[title]'] = $this
    ->randomMachineName(16);
  $view3['page[path]'] = $this
    ->randomMachineName(16);
  $view3['block[create]'] = 1;
  $view3['block[title]'] = $this
    ->randomMachineName(16);
  $this
    ->drupalGet('admin/structure/views/add');
  $this
    ->submitForm($view3, 'Save and edit');
  $this
    ->drupalGet($view3['page[path]']);
  $this
    ->assertSession()
    ->statusCodeEquals(200);

  // Make sure the view only displays the node we expect.
  $this
    ->assertSession()
    ->addressEquals($view3['page[path]']);
  $this
    ->assertSession()
    ->pageTextContains($view3['page[title]']);
  $this
    ->assertSession()
    ->pageTextContains($node1
    ->label());
  $this
    ->assertSession()
    ->pageTextNotContains($node2
    ->label());

  // Go back to the views page and check if this view is there.
  $this
    ->drupalGet('admin/structure/views');
  $this
    ->assertSession()
    ->pageTextContains($view3['label']);
  $this
    ->assertSession()
    ->pageTextContains($view3['description']);
  $this
    ->assertSession()
    ->linkByHrefExists(Url::fromRoute('view.' . $view3['id'] . '.page_1')
    ->toString());

  // The view should not have a REST export display.
  $this
    ->assertSession()
    ->pageTextNotContains('REST export');

  // Confirm that the block is available in the block administration UI.
  $this
    ->drupalGet('admin/structure/block/list/' . $this
    ->config('system.theme')
    ->get('default'));
  $this
    ->clickLink('Place block');
  $this
    ->assertSession()
    ->pageTextContains($view3['label']);

  // Place the block.
  $this
    ->drupalPlaceBlock("views_block:{$view3['id']}-block_1");

  // Visit a random page (not the one that displays the view itself) and look
  // for the expected node title in the block.
  $this
    ->drupalGet('user');
  $this
    ->assertSession()
    ->pageTextContains($node1
    ->label());
  $this
    ->assertSession()
    ->pageTextNotContains($node2
    ->label());

  // Make sure the listing page doesn't show disabled default views.
  $this
    ->assertSession()
    ->pageTextNotContains('tracker');

  // Create a view with only a REST export.
  $view4 = [];
  $view4['label'] = $this
    ->randomMachineName(16);
  $view4['id'] = strtolower($this
    ->randomMachineName(16));
  $view4['description'] = $this
    ->randomMachineName(16);
  $view4['show[wizard_key]'] = 'node';
  $view4['show[type]'] = 'page';
  $view4['rest_export[create]'] = 1;
  $view4['rest_export[path]'] = $this
    ->randomMachineName(16);
  $this
    ->drupalGet('admin/structure/views/add');
  $this
    ->submitForm($view4, 'Save and edit');
  $this
    ->assertSession()
    ->pageTextContains("The view {$view4['label']} has been saved.");

  // Check that the REST export path works. JSON will work, as all core
  // formats will be allowed. JSON and XML by default.
  $this
    ->drupalGet($view4['rest_export[path]'], [
    'query' => [
      '_format' => 'json',
    ],
  ]);
  $this
    ->assertSession()
    ->statusCodeEquals(200);
  $data = Json::decode($this
    ->getSession()
    ->getPage()
    ->getContent());
  $this
    ->assertCount(1, $data, 'Only the node of type page is exported.');
  $node = reset($data);
  $this
    ->assertEquals($node1
    ->id(), $node['nid'][0]['value'], 'The node of type page is exported.');

  // Create a view with a leading slash in the path and test that is properly
  // set.
  $leading_slash_view = [];
  $leading_slash_view['label'] = $this
    ->randomMachineName(16);
  $leading_slash_view['id'] = strtolower($this
    ->randomMachineName(16));
  $leading_slash_view['description'] = $this
    ->randomMachineName(16);
  $leading_slash_view['show[wizard_key]'] = 'node';
  $leading_slash_view['show[type]'] = 'page';
  $leading_slash_view['page[create]'] = 1;
  $leading_slash_view['page[title]'] = $this
    ->randomMachineName(16);
  $leading_slash_view['page[path]'] = '/' . $this
    ->randomMachineName(16);
  $this
    ->drupalGet('admin/structure/views/add');
  $this
    ->submitForm($leading_slash_view, 'Save and edit');
  $this
    ->assertEquals($leading_slash_view['page[path]'], $this
    ->cssSelect('#views-page-1-path')[0]
    ->getText());
}