mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-25 02:08:20 +00:00
ec4098c8fd
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.
84 lines
2.4 KiB
PHP
84 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Cell;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Cell\Hyperlink;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class HyperlinkTest extends TestCase
|
|
{
|
|
public function testGetUrl(): void
|
|
{
|
|
$urlValue = 'https://www.example.com';
|
|
|
|
$testInstance = new Hyperlink($urlValue);
|
|
|
|
$result = $testInstance->getUrl();
|
|
self::assertEquals($urlValue, $result);
|
|
}
|
|
|
|
public function testSetUrl(): void
|
|
{
|
|
$initialUrlValue = 'https://www.example.com';
|
|
$newUrlValue = 'http://github.com/PHPOffice/PhpSpreadsheet';
|
|
|
|
$testInstance = new Hyperlink($initialUrlValue);
|
|
$result = $testInstance->setUrl($newUrlValue);
|
|
self::assertInstanceOf(Hyperlink::class, $result);
|
|
|
|
$result = $testInstance->getUrl();
|
|
self::assertEquals($newUrlValue, $result);
|
|
}
|
|
|
|
public function testGetTooltip(): void
|
|
{
|
|
$tooltipValue = 'PhpSpreadsheet Web Site';
|
|
|
|
$testInstance = new Hyperlink('', $tooltipValue);
|
|
|
|
$result = $testInstance->getTooltip();
|
|
self::assertEquals($tooltipValue, $result);
|
|
}
|
|
|
|
public function testSetTooltip(): void
|
|
{
|
|
$initialTooltipValue = 'PhpSpreadsheet Web Site';
|
|
$newTooltipValue = 'PhpSpreadsheet Repository on Github';
|
|
|
|
$testInstance = new Hyperlink('', $initialTooltipValue);
|
|
$result = $testInstance->setTooltip($newTooltipValue);
|
|
self::assertInstanceOf(Hyperlink::class, $result);
|
|
|
|
$result = $testInstance->getTooltip();
|
|
self::assertEquals($newTooltipValue, $result);
|
|
}
|
|
|
|
public function testIsInternal(): void
|
|
{
|
|
$initialUrlValue = 'https://www.example.com';
|
|
$newUrlValue = 'sheet://Worksheet1!A1';
|
|
|
|
$testInstance = new Hyperlink($initialUrlValue);
|
|
$result = $testInstance->isInternal();
|
|
self::assertFalse($result);
|
|
|
|
$testInstance->setUrl($newUrlValue);
|
|
$result = $testInstance->isInternal();
|
|
self::assertTrue($result);
|
|
}
|
|
|
|
public function testGetHashCode(): void
|
|
{
|
|
$urlValue = 'https://www.example.com';
|
|
$tooltipValue = 'PhpSpreadsheet Web Site';
|
|
$initialExpectedHash = '3a8d5a682dba27276dce538c39402437';
|
|
|
|
$testInstance = new Hyperlink($urlValue, $tooltipValue);
|
|
|
|
$result = $testInstance->getHashCode();
|
|
self::assertEquals($initialExpectedHash, $result);
|
|
}
|
|
}
|