public function SimplesitemapTest::testAddCustomLink in Simple XML sitemap 8.2
Same name and namespace in other branches
- 8.3 tests/src/Functional/SimplesitemapTest.php \Drupal\Tests\simple_sitemap\Functional\SimplesitemapTest::testAddCustomLink()
- 4.x tests/src/Functional/SimplesitemapTest.php \Drupal\Tests\simple_sitemap\Functional\SimplesitemapTest::testAddCustomLink()
Test custom link.
File
- tests/
src/ Functional/ SimplesitemapTest.php, line 29
Class
- SimplesitemapTest
- Tests Simple XML sitemap functional integration.
Namespace
Drupal\Tests\simple_sitemap\FunctionalCode
public function testAddCustomLink() {
$this->generator
->addCustomLink('/node/' . $this->node
->id(), [
'priority' => 0.2,
'changefreq' => 'monthly',
])
->generateSitemap('nobatch');
$this
->drupalGet('sitemap.xml');
$this
->assertSession()
->responseContains('node/' . $this->node
->id());
$this
->assertSession()
->responseContains('0.2');
$this
->assertSession()
->responseContains('monthly');
$this
->drupalLogin($this->privilegedUser);
$this
->drupalGet('admin/config/search/simplesitemap/custom');
$this
->assertSession()
->pageTextContains('/node/' . $this->node
->id() . ' 0.2 monthly');
$this->generator
->addCustomLink('/node/' . $this->node
->id(), [
'changefreq' => 'yearly',
])
->generateSitemap('nobatch');
$this
->drupalGet('admin/config/search/simplesitemap/custom');
$this
->assertSession()
->pageTextContains('/node/' . $this->node
->id() . ' yearly');
}