You are here

public function SimplesitemapTest::testMaxLinksSetting in Simple XML sitemap 4.x

Same name and namespace in other branches
  1. 8.3 tests/src/Functional/SimplesitemapTest.php \Drupal\Tests\simple_sitemap\Functional\SimplesitemapTest::testMaxLinksSetting()
  2. 8.2 tests/src/Functional/SimplesitemapTest.php \Drupal\Tests\simple_sitemap\Functional\SimplesitemapTest::testMaxLinksSetting()

Test max links setting and the sitemap index.

Throws

\Drupal\Component\Plugin\Exception\PluginException

\Behat\Mink\Exception\ExpectationException

File

tests/src/Functional/SimplesitemapTest.php, line 320

Class

SimplesitemapTest
Tests Simple XML Sitemap functional integration.

Namespace

Drupal\Tests\simple_sitemap\Functional

Code

public function testMaxLinksSetting() {
  $this->generator
    ->entityManager()
    ->setBundleSettings('node', 'page');
  $this->generator
    ->customLinkManager()
    ->remove();
  $this->generator
    ->saveSetting('max_links', 1)
    ->generateSitemap(QueueWorker::GENERATE_TYPE_BACKEND);
  $this
    ->drupalGet($this->defaultSitemapUrl);
  $this
    ->assertSession()
    ->responseContains('sitemap.xml?page=1');
  $this
    ->assertSession()
    ->responseContains('sitemap.xml?page=2');
  $this
    ->drupalGet('sitemap.xml', [
    'query' => [
      'page' => 1,
    ],
  ]);
  $this
    ->assertSession()
    ->responseContains('node/' . $this->node
    ->id());
  $this
    ->assertSession()
    ->responseContains('0.5');
  $this
    ->assertSession()
    ->responseNotContains('node/' . $this->node2
    ->id());
  $this
    ->drupalGet('sitemap.xml', [
    'query' => [
      'page' => 2,
    ],
  ]);
  $this
    ->assertSession()
    ->responseContains('node/' . $this->node2
    ->id());
  $this
    ->assertSession()
    ->responseContains('0.5');
  $this
    ->assertSession()
    ->responseNotContains('node/' . $this->node
    ->id());
}