File: 20extras.t

package info (click to toggle)
libxml-libxml-perl 2.0116%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 2,420 kB
  • sloc: perl: 6,139; ansic: 3,752; xml: 182; sh: 64; makefile: 8
file content (57 lines) | stat: -rw-r--r-- 1,566 bytes parent folder | download | duplicates (8)
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
# $Id$

use strict;
use warnings;

use Test::More tests => 12;

use XML::LibXML;

my $string = "<foo><bar/></foo>";

my $parser = XML::LibXML->new();

{
    my $doc = $parser->parse_string( $string );
    # TEST
    ok($doc, ' TODO : Add test name');
    local $XML::LibXML::skipXMLDeclaration = 1;
    # TEST
    is( $doc->toString(), $string, ' TODO : Add test name' );
    local $XML::LibXML::setTagCompression = 1;
    # TEST
    is( $doc->toString(), "<foo><bar></bar></foo>", ' TODO : Add test name' );
}

{
    local $XML::LibXML::skipDTD = 1;
    $parser->expand_entities(0);
    my $doc = $parser->parse_file( "example/dtd.xml" );
    # TEST
    ok($doc, ' TODO : Add test name');
    my $test = "<?xml version=\"1.0\"?>\n<doc>This is a valid document &foo; !</doc>\n";
    # TEST
    is( $doc->toString, $test, ' TODO : Add test name' );
}

{
    my $doc = $parser->parse_string( $string );
    # TEST
    ok($doc, ' TODO : Add test name');
    my $dclone = $doc->cloneNode(1); # deep
    # TEST
    ok( ! $dclone->isSameNode($doc), ' TODO : Add test name' );
    # TEST
    ok( $dclone->getDocumentElement(), ' TODO : Add test name' );
    # TEST
    ok( $doc->toString() eq $dclone->toString(), ' TODO : Add test name' );

    my $clone = $doc->cloneNode(); # shallow
    # TEST
    ok( ! $clone->isSameNode($doc), ' TODO : Add test name' );
    # TEST
    ok( ! $clone->getDocumentElement(), ' TODO : Add test name' );
    $doc->getDocumentElement()->unbindNode();
    # TEST
    ok( $doc->toString() eq $clone->toString(), ' TODO : Add test name' );
}