1--TEST--
2Test DOMNode::insertBefore()  check the error code DOM_NOT_FOUND is raised
3--DESCRIPTION--
4DOMNode::insertBefore(newNode, [refNode])
5DOM_NOT_FOUND is raised if refnode is not a child
6This test checks the error message is raised when the refnode is the parent
7--CREDITS--
8Antonio Diaz Ruiz <dejalatele@gmail.com>
9--INI--
10assert.bail=true
11--SKIPIF--
12<?php include('skipif.inc'); ?>
13--FILE--
14<?php
15$dom = new DOMDocument();
16
17$doc = $dom->load(__DIR__ . "/book.xml", LIBXML_NOBLANKS);
18assert($doc === true);
19
20$parent_node = $dom->getElementsByTagName("book")->item(0);
21assert(!is_null($parent_node));
22$ref_node = $parent_node;
23
24$new_node = $dom->createElement('newnode');
25assert($new_node !== false);
26
27try {
28    $parent_node->insertBefore($new_node, $ref_node);
29} catch(DOMException $e) {
30	echo $e->getMessage();
31}
32
33?>
34--EXPECT--
35Not Found Error
36