PHPWord/test/PhpWord/Section/ObjectTest.php

86 lines
2.6 KiB
PHP
Raw Normal View History

2014-03-09 19:09:22 +01:00
<?php
namespace 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()
{
$src = \join(
\DIRECTORY_SEPARATOR,
array(\PHPWORD_TESTS_BASE_DIR, 'data', 'documents', 'sheet.xls')
2014-03-09 15:04:23 -04:00
);
$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()
{
$src = \join(
\DIRECTORY_SEPARATOR,
array(\PHPWORD_TESTS_BASE_DIR, 'data', 'xsl', 'passthrough.xsl')
2014-03-09 15:04:23 -04:00
);
$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()
{
$src = \join(
\DIRECTORY_SEPARATOR,
array(\PHPWORD_TESTS_BASE_DIR, 'data', 'documents', 'sheet.xls')
2014-03-09 15:04:23 -04:00
);
$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()
{
$src = \join(
\DIRECTORY_SEPARATOR,
array(\PHPWORD_TESTS_BASE_DIR, 'data', 'documents', 'sheet.xls')
2014-03-09 15:04:23 -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()
{
$src = \join(
\DIRECTORY_SEPARATOR,
array(\PHPWORD_TESTS_BASE_DIR, 'data', 'documents', 'sheet.xls')
2014-03-09 15:04:23 -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()
{
$src = \join(
\DIRECTORY_SEPARATOR,
array(\PHPWORD_TESTS_BASE_DIR, 'data', 'documents', 'sheet.xls')
2014-03-09 15:04:23 -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);
}
}