UnsavedPreviewTest.php in Zircon Profile 8.0
File
core/modules/views_ui/src/Tests/UnsavedPreviewTest.php
View source
<?php
namespace Drupal\views_ui\Tests;
use Drupal\views\Tests\ViewTestBase;
class UnsavedPreviewTest extends ViewTestBase {
public static $testViews = [
'content',
];
protected $adminUser;
public static $modules = array(
'node',
'views_ui',
);
protected function setUp() {
parent::setUp(FALSE);
$this->adminUser = $this
->drupalCreateUser([
'administer views',
]);
$this
->drupalLogin($this->adminUser);
}
public function testUnsavedPageDisplayPreview() {
$this
->drupalCreateContentType([
'type' => 'page',
]);
for ($i = 0; $i < 5; $i++) {
$this
->drupalCreateNode();
}
$this
->drupalGet('admin/structure/views/view/content');
$this
->assertResponse(200);
$this
->drupalPostForm(NULL, [], t('Add Page'));
$this
->assertResponse(200);
$this
->drupalGet('admin/structure/views/nojs/display/content/page_2/path');
$this
->assertResponse(200);
$this
->drupalPostForm(NULL, [
'path' => 'foobarbaz',
], t('Apply'));
$this
->assertResponse(200);
$this
->drupalPostForm(NULL, [], t('Update preview'));
$this
->assertResponse(200);
$this
->assertText(t('This display has no path'));
$this
->drupalGet('admin/structure/views/view/content/edit/page_2');
$this
->assertResponse(200);
$this
->drupalPostForm(NULL, [], t('Save'));
$this
->assertResponse(200);
$this
->drupalPostForm(NULL, [], t('Update preview'));
$this
->assertResponse(200);
$this
->assertLinkByHref('foobarbaz');
}
}