summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Utils/Validators/StringValidator.php
blob: ed128e0f78c2f25eb416087d5044bb4c046a5176 (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
<?php

namespace SMW\Tests\Utils\Validators;

/**
 * @license GNU GPL v2+
 * @since   2.1
 *
 * @author mwjames
 */
class StringValidator extends \PHPUnit_Framework_Assert {

	/**
	 * @since 2.1
	 *
	 * @param mixed $expected
	 * @param string $actual
	 */
	public function assertThatStringContains( $expected, $actual, $message = '' ) {

		$callback = function( &$expected, $actual, &$actualCounted ) {
			foreach ( $expected as $key => $pattern ) {
				if ( $this->isMatch( $pattern, $actual ) ) {
					$actualCounted++;
					unset( $expected[$key] );
				}
			}
		};

		$this->doAssertWith( $expected, $actual, $message, 'StringContains', $callback );
	}

	/**
	 * @since 2.3
	 *
	 * @param mixed $expected
	 * @param string $actual
	 */
	public function assertThatStringNotContains( $expected, $actual, $message = '' ) {

		$callback = function( &$expected, $actual, &$actualCounted ) {
			foreach ( $expected as $key => $pattern ) {
				if ( $this->isMatch( $pattern, $actual ) === false ) {
					$actualCounted++;
					unset( $expected[$key] );
				}
			}
		};

		$this->doAssertWith( $expected, $actual, $message, 'StringNotContains', $callback );
	}

	private function doAssertWith( $expected, $actual, $message = '', $method = '', $callback ) {

		if ( !is_array( $expected ) ) {
			$expected = [ $expected ];
		}

		$expected = array_filter( $expected, 'strlen' );

		if ( $expected === [] ) {
			return self::assertTrue( true, $message );
		}

		self::assertInternalType(
			'string',
			$actual
		);

		$expectedToCount = count( $expected );
		$actualCounted = 0;

		call_user_func_array(
			$callback,
			[ &$expected, $actual, &$actualCounted ]
		);

		self::assertEquals(
			$expectedToCount,
			$actualCounted,
			"Failed \"{$message}\" for $method:\n==== (actual) ====\n$actual\n==== (expected) ====\n" . $this->toString( $expected )
		);
	}

	private function isMatch( $pattern, $source ) {

		// use /.../ indicator to use the preg_match search match
		if ( strlen( $pattern) >= 2 && substr( $pattern, 0, 1) === '/' && substr( $pattern, -1) === '/' ) {

			return (bool) preg_match( $pattern, $source );

		}

		// use .* indicator to use the wildcard search match
		if ( strpos( $pattern, '.*' ) !== false ) {

			$pattern = preg_quote( $pattern, '/' );
			$pattern = str_replace( '\.\*', '.*?', $pattern );

			return (bool) preg_match( '/' . $pattern . '/', $source );

		}

		// use a simple strpos (as it is faster)
		return strpos( $source, $pattern ) !== false;

	}

	private function toString( $expected ) {
		return "[ " . ( is_array( $expected ) ? implode( " ], [ ", $expected ) : $expected ) . " ]\n";
	}

}