testGuidInserter.php
2.58 KB
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
114
115
116
117
<?php
require_once(KT_DIR . '/tests/test.php');
require_once(KT_DIR . '/search2/indexing/lib/XmlRpcLucene.inc.php');
class GuidInserterTestCase extends KTUnitTestCase {
function setup()
{
$config =& KTConfig::getSingleton();
$javaServerUrl = $config->get('indexer/javaLuceneURL');
$this->xmlrpc = XmlRpcLucene::get($javaServerUrl);
$this->path = KT_DIR . '/tests/documentProcessor/dataset/';
$this->tempPath = KT_DIR . '/var/tmp/';
}
function tearDown()
{
}
/**
* Insert into a word (.doc) document
*/
function testInsertWord()
{
$guid = 'doc_1897';
$file = 'word_doc';
// Insert guid
$this->insertGuid($file, $guid);
// read guid
$metadata = $this->readMetadata($file);
// Run test
$this->assertTrue(isset($metadata['KTGuid']));
$this->assertTrue($metadata['KTGuid'] == $guid);
unset($metadata);
}
/**
* Insert into an excel (.xls) document
*/
function testInsertExcel()
{
$guid = 'excel_2304';
$file = 'excel_doc';
// Insert guid
$this->insertGuid($file, $guid);
// read guid
$metadata = $this->readMetadata($file);
// Run test
$this->assertTrue(isset($metadata['KTGuid']));
$this->assertTrue($metadata['KTGuid'] == $guid);
unset($metadata);
}
/**
* Insert into a powerpoint (.ppt) document
*/
function testInsertPowerPoint()
{
$guid = 'powerpoint_9328';
$file = 'powerpoint_doc';
// Insert guid
$this->insertGuid($file, $guid);
// read guid
$metadata = $this->readMetadata($file);
// Run test
$this->assertTrue(isset($metadata['KTGuid']));
$this->assertTrue($metadata['KTGuid'] == $guid);
unset($metadata);
}
function insertGuid($filename, $guid)
{
$buffer = file_get_contents($this->path . $filename);
$metadata = array(
"KTGuid" => $guid,
);
$modified = $this->xmlrpc->writeProperties($buffer, $metadata);
unset($buffer);
if($modified === false){
return false;
}
file_put_contents($this->tempPath . $filename, $modified);
unset($modified);
return true;
}
function readMetadata($filename)
{
$buffer = file_get_contents($this->tempPath . $filename);
$metadata = $this->xmlrpc->readProperties($buffer);
unset($buffer);
@unlink($this->tempPath . $filename);
return $metadata;
}
}
?>