PHPWord/tests/PhpWord/Writer/Word2007/Part/SettingsTest.php

445 lines
13 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\Word2007\Part;
use PhpOffice\PhpWord\ComplexType\ProofState;
use PhpOffice\PhpWord\ComplexType\TrackChangesView;
use PhpOffice\PhpWord\PhpWord;
use PhpOffice\PhpWord\Shared\Microsoft\PasswordEncoder;
use PhpOffice\PhpWord\SimpleType\Zoom;
use PhpOffice\PhpWord\Style\Language;
use PhpOffice\PhpWord\TestHelperDOCX;
/**
* Test class for PhpOffice\PhpWord\Writer\Word2007\Part\Settings
*
* @coversDefaultClass \PhpOffice\PhpWord\Writer\Word2007\Part\Settings
*/
class SettingsTest extends \PHPUnit\Framework\TestCase
{
/**
* Executed before each method of the class
*/
public function tearDown()
{
TestHelperDOCX::clear();
}
/**
* Test document protection
*/
public function testDocumentProtection()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->getDocumentProtection()->setEditing('forms');
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:documentProtection';
$this->assertTrue($doc->elementExists($path, $file));
}
/**
* Test document protection with password
*/
public function testDocumentProtectionWithPassword()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->getDocumentProtection()->setEditing('readOnly');
$phpWord->getSettings()->getDocumentProtection()->setPassword('testÄö@€!$&');
$phpWord->getSettings()->getDocumentProtection()->setSalt(base64_decode('uq81pJRRGFIY5U+E9gt8tA=='));
$phpWord->getSettings()->getDocumentProtection()->setAlgorithm(PasswordEncoder::ALGORITHM_MD2);
$phpWord->getSettings()->getDocumentProtection()->setSpinCount(10);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:documentProtection';
$this->assertTrue($doc->elementExists($path, $file));
$this->assertEquals('rUuJbk6LuN2/qFyp7IUPQA==', $doc->getElement($path, $file)->getAttribute('w:hash'));
$this->assertEquals('1', $doc->getElement($path, $file)->getAttribute('w:cryptAlgorithmSid'));
$this->assertEquals('10', $doc->getElement($path, $file)->getAttribute('w:cryptSpinCount'));
}
/**
* Test compatibility
*/
public function testCompatibility()
{
$phpWord = new PhpWord();
$phpWord->getCompatibility()->setOoxmlVersion(15);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:compat/w:compatSetting';
$this->assertTrue($doc->elementExists($path, $file));
$this->assertEquals($phpWord->getCompatibility()->getOoxmlVersion(), 15);
}
/**
* Test language
*/
public function testDefaultLanguage()
{
$phpWord = new PhpWord();
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:themeFontLang';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertEquals('en-US', $element->getAttribute('w:val'));
}
/**
* Test language
*/
public function testLanguage()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setThemeFontLang(new Language(Language::DE_DE, Language::KO_KR, Language::HE_IL));
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:themeFontLang';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertEquals(Language::DE_DE, $element->getAttribute('w:val'));
$this->assertEquals(Language::KO_KR, $element->getAttribute('w:eastAsia'));
$this->assertEquals(Language::HE_IL, $element->getAttribute('w:bidi'));
}
/**
* Test proofState
*/
public function testProofState()
{
$proofState = new ProofState();
$proofState->setSpelling(ProofState::DIRTY);
$proofState->setGrammar(ProofState::DIRTY);
$phpWord = new PhpWord();
$phpWord->getSettings()->setProofState($proofState);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:proofState';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertEquals('dirty', $element->getAttribute('w:spelling'));
$this->assertEquals('dirty', $element->getAttribute('w:grammar'));
}
/**
* Test spelling
*/
public function testSpelling()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setHideSpellingErrors(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:hideSpellingErrors';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
/**
* Test even and odd headers
*/
public function testEvenAndOddHeaders()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setEvenAndOddHeaders(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:evenAndOddHeaders';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
public function testUpdateFields()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setUpdateFields(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:updateFields';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
/**
* Test zoom percentage
*/
public function testZoomPercentage()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setZoom(75);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:zoom';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertEquals('75', $element->getAttribute('w:percent'));
}
/**
* Test zoom value
*/
public function testZoomValue()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setZoom(Zoom::FULL_PAGE);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:zoom';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertEquals('fullPage', $element->getAttribute('w:val'));
}
public function testMirrorMargins()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setMirrorMargins(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:mirrorMargins';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
/**
* Test Revision View
*/
public function testRevisionView()
{
$trackChangesView = new TrackChangesView();
$trackChangesView->setFormatting(false);
$trackChangesView->setComments(true);
$phpWord = new PhpWord();
$phpWord->getSettings()->setRevisionView($trackChangesView);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:revisionView';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertEquals('false', $element->getAttribute('w:formatting'));
$this->assertEquals('true', $element->getAttribute('w:comments'));
}
public function testHideSpellingErrors()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setHideSpellingErrors(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:hideSpellingErrors';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
public function testHideGrammaticalErrors()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setHideGrammaticalErrors(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:hideGrammaticalErrors';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
/**
* Test track Revisions
*/
public function testTrackRevisions()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setTrackRevisions(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:trackRevisions';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
/**
* Test doNotTrackMoves
*/
public function testDoNotTrackMoves()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setDoNotTrackMoves(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:doNotTrackMoves';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
/**
* Test DoNotTrackFormatting
*/
public function testDoNotTrackFormatting()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setDoNotTrackFormatting(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:doNotTrackFormatting';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
public function testAutoHyphenation()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setAutoHyphenation(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:autoHyphenation';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
public function testConsecutiveHyphenLimit()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setConsecutiveHyphenLimit(2);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:consecutiveHyphenLimit';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('2', $element->getAttribute('w:val'));
}
public function testHyphenationZone()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setHyphenationZone(100);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:hyphenationZone';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('100', $element->getAttribute('w:val'));
}
public function testDoNotHyphenateCaps()
{
$phpWord = new PhpWord();
$phpWord->getSettings()->setDoNotHyphenateCaps(true);
$doc = TestHelperDOCX::getDocument($phpWord);
$file = 'word/settings.xml';
$path = '/w:settings/w:doNotHyphenateCaps';
$this->assertTrue($doc->elementExists($path, $file));
$element = $doc->getElement($path, $file);
$this->assertSame('true', $element->getAttribute('w:val'));
}
}