wiki.techinc.nl/tests/phpunit/includes/specials/SpecialGoToInterwikiTest.php
Alexander Vorwerk decbaf4f38 phpunit: use ->getServiceContainer() in integration tests
Change-Id: I38299cb65eeaadfdc0eb05db4e8c0b0119cfb37d
2022-01-27 22:04:16 +01:00

79 lines
3.2 KiB
PHP

<?php
use MediaWiki\Interwiki\InterwikiLookupAdapter;
/**
* @covers SpecialGoToInterwiki
*/
class SpecialGoToInterwikiTest extends MediaWikiIntegrationTestCase {
public function testExecute() {
$this->setService( 'InterwikiLookup', new InterwikiLookupAdapter(
new HashSiteStore(), // won't be used
[
'local' => new Interwiki( 'local', 'https://local.example.com/$1',
'https://local.example.com/api.php', 'unittest_localwiki', 1 ),
'nonlocal' => new Interwiki( 'nonlocal', 'https://nonlocal.example.com/$1',
'https://nonlocal.example.com/api.php', 'unittest_nonlocalwiki', 0 ),
]
) );
$this->getServiceContainer()->resetServiceForTesting( 'TitleFormatter' );
$this->getServiceContainer()->resetServiceForTesting( 'TitleParser' );
$this->getServiceContainer()->resetServiceForTesting( '_MediaWikiTitleCodec' );
$this->assertNotTrue( Title::newFromText( 'Foo' )->isExternal() );
$this->assertTrue( Title::newFromText( 'local:Foo' )->isExternal() );
$this->assertTrue( Title::newFromText( 'nonlocal:Foo' )->isExternal() );
$this->assertTrue( Title::newFromText( 'local:Foo' )->isLocal() );
$this->assertNotTrue( Title::newFromText( 'nonlocal:Foo' )->isLocal() );
$goToInterwiki = $this->getServiceContainer()->getSpecialPageFactory()
->getPage( 'GoToInterwiki' );
RequestContext::resetMain();
$context = new DerivativeContext( RequestContext::getMain() );
$goToInterwiki->setContext( $context );
$goToInterwiki->execute( 'Foo' );
$this->assertSame( Title::newFromText( 'Foo' )->getFullURL(),
$context->getOutput()->getRedirect() );
RequestContext::resetMain();
$context = new DerivativeContext( RequestContext::getMain() );
$goToInterwiki->setContext( $context );
$goToInterwiki->execute( 'local:Foo' );
$this->assertSame( Title::newFromText( 'local:Foo' )->getFullURL(),
$context->getOutput()->getRedirect() );
RequestContext::resetMain();
$context = new DerivativeContext( RequestContext::getMain() );
$goToInterwiki->setContext( $context );
$goToInterwiki->execute( 'nonlocal:Foo' );
$this->assertSame( '', $context->getOutput()->getRedirect() );
$this->assertStringContainsString( Title::newFromText( 'nonlocal:Foo' )->getFullURL(),
$context->getOutput()->getHTML() );
RequestContext::resetMain();
$context = new DerivativeContext( RequestContext::getMain() );
$goToInterwiki->setContext( $context );
$goToInterwiki->execute( 'force/Foo' );
$this->assertSame( Title::newFromText( 'Foo' )->getFullURL(),
$context->getOutput()->getRedirect() );
RequestContext::resetMain();
$context = new DerivativeContext( RequestContext::getMain() );
$goToInterwiki->setContext( $context );
$goToInterwiki->execute( 'force/local:Foo' );
$this->assertSame( '', $context->getOutput()->getRedirect() );
$this->assertStringContainsString( Title::newFromText( 'local:Foo' )->getFullURL(),
$context->getOutput()->getHTML() );
RequestContext::resetMain();
$context = new DerivativeContext( RequestContext::getMain() );
$goToInterwiki->setContext( $context );
$goToInterwiki->execute( 'force/nonlocal:Foo' );
$this->assertSame( '', $context->getOutput()->getRedirect() );
$this->assertStringContainsString( Title::newFromText( 'nonlocal:Foo' )->getFullURL(),
$context->getOutput()->getHTML() );
}
}