3 require_once dirname( __DIR__
) . '/includes/upload/UploadFromUrlTest.php';
5 class UploadFromUrlTestSuite
extends PHPUnit_Framework_TestSuite
{
6 public $savedGlobals = [];
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 $wgParserCacheType, $wgNamespaceAliases, $wgNamespaceProtection,
24 $tmpDir = $this->getNewTempDirectory();
27 $tmpGlobals['wgScript'] = '/index.php';
28 $tmpGlobals['wgScriptPath'] = '/';
29 $tmpGlobals['wgArticlePath'] = '/wiki/$1';
30 $tmpGlobals['wgStylePath'] = '/skins';
31 $tmpGlobals['wgThumbnailScriptPath'] = false;
32 $tmpGlobals['wgLocalFileRepo'] = [
33 'class' => 'LocalRepo',
35 'url' => 'http://example.com/images',
37 'transformVia404' => false,
38 'backend' => new FSFileBackend( [
39 'name' => 'local-backend',
40 'wikiId' => wfWikiID(),
42 'local-public' => "{$tmpDir}/test-repo/public",
43 'local-thumb' => "{$tmpDir}/test-repo/thumb",
44 'local-temp' => "{$tmpDir}/test-repo/temp",
45 'local-deleted' => "{$tmpDir}/test-repo/delete",
49 foreach ( $tmpGlobals as $var => $val ) {
50 if ( array_key_exists( $var, $GLOBALS ) ) {
51 $this->savedGlobals
[$var] = $GLOBALS[$var];
53 $GLOBALS[$var] = $val;
56 $wgNamespaceProtection[NS_MEDIAWIKI
] = 'editinterface';
57 $wgNamespaceAliases['Image'] = NS_FILE
;
58 $wgNamespaceAliases['Image_talk'] = NS_FILE_TALK
;
60 $wgParserCacheType = CACHE_NONE
;
61 DeferredUpdates
::clearPendingUpdates();
62 $wgMemc = wfGetMainCache();
63 $messageMemc = wfGetMessageCacheStorage();
64 $parserMemc = wfGetParserCacheStorage();
66 RequestContext
::resetMain();
67 $context = RequestContext
::getMain();
69 $wgLang = $context->getLanguage();
70 $wgOut = $context->getOutput();
71 $wgParser = new StubObject( 'wgParser', $wgParserConf['class'], [ $wgParserConf ] );
72 $wgRequest = $context->getRequest();
74 if ( $wgStyleDirectory === false ) {
75 $wgStyleDirectory = "$IP/skins";
78 RepoGroup
::destroySingleton();
79 FileBackendGroup
::destroySingleton();
82 protected function tearDown() {
83 foreach ( $this->savedGlobals
as $var => $val ) {
84 $GLOBALS[$var] = $val;
87 RepoGroup
::destroySingleton();
88 FileBackendGroup
::destroySingleton();
94 * Delete the specified files, if they exist.
96 * @param array $files Full paths to files to delete.
98 private static function deleteFiles( $files ) {
99 foreach ( $files as $file ) {
100 if ( file_exists( $file ) ) {
107 * Delete the specified directories, if they exist. Must be empty.
109 * @param array $dirs Full paths to directories to delete.
111 private static function deleteDirs( $dirs ) {
112 foreach ( $dirs as $dir ) {
113 if ( is_dir( $dir ) ) {
120 * Create a dummy uploads directory which will contain a couple
121 * of files in order to pass existence tests.
123 * @return string The directory
125 private function setupUploadDir() {
128 $dir = $this->getNewTempDirectory();
130 wfDebug( "Creating upload directory $dir\n" );
132 wfMkdirParents( $dir . '/3/3a', null, __METHOD__
);
133 copy( "$IP/tests/phpunit/data/upload/headbg.jpg", "$dir/3/3a/Foobar.jpg" );
135 wfMkdirParents( $dir . '/0/09', null, __METHOD__
);
136 copy( "$IP/tests/phpunit/data/upload/headbg.jpg", "$dir/0/09/Bad.jpg" );
141 public static function suite() {
142 // Hack to invoke the autoloader required to get phpunit to recognize
143 // the UploadFromUrlTest class
144 class_exists( 'UploadFromUrlTest' );
145 $suite = new UploadFromUrlTestSuite( 'UploadFromUrlTest' );