4 * Abstract class to support upload tests
6 abstract class ApiTestCaseUpload
extends ApiTestCase
{
8 * Fixture -- run before every test
10 protected function setUp() {
13 $this->setMwGlobals( [
14 'wgEnableUploads' => true,
15 'wgEnableAPI' => true,
18 $this->clearFakeUploads();
22 * Helper function -- remove files and associated articles by Title
24 * @param Title $title Title to be removed
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;
34 $status = FileDeleteForm
::doDelete(
39 $restrictDeletedVersions
42 if ( !$status->isGood() ) {
46 $page = WikiPage
::factory( $title );
47 $page->doDeleteArticle( "removing for test" );
49 // see if it now doesn't exist; reload
50 $title = Title
::newFromText( $title->getText(), NS_FILE
);
53 return !( $title && $title instanceof Title
&& $title->exists() );
57 * Helper function -- remove files and associated articles with a particular filename
59 * @param string $fileName Filename to be removed
63 public function deleteFileByFileName( $fileName ) {
64 return $this->deleteFileByTitle( Title
::newFromText( $fileName, NS_FILE
) );
68 * Helper function -- given a file on the filesystem, find matching
69 * content in the db (and associated articles) and remove them.
71 * @param string $filePath Path to file on the filesystem
75 public function deleteFileByContent( $filePath ) {
76 $hash = FSFile
::getSha1Base36FromPath( $filePath );
77 $dupes = RepoGroup
::singleton()->findBySha1( $hash );
79 foreach ( $dupes as $dupe ) {
80 $success &= $this->deleteFileByTitle( $dupe->getTitle() );
87 * Fake an upload by dumping the file into temp space, and adding info to $_FILES.
88 * (This is what PHP would normally do).
90 * @param string $fieldName Name this would have in the upload form
91 * @param string $fileName Name to title this
92 * @param string $type MIME type
93 * @param string $filePath Path where to find file contents
98 function fakeUploadFile( $fieldName, $fileName, $type, $filePath ) {
99 $tmpName = $this->getNewTempFile();
100 if ( !file_exists( $filePath ) ) {
101 throw new Exception( "$filePath doesn't exist!" );
104 if ( !copy( $filePath, $tmpName ) ) {
105 throw new Exception( "couldn't copy $filePath to $tmpName" );
109 $size = filesize( $tmpName );
110 if ( $size === false ) {
111 throw new Exception( "couldn't stat $tmpName" );
114 $_FILES[$fieldName] = [
117 'tmp_name' => $tmpName,
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" );
133 $size = filesize( $tmpName );
134 if ( $size === false ) {
135 throw new Exception( "couldn't stat $tmpName" );
138 $_FILES[$fieldName] = [
141 'tmp_name' => $tmpName,
148 * Remove traces of previous fake uploads
150 function clearFakeUploads() {