mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CookieWarning
synced 2024-11-23 13:56:53 +00:00
0307338213
Change-Id: I96b8c9a83a2ec1b3b517106530f9e68e35cc0c28
226 lines
4.8 KiB
PHP
226 lines
4.8 KiB
PHP
<?php
|
|
|
|
namespace CookieWarning\Tests;
|
|
|
|
use CookieWarning\GeoLocation;
|
|
use CookieWarning\Hooks;
|
|
use DerivativeContext;
|
|
use FauxRequest;
|
|
use MediaWikiLangTestCase;
|
|
use RequestContext;
|
|
use SkinTemplate;
|
|
|
|
/**
|
|
* @covers \CookieWarning\Hooks
|
|
* @group Database
|
|
*/
|
|
class HooksTest extends MediaWikiLangTestCase {
|
|
|
|
private function newHooks(): Hooks {
|
|
$services = $this->getServiceContainer();
|
|
return new Hooks(
|
|
$services->getService( 'CookieWarning.Config' ),
|
|
$services->getService( 'CookieWarning.Decisions' ),
|
|
$services->getUserOptionsManager()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerOnSiteNoticeAfter
|
|
*
|
|
* @param bool $enabled
|
|
* @param false|string $morelinkConfig
|
|
* @param false|string $morelinkCookieWarningMsg
|
|
* @param false|string $morelinkCookiePolicyMsg
|
|
* @param false|string $expectedLink
|
|
*
|
|
* @throws \MWException
|
|
*/
|
|
public function testOnSiteNoticeAfter(
|
|
bool $enabled,
|
|
$morelinkConfig,
|
|
$morelinkCookieWarningMsg,
|
|
$morelinkCookiePolicyMsg,
|
|
$expectedLink
|
|
): void {
|
|
$this->overrideConfigValues( [
|
|
'CookieWarningEnabled' => $enabled,
|
|
'CookieWarningMoreUrl' => $morelinkConfig,
|
|
'CookieWarningForCountryCodes' => false,
|
|
] );
|
|
$this->getServiceContainer()->getMessageCache()->enable();
|
|
|
|
if ( $morelinkCookieWarningMsg ) {
|
|
$this->editPage(
|
|
'cookiewarning-more-link',
|
|
strval( $morelinkCookieWarningMsg ),
|
|
'',
|
|
NS_MEDIAWIKI,
|
|
$this->getTestSysop()->getUser()
|
|
);
|
|
}
|
|
if ( $morelinkCookiePolicyMsg ) {
|
|
$this->editPage(
|
|
'cookie-policy-link',
|
|
strval( $morelinkCookiePolicyMsg ),
|
|
'',
|
|
NS_MEDIAWIKI,
|
|
$this->getTestSysop()->getUser()
|
|
);
|
|
}
|
|
|
|
$sk = new SkinTemplate();
|
|
// setup OOUI, that would be normally done in BeforePageDisplay hook
|
|
$sk->getOutput()->enableOOUI();
|
|
|
|
$data = '';
|
|
$this->newHooks()->onSkinAfterContent( $data, $sk );
|
|
|
|
if ( $enabled ) {
|
|
$this->assertNotSame( '', $data, 'Cookie warning should be present' );
|
|
} else {
|
|
$this->assertSame( '', $data, 'Cookie warning should not be present' );
|
|
return;
|
|
}
|
|
|
|
if ( $expectedLink === false ) {
|
|
$this->assertDoesNotMatchRegularExpression(
|
|
'/<a[^>]+href=[\'"]([^\'"]+)[\'"].+?>/',
|
|
$data,
|
|
'More information link should not be present'
|
|
);
|
|
} else {
|
|
$this->assertMatchesRegularExpression(
|
|
'/<a[^>]+href=[\'"]' . preg_quote( $expectedLink, '/' ) . '[\'"].+?>/',
|
|
$data,
|
|
'More information link should be present and match the expectation'
|
|
);
|
|
}
|
|
}
|
|
|
|
public static function providerOnSiteNoticeAfter(): array {
|
|
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,
|
|
false,
|
|
],
|
|
[
|
|
true,
|
|
'http://google.de',
|
|
false,
|
|
false,
|
|
'http://google.de',
|
|
],
|
|
[
|
|
true,
|
|
'',
|
|
'http://google.de',
|
|
false,
|
|
'http://google.de',
|
|
],
|
|
[
|
|
true,
|
|
'',
|
|
false,
|
|
'http://google.de',
|
|
'http://google.de',
|
|
],
|
|
// 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',
|
|
'http://google.de',
|
|
],
|
|
[
|
|
true,
|
|
'http://google.de',
|
|
'http://google1234.de',
|
|
'http://google123.de',
|
|
'http://google.de',
|
|
],
|
|
[
|
|
true,
|
|
'',
|
|
'http://google.de',
|
|
'http://google123.de',
|
|
'http://google.de',
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerOnSiteNoticeAfterGeoLocation
|
|
* @throws \MWException
|
|
* @throws \ConfigException
|
|
*/
|
|
public function testOnSiteNoticeAfterGeoLocation( $ipAddress, $countryCodes,
|
|
$expected
|
|
) {
|
|
$this->overrideConfigValues( [
|
|
'CookieWarningEnabled' => true,
|
|
'CookieWarningGeoIPLookup' => is_array( $countryCodes ) ? 'php' : 'none',
|
|
'CookieWarningForCountryCodes' => $countryCodes,
|
|
] );
|
|
$this->mockGeoLocationService();
|
|
|
|
$request = new FauxRequest();
|
|
$request->setIP( $ipAddress );
|
|
$context = new DerivativeContext( RequestContext::getMain() );
|
|
$context->setRequest( $request );
|
|
$sk = new SkinTemplate();
|
|
$sk->setContext( $context );
|
|
$data = '';
|
|
$this->newHooks()->onSkinAfterContent( $data, $sk );
|
|
|
|
$this->assertEquals(
|
|
$expected,
|
|
(bool)$data
|
|
);
|
|
}
|
|
|
|
public static function providerOnSiteNoticeAfterGeoLocation() {
|
|
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 );
|
|
}
|
|
}
|