1. Converter is currently expecting colors as strings of hex digits, but PhpWord allows specification of colors by named constant, so result is random when one of those is used. This change handles all the named colors. 2. Table needs \pard at end; formatting may be wrong without it. 3. RTF writer will no longer ignore paragraph style for TextRun. 4. RTF writer will no longer ignore paragraph and font style for Title. 5. Add support for RTF headers and footers. 6. Add support for right-to-left in font. 7. Add support for PageBreakBefore and LineHeight for paragraphs. 8. Add support for PageNumberingStart for sections. There are test cases for all of these changes.
160 lines
5.7 KiB
PHP
160 lines
5.7 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
|
|
* @copyright 2010-2018 PHPWord contributors
|
|
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
|
|
*/
|
|
|
|
namespace PhpOffice\PhpWord\Writer\RTF;
|
|
|
|
use PhpOffice\PhpWord\Writer\RTF;
|
|
|
|
/**
|
|
* Test class for PhpOffice\PhpWord\Writer\RTF\Element subnamespace
|
|
*/
|
|
class ElementTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function removeCr($field)
|
|
{
|
|
return str_replace("\r\n", "\n", $field->write());
|
|
}
|
|
|
|
/**
|
|
* Test unmatched elements
|
|
*/
|
|
public function testUnmatchedElements()
|
|
{
|
|
$elements = array('Container', 'Text', 'Title', 'Link', 'Image', 'Table', 'Field');
|
|
foreach ($elements as $element) {
|
|
$objectClass = 'PhpOffice\\PhpWord\\Writer\\RTF\\Element\\' . $element;
|
|
$parentWriter = new RTF();
|
|
$newElement = new \PhpOffice\PhpWord\Element\PageBreak();
|
|
$object = new $objectClass($parentWriter, $newElement);
|
|
|
|
$this->assertEquals('', $object->write());
|
|
}
|
|
}
|
|
|
|
public function testPageField()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$element = new \PhpOffice\PhpWord\Element\Field('PAGE');
|
|
$field = new \PhpOffice\PhpWord\Writer\RTF\Element\Field($parentWriter, $element);
|
|
|
|
$this->assertEquals("{\\field{\\*\\fldinst PAGE}{\\fldrslt}}\\par\n", $this->removeCr($field));
|
|
}
|
|
|
|
public function testNumpageField()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$element = new \PhpOffice\PhpWord\Element\Field('NUMPAGES');
|
|
$field = new \PhpOffice\PhpWord\Writer\RTF\Element\Field($parentWriter, $element);
|
|
|
|
$this->assertEquals("{\\field{\\*\\fldinst NUMPAGES}{\\fldrslt}}\\par\n", $this->removeCr($field));
|
|
}
|
|
|
|
public function testDateField()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$element = new \PhpOffice\PhpWord\Element\Field('DATE', array('dateformat' => 'd MM yyyy H:mm:ss'));
|
|
$field = new \PhpOffice\PhpWord\Writer\RTF\Element\Field($parentWriter, $element);
|
|
|
|
$this->assertEquals("{\\field{\\*\\fldinst DATE \\\\@ \"d MM yyyy H:mm:ss\"}{\\fldrslt}}\\par\n", $this->removeCr($field));
|
|
}
|
|
|
|
public function testIndexField()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$element = new \PhpOffice\PhpWord\Element\Field('INDEX');
|
|
$field = new \PhpOffice\PhpWord\Writer\RTF\Element\Field($parentWriter, $element);
|
|
|
|
$this->assertEquals("{}\\par\n", $this->removeCr($field));
|
|
}
|
|
|
|
public function testTable()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$element = new \PhpOffice\PhpWord\Element\Table();
|
|
$width = 100;
|
|
$width2 = 2 * $width;
|
|
$element->addRow();
|
|
$tce = $element->addCell($width);
|
|
$tce->addText('1');
|
|
$tce = $element->addCell($width);
|
|
$tce->addText('2');
|
|
$element->addRow();
|
|
$tce = $element->addCell($width);
|
|
$tce->addText('3');
|
|
$tce = $element->addCell($width);
|
|
$tce->addText('4');
|
|
$table = new \PhpOffice\PhpWord\Writer\RTF\Element\Table($parentWriter, $element);
|
|
$expect = implode("\n", array(
|
|
'\\pard',
|
|
"\\trowd \\cellx$width \\cellx$width2 ",
|
|
'\\intbl',
|
|
'{\\cf0\\f0 1}\\par',
|
|
'\\cell',
|
|
'\\intbl',
|
|
'{\\cf0\\f0 2}\\par',
|
|
'\\cell',
|
|
'\\row',
|
|
"\\trowd \\cellx$width \\cellx$width2 ",
|
|
'\\intbl',
|
|
'{\\cf0\\f0 3}\\par',
|
|
'\\cell',
|
|
'\\intbl',
|
|
'{\\cf0\\f0 4}\par',
|
|
'\\cell',
|
|
'\\row',
|
|
'\\pard',
|
|
'',
|
|
));
|
|
|
|
$this->assertEquals($expect, $this->removeCr($table));
|
|
}
|
|
|
|
public function testTextRun()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$element = new \PhpOffice\PhpWord\Element\TextRun();
|
|
$element->addText('Hello ');
|
|
$element->addText('there.');
|
|
$textrun = new \PhpOffice\PhpWord\Writer\RTF\Element\TextRun($parentWriter, $element);
|
|
$expect = "\\pard\\nowidctlpar {{\\cf0\\f0 Hello }{\\cf0\\f0 there.}}\\par\n";
|
|
$this->assertEquals($expect, $this->removeCr($textrun));
|
|
}
|
|
|
|
public function testTextRunParagraphStyle()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$element = new \PhpOffice\PhpWord\Element\TextRun(array('spaceBefore' => 0, 'spaceAfter' => 0));
|
|
$element->addText('Hello ');
|
|
$element->addText('there.');
|
|
$textrun = new \PhpOffice\PhpWord\Writer\RTF\Element\TextRun($parentWriter, $element);
|
|
$expect = "\\pard\\nowidctlpar \\sb0\\sa0{{\\cf0\\f0 Hello }{\\cf0\\f0 there.}}\\par\n";
|
|
$this->assertEquals($expect, $this->removeCr($textrun));
|
|
}
|
|
|
|
public function testTitle()
|
|
{
|
|
$parentWriter = new RTF();
|
|
$phpWord = new \PhpOffice\PhpWord\PhpWord();
|
|
$phpWord->addTitleStyle(1, array(), array('spaceBefore' => 0, 'spaceAfter' => 0));
|
|
$section = $phpWord->addSection();
|
|
$element = $section->addTitle('First Heading', 1);
|
|
$elwrite = new \PhpOffice\PhpWord\Writer\RTF\Element\Title($parentWriter, $element);
|
|
$expect = "\\pard\\nowidctlpar \\sb0\\sa0{\\outlinelevel0{\\cf0\\f0 First Heading}\\par\n}";
|
|
$this->assertEquals($expect, $this->removeCr($elwrite));
|
|
}
|
|
}
|