summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Translate/tests/phpunit/insertables/CombinedInsertablesSuggesterTest.php
blob: 3a6ec8b670829cce07669171bfa169532a1369b2 (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
<?php

/**
 * @file
 * @author Geoffrey Mon
 * @license GPL-2.0-or-later
 */
class CombinedInsertablesSuggesterTest extends MediaWikiTestCase {

	/**
	 * @dataProvider getInsertablesProvider
	 */
	public function testGetInsertables( $suggesters, $input, $expected ) {
		$suggester = new CombinedInsertablesSuggester( $suggesters );
		$this->assertArrayEquals( $expected, $suggester->getInsertables( $input ) );
	}

	public function getInsertablesProvider() {
		return [
			// Test basic combination of multiple InsertablesSuggesters
			[
				[
					new TestingInsertablesSuggester(),
					new NumericalParameterInsertablesSuggester(),
				],
				'test $1 foo $2 bar $3spam eggs',
				[
					new Insertable( 'Test', 'Test', '' ),
					new Insertable( '$1', '$1', '' ),
					new Insertable( '$2', '$2', '' ),
					new Insertable( '$3', '$3', '' ),
				]
			],
			// Test removal of duplicate suggestions
			[
				[
					new NumericalParameterInsertablesSuggester(),
					new NumericalParameterInsertablesSuggester(),
				],
				'test $1 duplicates $2 $3',
				[
					new Insertable( '$1', '$1', '' ),
					new Insertable( '$2', '$2', '' ),
					new Insertable( '$3', '$3', '' ),
				]
			],
			// Test removal of duplicate suggestions
			[
				[
					new TestingDuplicateInsertablesSuggester(),
					new NumericalParameterInsertablesSuggester(),
				],
				'test $1 duplicates $2 $3',
				[
					new Insertable( '$1', '$1', '' ),
					new Insertable( '$2', '$2', '' ),
					new Insertable( '$3', '$3', '' ),
					new Insertable( 'Test', 'Test', '' ),
					new Insertable( '', 'Test', 'Test' ),
				]
			],
			// Test no InsertablesSuggesters
			[
				[],
				'test $1 duplicates $2 $3',
				[]
			],
		];
	}
}

class TestingInsertablesSuggester implements InsertablesSuggester {
	public function getInsertables( $text ) {
		return [ new Insertable( 'Test', 'Test', '' ) ];
	}
}

class TestingDuplicateInsertablesSuggester implements InsertablesSuggester {
	public function getInsertables( $text ) {
		return [
			new Insertable( '$1', '$1', '' ),
			new Insertable( '$1', '$1', '' ),
			new Insertable( 'Test', 'Test', '' ),
			new Insertable( 'Test', 'Test', '' ),
			new Insertable( '', 'Test', 'Test' ),
		];
	}
}