mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-18 18:46:17 +00:00
Adding namespace support to XML class, as well as XML generation options, entity conversion, whitespace output support, node filtering, I could go on. Props to Mike O'Toole. Fixes #3476
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6422 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
7d39cad13f
commit
172d355e05
4 changed files with 1127 additions and 343 deletions
|
@ -50,23 +50,6 @@ class XmlHelper extends AppHelper {
|
|||
* @var string
|
||||
*/
|
||||
var $field = null;
|
||||
/**
|
||||
* Map of common namespace URIs
|
||||
*
|
||||
* @access private
|
||||
* @var array
|
||||
*/
|
||||
var $__defaultNamespaceMap = array(
|
||||
'dc' => 'http://purl.org/dc/elements/1.1/', // Dublin Core
|
||||
'dct' => 'http://purl.org/dc/terms/', // Dublin Core Terms
|
||||
'g' => 'http://base.google.com/ns/1.0', // Google Base
|
||||
'rc' => 'http://purl.org/rss/1.0/modules/content/', // RSS 1.0 Content Module
|
||||
'wf' => 'http://wellformedweb.org/CommentAPI/', // Well-Formed Web Comment API
|
||||
'fb' => 'http://rssnamespace.org/feedburner/ext/1.0', // FeedBurner extensions
|
||||
'lj' => 'http://www.livejournal.org/rss/lj/1.0/', // Live Journal
|
||||
'itunes' => 'http://www.itunes.com/dtds/podcast-1.0.dtd', // iTunes
|
||||
'xhtml' => 'http://www.w3.org/1999/xhtml' // XHTML
|
||||
);
|
||||
/**
|
||||
* Namespaces to be utilized by default when generating documents
|
||||
*
|
||||
|
@ -101,40 +84,21 @@ class XmlHelper extends AppHelper {
|
|||
* @param string $url The namespace URI; can be empty if in the default namespace map
|
||||
* @return boolean False if no URL is specified, and the namespace does not exist
|
||||
* default namespace map, otherwise true
|
||||
* @deprecated
|
||||
* @see XML::addNs()
|
||||
*/
|
||||
function addNs($name, $url = null) {
|
||||
if ($url == null && in_array($name, array_keys($this->__defaultNamespaceMap))) {
|
||||
$url = $this->__defaultNamespaceMap[$name];
|
||||
} elseif ($url == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!strpos($url, '://') && in_array($name, array_keys($this->__defaultNamespaceMap))) {
|
||||
$_url = $this->__defaultNamespaceMap[$name];
|
||||
$name = $url;
|
||||
$url = $_url;
|
||||
}
|
||||
$this->__namespaces[$name] = $url;
|
||||
return true;
|
||||
return XML::addNs($name, $url);
|
||||
}
|
||||
/**
|
||||
* Removes a namespace added in addNs()
|
||||
*
|
||||
* @param string $name The namespace name or URI
|
||||
* @deprecated
|
||||
* @see XML::removeNs()
|
||||
*/
|
||||
function removeNs($name) {
|
||||
if (in_array($name, array_keys($this->__namespaces))) {
|
||||
unset($this->__namespaces[$name]);
|
||||
} elseif (in_array($name, $this->__namespaces)) {
|
||||
$keys = array_keys($this->__namespaces);
|
||||
$count = count($keys);
|
||||
for ($i = 0; $i < $count; $i++) {
|
||||
if ($this->__namespaces[$keys[$i]] == $name) {
|
||||
unset($this->__namespaces[$keys[$i]]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
XML::removeNs($name);
|
||||
}
|
||||
/**
|
||||
* Prepares the current set of namespaces for output in elem() / __composeAttributes()
|
||||
|
@ -229,7 +193,7 @@ class XmlHelper extends AppHelper {
|
|||
}
|
||||
}
|
||||
return $out;
|
||||
} elseif (is_object($content) && (is_a($content, 'XMLNode') || is_a($content, 'xmlnode'))) {
|
||||
} elseif (is_object($content) && (is_a($content, 'XmlNode') || is_a($content, 'xmlnode'))) {
|
||||
return $content->toString();
|
||||
} elseif (is_object($content) && method_exists($content, 'toString')) {
|
||||
return $content->toString();
|
||||
|
@ -248,19 +212,19 @@ class XmlHelper extends AppHelper {
|
|||
*/
|
||||
function serialize($data, $options = array()) {
|
||||
if (!class_exists('XML') && !class_exists('xml')) {
|
||||
uses('xml');
|
||||
App::import('Core', 'Xml');
|
||||
}
|
||||
$options = array_merge(array('attributes' => false, 'format' => 'xml'), $options);
|
||||
$options = array_merge(array('attributes' => false, 'format' => 'attributes'), $options);
|
||||
|
||||
switch ($options['format']) {
|
||||
case 'xml':
|
||||
case 'tags':
|
||||
break;
|
||||
case 'attributes':
|
||||
break;
|
||||
}
|
||||
|
||||
$data = new XML($data);
|
||||
return $data->compose(false);
|
||||
$data = new Xml($data);
|
||||
return $data->toString(false);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -429,17 +429,6 @@ class SetTest extends UnitTestCase {
|
|||
$result = Set::reverse($map);
|
||||
$this->assertIdentical($result, $expected);
|
||||
|
||||
$expected = array(
|
||||
'Post' => array('id'=> 1, 'title' => 'First Post'),
|
||||
'Comment' => array(
|
||||
array('id'=> 1, 'title' => 'First Comment'),
|
||||
array('id'=> 2, 'title' => 'Second Comment')
|
||||
),
|
||||
'Tag' => array(
|
||||
array('id'=> 1, 'title' => 'First Tag'),
|
||||
array('id'=> 2, 'title' => 'Second Tag')
|
||||
),
|
||||
);
|
||||
$map = Set::map($expected);
|
||||
$this->assertIdentical($map->title, $expected['Post']['title']);
|
||||
foreach ($map->Comment as $comment) {
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* @lastmodified $Date$
|
||||
* @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License
|
||||
*/
|
||||
uses('xml');
|
||||
App::import('Core', 'Xml');
|
||||
|
||||
/**
|
||||
* Short description for class.
|
||||
|
@ -34,64 +34,418 @@ uses('xml');
|
|||
* @package cake.tests
|
||||
* @subpackage cake.tests.cases.libs
|
||||
*/
|
||||
class XMLNodeTest extends UnitTestCase {
|
||||
class XmlTest extends UnitTestCase {
|
||||
|
||||
function skip() {
|
||||
$this->skipif (true, 'XMLNodeTest not implemented');
|
||||
function testRootTagParsing() {
|
||||
$input = '<' . '?xml version="1.0" encoding="UTF-8" ?' . '>' . "\n" . '<plugin id="1" version_id="1" name="my_plugin" title="My Plugin" author="Me" author_email="me@cakephp.org" description="My awesome package" created="2008-01-28 18:21:13" updated="2008-01-28 18:21:13"><current id="1" plugin_id="1" name="1.0" file="" created="2008-01-28 18:21:13" updated="2008-01-28 18:21:13" /><version id="1" plugin_id="1" name="1.0" file="" created="2008-01-28 18:21:13" updated="2008-01-28 18:21:13" /></plugin>';
|
||||
$xml = new Xml($input);
|
||||
$this->assertEqual($xml->children[0]->name, 'plugin');
|
||||
$this->assertEqual($xml->children[0]->children[0]->name, 'current');
|
||||
$this->assertEqual($xml->toString(true), $input);
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Short description for class.
|
||||
*
|
||||
* @package cake.tests
|
||||
* @subpackage cake.tests.cases.libs
|
||||
*/
|
||||
class XMLTest extends UnitTestCase {
|
||||
|
||||
function testSerialization() {
|
||||
$input = array(
|
||||
array(
|
||||
'Project' => array(
|
||||
'id' => 1,
|
||||
'title' => null,
|
||||
'client_id' => 1,
|
||||
'show' => 1,
|
||||
'is_spotlight' => null,
|
||||
'style_id' => 0,
|
||||
'job_type_id' => 1,
|
||||
'industry_id' => 1,
|
||||
'modified' => null,
|
||||
'created' => null
|
||||
),
|
||||
'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
'Industry' => array('id' => 1, 'name' => 'Financial')
|
||||
),
|
||||
array(
|
||||
'Project' => array(
|
||||
'id' => 2,
|
||||
'title' => null,
|
||||
'client_id' => 2,
|
||||
'show' => 1,
|
||||
'is_spotlight' => null,
|
||||
'style_id' => 0,
|
||||
'job_type_id' => 2,
|
||||
'industry_id' => 2,
|
||||
'modified' => '2007-11-26 14:48:36',
|
||||
'created' => null
|
||||
),
|
||||
'Project' => array('id' => 2, 'title' => null, 'client_id' => 2, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 2, 'industry_id' => 2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
'Industry' => array('id' => 2, 'name' => 'Education')
|
||||
)
|
||||
);
|
||||
$expected = '<project id="1" title="" client_id="1" show="1" is_spotlight="" style_id="0" job_type_id="1" industry_id="1" modified="" created=""><style id="" name="" /><job_type id="1" name="Touch Screen Kiosk" /><industry id="1" name="Financial" /></project><project id="2" title="" client_id="2" show="1" is_spotlight="" style_id="0" job_type_id="2" industry_id="2" modified="2007-11-26 14:48:36" created=""><style id="" name="" /><job_type id="2" name="Awareness Campaign" /><industry id="2" name="Education" /></project>';
|
||||
|
||||
$xml = new XML($input);
|
||||
$result = $xml->compose(false);
|
||||
$result = preg_replace("/\n/",'', $result);
|
||||
$xml = new Xml($input);
|
||||
$result = preg_replace("/\n/",'', $xml->toString(false));
|
||||
$expected = '<project id="1" title="" client_id="1" show="1" is_spotlight="" style_id="0" job_type_id="1" industry_id="1" modified="" created=""><style id="" name="" /><job_type id="1" name="Touch Screen Kiosk" /><industry id="1" name="Financial" /></project><project id="2" title="" client_id="2" show="1" is_spotlight="" style_id="0" job_type_id="2" industry_id="2" modified="2007-11-26 14:48:36" created=""><style id="" name="" /><job_type id="2" name="Awareness Campaign" /><industry id="2" name="Education" /></project>';
|
||||
$this->assertEqual($result, $expected);
|
||||
|
||||
$input = array(
|
||||
'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
'Industry' => array('id' => 1, 'name' => 'Financial')
|
||||
);
|
||||
$expected = '<project id="1" title="" client_id="1" show="1" is_spotlight="" style_id="0" job_type_id="1" industry_id="1" modified="" created=""><style id="" name="" /><job_type id="1" name="Touch Screen Kiosk" /><industry id="1" name="Financial" /></project>';
|
||||
$xml = new Xml($input);
|
||||
$result = preg_replace("/\n/",'', $xml->toString(false));
|
||||
$this->assertEqual($result, $expected);
|
||||
}
|
||||
|
||||
function testSimpleArray() {
|
||||
$xml = new Xml(array('hello' => 'world'), array('format' => 'tags'));
|
||||
|
||||
$result = $xml->toString(false);
|
||||
$expected = '<hello><![CDATA[world]]></hello>';
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
function testSimpleObject() {
|
||||
$input = new StdClass();
|
||||
$input->hello = 'world';
|
||||
$xml = new Xml($input, array('format' => 'tags'));
|
||||
|
||||
$result = $xml->toString(false);
|
||||
$expected = '<hello><![CDATA[world]]></hello>';
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
function testHeader() {
|
||||
$input = new stdClass();
|
||||
$input->hello = 'world';
|
||||
$xml = new Xml($input, array('format' => 'tags'));
|
||||
|
||||
$result = $xml->toString(array('header' => true));
|
||||
$expected = '<'.'?xml version="1.0" encoding="UTF-8" ?'.'>'."\n".'<hello><![CDATA[world]]></hello>';
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
function testOwnerAssignment() {
|
||||
$xml = new Xml();
|
||||
$node =& $xml->createElement('hello', 'world');
|
||||
$owner =& $node->document();
|
||||
$this->assertTrue($xml == $owner);
|
||||
|
||||
$children =& $node->children;
|
||||
$childOwner =& $children[0]->document();
|
||||
$this->assertTrue($xml == $childOwner);
|
||||
}
|
||||
|
||||
function testArraySingleSerialization() {
|
||||
$input = array(
|
||||
'Post' => array('id' => '1', 'author_id' => '1', 'title' => 'First Post', 'body' => 'First Post Body', 'published' => 'Y', 'created' => '2007-03-18 10:39:23', 'updated' => '2007-03-18 10:41:31'),
|
||||
'Author' => array('id' => '1', 'user' => 'mariano', 'password' => '5f4dcc3b5aa765d61d8327deb882cf99', 'created' => '2007-03-17 01:16:23', 'updated' => '2007-03-17 01:18:31', 'test' => 'working'),
|
||||
);
|
||||
$expected = '<post><id>1</id><author_id>1</author_id><title><![CDATA[First Post]]></title><body><![CDATA[First Post Body]]></body><published><![CDATA[Y]]></published><created><![CDATA[2007-03-18 10:39:23]]></created><updated><![CDATA[2007-03-18 10:41:31]]></updated><author><id>1</id><user><![CDATA[mariano]]></user><password><![CDATA[5f4dcc3b5aa765d61d8327deb882cf99]]></password><created><![CDATA[2007-03-17 01:16:23]]></created><updated><![CDATA[2007-03-17 01:18:31]]></updated><test><![CDATA[working]]></test></author></post>';
|
||||
|
||||
$xml = new Xml($input, array('format' => 'tags'));
|
||||
$result = $xml->toString(false);
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
function testArraySerialization() {
|
||||
$input = array(
|
||||
array(
|
||||
'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
'Industry' => array('id' => 1, 'name' => 'Financial')
|
||||
),
|
||||
array(
|
||||
'Project' => array('id' => 2, 'title' => null, 'client_id' => 2, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 2, 'industry_id' => 2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
'Industry' => array('id' => 2, 'name' => 'Education'),
|
||||
)
|
||||
);
|
||||
$expected = '<project><id>1</id><title /><client_id>1</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>1</job_type_id><industry_id>1</industry_id><modified /><created /><style><id /><name /></style><job_type><id>1</id><name>Touch Screen Kiosk</name></job_type><industry><id>1</id><name>Financial</name></industry></project><project><id>2</id><title /><client_id>2</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>2</job_type_id><industry_id>2</industry_id><modified>2007-11-26 14:48:36</modified><created /><style><id /><name /></style><job_type><id>2</id><name>Awareness Campaign</name></job_type><industry><id>2</id><name>Education</name></industry></project>';
|
||||
|
||||
$xml = new Xml($input, array('format' => 'tags'));
|
||||
$result = $xml->toString(array('header' => false, 'cdata' => false));
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
function testNestedArraySerialization() {
|
||||
$input = array(
|
||||
array(
|
||||
'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
'Industry' => array('id' => 1, 'name' => 'Financial'),
|
||||
'BusinessSolution' => array(array('id' => 6, 'name' => 'Convert Sales')),
|
||||
'MediaType' => array(
|
||||
array('id' => 15, 'name' => 'Print'),
|
||||
array('id' => 7, 'name' => 'Web Demo'),
|
||||
array('id' => 6, 'name' => 'CD-ROM')
|
||||
)
|
||||
),
|
||||
array(
|
||||
'Project' => array('id' => 2, 'title' => null, 'client_id' => 2, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 2, 'industry_id' => 2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
'Industry' => array('id' => 2, 'name' => 'Education'),
|
||||
'BusinessSolution' => array(
|
||||
array('id' => 4, 'name' => 'Build Relationship'),
|
||||
array('id' => 6, 'name' => 'Convert Sales')
|
||||
),
|
||||
'MediaType' => array(
|
||||
array('id' => 17, 'name' => 'Web'),
|
||||
array('id' => 6, 'name' => 'CD-ROM')
|
||||
)
|
||||
)
|
||||
);
|
||||
$expected = '<project><id>1</id><title /><client_id>1</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>1</job_type_id><industry_id>1</industry_id><modified /><created /><style><id /><name /></style><job_type><id>1</id><name>Touch Screen Kiosk</name></job_type><industry><id>1</id><name>Financial</name></industry><business_solution><id>6</id><name>Convert Sales</name></business_solution><media_type><id>15</id><name>Print</name></media_type><media_type><id>7</id><name>Web Demo</name></media_type><media_type><id>6</id><name>CD-ROM</name></media_type></project><project><id>2</id><title /><client_id>2</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>2</job_type_id><industry_id>2</industry_id><modified>2007-11-26 14:48:36</modified><created /><style><id /><name /></style><job_type><id>2</id><name>Awareness Campaign</name></job_type><industry><id>2</id><name>Education</name></industry><business_solution><id>4</id><name>Build Relationship</name></business_solution><business_solution><id>6</id><name>Convert Sales</name></business_solution><media_type><id>17</id><name>Web</name></media_type><media_type><id>6</id><name>CD-ROM</name></media_type></project>';
|
||||
|
||||
$xml = new Xml($input, array('format' => 'tags'));
|
||||
$result = $xml->toString(array('header' => false, 'cdata' => false));
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
/*
|
||||
* Not implemented yet
|
||||
*/
|
||||
// function testChildFilter() {
|
||||
// $input = array(
|
||||
// array(
|
||||
// 'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
// 'Style' => array('id' => null, 'name' => null),
|
||||
// 'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
// 'Industry' => array('id' => 1, 'name' => 'Financial'),
|
||||
// 'BusinessSolution' => array(array('id' => 6, 'name' => 'Convert Sales')),
|
||||
// 'MediaType' => array(
|
||||
// array('id' => 15, 'name' => 'Print'),
|
||||
// array('id' => 7, 'name' => 'Web Demo'),
|
||||
// array('id' => 6, 'name' => 'CD-ROM')
|
||||
// )
|
||||
// ),
|
||||
// array(
|
||||
// 'Project' => array('id' => 2, 'title' => null, 'client_id' => 2, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 2, 'industry_id' => 2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
// 'Style' => array('id' => null, 'name' => null),
|
||||
// 'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
// 'Industry' => array('id' => 2, 'name' => 'Education'),
|
||||
// 'BusinessSolution' => array(
|
||||
// array('id' => 4, 'name' => 'Build Relationship'),
|
||||
// array('id' => 6, 'name' => 'Convert Sales')
|
||||
// ),
|
||||
// 'MediaType' => array(
|
||||
// array('id' => 17, 'name' => 'Web'),
|
||||
// array('id' => 6, 'name' => 'CD-ROM')
|
||||
// )
|
||||
// )
|
||||
// );
|
||||
//
|
||||
// $xml = new Xml($input, array('format' => 'tags', 'tags' => array(
|
||||
// 'MediaType' => array('value' => 'id', 'children' => false),
|
||||
// 'JobType' => array('children' => array()),
|
||||
// 'Industry' => array('children' => array('name')),
|
||||
// 'show' => false
|
||||
// )));
|
||||
//
|
||||
// $result = $xml->toString(array('header' => false, 'cdata' => false));
|
||||
// $expected = '<project><id>1</id><title /><client_id>1</client_id><is_spotlight /><style_id>0</style_id><job_type_id>1</job_type_id><industry_id>1</industry_id><modified /><created /><style><id /><name /></style><job_type><id>1</id><name>Touch Screen Kiosk</name></job_type><industry><name>Financial</name></industry><business_solution><id>6</id><name>Convert Sales</name></business_solution><media_type>15</media_type><media_type>7</media_type><media_type>6</media_type></project><project><id>2</id><title /><client_id>2</client_id><is_spotlight /><style_id>0</style_id><job_type_id>2</job_type_id><industry_id>2</industry_id><modified>2007-11-26 14:48:36</modified><created /><style><id /><name /></style><job_type><id>2</id><name>Awareness Campaign</name></job_type><industry><name>Education</name></industry><business_solution><id>4</id><name>Build Relationship</name></business_solution><business_solution><id>6</id><name>Convert Sales</name></business_solution><media_type>17</media_type><media_type>6</media_type></project>';
|
||||
// $this->assertEqual($expected, $result);
|
||||
// }
|
||||
|
||||
/*
|
||||
* Broken due to a Set class issue
|
||||
*/
|
||||
// function testMixedArray() {
|
||||
// $input = array('OptionGroup' => array(
|
||||
// array('name' => 'OptA', 'id' => 12, 'OptA 1', 'OptA 2', 'OptA 3', 'OptA 4', 'OptA 5', 'OptA 6'),
|
||||
// array('name' => 'OptB', 'id' => 12, 'OptB 1', 'OptB 2', 'OptB 3', 'OptB 4', 'OptB 5', 'OptB 6')
|
||||
// ));
|
||||
// $expected = '<option_group><name>OptA</name><id>12</id><option_group>OptA 1</option_group><option_group>OptA 2</option_group><option_group>OptA 3</option_group><option_group>OptA 4</option_group><option_group>OptA 5</option_group><option_group>OptA 6</option_group></option_group><option_group><name>OptB</name><id>12</id><option_group>OptB 1</option_group><option_group>OptB 2</option_group><option_group>OptB 3</option_group><option_group>OptB 4</option_group><option_group>OptB 5</option_group><option_group>OptB 6</option_group></option_group>';
|
||||
// $xml = new Xml($input, array('format' => 'tags'));
|
||||
// $result = $xml->toString(array('header' => false, 'cdata' => false));
|
||||
// $this->assertEqual($expected, $result);
|
||||
// }
|
||||
|
||||
// function testMixedNestedArray() {
|
||||
// $input = array(
|
||||
// 'OptionA' => array(
|
||||
// 'name' => 'OptA',
|
||||
// 'id' => 12,
|
||||
// 'opt' => array('OptA 1', 'OptA 2', 'OptA 3', 'OptA 4', 'OptA 5', 'OptA 6')
|
||||
// ),
|
||||
// 'OptionB' => array(
|
||||
// 'name' => 'OptB',
|
||||
// 'id' => 12,
|
||||
// 'opt' => array('OptB 1', 'OptB 2', 'OptB 3', 'OptB 4', 'OptB 5', 'OptB 6')
|
||||
// )
|
||||
// );
|
||||
// $expected = '<option_a><name>OptA</name><id>12</id><opt>OptA 1</opt><opt>OptA 2</opt><opt>OptA 3</opt><opt>OptA 4</opt><opt>OptA 5</opt><opt>OptA 6</opt></option_a><option_b><name>OptB</name><id>12</id><opt>OptB 1</opt><opt>OptB 2</opt><opt>OptB 3</opt><opt>OptB 4</opt><opt>OptB 5</opt><opt>OptB 6</opt></option_b>';
|
||||
// $xml = new Xml($input, array('format' => 'tags'));
|
||||
// $result = $xml->toString(array('header' => false, 'cdata' => false));
|
||||
// $this->assertEqual($expected, $result);
|
||||
// }
|
||||
|
||||
// function testMixedArrayAttributes() {
|
||||
// $input = array('OptionGroup' => array(
|
||||
// array(
|
||||
// 'name' => 'OptA',
|
||||
// 'id' => 12,
|
||||
// array('opt' => 'OptA 1'),
|
||||
// array('opt' => 'OptA 2'),
|
||||
// array('opt' => 'OptA 3'),
|
||||
// array('opt' => 'OptA 4'),
|
||||
// array('opt' => 'OptA 5'),
|
||||
// array('opt' => 'OptA 6')
|
||||
// ),
|
||||
// array(
|
||||
// 'name' => 'OptB',
|
||||
// 'id' => 12,
|
||||
// array('opt' => 'OptB 1'),
|
||||
// array('opt' => 'OptB 2'),
|
||||
// array('opt' => 'OptB 3'),
|
||||
// array('opt' => 'OptB 4'),
|
||||
// array('opt' => 'OptB 5'),
|
||||
// array('opt' => 'OptB 6')
|
||||
// )
|
||||
// ));
|
||||
// $expected = '<option_group name="OptA" id="12"><opt>OptA 1</opt><opt>OptA 2</opt><opt>OptA 3</opt><opt>OptA 4</opt><opt>OptA 5</opt><opt>OptA 6</opt></option_group><option_group name="OptB" id="12"><opt>OptB 1</opt><opt>OptB 2</opt><opt>OptB 3</opt><opt>OptB 4</opt><opt>OptB 5</opt><opt>OptB 6</opt></option_group>';
|
||||
//
|
||||
// $options = array('tags' => array('option_group' => array('attributes' => array('id', 'name'))));
|
||||
// $xml = new Xml($input, $options);
|
||||
// $result = $xml->toString(false);
|
||||
//
|
||||
// $this->assertEqual($expected, $result);
|
||||
// }
|
||||
|
||||
/*
|
||||
* Not implemented yet
|
||||
*/
|
||||
// function testTagMap() {
|
||||
// $input = array(
|
||||
// array(
|
||||
// 'Project' => array('id' => 1, 'title' => null, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
// 'Style' => array('id' => null, 'name' => null),
|
||||
// 'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
// 'Industry' => array('id' => 1, 'name' => 'Financial')
|
||||
// ),
|
||||
// array(
|
||||
// 'Project' => array('id' => 2, 'title' => null, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 2, 'industry_id' => 2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
// 'Style' => array('id' => null, 'name' => null),
|
||||
// 'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
// 'Industry' => array('id' => 2, 'name' => 'Education'),
|
||||
// )
|
||||
// );
|
||||
// $expected = '<project id="1"><title /><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>1</job_type_id><industry_id>1</industry_id><modified /><created /><style id=""><name /></style><jobtype id="1">Touch Screen Kiosk</jobtype><industry id="1"><name>Financial</name></industry></project><project id="2"><title /><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>2</job_type_id><industry_id>2</industry_id><modified>2007-11-26 14:48:36</modified><created /><style id=""><name /></style><jobtype id="2">Awareness Campaign</jobtype><industry id="2"><name>Education</name></industry></project>';
|
||||
//
|
||||
// $xml = new Xml($input, array('tags' => array(
|
||||
// 'Project' => array('attributes' => array('id')),
|
||||
// 'style' => array('attributes' => array('id')),
|
||||
// 'JobType' => array('name' => 'jobtype', 'attributes' => array('id'), 'value' => 'name'),
|
||||
// 'Industry' => array('attributes' => array('id'))
|
||||
// )));
|
||||
// $result = $xml->toString(array('header' => false, 'cdata' => false));
|
||||
// $this->assertEqual($expected, $result);
|
||||
// }
|
||||
|
||||
function testAllCData() {
|
||||
$input = array(
|
||||
array(
|
||||
'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => '1', 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => '1.89', 'industry_id' => '1.56', 'modified' => null, 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
'Industry' => array('id' => 1, 'name' => 'Financial')
|
||||
),
|
||||
array(
|
||||
'Project' => array('id' => 2, 'title' => null, 'client_id' => 2, 'show' => '1', 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => '2.2', 'industry_id' => 2.2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
'Industry' => array('id' => 2, 'name' => 'Education'),
|
||||
)
|
||||
);
|
||||
$expected = '<project><id>1</id><title /><client_id>1</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>1.89</job_type_id><industry_id>1.56</industry_id><modified /><created /><style><id /><name /></style><job_type><id>1</id><name><![CDATA[Touch Screen Kiosk]]></name></job_type><industry><id>1</id><name><![CDATA[Financial]]></name></industry></project><project><id>2</id><title /><client_id>2</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>2.2</job_type_id><industry_id>2.2</industry_id><modified><![CDATA[2007-11-26 14:48:36]]></modified><created /><style><id /><name /></style><job_type><id>2</id><name><![CDATA[Awareness Campaign]]></name></job_type><industry><id>2</id><name><![CDATA[Education]]></name></industry></project>';
|
||||
$xml = new Xml($input, array('format' => 'tags'));
|
||||
$result = $xml->toString(array('header' => false, 'cdata' => true));
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
/*
|
||||
* PHP-native Unicode support pending
|
||||
*/
|
||||
// function testConvertEntities() {
|
||||
// $input = array('project' => 'écît');
|
||||
// $xml = new Xml($input);
|
||||
//
|
||||
// $result = $xml->toString(array('header' => false, 'cdata' => false, 'convertEntities' => true));
|
||||
// $expected = '<project>écît</project>';
|
||||
// $this->assertEqual($result, $expected);
|
||||
// }
|
||||
|
||||
function testWhitespace() {
|
||||
$input = array(
|
||||
array(
|
||||
'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
'Industry' => array('id' => 1, 'name' => 'Financial')
|
||||
),
|
||||
array(
|
||||
'Project' => array('id' => 2, 'title' => null, 'client_id' => 2, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 2, 'industry_id' => 2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
'Industry' => array('id' => 2, 'name' => 'Education'),
|
||||
)
|
||||
);
|
||||
$expected = "\n\t<project>\n\t\t<id>\n\t\t\t1\n\t\t</id>\n\t\t<title />\n\t\t<client_id>\n\t\t\t1\n\t\t</client_id>\n\t\t<show>\n\t\t\t1\n\t\t</show>\n\t\t<is_spotlight />\n\t\t<style_id>\n\t\t\t0\n\t\t</style_id>\n\t\t<job_type_id>\n\t\t\t1\n\t\t</job_type_id>\n\t\t<industry_id>\n\t\t\t1\n\t\t</industry_id>\n\t\t<modified />\n\t\t<created />\n\t\t<style>\n\t\t\t<id />\n\t\t\t<name />\n\t\t</style>\n\t\t<job_type>\n\t\t\t<id>\n\t\t\t\t1\n\t\t\t</id>\n\t\t\t<name>\n\t\t\t\tTouch Screen Kiosk\n\t\t\t</name>\n\t\t</job_type>\n\t\t<industry>\n\t\t\t<id>\n\t\t\t\t1\n\t\t\t</id>\n\t\t\t<name>\n\t\t\t\tFinancial\n\t\t\t</name>\n\t\t</industry>\n\t</project>\n\t<project>\n\t\t<id>\n\t\t\t2\n\t\t</id>\n\t\t<title />\n\t\t<client_id>\n\t\t\t2\n\t\t</client_id>\n\t\t<show>\n\t\t\t1\n\t\t</show>\n\t\t<is_spotlight />\n\t\t<style_id>\n\t\t\t0\n\t\t</style_id>\n\t\t<job_type_id>\n\t\t\t2\n\t\t</job_type_id>\n\t\t<industry_id>\n\t\t\t2\n\t\t</industry_id>\n\t\t<modified>\n\t\t\t2007-11-26 14:48:36\n\t\t</modified>\n\t\t<created />\n\t\t<style>\n\t\t\t<id />\n\t\t\t<name />\n\t\t</style>\n\t\t<job_type>\n\t\t\t<id>\n\t\t\t\t2\n\t\t\t</id>\n\t\t\t<name>\n\t\t\t\tAwareness Campaign\n\t\t\t</name>\n\t\t</job_type>\n\t\t<industry>\n\t\t\t<id>\n\t\t\t\t2\n\t\t\t</id>\n\t\t\t<name>\n\t\t\t\tEducation\n\t\t\t</name>\n\t\t</industry>\n\t</project>\n";
|
||||
|
||||
$xml = new Xml($input, array('format' => 'tags'));
|
||||
$result = $xml->toString(array('header' => false, 'cdata' => false, 'whitespace' => true));
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
function testSetSerialization() {
|
||||
$input = array(
|
||||
array(
|
||||
'Project' => array('id' => 1, 'title' => null, 'client_id' => 1, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 1, 'industry_id' => 1, 'modified' => null, 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 1, 'name' => 'Touch Screen Kiosk'),
|
||||
'Industry' => array('id' => 1, 'name' => 'Financial')
|
||||
),
|
||||
array(
|
||||
'Project' => array('id' => 2, 'title' => null, 'client_id' => 2, 'show' => 1, 'is_spotlight' => null, 'style_id' => 0, 'job_type_id' => 2, 'industry_id' => 2, 'modified' => '2007-11-26 14:48:36', 'created' => null),
|
||||
'Style' => array('id' => null, 'name' => null),
|
||||
'JobType' => array('id' => 2, 'name' => 'Awareness Campaign'),
|
||||
'Industry' => array('id' => 2, 'name' => 'Education'),
|
||||
)
|
||||
);
|
||||
$expected = '<project><id>1</id><title /><client_id>1</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>1</job_type_id><industry_id>1</industry_id><modified /><created /><style><id /><name /></style><job_type><id>1</id><name>Touch Screen Kiosk</name></job_type><industry><id>1</id><name>Financial</name></industry></project><project><id>2</id><title /><client_id>2</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>2</job_type_id><industry_id>2</industry_id><modified>2007-11-26 14:48:36</modified><created /><style><id /><name /></style><job_type><id>2</id><name>Awareness Campaign</name></job_type><industry><id>2</id><name>Education</name></industry></project>';
|
||||
|
||||
$xml = new Xml(Set::map($input), array('format' => 'tags'));
|
||||
$result = $xml->toString(array('header' => false, 'cdata' => false));
|
||||
$this->assertEqual($expected, $result);
|
||||
}
|
||||
|
||||
function testSimpleParsing() {
|
||||
$source = '<response><hello><![CDATA[happy world]]></hello><goodbye><![CDATA[cruel world]]></goodbye></response>';
|
||||
$xml = new Xml($source);
|
||||
$result = $xml->toString();
|
||||
$this->assertEqual($source, $result);
|
||||
}
|
||||
|
||||
function testMixedParsing() {
|
||||
$source = '<response><body><hello><![CDATA[happy world]]></hello><![CDATA[in between]]><goodbye><![CDATA[cruel world]]></goodbye></body></response>';
|
||||
$xml = new Xml($source);
|
||||
$result = $xml->toString();
|
||||
$this->assertEqual($source, $result);
|
||||
}
|
||||
|
||||
function testComplexParsing() {
|
||||
$source = '<projects><project><id>1</id><title /><client_id>1</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>1</job_type_id><industry_id>1</industry_id><modified /><created /><style><id /><name /></style><job_type><id>1</id><name>Touch Screen Kiosk</name></job_type><industry><id>1</id><name>Financial</name></industry></project><project><id>2</id><title /><client_id>2</client_id><show>1</show><is_spotlight /><style_id>0</style_id><job_type_id>2</job_type_id><industry_id>2</industry_id><modified>2007-11-26 14:48:36</modified><created /><style><id /><name /></style><job_type><id>2</id><name>Awareness Campaign</name></job_type><industry><id>2</id><name>Education</name></industry></project></projects>';
|
||||
$xml = new Xml($source);
|
||||
$result = $xml->toString(array('cdata' => false));
|
||||
$this->assertEqual($source, $result);
|
||||
}
|
||||
|
||||
function testNamespaceParsing() {
|
||||
return;
|
||||
$source = '<a:container xmlns:a="http://example.com/a" xmlns:b="http://example.com/b" xmlns:c="http://example.com/c" xmlns:d="http://example.com/d" xmlns:e="http://example.com/e"><b:rule test=""><c:result>value</c:result></b:rule><d:rule test=""><e:result>value</e:result></d:rule></a:container>';
|
||||
$xml = new Xml($source);
|
||||
$result = $xml->toString(array('cdata' => false));
|
||||
$this->assertEqual($source, $result);
|
||||
|
||||
$ns_a = $xml->namespaces['http://example.com/a'];
|
||||
$children = $xml->children();
|
||||
$child_ns = $children[0]->namespace();
|
||||
$this->assertEqual($ns_a, $child_ns);
|
||||
|
||||
$ns_b = $xml->namespaces['http://example.com/b'];
|
||||
$children = $children[0]->childNodes();
|
||||
$child_ns = $children[0]->namespace();
|
||||
$this->assertEqual($ns_b, $child_ns);
|
||||
}
|
||||
|
||||
/*
|
||||
* @todo Add test for default namespaces
|
||||
*/
|
||||
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Reference in a new issue