MediaWiki  1.29.1
ApiTestCaseUpload.php
Go to the documentation of this file.
1 <?php
2 
6 abstract class ApiTestCaseUpload extends ApiTestCase {
10  protected function setUp() {
11  parent::setUp();
12 
13  $this->setMwGlobals( [
14  'wgEnableUploads' => true,
15  'wgEnableAPI' => true,
16  ] );
17 
18  $this->clearFakeUploads();
19  }
20 
28  public function deleteFileByTitle( $title ) {
29  if ( $title->exists() ) {
30  $file = wfFindFile( $title, [ 'ignoreRedirect' => true ] );
31  $noOldArchive = ""; // yes this really needs to be set this way
32  $comment = "removing for test";
33  $restrictDeletedVersions = false;
35  $title,
36  $file,
37  $noOldArchive,
38  $comment,
39  $restrictDeletedVersions
40  );
41 
42  if ( !$status->isGood() ) {
43  return false;
44  }
45 
47  $page->doDeleteArticle( "removing for test" );
48 
49  // see if it now doesn't exist; reload
50  $title = Title::newFromText( $title->getText(), NS_FILE );
51  }
52 
53  return !( $title && $title instanceof Title && $title->exists() );
54  }
55 
63  public function deleteFileByFileName( $fileName ) {
64  return $this->deleteFileByTitle( Title::newFromText( $fileName, NS_FILE ) );
65  }
66 
75  public function deleteFileByContent( $filePath ) {
76  $hash = FSFile::getSha1Base36FromPath( $filePath );
77  $dupes = RepoGroup::singleton()->findBySha1( $hash );
78  $success = true;
79  foreach ( $dupes as $dupe ) {
80  $success &= $this->deleteFileByTitle( $dupe->getTitle() );
81  }
82 
83  return $success;
84  }
85 
98  function fakeUploadFile( $fieldName, $fileName, $type, $filePath ) {
99  $tmpName = $this->getNewTempFile();
100  if ( !file_exists( $filePath ) ) {
101  throw new Exception( "$filePath doesn't exist!" );
102  }
103 
104  if ( !copy( $filePath, $tmpName ) ) {
105  throw new Exception( "couldn't copy $filePath to $tmpName" );
106  }
107 
108  clearstatcache();
109  $size = filesize( $tmpName );
110  if ( $size === false ) {
111  throw new Exception( "couldn't stat $tmpName" );
112  }
113 
114  $_FILES[$fieldName] = [
115  'name' => $fileName,
116  'type' => $type,
117  'tmp_name' => $tmpName,
118  'size' => $size,
119  'error' => null
120  ];
121 
122  return true;
123  }
124 
125  function fakeUploadChunk( $fieldName, $fileName, $type, & $chunkData ) {
126  $tmpName = $this->getNewTempFile();
127  // copy the chunk data to temp location:
128  if ( !file_put_contents( $tmpName, $chunkData ) ) {
129  throw new Exception( "couldn't copy chunk data to $tmpName" );
130  }
131 
132  clearstatcache();
133  $size = filesize( $tmpName );
134  if ( $size === false ) {
135  throw new Exception( "couldn't stat $tmpName" );
136  }
137 
138  $_FILES[$fieldName] = [
139  'name' => $fileName,
140  'type' => $type,
141  'tmp_name' => $tmpName,
142  'size' => $size,
143  'error' => null
144  ];
145  }
146 
150  function clearFakeUploads() {
151  $_FILES = [];
152  }
153 }
copy
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a copy
Definition: COPYING.txt:87
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:265
RepoGroup\singleton
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
NS_FILE
const NS_FILE
Definition: Defines.php:68
$success
$success
Definition: NoLocalSettings.php:44
$type
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached my talk my contributions etc etc otherwise the built in rate limiting checks are if enabled allows for interception of redirect as a string mapping parameter names to values & $type
Definition: hooks.txt:2536
ApiTestCaseUpload\deleteFileByContent
deleteFileByContent( $filePath)
Helper function – given a file on the filesystem, find matching content in the db (and associated art...
Definition: ApiTestCaseUpload.php:75
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:120
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Definition: MediaWikiTestCase.php:658
MediaWikiTestCase\getNewTempFile
getNewTempFile()
Obtains a new temporary file name.
Definition: MediaWikiTestCase.php:443
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
ApiTestCaseUpload\clearFakeUploads
clearFakeUploads()
Remove traces of previous fake uploads.
Definition: ApiTestCaseUpload.php:150
ApiTestCaseUpload\fakeUploadFile
fakeUploadFile( $fieldName, $fileName, $type, $filePath)
Fake an upload by dumping the file into temp space, and adding info to $_FILES.
Definition: ApiTestCaseUpload.php:98
FSFile\getSha1Base36FromPath
static getSha1Base36FromPath( $path)
Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case encoding,...
Definition: FSFile.php:218
ApiTestCaseUpload\deleteFileByTitle
deleteFileByTitle( $title)
Helper function – remove files and associated articles by Title.
Definition: ApiTestCaseUpload.php:28
ApiTestCaseUpload\fakeUploadChunk
fakeUploadChunk( $fieldName, $fileName, $type, & $chunkData)
Definition: ApiTestCaseUpload.php:125
ApiTestCaseUpload\deleteFileByFileName
deleteFileByFileName( $fileName)
Helper function – remove files and associated articles with a particular filename.
Definition: ApiTestCaseUpload.php:63
ApiTestCase
Definition: ApiTestCase.php:3
wfFindFile
wfFindFile( $title, $options=[])
Find a file.
Definition: GlobalFunctions.php:3101
Title
Represents a title within MediaWiki.
Definition: Title.php:39
ApiTestCaseUpload
Abstract class to support upload tests.
Definition: ApiTestCaseUpload.php:6
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
ApiTestCaseUpload\setUp
setUp()
Fixture – run before every test.
Definition: ApiTestCaseUpload.php:10
FileDeleteForm\doDelete
static doDelete(&$title, &$file, &$oldimage, $reason, $suppress, User $user=null, $tags=[])
Really delete the file.
Definition: FileDeleteForm.php:158