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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
//
// MonoTests.System.Xml.XPathNavigatorMatchesTests
//
// Authors:
// Jason Diamond <jason@injektilo.org>
// Martin Willemoes Hansen <mwh@sysrq.dk>
//
// (C) 2002 Jason Diamond
// (C) 2003 Martin Willemoes Hansen
//
using System;
using System.Xml;
using System.Xml.XPath;
using NUnit.Framework;
namespace MonoTests.System.Xml
{
[TestFixture]
public class XPathNavigatorMatchesTests
{
private XPathNavigator CreateNavigator (string xml)
{
XmlDocument document = new XmlDocument ();
document.LoadXml (xml);
return document.CreateNavigator ();
}
[Test]
public void MatchRoot ()
{
XPathNavigator navigator = CreateNavigator ("<foo />");
Assert.IsTrue (navigator.Matches ("/"));
}
[Test]
public void FalseMatchRoot ()
{
XPathNavigator navigator = CreateNavigator ("<foo />");
Assert.IsTrue (!navigator.Matches ("foo"));
}
[Test]
public void MatchDocumentElement ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo />");
XPathNavigator navigator = document.DocumentElement.CreateNavigator ();
Assert.IsTrue (navigator.Matches ("foo"));
}
[Test]
public void MatchAbsoluteDocumentElement ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo />");
XPathNavigator navigator = document.DocumentElement.CreateNavigator ();
Assert.IsTrue (navigator.Matches ("/foo"));
}
[Test]
public void MatchDocumentElementChild ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo><bar /></foo>");
XPathNavigator navigator = document.DocumentElement.FirstChild.CreateNavigator ();
Assert.IsTrue (navigator.Matches ("bar"));
Assert.IsTrue (navigator.Matches ("foo/bar"));
}
[Test]
public void MatchAttribute ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo bar='baz' />");
XPathNavigator navigator = document.DocumentElement.Attributes[0].CreateNavigator ();
Assert.IsTrue (navigator.Matches ("@bar"));
Assert.IsTrue (navigator.Matches ("foo/@bar"));
}
[Test]
public void SlashSlash ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo><bar><baz/></bar></foo>");
XPathNavigator navigator = document.DocumentElement.FirstChild.FirstChild.CreateNavigator ();
Assert.IsTrue (navigator.Matches ("foo//baz"));
}
[Test]
public void AbsoluteSlashSlash ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo><bar><baz/></bar></foo>");
XPathNavigator navigator = document.DocumentElement.FirstChild.FirstChild.CreateNavigator ();
Assert.IsTrue (navigator.Matches ("//baz"));
}
[Test]
public void MatchDocumentElementWithPredicate ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo><bar /></foo>");
XPathNavigator navigator = document.DocumentElement.CreateNavigator ();
Assert.IsTrue (navigator.Matches ("foo[bar]"));
}
[Test]
public void FalseMatchDocumentElementWithPredicate ()
{
XmlDocument document = new XmlDocument ();
document.LoadXml ("<foo><bar /></foo>");
XPathNavigator navigator = document.DocumentElement.CreateNavigator ();
Assert.IsTrue (!navigator.Matches ("foo[baz]"));
}
[Test]
public void MatchesAncestorsButNotCurrent ()
{
XPathNavigator nav = CreateNavigator ("<foo><bar><baz/></bar></foo>");
nav.MoveToFirstChild (); // foo
nav.MoveToFirstChild (); // bar
nav.MoveToFirstChild (); // baz
Assert.IsTrue (nav.Matches ("baz"));
Assert.IsTrue (nav.Matches ("bar/baz"));
Assert.IsTrue (!nav.Matches ("foo/bar"));
}
[Test]
[ExpectedException (typeof (XPathException))]
public void MatchesParentAxis ()
{
XPathNavigator nav = CreateNavigator ("<foo/>");
nav.Matches ("..");
}
[Test]
[ExpectedException (typeof (XPathException))]
public void MatchesPredicatedParentAxis ()
{
XPathNavigator nav = CreateNavigator ("<foo/>");
nav.Matches ("..[1]");
}
}
}
|