summaryrefslogtreecommitdiff
blob: 477ff075821ad4738e1506b58cb4f7180e03bc28 (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
<?php
declare( strict_types = 1 );

use MediaWiki\Extensions\Translate\MessageValidator\Validators\BraceBalanceValidator;

/**
 * @license GPL-2.0-or-later
 * @covers \MediaWiki\Extensions\Translate\MessageValidator\Validators\BraceBalanceValidator
 */
class BraceBalanceValidatorTest extends BaseValidatorTestCase {
	/** @dataProvider provideTestCases */
	public function test( ...$params ) {
		$this->runValidatorTests( new BraceBalanceValidator(), 'balance', ...$params );
	}

	public function provideTestCases() {
		yield [
			'{{ Hello }}',
			'{{ Hello }}}',
			[ 'brace' ],
			'should return an issue for a message containing non-matching braces.'
		];

		yield [
			'[[ Hello ]]',
			'[[ Hello ]]',
			[],
			'should not set any issue for a balanced translation.'
		];

		yield [
			'Hello :]',
			'Hello :]',
			[],
			'should not set any issue if definition is unbalanced.'
		];

		yield [
			'Hello :]',
			'Hello :)',
			[ 'brace' ],
			'balancedness only applies to one brace type, for other types still raise an issue.'
		];
	}
}