wiki.techinc.nl/tests/phpunit/includes/api/ApiUndeleteTest.php
Reedy 75640200fb tests: Namespace api tests
Bug: T357823
Change-Id: I0d7cc2c9b166d5e5b913c1305f7cee017fe377af
2024-02-18 15:47:04 +00:00

58 lines
1.4 KiB
PHP

<?php
namespace MediaWiki\Tests\Api;
use IDBAccessObject;
use MediaWiki\MainConfigNames;
use MediaWiki\Title\Title;
/**
* Tests for Undelete API.
*
* @group API
* @group Database
* @group medium
*
* @covers \ApiUndelete
*/
class ApiUndeleteTest extends ApiTestCase {
protected function setUp(): void {
parent::setUp();
$this->overrideConfigValue( MainConfigNames::WatchlistExpiry, true );
}
/**
* @covers \ApiUndelete::execute()
*/
public function testUndeleteWithWatch(): void {
$title = Title::makeTitle( NS_MAIN, 'TestUndeleteWithWatch' );
$sysop = $this->getTestSysop()->getUser();
$watchlistManager = $this->getServiceContainer()->getWatchlistManager();
// Create page.
$this->editPage( $title, 'Test', '', NS_MAIN, $sysop );
// Delete page.
$this->doApiRequestWithToken( [
'action' => 'delete',
'title' => $title->getPrefixedText(),
] );
// For good measure.
$this->assertFalse( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->assertFalse( $watchlistManager->isWatched( $sysop, $title ) );
// Restore page, and watch with expiry.
$this->doApiRequestWithToken( [
'action' => 'undelete',
'title' => $title->getPrefixedText(),
'watchlist' => 'watch',
'watchlistexpiry' => '99990123000000',
] );
$this->assertTrue( $title->exists( IDBAccessObject::READ_LATEST ) );
$this->assertTrue( $watchlistManager->isTempWatched( $sysop, $title ) );
}
}