class DiffArrayTest

Tests the DiffArray helper class.

Hierarchy

  • class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase

Expanded class hierarchy of DiffArrayTest

File

drupal/core/tests/Drupal/Tests/Core/Common/DiffArrayTest.php, line 16
Contains \Drupal\Tests\Core\Common\DiffArrayTest.

Namespace

Drupal\Tests\Core\Common
View source
class DiffArrayTest extends UnitTestCase {

  /**
   * Array to use for testing.
   *
   * @var array
   */
  protected $array1;

  /**
   * Array to use for testing.
   *
   * @var array
   */
  protected $array2;
  public static function getInfo() {
    return array(
      'name' => 'DiffArray functionality',
      'description' => 'Tests the DiffArray helper class.',
      'group' => 'System',
    );
  }
  function setUp() {
    parent::setUp();
    $this->array1 = array(
      'same' => 'yes',
      'different' => 'no',
      'array_empty_diff' => array(),
      'null' => NULL,
      'int_diff' => 1,
      'array_diff' => array(
        'same' => 'same',
        'array' => array(
          'same' => 'same',
        ),
      ),
      'array_compared_to_string' => array(
        'value',
      ),
      'string_compared_to_array' => 'value',
      'new' => 'new',
    );
    $this->array2 = array(
      'same' => 'yes',
      'different' => 'yes',
      'array_empty_diff' => array(),
      'null' => NULL,
      'int_diff' => '1',
      'array_diff' => array(
        'same' => 'different',
        'array' => array(
          'same' => 'same',
        ),
      ),
      'array_compared_to_string' => 'value',
      'string_compared_to_array' => array(
        'value',
      ),
    );
  }

  /**
   * Tests DiffArray::diffAssocRecursive().
   */
  public function testDiffAssocRecursive() {
    $expected = array(
      'different' => 'no',
      'int_diff' => 1,
      // The 'array' key should not be returned, as it's the same.
      'array_diff' => array(
        'same' => 'same',
      ),
      'array_compared_to_string' => array(
        'value',
      ),
      'string_compared_to_array' => 'value',
      'new' => 'new',
    );
    $this
      ->assertSame(DiffArray::diffAssocRecursive($this->array1, $this->array2), $expected);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DiffArrayTest::$array1 protected property Array to use for testing.
DiffArrayTest::$array2 protected property Array to use for testing.
DiffArrayTest::getInfo public static function This method exists to support the simpletest UI runner. Overrides UnitTestCase::getInfo
DiffArrayTest::setUp function
DiffArrayTest::testDiffAssocRecursive public function Tests DiffArray::diffAssocRecursive().
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed in array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::randomName public static function Generates a random string containing letters and numbers.