summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/includes/SettingsTest.php
blob: d0e10722db302c76feadb99fe7bc6fb92ce2f7ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php

namespace SMW\Test;

use SMW\Settings;
use SMW\Tests\TestEnvironment;
use SMW\Tests\PHPUnitCompat;

/**
 * @covers \SMW\Settings
 * @group semantic-mediawiki
 *
 * @license GNU GPL v2+
 * @since 1.9
 *
 * @author mwjames
 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
 */
class SettingsTest extends \PHPUnit_Framework_TestCase {

	use PHPUnitCompat;

	protected function tearDown() {
		Settings::clear();
		parent::tearDown();
	}

	/**
	 * @dataProvider settingsProvider
	 */
	public function testCanConstruct( array $settings ) {

		$instance = Settings::newFromArray( $settings );

		$this->assertInstanceOf(
			'\SMW\Settings',
			$instance
		);

		$this->assertFalse(
			$instance === Settings::newFromArray( $settings )
		);
	}

	/**
	 * @dataProvider settingsProvider
	 */
	public function testGet( array $settings ) {

		$instance = Settings::newFromArray( $settings );

		foreach ( $settings as $name => $value ) {
			$this->assertEquals( $value, $instance->get( $name ) );
		}

		$this->assertTrue( true );
	}

	public function testUnknownSettingThrowsException() {

		$instance = Settings::newFromArray( [ 'Foo' => 'bar' ] );

		$this->setExpectedException( '\SMW\Exception\SettingNotFoundException' );
		$instance->get( 'foo' );
	}

	public function testSafeGetOnUnknownSetting() {

		$instance = Settings::newFromArray( [ 'Foo' => 'bar' ] );

		$this->assertFalse(
			$instance->safeGet( 'foo', false )
		);
	}

	/**
	 * @dataProvider settingsProvider
	 */
	public function testSet( array $settings ) {

		$instance = Settings::newFromArray( [] );

		foreach ( $settings as $name => $value ) {
			$instance->set( $name, $value );
			$this->assertEquals( $value, $instance->get( $name ) );
		}

		$this->assertTrue( true );
	}

	/**
	 * @dataProvider globalsSettingsProvider
	 */
	public function testNewFromGlobals( array $settings ) {

		$instance = Settings::newFromGlobals();

		// Assert that newFromGlobals is a static instance
		$this->assertTrue(
			$instance === Settings::newFromGlobals()
		);

		// Reset instance
		$instance->clear();
		$this->assertTrue( $instance !== Settings::newFromGlobals() );

		foreach ( $settings as $key => $value ) {
			$this->assertTrue( $instance->has( $key ), "Failed asserting that {$key} exists" );
		}
	}

	/**
	 * @dataProvider nestedSettingsProvider
	 */
	public function testNestedSettingsIteration( $test, $key, $expected ) {

		$instance = Settings::newFromArray( $test );

		$this->assertInternalType( $expected['type'], $instance->get( $key ) );
		$this->assertEquals( $expected['value'], $instance->get( $key ) );
	}

	/**
	 * @return array
	 */
	public function nestedSettingsProvider() {

		$testEnvironment = new TestEnvironment();
		$utilityFactory = $testEnvironment->getUtilityFactory();

		$Foo  = $utilityFactory->createRandomString();
		$Lula = $utilityFactory->createRandomString();
		$Lala = $utilityFactory->createRandomString();

		$child  = [ 'Lisa', 'Lula', [ 'Lila' ] ];
		$parent = [ 'child' => $child ];

		$Lila = [ 'Lala' => $Lala, 'parent' => $parent ];
		$Bar  = [ 'Lula' => $Lula, 'Lila'   => $Lila ];
		$test = [ 'Foo'  => $Foo,  'Bar'    => $Bar ];

		return [
			[ $test, 'Foo',    [ 'type' => 'string', 'value' => $Foo ] ],
			[ $test, 'Bar',    [ 'type' => 'array',  'value' => $Bar ] ],
			[ $test, 'Lula',   [ 'type' => 'string', 'value' => $Lula ] ],
			[ $test, 'Lila',   [ 'type' => 'array',  'value' => $Lila ] ],
			[ $test, 'Lala',   [ 'type' => 'string', 'value' => $Lala ] ],
			[ $test, 'parent', [ 'type' => 'array',  'value' => $parent ] ],
			[ $test, 'child',  [ 'type' => 'array',  'value' => $child ] ]
		];
	}

	/**
	 * Provides sample data to be tested
	 *
	 * @return array
	 */
	public function settingsProvider() {
		return [ [ [
			'foo' => 'bar',
			'baz' => 'BAH',
			'bar' => [ '9001' ],
			'foo' => [ '9001', [ 9001, 4.2 ] ],
			'~[,,_,,]:3' => [ 9001, 4.2 ],
		] ] ];
	}

	/**
	 * Provides and collects individual smwg* settings
	 *
	 * @return array
	 */
	public function globalsSettingsProvider() {

		$settings = array_intersect_key( $GLOBALS,
			array_flip( preg_grep('/^smwg/', array_keys( $GLOBALS ) ) )
		);

		unset( $settings['smwgDeprecationNotices'] );

		return [ [ $settings ] ];
	}

}