LDAPAccountManager/lam/tests/lib/pdfstructTest.inc

47 lines
1.4 KiB
PHP

<?php
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2017 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
include_once 'lam/lib/pdfstruct.inc';
/**
* Reads a sample PDF structure.
*
* @author Roland Gruber
*
*/
class ReadStructureTest extends PHPUnit_Framework_TestCase {
const TEST_FILE = 'lam/tests/resources/pdf/test.xml';
/**
* Reads the sample structure.
*/
public function testRead() {
$structure = \LAM\PDF\_readPDFFile(ReadStructureTest::TEST_FILE);
$this->assertEquals('printLogo.jpg', $structure->getLogo());
$this->assertEquals('User information', $structure->getTitle());
$this->assertEquals(true, $structure->getFoldingMarks());
$this->assertEquals(3, sizeof($structure->getSections()));
}
}
?>