Merge "Hard deprecate MWNamespace::canTalk()"
[lhc/web/wiklou.git] / tests / phpunit / structure / PasswordPolicyStructureTest.php
1 <?php
2
3 /**
4 * @coversNothing
5 */
6 class PasswordPolicyStructureTest extends MediaWikiTestCase {
7
8 public function provideChecks() {
9 global $wgPasswordPolicy;
10
11 foreach ( $wgPasswordPolicy['checks'] as $name => $callback ) {
12 yield [ $name ];
13 }
14 }
15
16 public function provideFlags() {
17 global $wgPasswordPolicy;
18
19 // This won't actually find all flags, just the ones in use. Can't really be helped,
20 // other than adding the core flags here.
21 $flags = [ 'forceChange' ];
22 foreach ( $wgPasswordPolicy['policies'] as $group => $checks ) {
23 foreach ( $checks as $check => $settings ) {
24 if ( is_array( $settings ) ) {
25 $flags = array_merge( $flags, array_diff( $settings, [ 'value' ] ) );
26 }
27 }
28 }
29 foreach ( $flags as $flag ) {
30 yield [ $flag ];
31 }
32 }
33
34 /** @dataProvider provideChecks */
35 public function testCheckMessage( $check ) {
36 $msg = wfMessage( 'passwordpolicies-policy-' . strtolower( $check ) );
37 $this->assertTrue( $msg->exists() );
38 }
39
40 /** @dataProvider provideFlags */
41 public function testFlagMessage( $flag ) {
42 $msg = wfMessage( 'passwordpolicies-policyflag-' . strtolower( $flag ) );
43 $this->assertTrue( $msg->exists() );
44 }
45
46 }