mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CookieWarning
synced 2024-11-23 22:03:41 +00:00
2729a661c3
Use an anonymous class to implement QuickTemplate instead of relying on a specific implementation that no longer exists. Change-Id: Ifbd47e6fa3aff8c1969e8510edbfd16507025ed2
205 lines
5.5 KiB
PHP
205 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace CookieWarning\Tests;
|
|
|
|
use CommentStoreComment;
|
|
use CookieWarning\GeoLocation;
|
|
use CookieWarning\Hooks;
|
|
use DerivativeContext;
|
|
use FauxRequest;
|
|
use MediaWiki\MediaWikiServices;
|
|
use MediaWiki\Revision\SlotRecord;
|
|
use MediaWikiLangTestCase;
|
|
use QuickTemplate;
|
|
use RequestContext;
|
|
use SkinTemplate;
|
|
use Title;
|
|
use WikiPage;
|
|
use WikitextContent;
|
|
|
|
/**
|
|
* @covers Hooks
|
|
* @group Database
|
|
*/
|
|
class HooksTest extends MediaWikiLangTestCase {
|
|
|
|
/**
|
|
* @dataProvider providerOnSkinTemplateOutputPageBeforeExec
|
|
* @throws \MWException
|
|
* @throws \ConfigException
|
|
*/
|
|
public function testOnSkinTemplateOutputPageBeforeExec( $enabled, $morelinkConfig,
|
|
$morelinkCookieWarningMsg, $morelinkCookiePolicyMsg, $expectedLink
|
|
) {
|
|
$this->setMwGlobals( [
|
|
'wgCookieWarningEnabled' => $enabled,
|
|
'wgCookieWarningMoreUrl' => $morelinkConfig,
|
|
'wgCookieWarningForCountryCodes' => false,
|
|
'wgUseMediaWikiUIEverywhere' => true,
|
|
] );
|
|
MediaWikiServices::getInstance()->getMessageCache()->enable();
|
|
if ( $morelinkCookieWarningMsg ) {
|
|
$title = Title::newFromText( 'cookiewarning-more-link', NS_MEDIAWIKI );
|
|
$wikiPage = WikiPage::factory( $title );
|
|
$pageUpdater = $wikiPage->newPageUpdater( \User::newFromName( 'UTSysop' ) );
|
|
$pageUpdater->setContent( SlotRecord::MAIN, new WikitextContent( $morelinkCookieWarningMsg ) );
|
|
$pageUpdater->saveRevision( CommentStoreComment::newUnsavedComment( 'CookieWarning test' ) );
|
|
}
|
|
if ( $morelinkCookiePolicyMsg ) {
|
|
$title = Title::newFromText( 'cookie-policy-link', NS_MEDIAWIKI );
|
|
$wikiPage = WikiPage::factory( $title );
|
|
$pageUpdater = $wikiPage->newPageUpdater( \User::newFromName( 'UTSysop' ) );
|
|
$pageUpdater->setContent( SlotRecord::MAIN, new WikitextContent( $morelinkCookiePolicyMsg ) );
|
|
$pageUpdater->saveRevision( CommentStoreComment::newUnsavedComment( 'CookieWarning test' ) );
|
|
}
|
|
$sk = new SkinTemplate();
|
|
$tpl = new class extends QuickTemplate {
|
|
public function execute() {
|
|
}
|
|
};
|
|
Hooks::onSkinTemplateOutputPageBeforeExec( $sk, $tpl );
|
|
$headElement = '';
|
|
if ( isset( $tpl->data['headelement'] ) ) {
|
|
$headElement = $tpl->data['headelement'];
|
|
}
|
|
if ( $expectedLink === false ) {
|
|
$expected = '';
|
|
} else {
|
|
// @codingStandardsIgnoreStart Generic.Files.LineLength
|
|
$expected =
|
|
str_replace( '$1', $expectedLink,
|
|
'<div class="mw-cookiewarning-container banner-container"><div class="mw-cookiewarning-text"><span>Cookies help us deliver our services. By using our services, you agree to our use of cookies.</span>$1<form method="POST"><input name="disablecookiewarning" class="mw-cookiewarning-dismiss mw-ui-button" type="submit" value="OK"/></form></div></div>' );
|
|
// @codingStandardsIgnoreEnd
|
|
}
|
|
$this->assertEquals( $expected, $headElement );
|
|
}
|
|
|
|
public function providerOnSkinTemplateOutputPageBeforeExec() {
|
|
return [
|
|
[
|
|
// $wgCookieWarningEnabled
|
|
true,
|
|
// $wgCookieWarningMoreUrl
|
|
'',
|
|
// MediaWiki:Cookiewarning-more-link
|
|
false,
|
|
// MediaWiki:Cookie-policy-link
|
|
false,
|
|
// expected cookie warning link (when string), nothing if false
|
|
'',
|
|
],
|
|
[
|
|
false,
|
|
'',
|
|
false,
|
|
false,
|
|
false,
|
|
],
|
|
[
|
|
true,
|
|
'http://google.de',
|
|
false,
|
|
false,
|
|
"\u{00A0}<a href=\"http://google.de\">More information</a>",
|
|
],
|
|
[
|
|
true,
|
|
'',
|
|
'http://google.de',
|
|
false,
|
|
"\u{00A0}<a href=\"http://google.de\">More information</a>",
|
|
],
|
|
[
|
|
true,
|
|
'',
|
|
false,
|
|
'http://google.de',
|
|
"\u{00A0}<a href=\"http://google.de\">More information</a>",
|
|
],
|
|
// the config should be the used, if set (no matter if the messages are used or not)
|
|
[
|
|
true,
|
|
'http://google.de',
|
|
false,
|
|
'http://google123.de',
|
|
"\u{00A0}<a href=\"http://google.de\">More information</a>",
|
|
],
|
|
[
|
|
true,
|
|
'http://google.de',
|
|
'http://google1234.de',
|
|
'http://google123.de',
|
|
"\u{00A0}<a href=\"http://google.de\">More information</a>",
|
|
],
|
|
[
|
|
true,
|
|
'',
|
|
'http://google.de',
|
|
'http://google123.de',
|
|
"\u{00A0}<a href=\"http://google.de\">More information</a>",
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerOnSkinTemplateOutputPageBeforeExecGeoLocation
|
|
* @throws \MWException
|
|
* @throws \ConfigException
|
|
*/
|
|
public function testOnSkinTemplateOutputPageBeforeExecGeoLocation( $ipAddress, $countryCodes,
|
|
$expected
|
|
) {
|
|
$this->setMwGlobals( [
|
|
'wgCookieWarningEnabled' => true,
|
|
'wgCookieWarningGeoIPLookup' => is_array( $countryCodes ) ? 'php' : 'none',
|
|
'wgCookieWarningForCountryCodes' => $countryCodes,
|
|
] );
|
|
$this->mockGeoLocationService();
|
|
|
|
$request = new FauxRequest();
|
|
$request->setIP( $ipAddress );
|
|
$context = new DerivativeContext( RequestContext::getMain() );
|
|
$context->setRequest( $request );
|
|
$sk = new SkinTemplate();
|
|
$sk->setContext( $context );
|
|
$tpl = new class extends QuickTemplate {
|
|
public function execute() {
|
|
}
|
|
};
|
|
Hooks::onSkinTemplateOutputPageBeforeExec( $sk, $tpl );
|
|
|
|
$this->assertEquals(
|
|
$expected,
|
|
isset( $tpl->data['headelement'] ) && (bool)$tpl->data['headelement']
|
|
);
|
|
}
|
|
|
|
public function providerOnSkinTemplateOutputPageBeforeExecGeoLocation() {
|
|
return [
|
|
[
|
|
'8.8.8.8',
|
|
[ 'US' => 'United States of America' ],
|
|
true,
|
|
],
|
|
[
|
|
'8.8.8.8',
|
|
[ 'EU' => 'European Union' ],
|
|
false,
|
|
],
|
|
[
|
|
'8.8.8.8',
|
|
false,
|
|
true,
|
|
],
|
|
];
|
|
}
|
|
|
|
private function mockGeoLocationService() {
|
|
$geoLocation = $this->getMockBuilder( GeoLocation::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
$geoLocation->method( 'locate' )->willReturn( 'US' );
|
|
$this->setService( 'GeoLocation', $geoLocation );
|
|
}
|
|
}
|