150 lines
4.4 KiB
PHP
150 lines
4.4 KiB
PHP
<?php
|
|
/**
|
|
* 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.
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2010-2016 PHPWord contributors
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Style;
|
|
|
|
/**
|
|
* Test class for PhpOffice\PhpWord\Style\Image
|
|
*
|
|
* @coversDefaultClass \PhpOffice\PhpWord\Style\Image
|
|
* @runTestsInSeparateProcesses
|
|
*/
|
|
class LineTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* Test setting style with normal value
|
|
*/
|
|
public function testSetGetNormal()
|
|
{
|
|
$object = new Line();
|
|
|
|
$properties = array(
|
|
'connectorType' => \PhpOffice\PhpWord\Style\Line::CONNECTOR_TYPE_STRAIGHT,
|
|
'beginArrow' => \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_BLOCK,
|
|
'endArrow' => \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_OVAL,
|
|
'dash' => \PhpOffice\PhpWord\Style\Line::DASH_STYLE_LONG_DASH_DOT_DOT,
|
|
'weight' => 10,
|
|
'color' => 'red',
|
|
);
|
|
foreach ($properties as $key => $value) {
|
|
$set = "set{$key}";
|
|
$get = "get{$key}";
|
|
$object->$set($value);
|
|
$this->assertEquals($value, $object->$get());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test setStyleValue method
|
|
*/
|
|
public function testSetStyleValue()
|
|
{
|
|
$object = new Line();
|
|
|
|
$properties = array(
|
|
'connectorType' => \PhpOffice\PhpWord\Style\Line::CONNECTOR_TYPE_STRAIGHT,
|
|
'beginArrow' => \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_BLOCK,
|
|
'endArrow' => \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_OVAL,
|
|
'dash' => \PhpOffice\PhpWord\Style\Line::DASH_STYLE_LONG_DASH_DOT_DOT,
|
|
'weight' => 10,
|
|
'color' => 'red',
|
|
);
|
|
foreach ($properties as $key => $value) {
|
|
$get = "get{$key}";
|
|
$object->setStyleValue("{$key}", $value);
|
|
$this->assertEquals($value, $object->$get());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test set/get flip
|
|
*/
|
|
public function testSetGetFlip()
|
|
{
|
|
$expected = true;
|
|
$object = new Line();
|
|
$object->setFlip($expected);
|
|
$this->assertEquals($expected, $object->isFlip());
|
|
}
|
|
|
|
/**
|
|
* Test set/get connectorType
|
|
*/
|
|
public function testSetGetConnectorType()
|
|
{
|
|
$expected = \PhpOffice\PhpWord\Style\Line::CONNECTOR_TYPE_STRAIGHT;
|
|
$object = new Line();
|
|
$object->setConnectorType($expected);
|
|
$this->assertEquals($expected, $object->getConnectorType());
|
|
}
|
|
|
|
/**
|
|
* Test set/get weight
|
|
*/
|
|
public function testSetGetWeight()
|
|
{
|
|
$expected = 10;
|
|
$object = new Line();
|
|
$object->setWeight($expected);
|
|
$this->assertEquals($expected, $object->getWeight());
|
|
}
|
|
|
|
/**
|
|
* Test set/get color
|
|
*/
|
|
public function testSetGetColor()
|
|
{
|
|
$expected = 'red';
|
|
$object = new Line();
|
|
$object->setColor($expected);
|
|
$this->assertEquals($expected, $object->getColor());
|
|
}
|
|
|
|
/**
|
|
* Test set/get dash
|
|
*/
|
|
public function testSetGetDash()
|
|
{
|
|
$expected = \PhpOffice\PhpWord\Style\Line::DASH_STYLE_LONG_DASH_DOT_DOT;
|
|
$object = new Line();
|
|
$object->setDash($expected);
|
|
$this->assertEquals($expected, $object->getDash());
|
|
}
|
|
|
|
/**
|
|
* Test set/get beginArrow
|
|
*/
|
|
public function testSetGetBeginArrow()
|
|
{
|
|
$expected = \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_BLOCK;
|
|
$object = new Line();
|
|
$object->setBeginArrow($expected);
|
|
$this->assertEquals($expected, $object->getBeginArrow());
|
|
}
|
|
|
|
/**
|
|
* Test set/get endArrow
|
|
*/
|
|
public function testSetGetEndArrow()
|
|
{
|
|
$expected = \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_CLASSIC;
|
|
$object = new Line();
|
|
$object->setEndArrow($expected);
|
|
$this->assertEquals($expected, $object->getEndArrow());
|
|
}
|
|
}
|