forked from PHPOffice/PhpSpreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix PHPOffice#4241. Some security batches caused a minor break in Drawings, forcing `setWorksheet` to come after `setPath`. Although the problem is easily fixed in user code, this was not an intended change. Some slight recoding restores the earlier functionality where the order of calls was not important, without sacrificing the security gains. This change will be back-ported to the other active branches to which the security patch had been applied.
- Loading branch information
Showing
4 changed files
with
107 additions
and
12 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
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,84 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace PhpOffice\PhpSpreadsheetTests\Worksheet; | ||
|
||
use PhpOffice\PhpSpreadsheet\Spreadsheet; | ||
use PhpOffice\PhpSpreadsheet\Worksheet\Drawing; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class Issue4241Test extends TestCase | ||
{ | ||
public function testIssue4241(): void | ||
{ | ||
// setWorksheet needed to come after setPath | ||
$badPath = 'tests/data/Writer/XLSX/xgreen_square.gif'; | ||
$goodPath = 'tests/data/Writer/XLSX/green_square.gif'; | ||
$spreadsheet = new Spreadsheet(); | ||
$sheet = $spreadsheet->getActiveSheet(); | ||
$drawing = new Drawing(); | ||
$drawing->setName('Green Square'); | ||
$drawing->setWorksheet($sheet); | ||
$drawings = $sheet->getDrawingCollection(); | ||
self::assertCount(1, $drawings); | ||
$drawing0 = $drawings[0]; | ||
self::assertInstanceOf(Drawing::class, $drawing0); | ||
self::assertSame('', $drawing0->getPath()); | ||
self::assertSame('A1', $drawing0->getCoordinates()); | ||
$maxRow = $sheet->getHighestDataRow(); | ||
$maxCol = $sheet->getHighestDataColumn(); | ||
self::assertSame(1, $maxRow); | ||
self::assertSame('A', $maxCol); | ||
|
||
$drawing->setCoordinates('E5'); | ||
$drawings = $sheet->getDrawingCollection(); | ||
self::assertCount(1, $drawings); | ||
$drawing0 = $drawings[0]; | ||
self::assertInstanceOf(Drawing::class, $drawing0); | ||
self::assertSame('', $drawing0->getPath()); | ||
self::assertSame('E5', $drawing0->getCoordinates()); | ||
$maxRow = $sheet->getHighestDataRow(); | ||
$maxCol = $sheet->getHighestDataColumn(); | ||
self::assertSame(1, $maxRow); | ||
self::assertSame('A', $maxCol); | ||
|
||
$drawing->setPath($badPath, false); | ||
$drawings = $sheet->getDrawingCollection(); | ||
self::assertCount(1, $drawings); | ||
$drawing0 = $drawings[0]; | ||
self::assertInstanceOf(Drawing::class, $drawing0); | ||
self::assertSame('', $drawing0->getPath()); | ||
self::assertSame('E5', $drawing0->getCoordinates()); | ||
$maxRow = $sheet->getHighestDataRow(); | ||
$maxCol = $sheet->getHighestDataColumn(); | ||
self::assertSame(1, $maxRow); | ||
self::assertSame('A', $maxCol); | ||
|
||
$drawing->setPath($goodPath); | ||
$drawings = $sheet->getDrawingCollection(); | ||
self::assertCount(1, $drawings); | ||
$drawing0 = $drawings[0]; | ||
self::assertInstanceOf(Drawing::class, $drawing0); | ||
self::assertSame($goodPath, $drawing0->getPath()); | ||
self::assertSame('E5', $drawing0->getCoordinates()); | ||
$maxRow = $sheet->getHighestDataRow(); | ||
$maxCol = $sheet->getHighestDataColumn(); | ||
self::assertSame(5, $maxRow); | ||
self::assertSame('E', $maxCol); | ||
|
||
$drawing->setCoordinates('G3'); | ||
$drawings = $sheet->getDrawingCollection(); | ||
self::assertCount(1, $drawings); | ||
$drawing0 = $drawings[0]; | ||
self::assertInstanceOf(Drawing::class, $drawing0); | ||
self::assertSame($goodPath, $drawing0->getPath()); | ||
self::assertSame('G3', $drawing0->getCoordinates()); | ||
$maxRow = $sheet->getHighestDataRow(); | ||
$maxCol = $sheet->getHighestDataColumn(); | ||
self::assertSame(5, $maxRow); | ||
self::assertSame('G', $maxCol); | ||
|
||
$spreadsheet->disconnectWorksheets(); | ||
} | ||
} |