2014-03-09 19:09:22 +01:00
|
|
|
<?php
|
2014-03-23 11:59:22 -04:00
|
|
|
namespace PhpOffice\PhpWord\Tests\Section;
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-18 17:26:03 +04:00
|
|
|
use PhpOffice\PhpWord\Section\Object;
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
class ObjectTest extends \PHPUnit_Framework_TestCase
|
|
|
|
|
{
|
|
|
|
|
public function testConstructWithSupportedFiles()
|
|
|
|
|
{
|
2014-03-23 12:37:31 -04:00
|
|
|
$src = __DIR__ . "/../_files/documents/sheet.xls";
|
2014-03-18 17:26:03 +04:00
|
|
|
$oObject = new Object($src);
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-18 17:26:03 +04:00
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Section\\Object', $oObject);
|
|
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Style\\Image', $oObject->getStyle());
|
2014-03-09 15:04:23 -04:00
|
|
|
$this->assertEquals($oObject->getSource(), $src);
|
|
|
|
|
}
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
public function testConstructWithNotSupportedFiles()
|
|
|
|
|
{
|
2014-03-23 12:37:31 -04:00
|
|
|
$src = __DIR__ . "/../_files/xsl/passthrough.xsl";
|
2014-03-18 17:26:03 +04:00
|
|
|
$oObject = new Object($src);
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-18 17:26:03 +04:00
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Section\\Object', $oObject);
|
2014-03-09 15:04:23 -04:00
|
|
|
$this->assertEquals($oObject->getSource(), null);
|
|
|
|
|
$this->assertEquals($oObject->getStyle(), null);
|
|
|
|
|
}
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
public function testConstructWithSupportedFilesAndStyle()
|
|
|
|
|
{
|
2014-03-23 12:37:31 -04:00
|
|
|
$src = __DIR__ . "/../_files/documents/sheet.xls";
|
2014-03-18 17:26:03 +04:00
|
|
|
$oObject = new Object($src, array('width' => '230px'));
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-18 17:26:03 +04:00
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Section\\Object', $oObject);
|
|
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Style\\Image', $oObject->getStyle());
|
2014-03-09 15:04:23 -04:00
|
|
|
$this->assertEquals($oObject->getSource(), $src);
|
|
|
|
|
}
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
public function testRelationId()
|
|
|
|
|
{
|
2014-03-23 12:37:31 -04:00
|
|
|
$src = __DIR__ . "/../_files/documents/sheet.xls";
|
2014-03-18 17:26:03 +04:00
|
|
|
$oObject = new Object($src);
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
$iVal = rand(1, 1000);
|
|
|
|
|
$oObject->setRelationId($iVal);
|
|
|
|
|
$this->assertEquals($oObject->getRelationId(), $iVal);
|
|
|
|
|
}
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
public function testImageRelationId()
|
|
|
|
|
{
|
2014-03-23 12:37:31 -04:00
|
|
|
$src = __DIR__ . "/../_files/documents/sheet.xls";
|
2014-03-18 17:26:03 +04:00
|
|
|
$oObject = new Object($src);
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
$iVal = rand(1, 1000);
|
|
|
|
|
$oObject->setImageRelationId($iVal);
|
|
|
|
|
$this->assertEquals($oObject->getImageRelationId(), $iVal);
|
|
|
|
|
}
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-09 15:04:23 -04:00
|
|
|
public function testObjectId()
|
|
|
|
|
{
|
2014-03-23 12:37:31 -04:00
|
|
|
$src = __DIR__ . "/../_files/documents/sheet.xls";
|
2014-03-18 17:26:03 +04:00
|
|
|
$oObject = new Object($src);
|
2014-03-09 15:04:23 -04:00
|
|
|
|
|
|
|
|
$iVal = rand(1, 1000);
|
|
|
|
|
$oObject->setObjectId($iVal);
|
|
|
|
|
$this->assertEquals($oObject->getObjectId(), $iVal);
|
|
|
|
|
}
|
2014-03-11 21:44:54 +07:00
|
|
|
}
|