MediaWiki  1.33.0
DefaultPreferencesFactoryTest.php
Go to the documentation of this file.
1 <?php
2 
6 use Wikimedia\TestingAccessWrapper;
7 
31 
33  protected $context;
34 
36  protected $config;
37 
38  public function setUp() {
39  parent::setUp();
40  $this->context = new RequestContext();
41  $this->context->setTitle( Title::newFromText( self::class ) );
42 
43  $services = MediaWikiServices::getInstance();
44 
45  $this->setMwGlobals( 'wgParser', $services->getParserFactory()->create() );
46  $this->config = $services->getMainConfig();
47  }
48 
53  protected function getPreferencesFactory() {
54  return new DefaultPreferencesFactory(
55  $this->config,
56  new Language(),
57  AuthManager::singleton(),
58  MediaWikiServices::getInstance()->getLinkRenderer()
59  );
60  }
61 
65  public function testGetForm() {
66  $this->setTemporaryHook( 'GetPreferences', null );
67 
68  $testUser = $this->getTestUser();
69  $form = $this->getPreferencesFactory()->getForm( $testUser->getUser(), $this->context );
70  $this->assertInstanceOf( PreferencesFormLegacy::class, $form );
71  $this->assertCount( 5, $form->getPreferenceSections() );
72  }
73 
80  public function testEmailAuthentication( $user, $cssClass ) {
81  $prefs = $this->getPreferencesFactory()->getFormDescriptor( $user, $this->context );
82  $this->assertArrayHasKey( 'cssclass', $prefs['emailauthentication'] );
83  $this->assertEquals( $cssClass, $prefs['emailauthentication']['cssclass'] );
84  }
85 
90  $userMock = $this->getMockBuilder( User::class )
91  ->disableOriginalConstructor()
92  ->getMock();
93  $userMock->method( 'isAllowed' )
94  ->willReturn( false );
95  $userMock->method( 'getEffectiveGroups' )
96  ->willReturn( [] );
97  $userMock->method( 'getGroupMemberships' )
98  ->willReturn( [] );
99  $userMock->method( 'getOptions' )
100  ->willReturn( [ 'test' => 'yes' ] );
101 
102  $prefs = $this->getPreferencesFactory()->getFormDescriptor( $userMock, $this->context );
103  $this->assertArrayNotHasKey( 'showrollbackconfirmation', $prefs );
104  }
105 
110  $userMock = $this->getMockBuilder( User::class )
111  ->disableOriginalConstructor()
112  ->getMock();
113  $userMock->method( 'isAllowed' )
114  ->willReturn( true );
115  $userMock->method( 'getEffectiveGroups' )
116  ->willReturn( [] );
117  $userMock->method( 'getGroupMemberships' )
118  ->willReturn( [] );
119  $userMock->method( 'getOptions' )
120  ->willReturn( [ 'test' => 'yes' ] );
121 
122  $prefs = $this->getPreferencesFactory()->getFormDescriptor( $userMock, $this->context );
123  $this->assertArrayHasKey( 'showrollbackconfirmation', $prefs );
124  $this->assertEquals(
125  'rendering/advancedrendering',
126  $prefs['showrollbackconfirmation']['section']
127  );
128  }
129 
130  public function emailAuthenticationProvider() {
131  $userNoEmail = new User;
132  $userEmailUnauthed = new User;
133  $userEmailUnauthed->setEmail( 'noauth@example.org' );
134  $userEmailAuthed = new User;
135  $userEmailAuthed->setEmail( 'noauth@example.org' );
136  $userEmailAuthed->setEmailAuthenticationTimestamp( wfTimestamp() );
137  return [
138  [ $userNoEmail, 'mw-email-none' ],
139  [ $userEmailUnauthed, 'mw-email-not-authenticated' ],
140  [ $userEmailAuthed, 'mw-email-authenticated' ],
141  ];
142  }
143 
154  $oldOptions = [
155  'test' => 'abc',
156  'option' => 'old'
157  ];
158  $newOptions = [
159  'test' => 'abc',
160  'option' => 'new'
161  ];
162  $configMock = new HashConfig( [
163  'HiddenPrefs' => []
164  ] );
165  $form = $this->getMockBuilder( PreferencesFormLegacy::class )
166  ->disableOriginalConstructor()
167  ->getMock();
168 
169  $userMock = $this->getMockBuilder( User::class )
170  ->disableOriginalConstructor()
171  ->getMock();
172  $userMock->method( 'getOptions' )
173  ->willReturn( $oldOptions );
174  $userMock->method( 'isAllowedAny' )
175  ->willReturn( true );
176  $userMock->method( 'isAllowed' )
177  ->willReturn( true );
178 
179  $userMock->expects( $this->exactly( 2 ) )
180  ->method( 'setOption' )
181  ->withConsecutive(
182  [ $this->equalTo( 'test' ), $this->equalTo( $newOptions[ 'test' ] ) ],
183  [ $this->equalTo( 'option' ), $this->equalTo( $newOptions[ 'option' ] ) ]
184  );
185 
186  $form->expects( $this->any() )
187  ->method( 'getModifiedUser' )
188  ->willReturn( $userMock );
189 
190  $form->expects( $this->any() )
191  ->method( 'getContext' )
192  ->willReturn( $this->context );
193 
194  $form->expects( $this->any() )
195  ->method( 'getConfig' )
196  ->willReturn( $configMock );
197 
198  $this->setTemporaryHook( 'PreferencesFormPreSave',
199  function ( $formData, $form, $user, &$result, $oldUserOptions )
200  use ( $newOptions, $oldOptions, $userMock ) {
201  $this->assertSame( $userMock, $user );
202  foreach ( $newOptions as $option => $value ) {
203  $this->assertSame( $value, $formData[ $option ] );
204  }
205  foreach ( $oldOptions as $option => $value ) {
206  $this->assertSame( $value, $oldUserOptions[ $option ] );
207  }
208  $this->assertEquals( true, $result );
209  }
210  );
211 
213  $factory = TestingAccessWrapper::newFromObject( $this->getPreferencesFactory() );
214  $factory->saveFormData( $newOptions, $form, [] );
215  }
216 
222  public function testIntvalFilter() {
223  // Test a string with leading zeros (i.e. not octal) and spaces.
224  $this->context->getRequest()->setVal( 'wprclimit', ' 0012 ' );
225  $user = new User;
226  $form = $this->getPreferencesFactory()->getForm( $user, $this->context );
227  $form->show();
228  $form->trySubmit();
229  $this->assertEquals( 12, $user->getOption( 'rclimit' ) );
230  }
231 }
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
DefaultPreferencesFactoryTest\$context
IContextSource $context
Definition: DefaultPreferencesFactoryTest.php:33
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:306
DefaultPreferencesFactoryTest
Preferences.
Definition: DefaultPreferencesFactoryTest.php:30
DefaultPreferencesFactoryTest\setUp
setUp()
Definition: DefaultPreferencesFactoryTest.php:38
DefaultPreferencesFactoryTest\$config
Config $config
Definition: DefaultPreferencesFactoryTest.php:36
MediaWikiTestCase\getTestUser
static getTestUser( $groups=[])
Convenience method for getting an immutable test user.
Definition: MediaWikiTestCase.php:180
HashConfig
A Config instance which stores all settings as a member variable.
Definition: HashConfig.php:28
DefaultPreferencesFactoryTest\testEmailAuthentication
testEmailAuthentication( $user, $cssClass)
CSS classes for emailauthentication preference field when there's no email.
Definition: DefaultPreferencesFactoryTest.php:80
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1983
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1912
DefaultPreferencesFactoryTest\testShowRollbackConfIsHiddenForUsersWithoutRollbackRights
testShowRollbackConfIsHiddenForUsersWithoutRollbackRights()
MediaWiki\Preferences\DefaultPreferencesFactory::renderingPreferences()
Definition: DefaultPreferencesFactoryTest.php:89
DefaultPreferencesFactoryTest\emailAuthenticationProvider
emailAuthenticationProvider()
Definition: DefaultPreferencesFactoryTest.php:130
User
User
Definition: All_system_messages.txt:425
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Config
Interface for configuration instances.
Definition: Config.php:28
MediaWikiTestCase\setMwGlobals
setMwGlobals( $pairs, $value=null)
Sets a global, maintaining a stashed version of the previous global to be restored in tearDown.
Definition: MediaWikiTestCase.php:709
MediaWikiTestCase
Definition: MediaWikiTestCase.php:17
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
DefaultPreferencesFactoryTest\getPreferencesFactory
getPreferencesFactory()
Get a basic PreferencesFactory for testing with.
Definition: DefaultPreferencesFactoryTest.php:53
RequestContext
Group all the pieces relevant to the context of a request into one instance.
Definition: RequestContext.php:32
DefaultPreferencesFactoryTest\testShowRollbackConfIsShownForUsersWithRollbackRights
testShowRollbackConfIsShownForUsersWithRollbackRights()
MediaWiki\Preferences\DefaultPreferencesFactory::renderingPreferences()
Definition: DefaultPreferencesFactoryTest.php:109
DefaultPreferencesFactoryTest\testIntvalFilter
testIntvalFilter()
The rclimit preference should accept non-integer input and filter it to become an integer.
Definition: DefaultPreferencesFactoryTest.php:222
any
they could even be mouse clicks or menu items whatever suits your program You should also get your if any
Definition: COPYING.txt:326
$value
$value
Definition: styleTest.css.php:49
DefaultPreferencesFactoryTest\testGetForm
testGetForm()
MediaWiki\Preferences\DefaultPreferencesFactory::getForm()
Definition: DefaultPreferencesFactoryTest.php:65
MediaWiki\Auth\AuthManager
This serves as the entry point to the authentication system.
Definition: AuthManager.php:84
IContextSource
Interface for objects which can provide a MediaWiki context on request.
Definition: IContextSource.php:53
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
MediaWiki\Preferences\DefaultPreferencesFactory
This is the default implementation of PreferencesFactory.
Definition: DefaultPreferencesFactory.php:61
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
$services
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place or wrap services the preferred way to define a new service is the $wgServiceWiringFiles array $services
Definition: hooks.txt:2220
MediaWikiTestCase\setTemporaryHook
setTemporaryHook( $hookName, $handler)
Create a temporary hook handler which will be reset by tearDown.
Definition: MediaWikiTestCase.php:2325
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
Language
Internationalisation code.
Definition: Language.php:36
DefaultPreferencesFactoryTest\testPreferencesFormPreSaveHookHasCorrectData
testPreferencesFormPreSaveHookHasCorrectData()
Test that PreferencesFormPreSave hook has correct data:
Definition: DefaultPreferencesFactoryTest.php:153