105 lines
3.3 KiB
PHP
105 lines
3.3 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.
|
|
*
|
|
* @see https://github.com/PHPOffice/PHPWord
|
|
*
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWordTests\Element;
|
|
|
|
use DateTime;
|
|
use InvalidArgumentException;
|
|
use PhpOffice\PhpWord\Element\Comment;
|
|
use PhpOffice\PhpWord\Element\Text;
|
|
|
|
/**
|
|
* Test class for PhpOffice\PhpWord\Element\Header.
|
|
*
|
|
* @runTestsInSeparateProcesses
|
|
*/
|
|
class CommentTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* New instance.
|
|
*/
|
|
public function testConstructDefault(): void
|
|
{
|
|
$author = 'Test User';
|
|
$date = new DateTime('2000-01-01');
|
|
$initials = 'default_user';
|
|
$oComment = new Comment($author, $date, $initials);
|
|
|
|
$oText = new Text('dummy text');
|
|
$oComment->setStartElement($oText);
|
|
$oComment->setEndElement($oText);
|
|
|
|
self::assertInstanceOf('PhpOffice\\PhpWord\\Element\\Comment', $oComment);
|
|
self::assertEquals($author, $oComment->getAuthor());
|
|
self::assertEquals($date, $oComment->getDate());
|
|
self::assertEquals($initials, $oComment->getInitials());
|
|
self::assertEquals($oText, $oComment->getStartElement());
|
|
self::assertEquals($oText, $oComment->getEndElement());
|
|
}
|
|
|
|
/**
|
|
* Add text.
|
|
*/
|
|
public function testAddText(): void
|
|
{
|
|
$oComment = new Comment('Test User', new DateTime(), 'my_initials');
|
|
$element = $oComment->addText('text');
|
|
|
|
self::assertInstanceOf('PhpOffice\\PhpWord\\Element\\Text', $element);
|
|
self::assertCount(1, $oComment->getElements());
|
|
self::assertEquals('text', $element->getText());
|
|
}
|
|
|
|
/**
|
|
* Get elements.
|
|
*/
|
|
public function testGetElements(): void
|
|
{
|
|
$oComment = new Comment('Test User', new DateTime(), 'my_initials');
|
|
|
|
self::assertIsArray($oComment->getElements());
|
|
}
|
|
|
|
/**
|
|
* Set/get relation Id.
|
|
*/
|
|
public function testRelationId(): void
|
|
{
|
|
$oComment = new Comment('Test User', new DateTime(), 'my_initials');
|
|
|
|
$iVal = mt_rand(1, 1000);
|
|
$oComment->setRelationId($iVal);
|
|
self::assertEquals($iVal, $oComment->getRelationId());
|
|
}
|
|
|
|
public function testExceptionOnCommentStartOnComment(): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$dummyComment = new Comment('Test User', new DateTime(), 'my_initials');
|
|
$oComment = new Comment('Test User', new DateTime(), 'my_initials');
|
|
$oComment->setCommentRangeStart($dummyComment);
|
|
}
|
|
|
|
public function testExceptionOnCommentEndOnComment(): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$dummyComment = new Comment('Test User', new DateTime(), 'my_initials');
|
|
$oComment = new Comment('Test User', new DateTime(), 'my_initials');
|
|
$oComment->setCommentRangeEnd($dummyComment);
|
|
}
|
|
}
|