3 require_once dirname( __DIR__
) . '/includes/upload/UploadFromUrlTest.php';
5 class UploadFromUrlTestSuite
extends PHPUnit_Framework_TestSuite
{
6 public $savedGlobals = array();
8 public static function addTables( &$tables ) {
9 $tables[] = 'user_properties';
10 $tables[] = 'filearchive';
11 $tables[] = 'logging';
12 $tables[] = 'updatelog';
13 $tables[] = 'iwlinks';
18 protected function setUp() {
19 global $wgParser, $wgParserConf, $IP, $messageMemc, $wgMemc, $wgUser,
20 $wgLang, $wgOut, $wgRequest, $wgStyleDirectory,
21 $wgEnableParserCache, $wgNamespaceAliases, $wgNamespaceProtection,
24 $tmpGlobals = array();
26 $tmpGlobals['wgScript'] = '/index.php';
27 $tmpGlobals['wgScriptPath'] = '/';
28 $tmpGlobals['wgArticlePath'] = '/wiki/$1';
29 $tmpGlobals['wgStylePath'] = '/skins';
30 $tmpGlobals['wgThumbnailScriptPath'] = false;
31 $tmpGlobals['wgLocalFileRepo'] = array(
32 'class' => 'LocalRepo',
34 'url' => 'http://example.com/images',
36 'transformVia404' => false,
37 'backend' => new FSFileBackend( array(
38 'name' => 'local-backend',
39 'lockManager' => 'fsLockManager',
40 'containerPaths' => array(
41 'local-public' => wfTempDir() . '/test-repo/public',
42 'local-thumb' => wfTempDir() . '/test-repo/thumb',
43 'local-temp' => wfTempDir() . '/test-repo/temp',
44 'local-deleted' => wfTempDir() . '/test-repo/delete',
48 foreach ( $tmpGlobals as $var => $val ) {
49 if ( array_key_exists( $var, $GLOBALS ) ) {
50 $this->savedGlobals
[$var] = $GLOBALS[$var];
52 $GLOBALS[$var] = $val;
55 $wgNamespaceProtection[NS_MEDIAWIKI
] = 'editinterface';
56 $wgNamespaceAliases['Image'] = NS_FILE
;
57 $wgNamespaceAliases['Image_talk'] = NS_FILE_TALK
;
59 $wgEnableParserCache = false;
60 DeferredUpdates
::clearPendingUpdates();
61 $wgMemc = wfGetMainCache();
62 $messageMemc = wfGetMessageCacheStorage();
63 $parserMemc = wfGetParserCacheStorage();
65 // $wgContLang = new StubContLang;
67 $context = new RequestContext
;
68 $wgLang = $context->getLanguage();
69 $wgOut = $context->getOutput();
70 $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], array( $wgParserConf ) );
71 $wgRequest = $context->getRequest();
73 if ( $wgStyleDirectory === false ) {
74 $wgStyleDirectory = "$IP/skins";
77 RepoGroup
::destroySingleton();
78 FileBackendGroup
::destroySingleton();
81 protected function tearDown() {
82 foreach ( $this->savedGlobals
as $var => $val ) {
83 $GLOBALS[$var] = $val;
86 RepoGroup
::destroySingleton();
87 FileBackendGroup
::destroySingleton();
89 $this->teardownUploadDir( $this->uploadDir
);
98 * Remove the dummy uploads directory
100 private function teardownUploadDir( $dir ) {
101 if ( $this->keepUploads
) {
105 // delete the files first, then the dirs.
108 "$dir/3/3a/Foobar.jpg",
109 "$dir/thumb/3/3a/Foobar.jpg/180px-Foobar.jpg",
110 "$dir/thumb/3/3a/Foobar.jpg/200px-Foobar.jpg",
111 "$dir/thumb/3/3a/Foobar.jpg/640px-Foobar.jpg",
112 "$dir/thumb/3/3a/Foobar.jpg/120px-Foobar.jpg",
124 "$dir/thumb/3/3a/Foobar.jpg",
138 * Delete the specified files, if they exist.
140 * @param $files Array: full paths to files to delete.
142 private static function deleteFiles( $files ) {
143 foreach ( $files as $file ) {
144 if ( file_exists( $file ) ) {
151 * Delete the specified directories, if they exist. Must be empty.
153 * @param $dirs Array: full paths to directories to delete.
155 private static function deleteDirs( $dirs ) {
156 foreach ( $dirs as $dir ) {
157 if ( is_dir( $dir ) ) {
164 * Create a dummy uploads directory which will contain a couple
165 * of files in order to pass existence tests.
167 * @return String: the directory
169 private function setupUploadDir() {
172 if ( $this->keepUploads
) {
173 $dir = wfTempDir() . '/mwParser-images';
175 if ( is_dir( $dir ) ) {
179 $dir = wfTempDir() . "/mwParser-" . mt_rand() . "-images";
182 wfDebug( "Creating upload directory $dir\n" );
184 if ( file_exists( $dir ) ) {
185 wfDebug( "Already exists!\n" );
190 wfMkdirParents( $dir . '/3/3a', null, __METHOD__
);
191 copy( "$IP/skins/monobook/headbg.jpg", "$dir/3/3a/Foobar.jpg" );
193 wfMkdirParents( $dir . '/0/09', null, __METHOD__
);
194 copy( "$IP/skins/monobook/headbg.jpg", "$dir/0/09/Bad.jpg" );
199 public static function suite() {
200 // Hack to invoke the autoloader required to get phpunit to recognize
201 // the UploadFromUrlTest class
202 class_exists( 'UploadFromUrlTest' );
203 $suite = new UploadFromUrlTestSuite( 'UploadFromUrlTest' );