PhpSpreadsheet/tests/PhpSpreadsheetTests/Cell/HyperlinkTest.php

81 lines
2.3 KiB
PHP
Raw Normal View History

<?php
namespace PhpOffice\PhpSpreadsheetTests\Cell;
use PhpOffice\PhpSpreadsheet\Cell\Hyperlink;
2016-03-22 14:35:50 +00:00
class HyperlinkTest extends \PHPUnit_Framework_TestCase
{
2015-05-17 13:00:02 +00:00
public function testGetUrl()
{
$urlValue = 'http://www.phpexcel.net';
$testInstance = new Hyperlink($urlValue);
2015-05-17 13:00:02 +00:00
$result = $testInstance->getUrl();
2015-05-17 16:34:30 +00:00
$this->assertEquals($urlValue, $result);
2015-05-17 13:00:02 +00:00
}
2015-05-17 13:00:02 +00:00
public function testSetUrl()
{
$initialUrlValue = 'http://www.phpexcel.net';
$newUrlValue = 'http://github.com/PHPOffice/PhpSpreadsheet';
$testInstance = new Hyperlink($initialUrlValue);
2015-05-17 13:00:02 +00:00
$result = $testInstance->setUrl($newUrlValue);
$this->assertTrue($result instanceof Hyperlink);
2015-05-17 13:00:02 +00:00
$result = $testInstance->getUrl();
2015-05-17 16:34:30 +00:00
$this->assertEquals($newUrlValue, $result);
2015-05-17 13:00:02 +00:00
}
2015-05-17 13:00:02 +00:00
public function testGetTooltip()
{
$tooltipValue = 'PhpSpreadsheet Web Site';
$testInstance = new Hyperlink(null, $tooltipValue);
2015-05-17 13:00:02 +00:00
$result = $testInstance->getTooltip();
2015-05-17 16:34:30 +00:00
$this->assertEquals($tooltipValue, $result);
2015-05-17 13:00:02 +00:00
}
2015-05-17 13:00:02 +00:00
public function testSetTooltip()
{
$initialTooltipValue = 'PhpSpreadsheet Web Site';
$newTooltipValue = 'PhpSpreadsheet Repository on Github';
$testInstance = new Hyperlink(null, $initialTooltipValue);
2015-05-17 13:00:02 +00:00
$result = $testInstance->setTooltip($newTooltipValue);
$this->assertTrue($result instanceof Hyperlink);
2015-05-17 13:00:02 +00:00
$result = $testInstance->getTooltip();
2015-05-17 16:34:30 +00:00
$this->assertEquals($newTooltipValue, $result);
2015-05-17 13:00:02 +00:00
}
2015-05-17 13:00:02 +00:00
public function testIsInternal()
{
$initialUrlValue = 'http://www.phpexcel.net';
$newUrlValue = 'sheet://Worksheet1!A1';
$testInstance = new Hyperlink($initialUrlValue);
2015-05-17 13:00:02 +00:00
$result = $testInstance->isInternal();
$this->assertFalse($result);
2015-05-17 13:00:02 +00:00
$testInstance->setUrl($newUrlValue);
$result = $testInstance->isInternal();
$this->assertTrue($result);
}
2015-05-17 13:00:02 +00:00
public function testGetHashCode()
{
$urlValue = 'http://www.phpexcel.net';
$tooltipValue = 'PhpSpreadsheet Web Site';
$initialExpectedHash = '6f1d4cbf40034b9ddc3fbf6019506e91';
$testInstance = new Hyperlink($urlValue, $tooltipValue);
2015-05-17 13:00:02 +00:00
$result = $testInstance->getHashCode();
2015-05-17 16:34:30 +00:00
$this->assertEquals($initialExpectedHash, $result);
2015-05-17 13:00:02 +00:00
}
}