* Added 'basePath' config param to FSFileBackend and tweaked it to behave more simila...
[lhc/web/wiklou.git] / tests / phpunit / includes / filerepo / StoreBatchTest.php
1 <?php
2 /**
3 * @group FileRepo
4 */
5 class StoreBatchTest extends MediaWikiTestCase {
6
7 public function setUp() {
8 parent::setUp();
9
10 # Forge a FSRepo object to not have to rely on local wiki settings
11 $tmpDir = wfTempDir() . '/' . time() . '-' . mt_rand();
12 $this->repo = new FSRepo( array(
13 'name' => 'test',
14 'backend' => new FSFileBackend( array(
15 'name' => 'local-backend',
16 'lockManager' => 'nullLockManager',
17 'containerPaths' => array(
18 'test-public' => "$tmpDir/public",
19 'test-thumb' => "$tmpDir/thumb",
20 'test-temp' => "$tmpDir/temp",
21 'test-deleted' => "$tmpDir/deleted",
22 )
23 ) )
24 ) );
25
26 $this->date = gmdate( "YmdHis" );
27 $this->createdFiles = array();
28
29 $this->users = array(
30 'sysop' => new ApiTestUser(
31 'Uploadstashtestsysop',
32 'Upload Stash Test Sysop',
33 'upload_stash_test_sysop@example.com',
34 array( 'sysop' )
35 ),
36 'uploader' => new ApiTestUser(
37 'Uploadstashtestuser',
38 'Upload Stash Test User',
39 'upload_stash_test_user@example.com',
40 array()
41 )
42 );
43 }
44
45 /**
46 * Store a file or virtual URL source into a media file name.
47 *
48 * @param $originalName string The title of the image
49 * @param $srcPath string The filepath or virtual URL
50 * @param $flags integer Flags to pass into repo::store().
51 */
52 private function storeit($originalName, $srcPath, $flags) {
53 $hashPath = $this->repo->getHashPath( $originalName );
54 $dstRel = "$hashPath{$this->date}!$originalName";
55 $dstUrlRel = $hashPath . $this->date . '!' . rawurlencode( $originalName );
56
57 $result = $this->repo->store( $srcPath, 'temp', $dstRel, $flags );
58 $result->value = $this->repo->getVirtualUrl( 'temp' ) . '/' . $dstUrlRel;
59 $this->createdFiles[] = $result->value;
60 return $result;
61 }
62
63 /**
64 * Test storing a file using different flags.
65 *
66 * @param $fn string The title of the image
67 * @param $infn string The name of the file (in the filesystem)
68 * @param $otherfn string The name of the different file (in the filesystem)
69 * @param $fromrepo logical 'true' if we want to copy from a virtual URL out of the Repo.
70 */
71 private function storecohort($fn, $infn, $otherfn, $fromrepo) {
72 $f = $this->storeit( $fn, $infn, 0 );
73 $this->assertTrue( $f->isOK(), 'failed to store a new file' );
74 $this->assertEquals( $f->failCount, 0, "counts wrong {$f->successCount} {$f->failCount}" );
75 $this->assertEquals( $f->successCount, 1 , "counts wrong {$f->successCount} {$f->failCount}" );
76 if ( $fromrepo ) {
77 $f = $this->storeit( "Other-$fn", $infn, FileRepo::OVERWRITE);
78 $infn = $f->value;
79 }
80 // This should work because we're allowed to overwrite
81 $f = $this->storeit( $fn, $infn, FileRepo::OVERWRITE );
82 $this->assertTrue( $f->isOK(), 'We should be allowed to overwrite' );
83 $this->assertEquals( $f->failCount, 0, "counts wrong {$f->successCount} {$f->failCount}" );
84 $this->assertEquals( $f->successCount, 1 , "counts wrong {$f->successCount} {$f->failCount}" );
85 // This should fail because we're overwriting.
86 $f = $this->storeit( $fn, $infn, 0 );
87 $this->assertFalse( $f->isOK(), 'We should not be allowed to overwrite' );
88 $this->assertEquals( $f->failCount, 1, "counts wrong {$f->successCount} {$f->failCount}" );
89 $this->assertEquals( $f->successCount, 0 , "counts wrong {$f->successCount} {$f->failCount}" );
90 // This should succeed because we're overwriting the same content.
91 $f = $this->storeit( $fn, $infn, FileRepo::OVERWRITE_SAME );
92 $this->assertTrue( $f->isOK(), 'We should be able to overwrite the same content' );
93 $this->assertEquals( $f->failCount, 0, "counts wrong {$f->successCount} {$f->failCount}" );
94 $this->assertEquals( $f->successCount, 1 , "counts wrong {$f->successCount} {$f->failCount}" );
95 // This should fail because we're overwriting different content.
96 if ( $fromrepo ) {
97 $f = $this->storeit( "Other-$fn", $otherfn, FileRepo::OVERWRITE);
98 $otherfn = $f->value;
99 }
100 $f = $this->storeit( $fn, $otherfn, FileRepo::OVERWRITE_SAME );
101 $this->assertFalse( $f->isOK(), 'We should not be allowed to overwrite different content' );
102 $this->assertEquals( $f->failCount, 1, "counts wrong {$f->successCount} {$f->failCount}" );
103 $this->assertEquals( $f->successCount, 0 , "counts wrong {$f->successCount} {$f->failCount}" );
104 }
105
106 public function teststore() {
107 global $IP;
108 $this->storecohort( "Test1.png", "$IP/skins/monobook/wiki.png", "$IP/skins/monobook/video.png", false );
109 $this->storecohort( "Test2.png", "$IP/skins/monobook/wiki.png", "$IP/skins/monobook/video.png", true );
110 }
111
112 public function tearDown() {
113 $this->repo->cleanupBatch( $this->createdFiles );
114 parent::tearDown();
115 }
116 }