PhpSpreadsheet/tests/PhpSpreadsheetTests/Reader/HtmlTest.php

65 lines
1.9 KiB
PHP
Raw Normal View History

2016-10-23 19:18:59 +00:00
<?php
namespace PhpOffice\PhpSpreadsheetTests\Reader;
use PhpOffice\PhpSpreadsheet\Reader\Html;
use PHPUnit\Framework\TestCase;
2016-10-23 19:18:59 +00:00
class HtmlTest extends TestCase
2016-10-23 19:18:59 +00:00
{
public function testCsvWithAngleBracket()
{
$filename = __DIR__ . '/../../data/Reader/HTML/csv_with_angle_bracket.csv';
2017-08-02 21:13:08 +00:00
$reader = new Html();
self::assertFalse($reader->canRead($filename));
2016-10-23 19:18:59 +00:00
}
public function providerCanReadVerySmallFile()
{
$padding = str_repeat('a', 2048);
return [
[true, ' <html> ' . $padding . ' </html> '],
[true, ' <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html>' . $padding . '</html>'],
[true, '<html></html>'],
[false, ''],
];
}
/**
* @dataProvider providerCanReadVerySmallFile
*
* @param bool $expected
* @param string $content
*/
public function testCanReadVerySmallFile($expected, $content)
{
$filename = tempnam(sys_get_temp_dir(), 'html');
file_put_contents($filename, $content);
$reader = new Html();
$actual = $reader->canRead($filename);
unlink($filename);
self::assertSame($expected, $actual);
}
public function testBackgroundColorInRanding()
{
$html = '<table>
<tr>
<td style="background-color: #000000;color: #FFFFFF">Blue background</td>
</tr>
</table>';
$filename = tempnam(sys_get_temp_dir(), 'html');
file_put_contents($filename, $html);
$reader = new Html();
$spreadsheet = $reader->load($filename);
$firstSheet = $spreadsheet->getSheet(0);
$style = $firstSheet->getCell('A1')->getStyle();
self::assertEquals('FFFFFF', $style->getFont()->getColor()->getRGB());
unlink($filename);
}
2016-10-23 19:18:59 +00:00
}