-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4184 from oleibman/issue1107
Invalid Html Due to Cached Filesize
- Loading branch information
Showing
3 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace PhpOffice\PhpSpreadsheetTests\Reader\Html; | ||
|
||
use PhpOffice\PhpSpreadsheet\Reader\Html as HtmlReader; | ||
use PhpOffice\PhpSpreadsheet\Shared\File; | ||
use PhpOffice\PhpSpreadsheet\Spreadsheet; | ||
use PhpOffice\PhpSpreadsheet\Writer\Html as HtmlWriter; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class Issue1107Test extends TestCase | ||
{ | ||
private string $outfile = ''; | ||
|
||
protected function tearDown(): void | ||
{ | ||
if ($this->outfile !== '') { | ||
unlink($this->outfile); | ||
$this->outfile = ''; | ||
} | ||
} | ||
|
||
public function testIssue1107(): void | ||
{ | ||
// failure due to cached file size | ||
$outstr = str_repeat('a', 1023) . "\n"; | ||
$allout = str_repeat($outstr, 10); | ||
$this->outfile = $outfile = File::temporaryFilename(); | ||
file_put_contents($outfile, $allout); | ||
self::assertSame(10240, filesize($outfile)); | ||
$spreadsheet = new Spreadsheet(); | ||
$sheet = $spreadsheet->getActiveSheet(); | ||
$sheet->getCell('A1')->setValue(1); | ||
$writer = new HtmlWriter($spreadsheet); | ||
$writer->save($outfile); | ||
$spreadsheet->disconnectWorksheets(); | ||
$reader = new HtmlReader(); | ||
$spreadsheet2 = $reader->load($outfile); | ||
$sheet2 = $spreadsheet2->getActiveSheet(); | ||
self::assertSame(1, $sheet2->getCell('A1')->getValue()); | ||
|
||
$spreadsheet2->disconnectWorksheets(); | ||
} | ||
} |