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
|
<?php
/**
* The StringMatcher class is responsible for making sure message keys
* from external sources are valid titles in MediaWiki.
* @author Niklas Laxström
* @file
*/
class StringMatcherTest extends MediaWikiTestCase {
/**
* @dataProvider messageKeyProvider
*/
public function testKeyPrefixing( $key, $expected, $prefix, $rules, $comment ) {
$matcher = new StringMatcher( $prefix, $rules );
$mangled = $matcher->mangle( $key );
$title = Title::makeTitleSafe( NS_MEDIAWIKI, $mangled );
$this->assertInstanceOf( 'Title', $title, "Key '$mangled' did not produce valid title" );
$unmangled = $matcher->unmangle( $mangled );
$this->assertEquals( $key, $unmangled, 'Mangling is reversable' );
$this->assertEquals( $expected, $mangled, 'Message is prefixed correctly' );
}
public function messageKeyProvider() {
// The fourth parameter causes the key to be prefixed or unprefixed
$keys = [
[ 'key', 'p-key', 'p-', [ 'key' ], 'Exact match' ],
[ 'key', 'key', 'p-', [ 'bar' ], 'Exact not match' ],
[ 'key', 'p-key', 'p-', [ 'k*' ], 'Prefix match' ],
[ 'key', 'key', 'p-', [ 'b*' ], 'Prefix not match' ],
[ 'key', 'p-key', 'p-', [ '*y' ], 'Suffix match' ],
[ 'key', 'key', 'p-', [ '*r' ], 'Suffix not match' ],
[ 'key', 'p-key', 'p-', [ 'k*y' ], 'Wildcard match' ],
[ 'key', 'key', 'p-', [ '*a*' ], 'Wildcard not match' ],
[ 'key', 'p-key', 'p-', [ 'key', '*ey', 'ke*' ], 'Multiple rules match' ],
[ 'key', 'key', 'p-', [ '*a*', '*ar', 'ba*' ], 'Multiple rules not match' ],
[ 'key', 'p-key', 'p-', [ '*' ], 'All match' ],
[
'[k.ssa]', 'p-=5Bk.ssa=5D', 'p-', [ '[k.s*' ],
'Message key with special chars'
],
[
'[kissa]', '=5Bkissa=5D', 'p-', [ '[k.s*' ],
'Message key with special chars'
],
[ 'keyblah/i', 'p-keyblah/i', 'p-', [ 'key*/i' ], 'Slash in pattern does not trigger modifier' ],
];
return $keys;
}
/**
* @dataProvider problematicMessageKeyProvider
*/
public function testKeyMangling( $key, $comment ) {
$matcher = StringMatcher::EmptyMatcher();
$mangled = $matcher->mangle( $key );
$title = Title::makeTitleSafe( NS_MEDIAWIKI, $mangled );
$this->assertInstanceOf( 'Title', $title, "Key '$mangled' did not produce a valid title" );
$unmangled = $matcher->unmangle( $mangled );
$this->assertEquals( $key, $unmangled, 'Mangling is reversible' );
}
/**
* @dataProvider problematicMessageKeyProvider
*/
public function testKeyManglingWithPrefixing( $key, $comment ) {
$matcher = new StringMatcher( 'prefix', [ '*' ] );
$mangled = $matcher->mangle( $key );
$title = Title::makeTitleSafe( NS_MEDIAWIKI, $mangled );
$this->assertInstanceOf( 'Title', $title, "Key '$mangled' did not produce a valid title" );
$unmangled = $matcher->unmangle( $mangled );
$this->assertEquals( $key, $unmangled, 'Mangling is reversible' );
}
public function problematicMessageKeyProvider() {
$keys = [
[ 'key', 'simple string' ],
[ 'key[]', 'string with brackets' ],
[ 'key%AB', 'string with invalid url encoding' ],
[ 'key&', 'string with html entity' ],
[ 'key=2A', 'string with fake escaping' ],
[ 'общегосударственные', 'Unicode string' ],
[ ' la la land_', 'string starting or ending with spaces or underscores' ],
[ 'one two__three _four', 'multiple spaces consisting of spaces or underscores' ],
[ 'Signed by ~~~', 'Magic tilde expansion' ],
[ ':iam', 'string starting with a colon' ],
];
// Add tests for ranges of exotic ASCII characters
foreach ( range( 0, 7 ) as $k ) {
$key = '';
foreach ( range( 0, 15 ) as $c ) {
$key .= chr( $c + 16 * $k );
}
$start = $k * 16;
$end = $start + 16;
$keys[] = [ $key, "ASCII range $start..$end" ];
}
return $keys;
}
}
|