PHPWord/tests/PhpWord/Tests/Section/ObjectTest.php

68 lines
2.1 KiB
PHP
Raw Normal View History

2014-03-09 19:09:22 +01:00
<?php
namespace PhpOffice\PhpWord\Tests\Section;
2014-03-09 19:09:22 +01: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";
$oObject = new Object($src);
2014-03-09 19:09:22 +01: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";
$oObject = new Object($src);
2014-03-09 19:09:22 +01: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";
$oObject = new Object($src, array('width' => '230px'));
2014-03-09 19:09:22 +01: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";
$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";
$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";
$oObject = new Object($src);
2014-03-09 15:04:23 -04:00
$iVal = rand(1, 1000);
$oObject->setObjectId($iVal);
$this->assertEquals($oObject->getObjectId(), $iVal);
}
}