Package org.apache.abdera.xpath

Examples of org.apache.abdera.xpath.XPath.selectSingleNode()


    assertTrue(xpath.booleanValueOf("/a:feed/a:entry", feed));
    assertEquals(xpath.numericValueOf("count(/a:feed)", feed), 1.0d);
    assertEquals(xpath.valueOf("/a:feed/a:entry/a:title", feed), "Atom-Powered Robots Run Amok");
    assertEquals(xpath.selectNodes("/a:feed/a:entry", feed).size(), 1);
    assertTrue(xpath.selectSingleNode("/a:feed", feed) instanceof Feed);
    assertEquals(xpath.selectSingleNode("..", feed.getTitleElement()), feed);
    assertEquals(xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)), feed);
    assertEquals(xpath.valueOf("concat('The feed is is ',/a:feed/a:id)", feed), "The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6");
   
  }
 
View Full Code Here


    assertEquals(xpath.numericValueOf("count(/a:feed)", feed), 1.0d);
    assertEquals(xpath.valueOf("/a:feed/a:entry/a:title", feed), "Atom-Powered Robots Run Amok");
    assertEquals(xpath.selectNodes("/a:feed/a:entry", feed).size(), 1);
    assertTrue(xpath.selectSingleNode("/a:feed", feed) instanceof Feed);
    assertEquals(xpath.selectSingleNode("..", feed.getTitleElement()), feed);
    assertEquals(xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)), feed);
    assertEquals(xpath.valueOf("concat('The feed is is ',/a:feed/a:id)", feed), "The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6");
   
  }
 
  @Test
View Full Code Here

    ns.put("rss", RssConstants.RSS1_NS);
    Element el = getDocument().getRoot();
    if (el instanceof ElementWrapper) {
      el = ((ElementWrapper)el).getInternal();
    }
    return (Element) xpath.selectSingleNode(path,el,ns);
  }
}
View Full Code Here

        ns.put("rss", RssConstants.RSS1_NS);
        Element el = getDocument().getRoot();
        if (el instanceof ElementWrapper) {
            el = ((ElementWrapper)el).getInternal();
        }
        return (Element)xpath.selectSingleNode(path, el, ns);
    }
}
View Full Code Here

        System.out.println(xpath.evaluate("count(/a:feed)", feed)); // 1.0
        System.out.println(xpath.numericValueOf("count(/a:feed)", feed)); // 1.0
        System.out.println(xpath.booleanValueOf("/a:feed/a:entry", feed)); // true (the feed has an entry)
        System.out.println(xpath.valueOf("/a:feed/a:entry/a:title", feed)); // Atom-Powered Robots Run Amok
        System.out.println(xpath.selectNodes("/a:feed/a:entry", feed)); // every entry
        System.out.println(xpath.selectSingleNode("/a:feed", feed));
        System.out.println(xpath.selectSingleNode("..", feed.getTitleElement()));
        System.out.println(xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)));
        System.out.println(xpath.valueOf("concat('The feed is is ',/a:feed/a:id)", feed)); // "The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6"

    }
View Full Code Here

        System.out.println(xpath.numericValueOf("count(/a:feed)", feed)); // 1.0
        System.out.println(xpath.booleanValueOf("/a:feed/a:entry", feed)); // true (the feed has an entry)
        System.out.println(xpath.valueOf("/a:feed/a:entry/a:title", feed)); // Atom-Powered Robots Run Amok
        System.out.println(xpath.selectNodes("/a:feed/a:entry", feed)); // every entry
        System.out.println(xpath.selectSingleNode("/a:feed", feed));
        System.out.println(xpath.selectSingleNode("..", feed.getTitleElement()));
        System.out.println(xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)));
        System.out.println(xpath.valueOf("concat('The feed is is ',/a:feed/a:id)", feed)); // "The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6"

    }

View Full Code Here

        System.out.println(xpath.booleanValueOf("/a:feed/a:entry", feed)); // true (the feed has an entry)
        System.out.println(xpath.valueOf("/a:feed/a:entry/a:title", feed)); // Atom-Powered Robots Run Amok
        System.out.println(xpath.selectNodes("/a:feed/a:entry", feed)); // every entry
        System.out.println(xpath.selectSingleNode("/a:feed", feed));
        System.out.println(xpath.selectSingleNode("..", feed.getTitleElement()));
        System.out.println(xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)));
        System.out.println(xpath.valueOf("concat('The feed is is ',/a:feed/a:id)", feed)); // "The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6"

    }

}
View Full Code Here

        assertEquals(1.0d, xpath.evaluate("count(/a:feed)", feed));
        assertTrue(xpath.booleanValueOf("/a:feed/a:entry", feed));
        assertEquals(1.0d, xpath.numericValueOf("count(/a:feed)", feed));
        assertEquals("Atom-Powered Robots Run Amok", xpath.valueOf("/a:feed/a:entry/a:title", feed));
        assertEquals(1, xpath.selectNodes("/a:feed/a:entry", feed).size());
        assertTrue(xpath.selectSingleNode("/a:feed", feed) instanceof Feed);
        assertEquals(feed, xpath.selectSingleNode("..", feed.getTitleElement()));
        assertEquals(feed, xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)));
        assertEquals("The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6", xpath
            .valueOf("concat('The feed is is ',/a:feed/a:id)", feed));

View Full Code Here

        assertTrue(xpath.booleanValueOf("/a:feed/a:entry", feed));
        assertEquals(1.0d, xpath.numericValueOf("count(/a:feed)", feed));
        assertEquals("Atom-Powered Robots Run Amok", xpath.valueOf("/a:feed/a:entry/a:title", feed));
        assertEquals(1, xpath.selectNodes("/a:feed/a:entry", feed).size());
        assertTrue(xpath.selectSingleNode("/a:feed", feed) instanceof Feed);
        assertEquals(feed, xpath.selectSingleNode("..", feed.getTitleElement()));
        assertEquals(feed, xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)));
        assertEquals("The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6", xpath
            .valueOf("concat('The feed is is ',/a:feed/a:id)", feed));

    }
View Full Code Here

        assertEquals(1.0d, xpath.numericValueOf("count(/a:feed)", feed));
        assertEquals("Atom-Powered Robots Run Amok", xpath.valueOf("/a:feed/a:entry/a:title", feed));
        assertEquals(1, xpath.selectNodes("/a:feed/a:entry", feed).size());
        assertTrue(xpath.selectSingleNode("/a:feed", feed) instanceof Feed);
        assertEquals(feed, xpath.selectSingleNode("..", feed.getTitleElement()));
        assertEquals(feed, xpath.selectSingleNode("ancestor::*", feed.getEntries().get(0)));
        assertEquals("The feed is is urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6", xpath
            .valueOf("concat('The feed is is ',/a:feed/a:id)", feed));

    }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.