summaryrefslogtreecommitdiff
path: root/www/wiki/tests/phpunit/includes/GlobalFunctions/wfArrayFilterTest.php
blob: 1011a37c3ebc827e329a8b7bde87115474da31f1 (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
<?php

/**
 * @group GlobalFunctions
 * @covers ::wfArrayFilter
 * @covers ::wfArrayFilterByKey
 */
class WfArrayFilterTest extends \PHPUnit\Framework\TestCase {
	public function testWfArrayFilter() {
		$arr = [ 'a' => 1, 'b' => 2, 'c' => 3 ];
		$filtered = wfArrayFilter( $arr, function ( $val, $key ) {
			return $key !== 'b';
		} );
		$this->assertSame( [ 'a' => 1, 'c' => 3 ], $filtered );

		$arr = [ 'a' => 1, 'b' => 2, 'c' => 3 ];
		$filtered = wfArrayFilter( $arr, function ( $val, $key ) {
			return $val !== 2;
		} );
		$this->assertSame( [ 'a' => 1, 'c' => 3 ], $filtered );

		$arr = [ 'a', 'b', 'c' ];
		$filtered = wfArrayFilter( $arr, function ( $val, $key ) {
			return $key !== 0;
		} );
		$this->assertSame( [ 1 => 'b',  2 => 'c' ], $filtered );
	}

	public function testWfArrayFilterByKey() {
		$arr = [ 'a' => 1, 'b' => 2, 'c' => 3 ];
		$filtered = wfArrayFilterByKey( $arr, function ( $key ) {
			return $key !== 'b';
		} );
		$this->assertSame( [ 'a' => 1, 'c' => 3 ], $filtered );

		$arr = [ 'a', 'b', 'c' ];
		$filtered = wfArrayFilterByKey( $arr, function ( $key ) {
			return $key !== 0;
		} );
		$this->assertSame( [ 1 => 'b',  2 => 'c' ], $filtered );
	}
}