|
NameTest::XPath - Test XML and HTML content and structure with XPath expressionsSynopsisuse Test::More tests => 5; use Test::XPath; my $xml = <<'XML'; <html> <head> <title>Hello</title> <style type="text/css" src="foo.css"></style> <style type="text/css" src="bar.css"></style> </head> <body> <h1>Welcome to my lair.</h1> </body> </html> XML my $tx = Test::XPath->new( xml => $xml ); $tx->ok( '/html/head', 'There should be a head' ); $tx->is( '/html/head/title', 'Hello', 'The title should be correct' ); # Recursing into a document: my @css = qw(foo.css bar.css); $tx->ok( '/html/head/style[@type="text/css"]', sub { my $css = shift @css; shift->is( './@src', $css, "Style src should be $css"); }, 'Should have style' ); # Better yet, use PerlX::MethodCallWithBlock: use PerlX::MethodCallWithBlock; my @css = qw(foo.css bar.css); use PerlX::MethodCallWithBlock; $tx->ok( '/html/head/style[@type="text/css"]', 'Should have style' ) { my $css = shift @css; shift->is( './@src', $css, "Style src should be $css"); }; # Or use CSS Selectors: $tx = Test::XPath->new( xml => $xml, filter => 'css_selector' ); $tx->ok( '> html > head', 'There should be a head' ); DescriptionUse the power of XPath expressions to validate the structure of your XML and HTML documents.About XPathXPath is a powerful query language for XML documents. Test::XPath relies on the libxml2 implementation provided by XML::LibXML. libxml2 -- pretty much the canonical library for XML processing -- provides an efficient and complete implementation of the XPath spec.XPath works by selecting nodes in an XML document. Nodes, in general, correspond to the elements (a.k.a. tags) defined in the XML, text within those elements, attribute values, and comments. The expressions for making such selections use a URI-like syntax, the basics of which are:
And some examples:
There are also useful predicates to select certain nodes. Some examples:
There are a bunch of core functions in XPath. In addition to the ("last()" and "count()") examples above, there are functions for node sets, booleans, numbers, and strings. See the XPath 1.0 W3C Recommendation <http://www.w3.org/TR/xpath>, for thorough (and quite readable) documentation of XPath support, including syntax and the core functions. The W3Schools tutorial <http://www.w3schools.com/Xpath/default.asp> provides a nice overview of XPath. Testing HTMLIf you want to use XPath to test the content and structure of an HTML document, be sure to pass the "is_html" option to "new()", like so:my $tx = Test::XPath->new( xml => $html, is_html => 1 ); Test::XPath will then use XML::LibXML's HTML parser to parse the document, rather than its XML parser. The upshot is that you won't have to worry about namespace prefixes, and XML::LibXML won't try to fetch any DTD specified in the DOCTYPE section of your HTML. Class InterfaceConstructor"new"my $tx = Test::XPath->new( xml => $xml ); Creates and returns an XML::XPath object. This object can be used to run XPath tests on the XML passed to it. The supported parameters are:
Instance InterfaceAssertions"ok"$tx->ok( $xpath, $description ) $tx->ok( $xpath, $coderef, $description ) Test that an XPath expression evaluated against the XML document returns a true value. If the XPath expression finds no nodes, the result will be false. If it finds a value, the value must be a true value (in the Perl sense). $tx->ok( '//foo/bar', 'Should have bar element under foo element' ); $tx->ok( 'contains(//title, "Welcome")', 'Title should "Welcome"' ); You can also run recursive tests against your document by passing a code reference as the second argument to "ok()". Once the initial selection has been completed, each selected node will be assigned to the "node" attribute and the XML::XPath object passed to the code reference. For example, if you wanted to test for the presence of "story" elements in your document, and to test that each such element had an incremented "id" attribute, you'd do something like this: my $i = 0; $tx->ok( '//assets/story', sub { shift->is('./@id', ++$i, "ID should be $i in story $i"); }, 'Should have story elements' ); Even better, use PerlX::MethodCallWithBlock to pass a block to the method instead of a code reference: use PerlX::MethodCallWithBlock; my $i = 0; $tx->ok( '//assets/story', 'Should have story elements' ) { shift->is('./@id', ++$i, "ID should be $i in story $i"); }; For convenience, the XML::XPath object is also assigned to $_ for the duration of the call to the code reference. Either way, you can call "ok()" and pass code references anywhere in the hierarchy. For example, to ensure that an Atom feed has entries and that each entry has a title, a link, and a very specific author element with name, uri, and email subnodes, you can do this: $tx->ok( '/feed/entry', sub { $_->ok( './title', 'Should have a title' ); $_->ok( './author', sub { $_->is( './name', 'Mark Pilgrim', 'Mark should be author' ); $_->is( './uri', 'http://example.org/', 'URI should be correct' ); $_->is( './email', 'f8dy@example.com', 'Email should be right' ); }, 'Should have author elements' ); }, 'Should have entry elments' ); "not_ok" $tx->not_ok( $xpath, $description ) The reverse of the non-recursive "ok()", the test succeeds if the XPath expression matches no part of the document. $tx->not_ok( '//foo/bar[@id=0]', 'Should have no bar elements with Id 0' ); "is" "isnt" $tx->is( $xpath, $want, $description ); $tx->isnt( $xpath, $dont_want, $description ); "is()" and "isnt()" compare the value returned by evaluation of the XPath expression against the document to a value using "eq" and "ne", respectively. $tx->is( '/html/head/title', 'Welcome', 'Title should be welcoming' ); $tx->isnt( '/html/head/link/@type', 'hello', 'Link type should not' ); As with "Test::More::ok()", a failing test will yield a useful diagnostic message, something like: # Failed test 'Title should be welcoming' # at t/foo.t line 47. # got: 'Bienvenidos' # expected: 'Hello' "like" "unlike" $tx->like( $xpath, qr/want/, $description ); $tx->unlike( $xpath, qr/dont_want/, $description ); Similar to "is()" and "isnt()", but these methods match the value returned by the XPath expression against a regular expression. $tx->like( '/html/head/title', qr/^Foobar Inc.: .+/, 'Title context' ); $tx->unlike( '/html/head/title', qr/Error/, 'Should be no error in title' ); As with "Test::More::like()", a failing test will yield a useful diagnostic message, something like: # Failed test 'Title should, like, welcome' # at t/foo.t line 62. # 'Bye' # doesn't match '(?-xism:^Howdy$)' "cmp_ok" $tx->cmp_ok( $xpath, $op, $want, $description ); Like "Test::More::cmp_ok()", this method allows you to compare the value returned by an XPath expression to a value using any binary Perl operator. $tx->cmp_ok( '/html/head/title', 'eq', 'Welcome' ); $tx->cmp_ok( '//story[1]/@id', '==', 1 ); As with "Test::More::cmp_ok()", a failing test will yield a useful diagnostic message, something like: # Failed test # at t/foo.t line 104. # '0' # && # '1' Accessors"node"my $node = $tx->node; Returns the current context node. This will usually be the node for the entire document, but in recursive tests run in code references passed to "ok()", the node will be one of the nodes selected for the test. "xpc" Returns the XML::LibXML::XPathContext used to execute the XPath expressions. It can be useful to access this object in order to create new XPath functions to use in your tests. For example, say that you wanted to define a "grep()" XPath function that returns true for a node value that matches a regular expression. You can define one like so: $tx->xpc->registerFunction( grep => sub { my ($nodelist, $regex) = @_; my $result = XML::LibXML::NodeList->new; for my $node ($nodelist->get_nodelist) { $result->push($node) if $node->textContent =~ $regex; } return $result; } ); You can then use "grep()" like any other XPath function to select only those nodes with content matching a regular expression. This example makes sure that there are "email" nodes under "author" nodes that end in "@example.com" or "example.org": $tx->ok( 'grep(//author/email, "@example[.](?:com|org)$")', 'Should have example email' ); Utilities"find_value"my $val = $tx->find_value($xpath); Returns the value returned by evaluation of the XPath expression against the document relative to the current node. This is the method used internally to fetch the value to be compared by "is", "isnt", "like", "unlike", and "cmp_ok". A simple example: my $val = $tx->find_value('/html/head/title'); See Also
SupportThis module is stored in an open GitHub repository <http://github.com/manwar/test-xpath/tree/>. Feel free to fork and contribute!Please file bug reports via GitHub Issues <http://github.com/manwar/test-xpath/issues/> or by sending mail to bug-Test-XPath@rt.cpan.org <mailto:bug-Test-XPath@rt.cpan.org>. AuthorDavid E. Wheeler <david@kineticode.com>Currently maintained by Mohammad S Anwar <mohammad.anwar@yahoo.com> Copyright and LicenseCopyright (c) 2009-2010 David E. Wheeler. Some Rights Reserved.This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |