mediawiki-extensions-Cookie.../tests/phpunit/includes/DecisionsTest.php
Fomafix 30e24aa1b0 Use overrideConfigValues instead of setMwGlobals
Also use MainConfigNames.

Change-Id: I4255b89b8f34fffe5bc70e73dfe7e9b6a4d69941
2024-07-27 07:22:00 +00:00

45 lines
1.3 KiB
PHP

<?php
namespace CookieWarning\Tests;
use ConfigException;
use CookieWarning\Decisions;
use CookieWarning\GeoLocation;
use HashBagOStuff;
use MediaWiki\MediaWikiServices;
use MediaWikiIntegrationTestCase;
use MWException;
use RequestContext;
use WANObjectCache;
class DecisionsTest extends MediaWikiIntegrationTestCase {
/**
* @covers \CookieWarning\Decisions::shouldShowCookieWarning()
* @throws ConfigException
* @throws MWException
*/
public function testShouldNotCallGeoLocationMultiple() {
$this->overrideConfigValues( [
'CookieWarningEnabled' => true,
'CookieWarningGeoIPLookup' => 'php',
'CookieWarningForCountryCodes' => [ 'EU' => 'European Union' ],
] );
$geoLocation = $this->getMockBuilder( GeoLocation::class )
->disableOriginalConstructor()
->getMock();
$geoLocation->method( 'locate' )->willReturn( 'EU' );
$geoLocation->expects( $this->once() )->method( 'locate' );
$cookieWarningDecisions = new Decisions(
MediaWikiServices::getInstance()->getService( 'CookieWarning.Config' ),
$geoLocation,
new WANObjectCache( [ 'cache' => new HashBagOStuff() ] ),
MediaWikiServices::getInstance()->getUserOptionsLookup()
);
$cookieWarningDecisions->shouldShowCookieWarning( RequestContext::getMain() );
$cookieWarningDecisions->shouldShowCookieWarning( RequestContext::getMain() );
}
}