You are here

StreamEncoderTest.php in Replication 8

File

tests/src/Kernel/Encoder/StreamEncoderTest.php
View source
<?php

namespace Drupal\Tests\replication\Kernel\Encoder;

use Drupal\KernelTests\KernelTestBase;
use Drupal\replication\Encoder\StreamEncoder;

/**
 * Tests the stream encoder.
 *
 * @group replication
 */
class StreamEncoderTest extends KernelTestBase {

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'system',
  ];

  /**
   * @var \Drupal\replication\Encoder\StreamEncoder
   */
  protected $encoder;
  protected function setUp() {
    parent::setUp();
    $this->encoder = new StreamEncoder();
  }
  public function testEncode() {
    $a_string = 'foo';
    $a = fopen('php://memory', 'w+b');
    fwrite($a, $a_string);
    rewind($a);
    $b_string = 'foo';
    $b = fopen('php://memory', 'w+b');
    fwrite($b, $b_string);
    rewind($b);
    $this
      ->assertEquals($a_string, $this->encoder
      ->encode($a, 'stream'));
    $this
      ->assertEquals(base64_encode($b_string), $this->encoder
      ->encode($b, 'base64_stream'));
  }
  public function testDencode() {
    $a_string = 'foo';
    $a = $this->encoder
      ->decode($a_string, 'stream');
    $b_string = base64_encode('foo');
    $b = $this->encoder
      ->decode($b_string, 'base64_stream');
    $this
      ->assertTrue(is_resource($a));
    $this
      ->assertEquals(stream_get_contents($a), $a_string);
    $this
      ->assertTrue(is_resource($b));
    $this
      ->assertEquals(stream_get_contents($b), base64_decode($b_string));
  }

}

Classes

Namesort descending Description
StreamEncoderTest Tests the stream encoder.