You are here

class DiffFormatterTest in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Diff/DiffFormatterTest.php \Drupal\Tests\Component\Diff\DiffFormatterTest
  2. 9 core/tests/Drupal/Tests/Component/Diff/DiffFormatterTest.php \Drupal\Tests\Component\Diff\DiffFormatterTest

Test DiffFormatter classes.

@coversDefaultClass \Drupal\Component\Diff\DiffFormatter

@group Diff

Hierarchy

  • class \Drupal\Tests\Component\Diff\DiffFormatterTest extends \PHPUnit\Framework\TestCase

Expanded class hierarchy of DiffFormatterTest

File

core/tests/Drupal/Tests/Component/Diff/DiffFormatterTest.php, line 16

Namespace

Drupal\Tests\Component\Diff
View source
class DiffFormatterTest extends TestCase {

  /**
   * @return array
   *   - Expected formatted diff output.
   *   - First array of text to diff.
   *   - Second array of text to diff.
   */
  public function provideTestDiff() {
    return [
      'empty' => [
        '',
        [],
        [],
      ],
      'add' => [
        "3a3\n> line2a\n",
        [
          'line1',
          'line2',
          'line3',
        ],
        [
          'line1',
          'line2',
          'line2a',
          'line3',
        ],
      ],
      'delete' => [
        "3d3\n< line2a\n",
        [
          'line1',
          'line2',
          'line2a',
          'line3',
        ],
        [
          'line1',
          'line2',
          'line3',
        ],
      ],
      'change' => [
        "3c3\n< line2a\n---\n> line2b\n",
        [
          'line1',
          'line2',
          'line2a',
          'line3',
        ],
        [
          'line1',
          'line2',
          'line2b',
          'line3',
        ],
      ],
    ];
  }

  /**
   * Tests whether op classes returned by DiffEngine::diff() match expectations.
   *
   * @covers ::format
   * @dataProvider provideTestDiff
   */
  public function testDiff($expected, $from, $to) {
    $diff = new Diff($from, $to);
    $formatter = new DiffFormatter();
    $output = $formatter
      ->format($diff);
    $this
      ->assertEquals($expected, $output);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DiffFormatterTest::provideTestDiff public function
DiffFormatterTest::testDiff public function Tests whether op classes returned by DiffEngine::diff() match expectations.