1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<?php
/**
* @group Database
*/
class UploadStashTest extends MediaWikiTestCase {
/**
* @var Array of UploadStashTestUser
*/
public static $users;
protected function setUp() {
parent::setUp();
// Setup a file for bug 29408
$this->bug29408File = __DIR__ . '/bug29408';
file_put_contents( $this->bug29408File, "\x00" );
self::$users = array(
'sysop' => new TestUser(
'Uploadstashtestsysop',
'Upload Stash Test Sysop',
'upload_stash_test_sysop@example.com',
array( 'sysop' )
),
'uploader' => new TestUser(
'Uploadstashtestuser',
'Upload Stash Test User',
'upload_stash_test_user@example.com',
array()
)
);
}
protected function tearDown() {
if ( file_exists( $this->bug29408File . "." ) ) {
unlink( $this->bug29408File . "." );
}
if ( file_exists( $this->bug29408File ) ) {
unlink( $this->bug29408File );
}
parent::tearDown();
}
public function testBug29408() {
global $wgUser;
$wgUser = self::$users['uploader']->user;
$repo = RepoGroup::singleton()->getLocalRepo();
$stash = new UploadStash( $repo );
// Throws exception caught by PHPUnit on failure
$file = $stash->stashFile( $this->bug29408File );
// We'll never reach this point if we hit bug 29408
$this->assertTrue( true, 'Unrecognized file without extension' );
$stash->removeFile( $file->getFileKey() );
}
public function testValidRequest() {
$request = new FauxRequest( array( 'wpFileKey' => 'foo' ) );
$this->assertFalse( UploadFromStash::isValidRequest( $request ), 'Check failure on bad wpFileKey' );
$request = new FauxRequest( array( 'wpSessionKey' => 'foo' ) );
$this->assertFalse( UploadFromStash::isValidRequest( $request ), 'Check failure on bad wpSessionKey' );
$request = new FauxRequest( array( 'wpFileKey' => 'testkey-test.test' ) );
$this->assertTrue( UploadFromStash::isValidRequest( $request ), 'Check good wpFileKey' );
$request = new FauxRequest( array( 'wpFileKey' => 'testkey-test.test' ) );
$this->assertTrue( UploadFromStash::isValidRequest( $request ), 'Check good wpSessionKey' );
$request = new FauxRequest( array( 'wpFileKey' => 'testkey-test.test', 'wpSessionKey' => 'foo' ) );
$this->assertTrue( UploadFromStash::isValidRequest( $request ), 'Check key precedence' );
}
}
|