Page MenuHomeWickedGov Phorge

ChangeTagsListTest.php
No OneTemporary

Size
3 KB
Referenced Files
None
Subscribers
None

ChangeTagsListTest.php

<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @since 1.42
*/
namespace MediaWiki\Tests\ChangeTags;
use InvalidArgumentException;
use MediaWiki\ChangeTags\ChangeTagsList;
use MediaWiki\ChangeTags\ChangeTagsLogList;
use MediaWiki\ChangeTags\ChangeTagsRevisionList;
use MediaWiki\Context\IContextSource;
use MediaWiki\Page\PageIdentity;
use MediaWikiIntegrationTestCase;
/**
* @covers \MediaWiki\ChangeTags\ChangeTagsList
* @group ChangeTag
* @group Database
*/
class ChangeTagsListTest extends MediaWikiIntegrationTestCase {
public function testFactoryWithRevision() {
$context = $this->createMock( IContextSource::class );
$page = $this->createMock( PageIdentity::class );
$ids = [ 1, 2, 3 ];
// Instantiate a ChangeTagsList with revision type.
$revisionList = ChangeTagsList::factory( 'revision', $context, $page, $ids );
// Assert that the returned list is an instance of ChangeTagsRevisionList.
$this->assertInstanceOf( ChangeTagsRevisionList::class, $revisionList );
}
public function testFactoryWithLogentry() {
$context = $this->createMock( IContextSource::class );
$page = $this->createMock( PageIdentity::class );
$ids = [ 1, 2, 3 ];
// Instantiate a ChangeTagsList with logentry type.
$logList = ChangeTagsList::factory( 'logentry', $context, $page, $ids );
// Assert that the returned list is an instance of ChangeTagsLogList.
$this->assertInstanceOf( ChangeTagsLogList::class, $logList );
}
public function testFactoryWithUnknownType() {
$this->expectException( InvalidArgumentException::class );
$context = $this->createMock( IContextSource::class );
$page = $this->createMock( PageIdentity::class );
$ids = [];
// Instantiate a ChangeTagsList with an unknown type.
ChangeTagsList::factory( 'unknownType', $context, $page, $ids );
}
public function testUpdateChangeTagsOnAll() {
$this->expectException( InvalidArgumentException::class );
$context = $this->createMock( IContextSource::class );
$page = $this->createMock( PageIdentity::class );
$ids = [];
// Instantiate a ChangeTagsList.
$changeTagsList = ChangeTagsList::factory( 'revision', $context, $page, $ids );
// Mock an Authority (e.g., a User with appropriate permissions).
$user = $this->getTestUser()->getUser();
$authority = $user;
// Mock the tags to add and remove, as well as the reason for the change.
$tagsToAdd = [ 'mockTagToAddOne', 'mockTagToAddTwo' ];
$tagsToRemove = [ 'mockTagToRemoveOne', 'mockTagToRemoveTwo' ];
$params = null;
$reason = "Test reason for changing tags";
// Attempt to update the change tags on all items in the list.
$status = $changeTagsList->updateChangeTagsOnAll( $tagsToAdd, $tagsToRemove, $params, $reason, $authority );
// Assert that the operation was successful.
$this->assertStatusOK( $status, 'Updating change tags failed' );
}
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Aug 18, 23:17 (1 d, 12 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
a2/d0/da8633e0af34e4e7dacacf30f548
Default Alt Text
ChangeTagsListTest.php (3 KB)

Event Timeline