Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test the reader with the writer #2745

Merged
merged 1 commit into from
Feb 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changes/1.x/1.4.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
- Bump dompdf/dompdf from 2.0.4 to 3.0.0 by [@dependabot](https://github.com/dependabot) fixing [#2621](https://github.com/PHPOffice/PHPWord/issues/2621) in [#2666](https://github.com/PHPOffice/PHPWord/pull/2666)
- Add test case to make sure vMerge defaults to 'continue' by [@SpraxDev](https://github.com/SpraxDev) in [#2677](https://github.com/PHPOffice/PHPWord/pull/2677)
- Adding the possibility to use iterate search and replace with setValues by [@moghwan](https://github.com/moghwan) in [#2632](https://github.com/PHPOffice/PHPWord/pull/2640)
- Add test cases that test the ODTText and Word2007 reader using the corresponding writer, increasing test coverage by [@MichaelPFrey](https://github.com/MichaelPFrey) in [#2745](https://github.com/PHPOffice/PHPWord/pull/2745)

### Deprecations
- Deprecate `PhpOffice\PhpWord\Style\Paragraph::getIndent()` : Use `PhpOffice\PhpWord\Style\Paragraph::getIndentLeft()`
Expand Down
59 changes: 59 additions & 0 deletions tests/PhpWordTests/WriteReadback/ODTextTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<?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\WriteReadback;

use PhpOffice\PhpWord\Element\TextRun;
use PhpOffice\PhpWord\IOFactory;
use PhpOffice\PhpWord\PhpWord;
use PhpOffice\PhpWord\Writer\ODText;

/**
* Test class for PhpOffice\PhpWord\Reader\ODText and PhpOffice\PhpWord\Writer\ODText.
*
* @coversDefaultClass \PhpOffice\PhpWord\Reader\ODText
*
* @runTestsInSeparateProcesses
*/
class ODTextTest extends \PHPUnit\Framework\TestCase
{
/**
* Test a document with one section and text.
*/
public function testOneSectionWithText(): void
{
$phpWordWriter = new PhpWord();
$testText = 'Hello World!';
$sectionWriter = $phpWordWriter->addSection();
$sectionWriter->addText($testText);

$writer = new ODText($phpWordWriter);
$file = __DIR__ . '/../_files/temp.odt';
$writer->save($file);

self::assertFileExists($file);

$phpWordReader = IOFactory::load($file, 'ODText');

self::assertCount(1, $phpWordReader->getSections());
self::assertCount(1, $phpWordReader->getSections()[0]->getElements());
self::assertInstanceOf(TextRun::class, $phpWordReader->getSections()[0]->getElements()[0]);
self::assertEquals($testText, $phpWordReader->getSections()[0]->getElements()[0]->getText());
unlink($file);
}
}
170 changes: 170 additions & 0 deletions tests/PhpWordTests/WriteReadback/Word2007Test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,170 @@
<?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\WriteReadback;

use PhpOffice\PhpWord\Element\TextRun;
use PhpOffice\PhpWord\IOFactory;
use PhpOffice\PhpWord\PhpWord;
use PhpOffice\PhpWord\Style\Font;
use PhpOffice\PhpWord\Writer\Word2007;

/**
* Test class for PhpOffice\PhpWord\Reader\Word2007 and PhpOffice\PhpWord\Writer\Word2007.
*
* @coversDefaultClass \PhpOffice\PhpWord\Reader\Word2007
*
* @runTestsInSeparateProcesses
*/
class Word2007Test extends \PHPUnit\Framework\TestCase
{
/**
* Test default font name.
*/
public function testDefaultFontName(): void
{
$phpWordWriter = new PhpWord();
$testDefaultFontName = 'Times New Roman';
$phpWordWriter->setDefaultFontName($testDefaultFontName);

$writer = new Word2007($phpWordWriter);
$file = __DIR__ . '/../_files/temp.docx';
$writer->save($file);

self::assertFileExists($file);

$phpWordReader = IOFactory::load($file, 'Word2007');

self::assertEquals($testDefaultFontName, $phpWordReader->getDefaultFontName());

unlink($file);
}

/**
* Test default Asian font name.
*/
public function testDefaultAsianFontName(): void
{
$phpWordWriter = new PhpWord();
$testDefaultFontName = '標楷體';
$phpWordWriter->setDefaultAsianFontName($testDefaultFontName);

$writer = new Word2007($phpWordWriter);
$file = __DIR__ . '/../_files/temp.docx';
$writer->save($file);

self::assertFileExists($file);

$phpWordReader = IOFactory::load($file, 'Word2007');

self::assertEquals($testDefaultFontName, $phpWordReader->getDefaultAsianFontName());

unlink($file);
}

/**
* Test default font size.
*/
public function testDefaulFontSize(): void
{
$phpWordWriter = new PhpWord();
$testDefaultFontSize = 144;
$phpWordWriter->setDefaultFontSize($testDefaultFontSize);

$writer = new Word2007($phpWordWriter);
$file = __DIR__ . '/../_files/temp.docx';
$writer->save($file);

self::assertFileExists($file);

$phpWordReader = IOFactory::load($file, 'Word2007');

self::assertEquals($testDefaultFontSize, $phpWordReader->getDefaultFontSize());

unlink($file);
}

/**
* Test default font color.
*/
public function testDefaultFontColor(): void
{
$phpWordWriter = new PhpWord();
$testDefaultFontColor = '00FF00';
$phpWordWriter->setDefaultFontColor($testDefaultFontColor);

$writer = new Word2007($phpWordWriter);
$file = __DIR__ . '/../_files/temp.docx';
$writer->save($file);

self::assertFileExists($file);

$phpWordReader = IOFactory::load($file, 'Word2007');

self::assertEquals($testDefaultFontColor, $phpWordReader->getDefaultFontColor());

unlink($file);
}

/**
* Test Zoom.
*/
public function testZoom(): void
{
$phpWordWriter = new PhpWord();
$zoomLevel = 75;
$phpWordWriter->getSettings()->setZoom($zoomLevel);

$writer = new Word2007($phpWordWriter);
$file = __DIR__ . '/../_files/temp.docx';
$writer->save($file);

self::assertFileExists($file);

$phpWordReader = IOFactory::load($file, 'Word2007');

self::assertEquals($zoomLevel, $phpWordReader->getSettings()->getZoom());

unlink($file);
}

/**
* Test a document with one section and text.
*/
public function testOneSectionWithText(): void
{
$phpWordWriter = new PhpWord();
$testText = 'Hello World!';
$sectionWriter = $phpWordWriter->addSection();
$sectionWriter->addText($testText);

$writer = new Word2007($phpWordWriter);
$file = __DIR__ . '/../_files/temp.docx';
$writer->save($file);

self::assertFileExists($file);

$phpWordReader = IOFactory::load($file, 'Word2007');

self::assertCount(1, $phpWordReader->getSections());
self::assertCount(1, $phpWordReader->getSections()[0]->getElements());
self::assertInstanceOf(TextRun::class, $phpWordReader->getSections()[0]->getElements()[0]);
self::assertEquals($testText, $phpWordReader->getSections()[0]->getElements()[0]->getText());
unlink($file);
}
}