PHPWord/tests/PhpWord/Writer/RTFTest.php

113 lines
3.6 KiB
PHP
Raw Normal View History

<?php
2014-03-27 23:55:06 +07: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
2015-12-05 21:25:59 +04:00
* @copyright 2010-2015 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
*/
2015-11-15 13:33:05 +04:00
namespace PhpOffice\PhpWord\Writer;
use PhpOffice\PhpWord\PhpWord;
2015-10-10 19:22:19 +04:00
use PhpOffice\PhpWord\SimpleType\Jc;
/**
2014-03-27 23:55:06 +07:00
* Test class for PhpOffice\PhpWord\Writer\RTF
*
* @runTestsInSeparateProcesses
*/
class RTFTest extends \PHPUnit_Framework_TestCase
{
/**
2014-03-29 22:26:00 +07:00
* Construct
*/
public function testConstruct()
{
$object = new RTF(new PhpWord);
$this->assertInstanceOf('PhpOffice\\PhpWord\\PhpWord', $object->getPhpWord());
}
/**
2014-03-29 22:26:00 +07:00
* Construct with null
*
* @expectedException \PhpOffice\PhpWord\Exception\Exception
* @expectedExceptionMessage No PhpWord assigned.
*/
public function testConstructWithNull()
{
$object = new RTF();
$object->getPhpWord();
}
/**
2014-03-29 22:26:00 +07:00
* Save
*/
public function testSave()
{
$imageSrc = __DIR__ . '/../_files/images/PhpWord.png';
$objectSrc = __DIR__ . '/../_files/documents/sheet.xls';
$file = __DIR__ . '/../_files/temp.rtf';
$phpWord = new PhpWord();
$phpWord->addFontStyle(
'Font',
array('name' => 'Verdana', 'size' => 11, 'color' => 'FF0000', 'fgColor' => '00FF00')
);
2015-10-10 19:22:19 +04:00
$phpWord->addParagraphStyle('Paragraph', array('alignment' => Jc::CENTER));
$section = $phpWord->addSection();
$section->addText(htmlspecialchars('Test 1', ENT_COMPAT, 'UTF-8'), 'Font', 'Paragraph');
$section->addTextBreak();
$section->addText(htmlspecialchars('Test 2', ENT_COMPAT, 'UTF-8'), array('name' => 'Tahoma', 'bold' => true, 'italic' => true));
$section->addLink('https://github.com/PHPOffice/PHPWord');
$section->addTitle(htmlspecialchars('Test', ENT_COMPAT, 'UTF-8'), 1);
$section->addPageBreak();
2014-05-31 17:39:54 +07:00
// Rowspan
$table = $section->addTable();
$table->addRow()->addCell(null, array('vMerge' => 'restart'))->addText('Test');
$table->addRow()->addCell(null, array('vMerge' => 'continue'))->addText('Test');
// Nested table
$cell = $section->addTable()->addRow()->addCell();
$cell->addTable()->addRow()->addCell();
$section->addListItem(htmlspecialchars('Test', ENT_COMPAT, 'UTF-8'));
$section->addImage($imageSrc);
$section->addObject($objectSrc);
$section->addTOC();
$section = $phpWord->addSection();
$textrun = $section->addTextRun();
$textrun->addText(htmlspecialchars('Test 3', ENT_COMPAT, 'UTF-8'));
$textrun->addTextBreak();
$writer = new RTF($phpWord);
$writer->save($file);
$this->assertTrue(file_exists($file));
2014-06-12 18:15:00 +07:00
@unlink($file);
}
2014-03-29 22:26:00 +07:00
/**
* Save
*
* @todo Haven't got any method to test this
*/
public function testSavePhpOutput()
{
$phpWord = new PhpWord();
$section = $phpWord->addSection();
$section->addText(htmlspecialchars('Test', ENT_COMPAT, 'UTF-8'));
2014-03-29 22:26:00 +07:00
$writer = new RTF($phpWord);
$writer->save('php://output');
}
}