You are here

class ChainResponsePolicyTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/PageCache/ChainResponsePolicyTest.php \Drupal\Tests\Core\PageCache\ChainResponsePolicyTest
  2. 10 core/tests/Drupal/Tests/Core/PageCache/ChainResponsePolicyTest.php \Drupal\Tests\Core\PageCache\ChainResponsePolicyTest

@coversDefaultClass \Drupal\Core\PageCache\ChainResponsePolicy @group PageCache

Hierarchy

Expanded class hierarchy of ChainResponsePolicyTest

File

core/tests/Drupal/Tests/Core/PageCache/ChainResponsePolicyTest.php, line 15

Namespace

Drupal\Tests\Core\PageCache
View source
class ChainResponsePolicyTest extends UnitTestCase {

  /**
   * The chain response policy under test.
   *
   * @var \Drupal\Core\PageCache\ChainResponsePolicy
   */
  protected $policy;

  /**
   * A request object.
   *
   * @var \Symfony\Component\HttpFoundation\Request
   */
  protected $request;

  /**
   * A response object.
   *
   * @var \Symfony\Component\HttpFoundation\Response
   */
  protected $response;
  protected function setUp() {
    $this->policy = new ChainResponsePolicy();
    $this->response = new Response();
    $this->request = new Request();
  }

  /**
   * Asserts that check() returns NULL if the chain is empty.
   *
   * @covers ::check
   */
  public function testEmptyChain() {
    $result = $this->policy
      ->check($this->response, $this->request);
    $this
      ->assertSame(NULL, $result);
  }

  /**
   * Asserts that check() returns NULL if a rule returns NULL.
   *
   * @covers ::check
   */
  public function testNullRuleChain() {
    $rule = $this
      ->createMock('Drupal\\Core\\PageCache\\ResponsePolicyInterface');
    $rule
      ->expects($this
      ->once())
      ->method('check')
      ->with($this->response, $this->request)
      ->will($this
      ->returnValue(NULL));
    $this->policy
      ->addPolicy($rule);
    $result = $this->policy
      ->check($this->response, $this->request);
    $this
      ->assertSame(NULL, $result);
  }

  /**
   * Asserts that check() throws an exception if a rule returns an invalid value.
   *
   * @dataProvider providerChainExceptionOnInvalidReturnValue
   * @covers ::check
   */
  public function testChainExceptionOnInvalidReturnValue($return_value) {
    $rule = $this
      ->createMock('Drupal\\Core\\PageCache\\ResponsePolicyInterface');
    $rule
      ->expects($this
      ->once())
      ->method('check')
      ->with($this->response, $this->request)
      ->will($this
      ->returnValue($return_value));
    $this->policy
      ->addPolicy($rule);
    $this
      ->expectException(\UnexpectedValueException::class);
    $this->policy
      ->check($this->response, $this->request);
  }

  /**
   * Provides test data for testChainExceptionOnInvalidReturnValue.
   *
   * @return array
   *   Test input and expected result.
   */
  public function providerChainExceptionOnInvalidReturnValue() {
    return [
      [
        FALSE,
      ],
      [
        0,
      ],
      [
        1,
      ],
      [
        TRUE,
      ],
      [
        [
          1,
          2,
          3,
        ],
      ],
      [
        new \stdClass(),
      ],
    ];
  }

  /**
   * Asserts that check() returns immediately when a rule returned DENY.
   */
  public function testStopChainOnFirstDeny() {
    $rule1 = $this
      ->createMock('Drupal\\Core\\PageCache\\ResponsePolicyInterface');
    $rule1
      ->expects($this
      ->once())
      ->method('check')
      ->with($this->response, $this->request);
    $this->policy
      ->addPolicy($rule1);
    $deny_rule = $this
      ->createMock('Drupal\\Core\\PageCache\\ResponsePolicyInterface');
    $deny_rule
      ->expects($this
      ->once())
      ->method('check')
      ->with($this->response, $this->request)
      ->will($this
      ->returnValue(ResponsePolicyInterface::DENY));
    $this->policy
      ->addPolicy($deny_rule);
    $ignored_rule = $this
      ->createMock('Drupal\\Core\\PageCache\\ResponsePolicyInterface');
    $ignored_rule
      ->expects($this
      ->never())
      ->method('check');
    $this->policy
      ->addPolicy($ignored_rule);
    $actual_result = $this->policy
      ->check($this->response, $this->request);
    $this
      ->assertsame(ResponsePolicyInterface::DENY, $actual_result);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ChainResponsePolicyTest::$policy protected property The chain response policy under test.
ChainResponsePolicyTest::$request protected property A request object.
ChainResponsePolicyTest::$response protected property A response object.
ChainResponsePolicyTest::providerChainExceptionOnInvalidReturnValue public function Provides test data for testChainExceptionOnInvalidReturnValue.
ChainResponsePolicyTest::setUp protected function Overrides UnitTestCase::setUp
ChainResponsePolicyTest::testChainExceptionOnInvalidReturnValue public function Asserts that check() throws an exception if a rule returns an invalid value.
ChainResponsePolicyTest::testEmptyChain public function Asserts that check() returns NULL if the chain is empty.
ChainResponsePolicyTest::testNullRuleChain public function Asserts that check() returns NULL if a rule returns NULL.
ChainResponsePolicyTest::testStopChainOnFirstDeny public function Asserts that check() returns immediately when a rule returned DENY.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.