52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* PHPWord
|
|
*
|
|
* @link https://github.com/PHPOffice/PHPWord
|
|
* @copyright 2014 PHPWord
|
|
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
|
|
*/
|
|
namespace PhpOffice\PhpWord\Tests\Writer;
|
|
|
|
use PhpOffice\PhpWord\PhpWord;
|
|
use PhpOffice\PhpWord\Settings;
|
|
use PhpOffice\PhpWord\Writer\PDF;
|
|
|
|
/**
|
|
* Test class for PhpOffice\PhpWord\Writer\PDF
|
|
*
|
|
* @runTestsInSeparateProcesses
|
|
*/
|
|
class PDFTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* Test normal construct
|
|
*/
|
|
public function testConstruct()
|
|
{
|
|
define('DOMPDF_ENABLE_AUTOLOAD', false);
|
|
$file = __DIR__ . "/../_files/temp.pdf";
|
|
|
|
$rendererName = Settings::PDF_RENDERER_DOMPDF;
|
|
$rendererLibraryPath = realpath(PHPWORD_TESTS_BASE_DIR . '/../vendor/dompdf/dompdf');
|
|
Settings::setPdfRenderer($rendererName, $rendererLibraryPath);
|
|
$writer = new PDF(new PhpWord());
|
|
$writer->save($file);
|
|
|
|
$this->assertTrue(file_exists($file));
|
|
|
|
unlink($file);
|
|
}
|
|
|
|
/**
|
|
* Test construct exception
|
|
*
|
|
* @expectedException \PhpOffice\PhpWord\Exception\Exception
|
|
* @expectedExceptionMessage PDF rendering library or library path has not been defined.
|
|
*/
|
|
public function testConstructException()
|
|
{
|
|
$writer = new PDF(new PhpWord());
|
|
}
|
|
}
|