silverstripe-framework/tests/core/DiffTest.php

57 lines
1.2 KiB
PHP
Raw Normal View History

<?php
/**
* @package cms
* @subpackage tests
*/
class DiffTest extends SapphireTest {
2014-08-15 08:53:05 +02:00
/**
* @see https://groups.google.com/forum/#!topic/silverstripe-dev/yHcluCvuszo
*/
public function testTableDiff() {
if(!class_exists('DOMDocument')) {
$this->markTestSkipped('"DOMDocument" required');
return;
}
2014-08-15 08:53:05 +02:00
$from = "<table>
<tbody>
<tr class=\"blah\">
<td colspan=\"2\">Row 1</td>
</tr>
<tr class=\"foo\">
<td>Row 2</td>
<td>Row 2</td>
</tr>
<tr>
<td>Row 3</td>
<td>Row 3</td>
</tr>
</tbody>
</table>";
2014-08-15 08:53:05 +02:00
$to = "<table class=\"new-class\">
<tbody>
<tr class=\"blah\">
<td colspan=\"2\">Row 1</td>
</tr>
<tr class=\"foo\">
<td>Row 2</td>
<td>Row 2</td>
</tr>
</tbody>
</table>";
2014-08-15 08:53:05 +02:00
$expected = "<ins>" . $to . "</ins>" . "<del>" . $from . "</del>";
$compare = Diff::compareHTML($from, $to);
2014-08-15 08:53:05 +02:00
// Very hard to debug this way, wouldn't need to do this if PHP had an *actual* DOM parsing lib,
// and not just the poor excuse that is DOMDocument
$compare = preg_replace('/[\s\t\n\r]*/', '', $compare);
$expected = preg_replace('/[\s\t\n\r]*/', '', $expected);
2014-08-15 08:53:05 +02:00
$this->assertEquals($compare, $expected);
}
}