blob: ec0e43c7acf982cfb13044d9d912c34ffea9b24a (
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
|
<?php
require_once(dirname(__FILE__).'/../common.php');
class utXmlDocument extends UnitTestCase
{
public function setUp()
{
}
public function tearDown()
{
}
public function testLoadAndSave()
{
$dir=dirname(__FILE__).'/xml';
$doc=new TXmlDocument;
try
{
$doc->loadFromFile('nonexisting.xml');
$this->fail('exception not raised when openning a nonexistent file.');
}
catch(TIOException $e)
{
$this->pass();
}
$doc=new TXmlDocument;
$this->assertFalse(@$doc->loadFromString('$12341'));
// a regular XML file
$doc=new TXmlDocument;
$doc->loadFromFile($dir.'/data1.xml');
$doc->saveToFile($dir.'/data1.xml.tmp');
$this->assertTrue($this->compareFiles($dir.'/data1.xml.tmp',$dir.'/data1.xml.out'));
@unlink($dir.'/data1.xml.tmp');
// an XML file with Chinese characters
$doc->loadFromFile($dir.'/data2.xml');
$doc->saveToFile($dir.'/data2.xml.tmp');
$this->assertTrue($this->compareFiles($dir.'/data2.xml.tmp',$dir.'/data2.xml.out'));
@unlink($dir.'/data2.xml.tmp');
// a typical Prado Application configuration file
$doc=new TXmlDocument;
$doc->loadFromFile($dir.'/data3.xml');
$doc->saveToFile($dir.'/data3.xml.tmp');
$this->assertTrue($this->compareFiles($dir.'/data3.xml.tmp',$dir.'/data3.xml.out'));
@unlink($dir.'/data3.xml.tmp');
}
protected function compareFiles($file1,$file2)
{
return file_get_contents($file1)===file_get_contents($file2);
}
public function testAccessDomTree()
{
$dir=dirname(__FILE__).'/xml';
$doc=new TXmlDocument;
$doc->loadFromFile($dir.'/data1.xml');
$this->assertTrue($doc->getVersion()==='1.0');
$this->assertTrue($doc->getEncoding()==='utf-8');
$this->assertTrue($doc->getElements()->getCount()===2);
$this->assertTrue($doc->getElements()->itemAt(0)->getTagName()==='title');
$this->assertTrue($doc->getElements()->itemAt(0)->getValue()==='My lists');
$this->assertTrue($doc->getElements()->itemAt(1)->getTagName()==='chapter');
$this->assertTrue($doc->getElements()->itemAt(1)->getAttribute('id')==='books');
}
public function testUpdateDomTree()
{
}
public function testComposeDomTree()
{
}
}
?>
|