TestXpath.java

package org.jdom2.test.cases.xpath;

import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import java.util.List;

import org.junit.Test;

import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.JDOMException;
import org.jdom2.xpath.XPath;
import org.jdom2.xpath.jaxen.JDOMXPath;

/**
 * 
 * @author Rolf Lear
 * @deprecated old XPath
 */
@SuppressWarnings({"javadoc"} )
@Deprecated
public class TestXpath {
	/* 
	 * Test the static methods on the abstract class.
	 */

	@Test
	public void testNewInstance() {
		try {
			Document doc = new Document(new Element("main"));
			XPath xp = XPath.newInstance("/");
			assertTrue(doc == xp.selectSingleNode(doc));
		} catch (JDOMException e) {
			e.printStackTrace();
			fail("Could not process XPath.newInstance()");
		}
	}

	@Test
	public void testSetXPathClass() throws JDOMException {
		XPath.setXPathClass(JDOMXPath.class);
	}

	@Test
	public void testSelectNodesObjectString() throws JDOMException {
		Document doc = new Document(new Element("main"));
		List<?> lst = XPath.selectNodes(doc, "/");
		assertTrue(lst.size() == 1);
		assertTrue(doc == lst.get(0));
	}

	@Test
	public void testSelectSingleNodeObjectString() throws JDOMException {
		Document doc = new Document(new Element("main"));
		Object ret = XPath.selectSingleNode(doc, "/");
		assertTrue(doc == ret);
	}

}