wiki.techinc.nl/tests/phpunit/includes/api/ApiBlockTest.php

118 lines
2.7 KiB
PHP
Raw Normal View History

<?php
/**
* @group API
* @group Database
*/
class ApiBlockTest extends ApiTestCase {
function setUp() {
parent::setUp();
$this->doLogin();
}
2011-06-02 19:32:45 +00:00
function getTokens() {
return $this->getTokenList( self::$users['sysop'] );
}
function addDBData() {
$user = User::newFromName( 'UTApiBlockee' );
2011-06-02 19:32:45 +00:00
if ( $user->getId() == 0 ) {
$user->addToDatabase();
$user->setPassword( 'UTApiBlockeePassword' );
$user->saveSettings();
}
}
/**
* This test has probably always been broken and use an invalid token
* Bug tracking brokenness is https://bugzilla.wikimedia.org/35646
*
* Root cause is https://gerrit.wikimedia.org/r/3434
* Which made the Block/Unblock API to actually verify the token
* previously always considered valid (bug 34212).
*/
function testMakeNormalBlock() {
2011-06-02 19:32:45 +00:00
$data = $this->getTokens();
2011-06-02 19:32:45 +00:00
$user = User::newFromName( 'UTApiBlockee' );
2011-06-02 19:32:45 +00:00
if ( !$user->getId() ) {
$this->markTestIncomplete( "The user UTApiBlockee does not exist" );
}
2011-06-02 19:32:45 +00:00
if( !isset( $data[0]['query']['pages'] ) ) {
$this->markTestIncomplete( "No block token found" );
}
2011-06-02 19:32:45 +00:00
$keys = array_keys( $data[0]['query']['pages'] );
$key = array_pop( $keys );
$pageinfo = $data[0]['query']['pages'][$key];
2011-06-02 19:32:45 +00:00
$data = $this->doApiRequest( array(
'action' => 'block',
'user' => 'UTApiBlockee',
'reason' => 'Some reason',
'token' => $pageinfo['blocktoken'] ), $data, false, self::$users['sysop']->user );
$block = Block::newFromTarget('UTApiBlockee');
2011-06-02 19:32:45 +00:00
$this->assertTrue( !is_null( $block ), 'Block is valid' );
$this->assertEquals( 'UTApiBlockee', (string)$block->getTarget() );
$this->assertEquals( 'Some reason', $block->mReason );
$this->assertEquals( 'infinity', $block->mExpiry );
2011-06-02 19:32:45 +00:00
}
/**
* @dataProvider provideBlockUnblockAction
*/
function testGetTokenUsingABlockingAction( $action ) {
$data = $this->doApiRequest(
array(
'action' => $action,
'user' => 'UTApiBlockee',
'gettoken' => '' ),
null,
false,
self::$users['sysop']->user
);
$this->assertEquals( 34, strlen( $data[0][$action]["{$action}token"] ) );
}
/**
* Attempting to block without a token should give a UsageException with
* error message:
* "The token parameter must be set"
*
* @dataProvider provideBlockUnblockAction
* @expectedException UsageException
*/
function testBlockingActionWithNoToken( $action ) {
$this->doApiRequest(
array(
'action' => $action,
'user' => 'UTApiBlockee',
'reason' => 'Some reason',
),
null,
false,
self::$users['sysop']->user
);
}
/**
* Just provide the 'block' and 'unblock' action to test both API calls
*/
function provideBlockUnblockAction() {
return array(
array( 'block' ),
array( 'unblock' ),
);
}
}