You are here

public function DurationFieldFunctionalTest::testRawValue in Duration Field 8.2

Same name and namespace in other branches
  1. 3.0.x tests/src/Functional/DurationFieldFunctionalTest.php \Drupal\Tests\duration_field\Functional\DurationFieldFunctionalTest::testRawValue()

Tests the raw value field formatter.

File

tests/src/Functional/DurationFieldFunctionalTest.php, line 112

Class

DurationFieldFunctionalTest
Functional tests for the Duration Field module.

Namespace

Drupal\Tests\duration_field\Functional

Code

public function testRawValue() {
  $this
    ->createDefaultSetup();
  $this
    ->setFormatter('raw');
  $this
    ->drupalGet('node/add/test_type');
  $this
    ->assertStatusCodeEquals(200);
  $this
    ->assertSession()
    ->addressMatches('/^\\/node\\/add\\/test_type$/');
  $this
    ->fillTextValue('#edit-title-0-value', 'Dummy Title');
  $this
    ->fillTextValue('#edit-field-duration-0-duration-y', 1);
  $this
    ->fillTextValue('#edit-field-duration-0-duration-m', 2);
  $this
    ->fillTextValue('#edit-field-duration-0-duration-d', 3);
  $this
    ->fillTextValue('#edit-field-duration-0-duration-h', 4);
  $this
    ->fillTextValue('#edit-field-duration-0-duration-i', 5);
  $this
    ->fillTextValue('#edit-field-duration-0-duration-s', 6);
  $this
    ->click('input[name="op"]');
  $this
    ->assertStatusCodeEquals(200);
  $this
    ->assertTextExists('P1Y2M3DT4H5M6S');
}