public function PrintablePageTest::testCustomPageExists in Printer and PDF versions for Drupal 8+ 8
Same name and namespace in other branches
- 2.x src/Tests/PrintablePageTest.php \Drupal\printable\Tests\PrintablePageTest::testCustomPageExists()
Tests that the node/{node}/printable/print path returns the right content.
File
- src/
Tests/ PrintablePageTest.php, line 43
Class
- PrintablePageTest
- Tests the printable module functionality.
Namespace
Drupal\printable\TestsCode
public function testCustomPageExists() {
global $base_url;
$node_type_storage = \Drupal::entityManager()
->getStorage('node_type');
// Test /node/add page with only one content type.
$node_type_storage
->load('article')
->delete();
$this
->drupalGet('node/add');
$this
->assertResponse(200);
$this
->assertUrl('node/add/page');
// Create a node.
$edit = [];
$edit['title[0][value]'] = $this
->randomMachineName(8);
$bodytext = $this
->randomMachineName(16) . 'This is functional test which I am writing for printable module.';
$edit['body[0][value]'] = $bodytext;
$this
->drupalPostForm('node/add/page', $edit, t('Save'));
// Check that the Basic page has been created.
$this
->assertRaw(t('!post %title has been created.', [
'!post' => 'Basic page',
'%title' => $edit['title[0][value]'],
]), 'Basic page created.');
// Check that the node exists in the database.
$node = $this
->drupalGetNodeByTitle($edit['title[0][value]']);
$this
->assertTrue($node, 'Node found in database.');
// Verify that pages do not show submitted information by default.
$this
->drupalGet('node/' . $node
->id());
$this
->assertResponse(200);
$this
->drupalGet('node/' . $node
->id() . '/printable/print');
$this
->assertResponse(200);
// Checks the presence of header in the page.
$this
->assertRaw($edit['title[0][value]'], 'Title discovered successfully in the printable page');
// Checks the presence of image in the header.
$this
->assertRaw(theme_get_setting('logo.url'), 'Image discovered successfully in the printable page');
// Checks the presence of body in the page.
$this
->assertRaw($edit['body[0][value]'], 'Body discovered successfully in the printable page');
// Check if footer is rendering correctly.
$this
->assertRaw($base_url . '/node/' . $node
->id(), 'Source Url discovered in the printable page');
$this
->verbose($base_url);
// Enable the option of showing links present in the footer of page.
$this
->drupalGet('admin/config/user-interface/printable/print');
$this
->drupalPostForm(NULL, [
'print_html_display_sys_urllist' => 1,
], t('Submit'));
$this
->drupalGet('node/' . $node
->id() . '/printable/print');
$this
->assertResponse(200);
// Checks whether the URLs in the footer region are rendering properly.
$this
->assertRaw('List of links present in page', 'Main heading for displaying URLs discovered in the printable page');
$this
->assertRaw($base_url . '/node/' . $node
->id(), 'First link discovered successfully');
$this
->assertRaw('/user/1', 'Second link discovered successfully');
$this
->assertRaw('/node/' . $node
->id() . '/printable/print', 'Third link discovered successfully');
}