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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<?php
use MediaWiki\Context\RequestContext;
use MediaWiki\Request\FauxRequest;
use MediaWiki\SpecialPage\SpecialPage;
use MediaWiki\Specials\SpecialUserLogout;
use MediaWiki\Tests\User\TempUser\TempUserTestTrait;
/**
* @covers \MediaWiki\Specials\SpecialUserLogout
* @group Database
*/
class SpecialUserLogoutTest extends SpecialPageTestBase {
use TempUserTestTrait;
/**
* Returns a new instance of the special page under test.
*
* @return SpecialPage
*/
protected function newSpecialPage() {
return new SpecialUserLogout( $this->getServiceContainer()->getTempUserConfig() );
}
public function testUserLogoutComplete() {
$oldName = __METHOD__;
$user = new TestUser( $oldName );
$session = RequestContext::getMain()->getRequest()->getSession();
$fauxRequest = new FauxRequest(
[ 'wpEditToken' => $session->getToken( 'logoutToken' ) ],
/* $wasPosted= */ true,
$session
);
$oldNameInHook = null;
$this->setTemporaryHook(
'UserLogoutComplete',
static function ( $user, $injected_html, $oldName ) use ( &$oldNameInHook ) {
$oldNameInHook = $oldName;
}
);
[ $html ] = $this->executeSpecialPage( '', $fauxRequest, 'qqx', $user->getUser(), true );
// Check that the page title and page content are as expected for a normal user logout
$this->assertStringContainsString( '(logouttext:', $html );
$this->assertStringContainsString( '(userlogout)', $html );
$this->assertEquals(
$oldName,
$oldNameInHook,
'old name in UserLogoutComplete hook was incorrect'
);
}
public function testExecuteForTemporaryAccount() {
$this->enableAutoCreateTempUser();
$user = $this->getServiceContainer()->getTempUserCreator()->create( null, new FauxRequest() )->getUser();
$session = RequestContext::getMain()->getRequest()->getSession();
$session->setUser( $user );
$fauxRequest = new FauxRequest( [ 'wpEditToken' => $session->getToken( 'logoutToken' ) ], true, $session );
[ $html ] = $this->executeSpecialPage( '', $fauxRequest, 'qqx', $user, true );
// Check that the page title and page content are as expected for the temporary account logout
$this->assertStringContainsString( '(logouttext-for-temporary-account:', $html );
$this->assertStringContainsString( '(templogout)', $html );
}
public function testViewForTemporaryAccountAfterApiLogout() {
$user = $this->getServiceContainer()->getUserFactory()->newAnonymous( '1.2.3.4' );
$fauxRequest = new FauxRequest( [ 'wasTempUser' => 1 ] );
[ $html ] = $this->executeSpecialPage( '', $fauxRequest, 'qqx', $user, true );
// Check that the page title and page content are as expected for the temporary account logout
$this->assertStringContainsString( '(logouttext-for-temporary-account:', $html );
$this->assertStringContainsString( '(templogout)', $html );
}
public function testViewForTemporaryAccount() {
$this->enableAutoCreateTempUser();
$user = $this->getServiceContainer()->getTempUserCreator()->create( null, new FauxRequest() )->getUser();
[ $html ] = $this->executeSpecialPage( '', null, 'qqx', $user, true );
// Check that the page title is as expected for a temporary account and that the submit button is present
$this->assertStringContainsString( '(templogout)', $html );
$this->assertStringContainsString( '(htmlform-submit)', $html );
}
}
|