XML-LibXML-LazyBuilder

 view release on metacpan or  search on metacpan

t/XML-LibXML-LazyBuilder.t  view on Meta::CPAN

use XML::LibXML::LazyBuilder qw/:all/;

{
    my $e = E "hoge";
    isa_ok ($e, 'CODE');
    my $d = DOM $e;
    isa_ok ($d, 'XML::LibXML::Document');

    is ($d->firstChild->tagName, "hoge", "tag name");
}

{
    my $e = E hoge => {at1 => "val1", at2 => "val2"};
    my $d = DOM $e;
    is ($d->firstChild->getAttribute ("at1"), "val1", "attribute");
    is ($d->firstChild->getAttribute ("at2"), "val2", "attribute");

    # cloning
    my $d2 = DOM $e;
    $d2->firstChild->setAttribute ("at1", "val1'");
    is ($d->firstChild->getAttribute ("at1"), "val1", "original");
    is ($d2->firstChild->getAttribute ("at1"), "val1'", "clone");
}

{
    my $d = DOM (E (hoge => {}, "content"));
    is ($d->firstChild->textContent, "content", "text content");
}

{
    my $d = DOM (E A => {}, ((E B => {}, ((E "C"),
					  (E "D"))),
			     (E E => {}, ((E "F"),
					  (E "G")))));
    is ($d->firstChild->firstChild->nextSibling->firstChild->nextSibling->tagName,
	"G", "child nodes");
}

{
    my $d = DOM E 'no-prefix' => {
        'xmlns' => 'urn:x-foo:', 'xmlns:bar' => 'urn:x-bar:' }, E 'wat';

    #diag($d->toString);
    is($d->documentElement->namespaceURI, 'urn:x-foo:', 'namespace');

    my $e = $d->documentElement;

    my $sub = E $e => { one => 'two' },
        E test => { 'xmlns:test' => 'urn:x-test:' }, E 'test:hello';

    my $e2 = $sub->();

    #diag($d->toString);

    is($e->namespaceURI, 'urn:x-foo:', 'propagated namespace');

    # XXX should really do way more tests here but effit
}

{
    # fragment, processing instruction, DTD, comment, cdata
    my $d = DOM F(
        (P 'xml-stylesheet' => { type => 'text/xsl', href => '/foo.xsl' }),
        (DTD 'foo'),
        (E foo => { xmlns => 'urn:x-wat:' }, E bar => {}, (C 'yo'), (D 'hi')));

    #diag($d->toString(1));

    # only really concerned that the namespaces came out ok
    my $nsuri = $d->documentElement->firstChild->namespaceURI;
    is($nsuri, 'urn:x-wat:', 'namespace survived fragment');
}



( run in 0.641 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )