Browse Source

add tests

PECL_OPENSSL
Rob Richards 20 years ago
parent
commit
6f95fa95cc
  1. 22
      ext/dom/tests/bug37456.phpt
  2. 8
      ext/dom/tests/dom.ent
  3. 8
      ext/dom/tests/dom.xml

22
ext/dom/tests/bug37456.phpt

@ -0,0 +1,22 @@
--TEST--
Bug # 37456 (DOMElement->setAttribute() loops forever)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
$doc->resolveExternals = true;
$doc->load(dirname(__FILE__)."/dom.xml");
$root = $doc->getElementsByTagName('foo')->item(0);
$root->setAttribute('bar', '&gt;');
$attr = $root->setAttribute('bar', 'newval');
print $attr->nodeValue;
?>
--EXPECT--
newval

8
ext/dom/tests/dom.ent

@ -0,0 +1,8 @@
<!ENTITY amp "&#38;#38;">
<!ENTITY gt "&#62;">
<!ENTITY % coreattrs "title CDATA #IMPLIED">
<!ENTITY % attrs "%coreattrs;">
<!ATTLIST foo bar CDATA #IMPLIED>
<!ELEMENT foo (#PCDATA)>
<!ELEMENT root (foo)+>
<!ATTLIST th %attrs; >

8
ext/dom/tests/dom.xml

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE root [
<!ENTITY % incent SYSTEM "dom.ent">
%incent;
]>
<root>
<foo bar="" />
</root>
Loading…
Cancel
Save