You are here

MultiresponseNormalizerTest.php in Subrequests 8.2

Same filename and directory in other branches
  1. 3.x tests/src/Unit/Normalizer/MultiresponseNormalizerTest.php

File

tests/src/Unit/Normalizer/MultiresponseNormalizerTest.php
View source
<?php

namespace Drupal\Tests\subrequests\Normalizer;

use Drupal\subrequests\Normalizer\MultiresponseNormalizer;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\HttpFoundation\Response;

/**
 * @coversDefaultClass \Drupal\subrequests\Normalizer\MultiresponseNormalizer
 * @group subrequests
 */
class MultiresponseNormalizerTest extends UnitTestCase {

  /**
   * @var \Drupal\subrequests\Normalizer\MultiresponseNormalizer
   */
  protected $sut;
  protected function setUp() {
    parent::setUp();
    $this->sut = new MultiresponseNormalizer();
  }

  /**
   * @dataProvider dataProviderSupportsNormalization
   * @covers ::supportsNormalization
   */
  public function testSupportsNormalization($data, $format, $is_supported) {
    $actual = $this->sut
      ->supportsNormalization($data, $format);
    $this
      ->assertSame($is_supported, $actual);
  }
  public function dataProviderSupportsNormalization() {
    return [
      [
        [
          Response::create(''),
        ],
        'multipart-related',
        TRUE,
      ],
      [
        [],
        'multipart-related',
        TRUE,
      ],
      [
        [
          Response::create(''),
        ],
        'fail',
        FALSE,
      ],
      [
        NULL,
        'multipart-related',
        FALSE,
      ],
      [
        [
          Response::create(''),
          NULL,
        ],
        'multipart-related',
        FALSE,
      ],
    ];
  }

  /**
   * @covers ::normalize
   */
  public function testNormalize() {
    $sub_content_type = $this
      ->getRandomGenerator()
      ->string();
    $data = [
      Response::create('Foo!'),
      Response::create('Bar'),
    ];
    $actual = $this->sut
      ->normalize($data, NULL, [
      'sub-content-type' => $sub_content_type,
    ]);
    $parts = explode(', ', $actual['headers']['Content-Type']);
    $parts = explode('; ', $parts[0]);
    parse_str($parts[1], $parts);
    $delimiter = substr($parts['boundary'], 1, strlen($parts['boundary']) - 2);
    $this
      ->assertStringStartsWith('--' . $delimiter, $actual['content']);
    $this
      ->assertStringEndsWith('--' . $delimiter . '--', $actual['content']);
    $this
      ->assertRegExp("/\r\nFoo!\r\n/", $actual['content']);
    $this
      ->assertRegExp("/\r\nBar\r\n/", $actual['content']);
  }

}

Classes