wiki.techinc.nl/tests/phpunit/includes/SampleTest.php
Max Semenik 48a323f702 tests: Add explicit return type void to setUp() and tearDown()
Bug: T192167
Depends-On: I581e54278ac5da3f4e399e33f2c7ad468bae6b43
Change-Id: I3a21fb55db76bac51afdd399cf40ed0760e4f343
2019-10-30 14:31:22 -07:00

105 lines
3.3 KiB
PHP

<?php
/**
* @coversNothing Just a sample
*/
class SampleTest extends MediaWikiLangTestCase {
/**
* Anything that needs to happen before your tests should go here.
*/
protected function setUp() : void {
// Be sure to call the parent setup and teardown functions.
// This makes sure that all the various cleanup and restorations
// happen as they should (including the restoration for setMwGlobals).
parent::setUp();
// This sets the globals and will restore them automatically
// after each test.
$this->setContentLang( 'en' );
$this->setMwGlobals( [
'wgCapitalLinks' => true,
] );
}
/**
* Anything cleanup you need to do should go here.
*/
protected function tearDown() : void {
parent::tearDown();
}
/**
* Name tests so that PHPUnit can turn them into sentences when
* they run. You are encouraged to use the naming described at:
* https://phpunit.de/manual/6.5/en/other-uses-for-tests.html
*/
public function testTitleObjectStringConversion() {
$title = Title::newFromText( "text" );
$this->assertInstanceOf( Title::class, $title, "Title creation" );
$this->assertEquals( "Text", $title, "Automatic string conversion" );
$title = Title::newFromText( "text", NS_MEDIA );
$this->assertEquals( "Media:Text", $title, "Title creation with namespace" );
}
/**
* If you want to run the same test with a variety of data, use a data provider.
* See https://phpunit.de/manual/6.5/en/writing-tests-for-phpunit.html
*/
public static function provideTitles() {
return [
[ 'Text', NS_MEDIA, 'Media:Text' ],
[ 'Text', null, 'Text' ],
[ 'text', null, 'Text' ],
[ 'Text', NS_USER, 'User:Text' ],
[ 'Photo.jpg', NS_FILE, 'File:Photo.jpg' ]
];
}
/**
* phpcs:disable Generic.Files.LineLength
* @dataProvider provideTitles
* See https://phpunit.de/manual/6.5/en/appendixes.annotations.html#appendixes.annotations.dataProvider
* phpcs:enable
*/
public function testCreateBasicListOfTitles( $titleName, $ns, $text ) {
$title = Title::newFromText( $titleName, $ns );
$this->assertEquals( $text, "$title", "see if '$titleName' matches '$text'" );
}
public function testSetUpMainPageTitleForNextTest() {
$title = Title::newMainPage();
$this->assertEquals( "Main Page", "$title", "Test initial creation of a title" );
return $title;
}
/**
* Instead of putting a bunch of tests in a single test method,
* you should put only one or two tests in each test method. This
* way, the test method names can remain descriptive.
*
* If you want to make tests depend on data created in another
* method, you can create dependencies feed whatever you return
* from the dependant method (e.g. testInitialCreation in this
* example) as arguments to the next method (e.g. $title in
* testTitleDepends is whatever testInitialCreatiion returned.)
*/
/**
* @depends testSetUpMainPageTitleForNextTest
* See https://phpunit.de/manual/6.5/en/appendixes.annotations.html#appendixes.annotations.depends
*/
public function testCheckMainPageTitleIsConsideredLocal( $title ) {
$this->assertTrue( $title->isLocal() );
}
/**
* See https://phpunit.de/manual/6.5/en/writing-tests-for-phpunit.html#writing-tests-for-phpunit.exceptions
*/
public function testTitleObjectFromObject() {
$this->expectException( InvalidArgumentException::class );
Title::newFromText( Title::newFromText( "test" ) );
}
}