config_pages-8.x-2.8/tests/src/Functional/ConfigPageTokenTest.php
tests/src/Functional/ConfigPageTokenTest.php
<?php
namespace Drupal\Tests\config_pages\Functional;
use Drupal\config_pages\Entity\ConfigPagesType;
use Drupal\Tests\BrowserTestBase;
/**
* Tests that the ConfigPages token expose works.
*
* @group config_pages
*/
class ConfigPageTokenTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = ['config_pages'];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$configPageType = ConfigPagesType::create([
'id' => 'config_pages_test_type',
'label' => 'ConfigPages Test Type Label',
'context' => [
'show_warning' => '',
'group' => [],
],
'menu' => [
'path' => '/admin/config_pages_test/test_page',
'weight' => 0,
'description' => 'Test page for ConfigPages module.',
],
'token' => TRUE,
]);
$configPageType->save();
$this->container->get('router.builder')->rebuild();
}
/**
* Check if Config page exposed to tokens.
*/
public function testConfigPagesTokenExposed() {
$account = $this->drupalCreateUser(['administer config_pages types']);
$this->drupalLogin($account);
$this->drupalGet('admin/structure/config_pages/types');
$this->assertSession()->statusCodeEquals(200);
// Test that there is an empty reaction rule listing.
$this->assertSession()->pageTextContains('Exposed');
}
}
