2014-03-09 19:09:22 +01:00
|
|
|
<?php
|
2014-03-27 23:55:06 +07:00
|
|
|
/**
|
2014-05-05 13:06:53 +04:00
|
|
|
* This file is part of PHPWord - A pure PHP library for reading and writing
|
|
|
|
|
* word processing documents.
|
|
|
|
|
*
|
|
|
|
|
* PHPWord is free software distributed under the terms of the GNU Lesser
|
|
|
|
|
* General Public License version 3 as published by the Free Software Foundation.
|
|
|
|
|
*
|
|
|
|
|
* For the full copyright and license information, please read the LICENSE
|
|
|
|
|
* file that was distributed with this source code. For the full list of
|
|
|
|
|
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
|
2014-03-27 23:55:06 +07:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/PHPOffice/PHPWord
|
2014-05-05 12:38:31 +04:00
|
|
|
* @copyright 2010-2014 PHPWord contributors
|
2014-05-04 21:03:28 +04:00
|
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
2014-03-27 23:55:06 +07:00
|
|
|
*/
|
|
|
|
|
|
2014-03-31 01:13:02 +07:00
|
|
|
namespace PhpOffice\PhpWord\Tests\Element;
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-31 01:13:02 +07:00
|
|
|
use PhpOffice\PhpWord\Element\Object;
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-27 23:55:06 +07:00
|
|
|
/**
|
2014-03-31 01:13:02 +07:00
|
|
|
* Test class for PhpOffice\PhpWord\Element\Object
|
2014-03-27 23:55:06 +07:00
|
|
|
*
|
2014-03-31 01:13:02 +07:00
|
|
|
* @coversDefaultClass \PhpOffice\PhpWord\Element\Object
|
2014-03-27 23:55:06 +07:00
|
|
|
* @runTestsInSeparateProcesses
|
|
|
|
|
*/
|
2014-03-09 15:04:23 -04:00
|
|
|
class ObjectTest extends \PHPUnit_Framework_TestCase
|
|
|
|
|
{
|
2014-03-30 14:15:23 +07:00
|
|
|
/**
|
|
|
|
|
* Create new instance with supported files
|
|
|
|
|
*/
|
2014-03-09 15:04:23 -04:00
|
|
|
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-31 01:13:02 +07:00
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Element\\Object', $oObject);
|
2014-03-18 17:26:03 +04:00
|
|
|
$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-30 14:15:23 +07:00
|
|
|
/**
|
|
|
|
|
* Create new instance with non-supported files
|
2014-05-04 22:53:56 +07:00
|
|
|
*
|
|
|
|
|
* @expectedException \PhpOffice\PhpWord\Exception\InvalidObjectException
|
2014-03-30 14:15:23 +07: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-05-04 22:53:56 +07:00
|
|
|
$oObject->getSource();
|
2014-03-09 15:04:23 -04:00
|
|
|
}
|
2014-03-09 19:09:22 +01:00
|
|
|
|
2014-03-30 14:15:23 +07:00
|
|
|
/**
|
|
|
|
|
* Create with style
|
|
|
|
|
*/
|
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-31 01:13:02 +07:00
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Element\\Object', $oObject);
|
2014-03-18 17:26:03 +04:00
|
|
|
$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-30 14:15:23 +07:00
|
|
|
/**
|
|
|
|
|
* Set/get relation Id
|
|
|
|
|
*/
|
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-30 14:15:23 +07:00
|
|
|
/**
|
|
|
|
|
* Set/get image relation Id
|
|
|
|
|
*/
|
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-11 21:44:54 +07:00
|
|
|
}
|