Files
Adrien Crivelli ec4098c8fd Strict mode for all tests
While we might never be able to have 100% of our code strict, we can at
the very least do it for all of our tests. This ensures that our tests
are using our API with the types as intended by the test author, and not
silently be cast to what our API requires.
2023-09-07 17:44:56 +08:00

48 lines
2.6 KiB
PHP

<?php
declare(strict_types=1);
namespace PhpOffice\PhpSpreadsheetTests\Calculation;
use PhpOffice\PhpSpreadsheet\Cell\DataType;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
use PHPUnit\Framework\TestCase;
class StringLengthTest extends TestCase
{
public function testStringLength(): void
{
$spreadsheet = new Spreadsheet();
$sheet = $spreadsheet->getActiveSheet();
// Note use Armenian character below to make sure chars, not bytes
$longstring = str_repeat('Ԁ', DataType::MAX_STRING_LENGTH - 5);
$sheet->getCell('C1')->setValue($longstring);
self::assertSame($longstring, $sheet->getCell('C1')->getValue());
$sheet->getCell('C2')->setValue($longstring . 'abcdef');
self::assertSame($longstring . 'abcde', $sheet->getCell('C2')->getValue());
$sheet->getCell('C3')->setValue('abcdef');
$sheet->getCell('C4')->setValue('=C1 & C3');
self::assertSame($longstring . 'abcde', $sheet->getCell('C4')->getCalculatedValue(), 'truncate cell concat with cell');
$sheet->getCell('C5')->setValue('=C1 & "A"');
self::assertSame($longstring . 'A', $sheet->getCell('C5')->getCalculatedValue(), 'okay cell concat with literal');
$sheet->getCell('C6')->setValue('=C1 & "ABCDEF"');
self::assertSame($longstring . 'ABCDE', $sheet->getCell('C6')->getCalculatedValue(), 'truncate cell concat with literal');
$sheet->getCell('C7')->setValue('="ABCDEF" & C1');
self::assertSame('ABCDEF' . str_repeat('Ԁ', DataType::MAX_STRING_LENGTH - 6), $sheet->getCell('C7')->getCalculatedValue(), 'truncate literal concat with cell');
$sheet->getCell('C8')->setValue('="ABCDE" & C1');
self::assertSame('ABCDE' . $longstring, $sheet->getCell('C8')->getCalculatedValue(), 'okay literal concat with cell');
$sheet->getCell('C9')->setValue('=false & true & 3');
self::assertSame('FALSETRUE3', $sheet->getCell('C9')->getCalculatedValue());
$sheet->getCell('D8')->setValue('abcde');
$sheet->getCell('D9')->setValue('=D8 & "*" & D8');
self::assertSame('abcde*abcde', $sheet->getCell('D9')->getCalculatedValue());
$sheet->getCell('E8')->setValue('"abcde"');
$sheet->getCell('E9')->setValue('=E8 & "*" & E8');
self::assertSame('"abcde"*"abcde"', $sheet->getCell('E9')->getCalculatedValue());
$sheet->getCell('F8')->setValue('"abcde"');
$sheet->getCell('F9')->setValue('=F8 & "*" & "abcde"');
self::assertSame('"abcde"*abcde', $sheet->getCell('F9')->getCalculatedValue());
$spreadsheet->disconnectWorksheets();
}
}