You are here

PrintableFormTest.php in Printer and PDF versions for Drupal 8+ 8

Same filename and directory in other branches
  1. 2.x src/Tests/PrintableFormTest.php

File

src/Tests/PrintableFormTest.php
View source
<?php

namespace Drupal\printable\Tests;

use Drupal\simpletest\WebTestBase;

/**
 * Tests the printable module functionality.
 *
 * @group printable
 */
class PrintableFormTest extends WebTestBase {

  /**
   * Modules to install.
   *
   * @var array
   */
  public static $modules = [
    'printable',
  ];

  /**
   * A simple user with 'administer printable' permission.
   *
   * @var \Drupal\user\Entity\User
   */
  private $user;

  /**
   * Perform any initial set up tasks that run before every test method.
   */
  public function setUp() {
    parent::setUp();
    $this->user = $this
      ->drupalCreateUser([
      'administer printable',
    ]);
    $this
      ->drupalLogin($this->user);
  }

  /**
   * Tests the Print form.
   */
  public function testPrintFormWorks() {
    $this
      ->drupalLogin($this->user);
    $this
      ->drupalGet('admin/config/user-interface/printable/print');
    $this
      ->assertResponse(200);
    $config = $this
      ->config('printable.settings');
    $this
      ->assertFieldByName('print_html_sendtoprinter', $config
      ->get('printable.send_to_printer'), 'The field was found with the correct value.');
    $this
      ->drupalPostForm(NULL, [
      'print_html_sendtoprinter' => 1,
    ], t('Submit'));
    $this
      ->drupalGet('admin/config/user-interface/printable/print');
    $this
      ->assertResponse(200);
    $this
      ->assertFieldByName('print_html_sendtoprinter', 1, 'The field was found with the correct value.');
  }

}

Classes

Namesort descending Description
PrintableFormTest Tests the printable module functionality.