2014-03-12 13:32:49 +07: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
|
|
|
*
|
2017-11-04 22:44:12 +01:00
|
|
|
* @see https://github.com/PHPOffice/PHPWord
|
2022-09-16 11:45:45 +02:00
|
|
|
*
|
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
|
|
|
*/
|
2017-11-04 22:44:12 +01:00
|
|
|
|
2015-11-15 13:33:05 +04:00
|
|
|
namespace PhpOffice\PhpWord\Writer;
|
2014-03-12 13:32:49 +07:00
|
|
|
|
2014-03-22 10:06:08 +04:00
|
|
|
use PhpOffice\PhpWord\PhpWord;
|
2015-10-10 19:22:19 +04:00
|
|
|
use PhpOffice\PhpWord\SimpleType\Jc;
|
2014-03-12 13:32:49 +07:00
|
|
|
|
|
|
|
|
/**
|
2022-09-16 11:45:45 +02:00
|
|
|
* Test class for PhpOffice\PhpWord\Writer\RTF.
|
2014-03-27 23:55:06 +07:00
|
|
|
*
|
2014-03-12 13:32:49 +07:00
|
|
|
* @runTestsInSeparateProcesses
|
|
|
|
|
*/
|
2017-11-09 06:36:47 -02:00
|
|
|
class RTFTest extends \PHPUnit\Framework\TestCase
|
2014-03-12 13:32:49 +07:00
|
|
|
{
|
|
|
|
|
/**
|
2022-09-16 11:45:45 +02:00
|
|
|
* Construct.
|
2014-03-12 13:32:49 +07:00
|
|
|
*/
|
2022-09-16 11:45:45 +02:00
|
|
|
public function testConstruct(): void
|
2014-03-12 13:32:49 +07:00
|
|
|
{
|
2017-11-04 22:44:12 +01:00
|
|
|
$object = new RTF(new PhpWord());
|
2014-03-12 13:32:49 +07:00
|
|
|
|
2022-09-16 11:45:45 +02:00
|
|
|
self::assertInstanceOf('PhpOffice\\PhpWord\\PhpWord', $object->getPhpWord());
|
2014-03-12 13:32:49 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2022-09-16 11:45:45 +02:00
|
|
|
* Construct with null.
|
2014-03-12 13:32:49 +07:00
|
|
|
*/
|
2022-09-16 11:45:45 +02:00
|
|
|
public function testConstructWithNull(): void
|
2014-03-12 13:32:49 +07:00
|
|
|
{
|
2022-09-16 11:27:29 +02:00
|
|
|
$this->expectException(\PhpOffice\PhpWord\Exception\Exception::class);
|
|
|
|
|
$this->expectExceptionMessage('No PhpWord assigned.');
|
2014-03-19 11:04:48 +04:00
|
|
|
$object = new RTF();
|
2014-03-20 16:54:12 +04:00
|
|
|
$object->getPhpWord();
|
2014-03-12 13:32:49 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2022-09-16 11:45:45 +02:00
|
|
|
* Save.
|
2014-03-12 13:32:49 +07:00
|
|
|
*/
|
2022-09-16 11:45:45 +02:00
|
|
|
public function testSave(): void
|
2014-03-12 13:32:49 +07:00
|
|
|
{
|
2015-02-06 22:28:31 +04:00
|
|
|
$imageSrc = __DIR__ . '/../_files/images/PhpWord.png';
|
|
|
|
|
$objectSrc = __DIR__ . '/../_files/documents/sheet.xls';
|
|
|
|
|
$file = __DIR__ . '/../_files/temp.rtf';
|
2014-03-15 13:25:42 +07:00
|
|
|
|
2014-03-20 16:54:12 +04:00
|
|
|
$phpWord = new PhpWord();
|
2015-02-06 22:28:31 +04:00
|
|
|
$phpWord->addFontStyle(
|
|
|
|
|
'Font',
|
2022-09-16 11:45:45 +02:00
|
|
|
['name' => 'Verdana', 'size' => 11, 'color' => 'FF0000', 'fgColor' => '00FF00']
|
2015-02-06 22:28:31 +04:00
|
|
|
);
|
2022-09-16 11:45:45 +02:00
|
|
|
$phpWord->addParagraphStyle('Paragraph', ['alignment' => Jc::CENTER]);
|
2014-04-02 11:02:56 +07:00
|
|
|
$section = $phpWord->addSection();
|
2015-02-06 22:28:31 +04:00
|
|
|
$section->addText(htmlspecialchars('Test 1', ENT_COMPAT, 'UTF-8'), 'Font', 'Paragraph');
|
2014-03-12 13:32:49 +07:00
|
|
|
$section->addTextBreak();
|
2022-09-16 11:45:45 +02:00
|
|
|
$section->addText(htmlspecialchars('Test 2', ENT_COMPAT, 'UTF-8'), ['name' => 'Tahoma', 'bold' => true, 'italic' => true]);
|
2015-02-06 22:28:31 +04:00
|
|
|
$section->addLink('https://github.com/PHPOffice/PHPWord');
|
|
|
|
|
$section->addTitle(htmlspecialchars('Test', ENT_COMPAT, 'UTF-8'), 1);
|
2014-03-15 13:25:42 +07:00
|
|
|
$section->addPageBreak();
|
2014-05-31 17:39:54 +07:00
|
|
|
|
|
|
|
|
// Rowspan
|
|
|
|
|
$table = $section->addTable();
|
2022-09-16 11:45:45 +02:00
|
|
|
$table->addRow()->addCell(null, ['vMerge' => 'restart'])->addText('Test');
|
|
|
|
|
$table->addRow()->addCell(null, ['vMerge' => 'continue'])->addText('Test');
|
2014-05-31 17:39:54 +07:00
|
|
|
|
|
|
|
|
// Nested table
|
|
|
|
|
$cell = $section->addTable()->addRow()->addCell();
|
|
|
|
|
$cell->addTable()->addRow()->addCell();
|
|
|
|
|
|
2015-02-06 22:28:31 +04:00
|
|
|
$section->addListItem(htmlspecialchars('Test', ENT_COMPAT, 'UTF-8'));
|
2014-03-15 13:25:42 +07:00
|
|
|
$section->addImage($imageSrc);
|
|
|
|
|
$section->addObject($objectSrc);
|
|
|
|
|
$section->addTOC();
|
2014-04-02 11:02:56 +07:00
|
|
|
$section = $phpWord->addSection();
|
|
|
|
|
$textrun = $section->addTextRun();
|
2015-02-06 22:28:31 +04:00
|
|
|
$textrun->addText(htmlspecialchars('Test 3', ENT_COMPAT, 'UTF-8'));
|
2014-03-15 13:25:42 +07:00
|
|
|
$textrun->addTextBreak();
|
2014-03-19 11:04:48 +04:00
|
|
|
$writer = new RTF($phpWord);
|
2014-03-12 13:32:49 +07:00
|
|
|
$writer->save($file);
|
2014-03-15 13:25:42 +07:00
|
|
|
|
2022-09-16 11:45:45 +02:00
|
|
|
self::assertFileExists($file);
|
2014-03-15 13:25:42 +07:00
|
|
|
|
2014-06-12 18:15:00 +07:00
|
|
|
@unlink($file);
|
2014-03-12 13:32:49 +07:00
|
|
|
}
|
2014-03-29 22:26:00 +07:00
|
|
|
|
|
|
|
|
/**
|
2022-09-16 11:45:45 +02:00
|
|
|
* Save.
|
2014-03-29 22:26:00 +07:00
|
|
|
*
|
|
|
|
|
* @todo Haven't got any method to test this
|
|
|
|
|
*/
|
2022-09-16 11:45:45 +02:00
|
|
|
public function testSavePhpOutput(): void
|
2014-03-29 22:26:00 +07:00
|
|
|
{
|
2022-09-16 11:45:45 +02:00
|
|
|
$this->setOutputCallback(function (): void {
|
2017-11-04 22:44:12 +01:00
|
|
|
});
|
2014-03-29 22:26:00 +07:00
|
|
|
$phpWord = new PhpWord();
|
2014-04-02 11:02:56 +07:00
|
|
|
$section = $phpWord->addSection();
|
2015-02-06 22:28:31 +04:00
|
|
|
$section->addText(htmlspecialchars('Test', ENT_COMPAT, 'UTF-8'));
|
2014-03-29 22:26:00 +07:00
|
|
|
$writer = new RTF($phpWord);
|
|
|
|
|
$writer->save('php://output');
|
2022-09-16 11:45:45 +02:00
|
|
|
self::assertNotNull($this->getActualOutput());
|
2014-03-29 22:26:00 +07:00
|
|
|
}
|
2014-03-23 17:37:26 +07:00
|
|
|
}
|