MediaWiki  1.23.12
DjVuTest.php
Go to the documentation of this file.
1 <?php
5 class DjVuTest extends MediaWikiTestCase {
6 
10  protected $filePath;
11 
15  protected $repo;
16 
20  protected $handler;
21 
22  protected function setUp() {
23  global $wgDjvuRenderer, $wgDjvuDump, $wgDjvuToXML;
24  parent::setUp();
25 
26  //cli tool setup
27  $wgDjvuRenderer = $wgDjvuRenderer ? $wgDjvuRenderer : '/usr/bin/ddjvu';
28  $wgDjvuDump = $wgDjvuDump ? $wgDjvuDump : '/usr/bin/djvudump';
29  $wgDjvuToXML = $wgDjvuToXML ? $wgDjvuToXML : '/usr/bin/djvutoxml';
30  if (
31  !$this->checkIfToolExists( $wgDjvuRenderer ) ||
32  !$this->checkIfToolExists( $wgDjvuDump ) ||
33  !$this->checkIfToolExists( $wgDjvuToXML )
34  ) {
35  $this->markTestSkipped( 'This test needs the installation of the ddjvu, djvutoxml and djvudump tools' );
36  }
37 
38  //file repo setup
39  $this->filePath = __DIR__ . '/../../data/media/';
40  $backend = new FSFileBackend( array(
41  'name' => 'localtesting',
42  'wikiId' => wfWikiId(),
43  'lockManager' => new NullLockManager( array() ),
44  'containerPaths' => array( 'data' => $this->filePath )
45  ) );
46  $this->repo = new FSRepo( array(
47  'name' => 'temp',
48  'url' => 'http://localhost/thumbtest',
49  'backend' => $backend
50  ) );
51 
52  $this->handler = new DjVuHandler();
53  }
54 
61  protected function checkIfToolExists( $path ) {
63  $result = file_exists( $path );
65  return $result;
66  }
67 
68  protected function dataFile( $name, $type ) {
69  return new UnregisteredLocalFile(
70  false,
71  $this->repo,
72  'mwstore://localtesting/data/' . $name,
73  $type
74  );
75  }
76 
77  public function testGetImageSize() {
78  $this->assertArrayEquals(
79  array( 2480, 3508, 'DjVu', 'width="2480" height="3508"' ),
80  $this->handler->getImageSize( null, $this->filePath . '/LoremIpsum.djvu' ),
81  'Test file LoremIpsum.djvu should have a size of 2480 * 3508'
82  );
83  }
84 
85  public function testInvalidFile() {
86  $this->assertFalse(
87  $this->handler->getMetadata( null, $this->filePath . '/README' ),
88  'Getting Metadata for an inexistent file should returns false'
89  );
90  }
91 
92  public function testPageCount() {
93  $file = $this->dataFile( 'LoremIpsum.djvu', 'image/x.djvu' );
94  $this->assertEquals(
95  5,
96  $this->handler->pageCount( $file ),
97  'Test file LoremIpsum.djvu should be detected as containing 5 pages'
98  );
99  }
100 
101  public function testGetPageDimensions() {
102  $file = $this->dataFile( 'LoremIpsum.djvu', 'image/x.djvu' );
103  $this->assertArrayEquals(
104  array( 2480, 3508 ),
105  $this->handler->getPageDimensions( $file, 1 ),
106  'Page 1 of test file LoremIpsum.djvu should have a size of 2480 * 3508'
107  );
108  }
109 
110  public function testGetPageText() {
111  $file = $this->dataFile( 'LoremIpsum.djvu', 'image/x.djvu' );
112  $this->assertEquals(
113  "Lorem ipsum \n1 \n",
114  (string) $this->handler->getPageText( $file, 1 ),
115  "Text layer of page 1 of file LoremIpsum.djvu should be 'Lorem ipsum \n1 \n'"
116  );
117  }
118 }
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. $reader:XMLReader object $logInfo:Array of information Return false to stop further processing of the tag 'ImportHandlePageXMLTag':When parsing a XML tag in a page. $reader:XMLReader object $pageInfo:Array of information Return false to stop further processing of the tag 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information Return false to stop further processing of the tag 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. $reader:XMLReader object Return false to stop further processing of the tag 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. $reader:XMLReader object $revisionInfo:Array of information Return false to stop further processing of the tag 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. $title:Title object for the current page $request:WebRequest $ignoreRedirect:boolean to skip redirect check $target:Title/string of redirect target $article:Article object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) $article:article(object) being checked 'IsTrustedProxy':Override the result of wfIsTrustedProxy() $ip:IP being check $result:Change this value to override the result of wfIsTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of User::isValidEmailAddr(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetMagic':DEPRECATED, use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetSpecialPageAliases':DEPRECATED, use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1528
MediaWikiTestCase\assertArrayEquals
assertArrayEquals(array $expected, array $actual, $ordered=false, $named=false)
Assert that two arrays are equal.
Definition: MediaWikiTestCase.php:764
DjVuTest\testGetPageText
testGetPageText()
Definition: DjVuTest.php:107
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
DjVuTest\testGetImageSize
testGetImageSize()
Definition: DjVuTest.php:74
DjVuTest\testInvalidFile
testInvalidFile()
Definition: DjVuTest.php:82
DjVuTest\dataFile
dataFile( $name, $type)
Definition: DjVuTest.php:65
FSRepo
A repository for files accessible via the local filesystem.
Definition: FSRepo.php:33
DjVuTest
@covers DjVuHandler
Definition: DjVuTest.php:5
UnregisteredLocalFile
A file object referring to either a standalone local file, or a file in a local repository with no da...
Definition: UnregisteredLocalFile.php:36
DjVuTest\$filePath
string $filePath
the directory where test files are
Definition: DjVuTest.php:9
wfSuppressWarnings
wfSuppressWarnings( $end=false)
Reference-counted warning suppression.
Definition: GlobalFunctions.php:2434
DjVuTest\checkIfToolExists
checkIfToolExists( $path)
Check if a tool exist.
Definition: DjVuTest.php:58
NullLockManager
Simple version of LockManager that does nothing.
Definition: LockManager.php:253
DjVuTest\$handler
DjVuHandler $handler
Definition: DjVuTest.php:17
wfRestoreWarnings
wfRestoreWarnings()
Restore error level to previous value.
Definition: GlobalFunctions.php:2464
DjVuTest\$repo
FSRepo $repo
the repository to use
Definition: DjVuTest.php:13
MediaWikiTestCase
Definition: MediaWikiTestCase.php:6
DjVuTest\testGetPageDimensions
testGetPageDimensions()
Definition: DjVuTest.php:98
array
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:336
DjVuHandler
Handler for DjVu images.
Definition: DjVu.php:29
DjVuTest\setUp
setUp()
Definition: DjVuTest.php:19
$file
if(PHP_SAPI !='cli') $file
Definition: UtfNormalTest2.php:30
FSFileBackend
Class for a file system (FS) based file backend.
Definition: FSFileBackend.php:41
$path
$path
Definition: NoLocalSettings.php:35
DjVuTest\testPageCount
testPageCount()
Definition: DjVuTest.php:89
$type
$type
Definition: testCompression.php:46