| Test-XML-Simple documentation | Contained in the Test-XML-Simple distribution. |
Test::XML::Simple - easy testing for XML
use Test::XML::Simple tests=>5; xml_valid $xml, "Is valid XML"; xml_node $xml, "/xpath/expression", "specified xpath node is present"; xml_is, $xml, '/xpath/expr', "expected value", "specified text present"; xml_like, $xml, '/xpath/expr', qr/expected/, "regex text present"; xml_is_deeply, $xml, '/xpath/expr', $xml2, "structure and contents match"; # Not yet implemented: # xml_like_deeply would be nice too...
Test::XML::Simple is a very basic class for testing XML. It uses the XPath
syntax to locate nodes within the XML. You can also check all or part of the
structure vs. an XML fragment.
Pass an XML file or fragment to this test; it succeeds if the XML (fragment) is valid.
Checks the supplied XML to see if the node described by the supplied XPath expression is present. Test fails if it is not present.
Finds the node corresponding to the supplied XPath expression and
compares it to the supplied value. Succeeds if the two values match.
Uses Test::More's is function to do the comparison.
Finds the node corresponding to the supplied XPath expression and
compares it to the supplied value. Succeeds if the two values match.
Uses Test::LongString's is_string function to do the test.
Find the XML corresponding to the the XPath expression and check it
against the supplied regular expression. Succeeds if they match.
Uses Test::More's like function to do the comparison.
Find the XML corresponding to the the XPath expression and check it
against the supplied regular expression. Succeeds if they match.
Uses Test::LongString's like_string function to do the test.
Find the piece of XML corresponding to the XPath expression,
and compare its structure and contents to the second XML
(fragment) supplied. Succeeds if they match in structure and
content. Uses Test::More's is function to do the comparison.
Find the piece of XML corresponding to the XPath expression,
and compare its structure and contents to the second XML
(fragment) supplied. Succeeds if they match in structure and
content. Uses Test::LongString's is_string function to do the test.
Joe McMahon, <mcmahon@cpan.org>
Copyright (c) 2005 by Yahoo!
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.6.1 or, at your option, any later version of Perl 5 you may have available.
| Test-XML-Simple documentation | Contained in the Test-XML-Simple distribution. |
package Test::XML::Simple; use strict; use warnings; our $VERSION = '1.00'; use Test::Builder; use Test::More; use Test::LongString; use XML::LibXML; my $Test = Test::Builder->new(); my $Xml; my $last_xml_string = ""; sub import { my $self = shift; my $caller = caller; no strict 'refs'; *{$caller.'::xml_valid'} = \&xml_valid; *{$caller.'::xml_node'} = \&xml_node; *{$caller.'::xml_is'} = \&xml_is; *{$caller.'::xml_is_long'} = \&xml_is_long; *{$caller.'::xml_is_deeply'} = \&xml_is_deeply; *{$caller.'::xml_is_deeply_long'} = \&xml_is_deeply_long; *{$caller.'::xml_like'} = \&xml_like; *{$caller.'::xml_like_long'} = \&xml_like_long; $Test->exported_to($caller); $Test->plan(@_); } sub xml_valid($;$) { my ($xml, $comment) = @_; my $parsed_xml = _valid_xml($xml); return 0 unless $parsed_xml; ok $parsed_xml, $comment; } sub _valid_xml { my $xml = shift; return $Xml if defined($xml) and $xml eq $last_xml_string; local $Test::Builder::Level = $Test::Builder::Level + 2; return fail("XML is not defined") unless defined $xml; return fail("XML is missing") unless $xml; return fail("string can't contain XML: no tags") unless ($xml =~ /</ and $xml =~/>/); eval {$Xml = XML::LibXML->new->parse_string($xml)}; $@ ? do { chomp $@; return fail($@) } : return $Xml; } sub _find { my ($xml_xpath, $xpath) = @_; my @nodeset = $xml_xpath->findnodes($xpath); local $Test::Builder::Level = $Test::Builder::Level + 2; return fail("Couldn't find $xpath") unless @nodeset; wantarray ? @nodeset : \@nodeset; } sub xml_node($$;$) { my ($xml, $xpath, $comment) = @_; my $parsed_xml = _valid_xml($xml); return 0 unless $parsed_xml; my $nodeset = _find($parsed_xml, $xpath); return 0 if !$nodeset; ok(scalar @$nodeset, $comment); } sub xml_is($$$;$) { _xml_is(\&is_string, @_); } sub xml_is_long($$$;$) { _xml_is(\&is, @_); } sub _xml_is { my ($comp_sub, $xml, $xpath, $value, $comment) = @_; local $Test::Builder::Level = $Test::Builder::Level + 2; my $parsed_xml = _valid_xml($xml); return 0 unless $parsed_xml; my $nodeset = _find($parsed_xml, $xpath); return 0 if !$nodeset; foreach my $node (@$nodeset) { my @kids = $node->getChildNodes; if (@kids) { $comp_sub->($kids[0]->toString, $value, $comment); } else { my $got = $node->toString; $got =~ s/^.*="(.*)"/$1/; is $got, $value, $comment; } } } sub xml_is_deeply($$$;$) { _xml_is_deeply(\&is_string, @_); } sub xml_is_deeply_long($$$;$) { _xml_is_deeply(\&is, @_); } sub _xml_is_deeply { my ($is_sub, $xml, $xpath, $candidate, $comment) = @_; my $parsed_xml = _valid_xml($xml); return 0 unless $parsed_xml; my $candidate_xp; eval {$candidate_xp = XML::LibXML->new->parse_string($candidate) }; return 0 unless $candidate_xp; my $parsed_thing = $parsed_xml->findnodes($xpath)->[0]; my $candidate_thing = $candidate_xp->findnodes('/')->[0]; $candidate_thing = $candidate_thing->documentElement if $parsed_thing->isa('XML::LibXML::Element'); $is_sub->($parsed_thing->toString, $candidate_thing->toString, $comment); } sub xml_like($$$;$) { _xml_like(\&like_string, @_); } sub xml_like_long($$$;$) { _xml_like(\&like, @_); } sub _xml_like { my ($like_sub, $xml, $xpath, $regex, $comment) = @_; my $parsed_xml = _valid_xml($xml); return 0 unless $parsed_xml; my $nodeset = _find($parsed_xml, $xpath); return 0 if !$nodeset; foreach my $node (@$nodeset) { my @kids = $node->getChildNodes; my $found; if (@kids) { foreach my $kid (@kids) { if ($kid->toString =~ /$regex/) { $found = 1; return $like_sub->($kid->toString, $regex, $comment); } } if (! $found) { $comment = "(no comment)" unless defined $comment; local $Test::Builder::Level = $Test::Builder::Level + 2; return ok(0, "$comment - no match in tag contents (including CDATA)"); } } else { my $got = $node->toString; $got =~ s/^.*="(.*)"/$1/; local $Test::Builder::Level = $Test::Builder::Level + 2; return $like_sub->(like $got, $regex, $comment); } } } 1; __END__