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
|
<?php
/**
* Tests the indexing functionality of the indexer
*
* @author Michael Hamann <michael@content-space.de>
*/
class indexer_indexing_test extends DokuWikiTest {
public function setUp() : void {
parent::setUp();
saveWikiText('testpage', 'Foo bar baz.', 'Test initialization');
saveWikiText('notfound', 'Foon barn bazn.', 'Test initialization');
idx_addPage('testpage');
idx_addPage('notfound');
}
public function test_words() {
$indexer = idx_get_indexer();
$query = array('baz', 'foo');
$this->assertEquals(array('baz' => array('testpage' => 1), 'foo' => array('testpage' => 1)), $indexer->lookup($query));
}
public function test_numerically_identical_words() {
$indexer = idx_get_indexer();
$indexer->addPageWords('testpage', '0x1 002');
$indexer->addPageWords('notfound', '0x2');
$query = array('001', '002');
$this->assertEquals(array('001' => array(), '002' => array('testpage' => 1)), $indexer->lookup($query));
}
public function test_meta() {
$indexer = idx_get_indexer();
$indexer->addMetaKeys('testpage', 'testkey', 'testvalue');
$indexer->addMetaKeys('notfound', 'testkey', 'notvalue');
$query = 'testvalue';
$this->assertEquals(array('testpage'), $indexer->lookupKey('testkey', $query));
}
public function test_numerically_identical_meta_values() {
$indexer = idx_get_indexer();
$indexer->addMetaKeys('testpage', 'numkey', array('0001', '01'));
$indexer->addMetaKeys('notfound', 'numkey', array('00001', '000001'));
$query = array('001', '01');
$this->assertEquals(array('001' => array(), '01' => array('testpage')), $indexer->lookupKey('numkey', $query));
}
public function test_numeric_twice() {
$indexer = idx_get_indexer();
$indexer->addPageWords('testpage', '| 1010 | Dallas |');
$query = array('1010');
$this->assertEquals(array('1010' => array('testpage' => 1)), $indexer->lookup($query));
$indexer->addPageWords('notfound', '| 1010 | Dallas |');
$this->assertEquals(array('1010' => array('testpage' => 1, 'notfound' => 1)), $indexer->lookup($query));
}
public function test_numeric_twice_meta() {
$indexer = idx_get_indexer();
$indexer->addMetaKeys('testpage', 'onezero', array('1010'));
$indexer->addMetaKeys('notfound', 'onezero', array('1010'));
$query = '1010';
$this->assertEquals(array('notfound', 'testpage'), $indexer->lookupKey('onezero', $query));
}
public function test_numeric_zerostring_meta() {
$indexer = idx_get_indexer();
$indexer->addMetaKeys('zero1', 'zerostring', array('0'));
$indexer->addMetaKeys('zero2', 'zerostring', array('0'));
$indexer->addMetaKeys('0', 'zerostring', array('zero'));
$query = '0';
$result = $indexer->lookupKey('zerostring', $query);
sort($result);
$this->assertEquals(array('zero1', 'zero2'), $result);
$query = 'zero';
$result = $indexer->lookupKey('zerostring', $query);
sort($result);
$this->assertEquals(array('0'), $result);
}
}
|