Merge "Add SPARQL client to core"
[lhc/web/wiklou.git] / tests / phpunit / includes / filerepo / file / LocalFileTest.php
1 <?php
2
3 /**
4 * These tests should work regardless of $wgCapitalLinks
5 * @todo Split tests into providers and test methods
6 */
7
8 class LocalFileTest extends MediaWikiTestCase {
9
10 protected function setUp() {
11 parent::setUp();
12
13 $this->setMwGlobals( 'wgCapitalLinks', true );
14
15 $info = [
16 'name' => 'test',
17 'directory' => '/testdir',
18 'url' => '/testurl',
19 'hashLevels' => 2,
20 'transformVia404' => false,
21 'backend' => new FSFileBackend( [
22 'name' => 'local-backend',
23 'wikiId' => wfWikiID(),
24 'containerPaths' => [
25 'cont1' => "/testdir/local-backend/tempimages/cont1",
26 'cont2' => "/testdir/local-backend/tempimages/cont2"
27 ]
28 ] )
29 ];
30 $this->repo_hl0 = new LocalRepo( [ 'hashLevels' => 0 ] + $info );
31 $this->repo_hl2 = new LocalRepo( [ 'hashLevels' => 2 ] + $info );
32 $this->repo_lc = new LocalRepo( [ 'initialCapital' => false ] + $info );
33 $this->file_hl0 = $this->repo_hl0->newFile( 'test!' );
34 $this->file_hl2 = $this->repo_hl2->newFile( 'test!' );
35 $this->file_lc = $this->repo_lc->newFile( 'test!' );
36 }
37
38 /**
39 * @covers File::getHashPath
40 */
41 public function testGetHashPath() {
42 $this->assertEquals( '', $this->file_hl0->getHashPath() );
43 $this->assertEquals( 'a/a2/', $this->file_hl2->getHashPath() );
44 $this->assertEquals( 'c/c4/', $this->file_lc->getHashPath() );
45 }
46
47 /**
48 * @covers File::getRel
49 */
50 public function testGetRel() {
51 $this->assertEquals( 'Test!', $this->file_hl0->getRel() );
52 $this->assertEquals( 'a/a2/Test!', $this->file_hl2->getRel() );
53 $this->assertEquals( 'c/c4/test!', $this->file_lc->getRel() );
54 }
55
56 /**
57 * @covers File::getUrlRel
58 */
59 public function testGetUrlRel() {
60 $this->assertEquals( 'Test%21', $this->file_hl0->getUrlRel() );
61 $this->assertEquals( 'a/a2/Test%21', $this->file_hl2->getUrlRel() );
62 $this->assertEquals( 'c/c4/test%21', $this->file_lc->getUrlRel() );
63 }
64
65 /**
66 * @covers File::getArchivePath
67 */
68 public function testGetArchivePath() {
69 $this->assertEquals(
70 'mwstore://local-backend/test-public/archive',
71 $this->file_hl0->getArchivePath()
72 );
73 $this->assertEquals(
74 'mwstore://local-backend/test-public/archive/a/a2',
75 $this->file_hl2->getArchivePath()
76 );
77 $this->assertEquals(
78 'mwstore://local-backend/test-public/archive/!',
79 $this->file_hl0->getArchivePath( '!' )
80 );
81 $this->assertEquals(
82 'mwstore://local-backend/test-public/archive/a/a2/!',
83 $this->file_hl2->getArchivePath( '!' )
84 );
85 }
86
87 /**
88 * @covers File::getThumbPath
89 */
90 public function testGetThumbPath() {
91 $this->assertEquals(
92 'mwstore://local-backend/test-thumb/Test!',
93 $this->file_hl0->getThumbPath()
94 );
95 $this->assertEquals(
96 'mwstore://local-backend/test-thumb/a/a2/Test!',
97 $this->file_hl2->getThumbPath()
98 );
99 $this->assertEquals(
100 'mwstore://local-backend/test-thumb/Test!/x',
101 $this->file_hl0->getThumbPath( 'x' )
102 );
103 $this->assertEquals(
104 'mwstore://local-backend/test-thumb/a/a2/Test!/x',
105 $this->file_hl2->getThumbPath( 'x' )
106 );
107 }
108
109 /**
110 * @covers File::getArchiveUrl
111 */
112 public function testGetArchiveUrl() {
113 $this->assertEquals( '/testurl/archive', $this->file_hl0->getArchiveUrl() );
114 $this->assertEquals( '/testurl/archive/a/a2', $this->file_hl2->getArchiveUrl() );
115 $this->assertEquals( '/testurl/archive/%21', $this->file_hl0->getArchiveUrl( '!' ) );
116 $this->assertEquals( '/testurl/archive/a/a2/%21', $this->file_hl2->getArchiveUrl( '!' ) );
117 }
118
119 /**
120 * @covers File::getThumbUrl
121 */
122 public function testGetThumbUrl() {
123 $this->assertEquals( '/testurl/thumb/Test%21', $this->file_hl0->getThumbUrl() );
124 $this->assertEquals( '/testurl/thumb/a/a2/Test%21', $this->file_hl2->getThumbUrl() );
125 $this->assertEquals( '/testurl/thumb/Test%21/x', $this->file_hl0->getThumbUrl( 'x' ) );
126 $this->assertEquals( '/testurl/thumb/a/a2/Test%21/x', $this->file_hl2->getThumbUrl( 'x' ) );
127 }
128
129 /**
130 * @covers File::getArchiveVirtualUrl
131 */
132 public function testGetArchiveVirtualUrl() {
133 $this->assertEquals( 'mwrepo://test/public/archive', $this->file_hl0->getArchiveVirtualUrl() );
134 $this->assertEquals(
135 'mwrepo://test/public/archive/a/a2',
136 $this->file_hl2->getArchiveVirtualUrl()
137 );
138 $this->assertEquals(
139 'mwrepo://test/public/archive/%21',
140 $this->file_hl0->getArchiveVirtualUrl( '!' )
141 );
142 $this->assertEquals(
143 'mwrepo://test/public/archive/a/a2/%21',
144 $this->file_hl2->getArchiveVirtualUrl( '!' )
145 );
146 }
147
148 /**
149 * @covers File::getThumbVirtualUrl
150 */
151 public function testGetThumbVirtualUrl() {
152 $this->assertEquals( 'mwrepo://test/thumb/Test%21', $this->file_hl0->getThumbVirtualUrl() );
153 $this->assertEquals( 'mwrepo://test/thumb/a/a2/Test%21', $this->file_hl2->getThumbVirtualUrl() );
154 $this->assertEquals(
155 'mwrepo://test/thumb/Test%21/%21',
156 $this->file_hl0->getThumbVirtualUrl( '!' )
157 );
158 $this->assertEquals(
159 'mwrepo://test/thumb/a/a2/Test%21/%21',
160 $this->file_hl2->getThumbVirtualUrl( '!' )
161 );
162 }
163
164 /**
165 * @covers File::getUrl
166 */
167 public function testGetUrl() {
168 $this->assertEquals( '/testurl/Test%21', $this->file_hl0->getUrl() );
169 $this->assertEquals( '/testurl/a/a2/Test%21', $this->file_hl2->getUrl() );
170 }
171
172 /**
173 * @covers ::wfLocalFile
174 */
175 public function testWfLocalFile() {
176 $file = wfLocalFile( "File:Some_file_that_probably_doesn't exist.png" );
177 $this->assertThat(
178 $file,
179 $this->isInstanceOf( LocalFile::class ),
180 'wfLocalFile() returns LocalFile for valid Titles'
181 );
182 }
183 }