php-src/ext/dom/tests/DOMNode_C14NFile_basic.phpt

39 lines
735 B
Plaintext
Raw Normal View History

--TEST--
DOMNode::C14NFile()
--SKIPIF--
<?php
include('skipif.inc');
?>
--FILE--
<?php
$xml = <<< XML
<?xml version="1.0" ?>
<books>
<book>
<title>The Grapes of Wrath</title>
<author>John Steinbeck</author>
</book>
<book>
<title>The Pearl</title>
<author>John Steinbeck</author>
</book>
</books>
XML;
$output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp';
$doc = new DOMDocument();
$doc->loadXML($xml);
$node = $doc->getElementsByTagName('title')->item(0);
var_dump($node->C14NFile($output));
$content = file_get_contents($output);
var_dump($content);
?>
--CLEAN--
<?php
$output = dirname(__FILE__).'/DOMNode_C14NFile_basic.tmp';
unlink($output);
?>
--EXPECTF--
int(34)
string(34) "<title>The Grapes of Wrath</title>"