DefaultFormatTest.php

Same filename and directory in other branches
  1. 10 core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php
  2. 11.x core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php
  3. 9 core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php

Namespace

Drupal\FunctionalTests\Routing

File

core/tests/Drupal/FunctionalTests/Routing/DefaultFormatTest.php

View source
<?php

namespace Drupal\FunctionalTests\Routing;

use Drupal\Tests\BrowserTestBase;

/**
 * @group routing
 */
class DefaultFormatTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'system',
    'default_format_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  public function testFoo() {
    $this->drupalGet('/default_format_test/human');
    $this->assertSame('format:html', $this->getSession()
      ->getPage()
      ->getContent());
    $this->assertSame('MISS', $this->drupalGetHeader('X-Drupal-Cache'));
    $this->drupalGet('/default_format_test/human');
    $this->assertSame('format:html', $this->getSession()
      ->getPage()
      ->getContent());
    $this->assertSame('HIT', $this->drupalGetHeader('X-Drupal-Cache'));
    $this->drupalGet('/default_format_test/machine');
    $this->assertSame('format:json', $this->getSession()
      ->getPage()
      ->getContent());
    $this->assertSame('MISS', $this->drupalGetHeader('X-Drupal-Cache'));
    $this->drupalGet('/default_format_test/machine');
    $this->assertSame('format:json', $this->getSession()
      ->getPage()
      ->getContent());
    $this->assertSame('HIT', $this->drupalGetHeader('X-Drupal-Cache'));
  }
  public function testMultipleRoutesWithSameSingleFormat() {
    $this->drupalGet('/default_format_test/machine');
    $this->assertSame('format:json', $this->getSession()
      ->getPage()
      ->getContent());
  }

}

Classes

Title Deprecated Summary
DefaultFormatTest @group routing

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.