MediaWiki  1.28.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 }
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:115
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to copy
Definition: LICENSE.txt:10
$success
deleteFileByContent($filePath)
Helper function – given a file on the filesystem, find matching content in the db (and associated ar...
$comment
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:262
getNewTempFile()
Obtains a new temporary file name.
Abstract class to support upload tests.
fakeUploadFile($fieldName, $fileName, $type, $filePath)
Fake an upload by dumping the file into temp space, and adding info to $_FILES.
clearFakeUploads()
Remove traces of previous fake uploads.
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
static doDelete(&$title, &$file, &$oldimage, $reason, $suppress, User $user=null, $tags=[])
Really delete the file.
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:953
const NS_FILE
Definition: Defines.php:62
static getSha1Base36FromPath($path)
Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case encoding, zero padded to 31 digits.
Definition: FSFile.php:218
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
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
deleteFileByFileName($fileName)
Helper function – remove files and associated articles with a particular filename.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist 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:1046
setUp()
Fixture – run before every test.
setMwGlobals($pairs, $value=null)
deleteFileByTitle($title)
Helper function – remove files and associated articles by Title.
wfFindFile($title, $options=[])
Find a file.
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 one of or reset 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:2491
fakeUploadChunk($fieldName, $fileName, $type, &$chunkData)
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:2491