public inbox for mauve-patches@sourceware.org
 help / color / mirror / Atom feed
From: Mario Torre <neugens@limasoftware.net>
To: Stephane Mikaty <stephane@mikaty.net>
Cc: mauve-patches@sourceware.org
Subject: FIY: XPath commited
Date: Wed, 30 Aug 2006 00:03:00 -0000	[thread overview]
Message-ID: <1156896522.2772.13.camel@localhost.localdomain> (raw)
In-Reply-To: <1156884944.29647.10.camel@localhost.localdomain>


[-- Attachment #1.1: Type: text/plain, Size: 580 bytes --]

Il giorno mar, 29/08/2006 alle 22.55 +0200, Stephane Mikaty ha scritto:
> Thanks for the feedback,
> 
> So the test is basically OK.
> What's the next step to get it committed?

I have committed the attached patch for Stephane:

2006-08-10  Stephane Mikaty  <stephane@mikaty.net>
	
	* gnu/testlet/javax/xml/xpath/XPath.java: New test.

Ciao,
Mario
-- 
Lima Software, SO.PR.IND. s.r.l.
http://www.limasoftware.net/
pgp key: http://subkeys.pgp.net/

Please, support open standards:
http://opendocumentfellowship.org/petition/
http://www.nosoftwarepatents.com/

[-- Attachment #1.2: xpath.patch --]
[-- Type: text/x-patch, Size: 2835 bytes --]

Index: gnu/testlet/javax/xml/xpath/XPath.java
===================================================================
RCS file: gnu/testlet/javax/xml/xpath/XPath.java
diff -N gnu/testlet/javax/xml/xpath/XPath.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ gnu/testlet/javax/xml/xpath/XPath.java	1 Jan 1970 00:00:00 -0000
@@ -0,0 +1,70 @@
+// Tags: JDK1.5
+//
+// Copyright (C) 2006 Stephane Mikay <stephane@mikaty.net>
+//
+// This file is part of Mauve.
+//
+// Mauve is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2, or (at your option)
+// any later version.
+//
+// Mauve is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Mauve; see the file COPYING.  If not, write to the
+// Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+// 02110-1301 USA.
+
+package gnu.testlet.javax.xml.xpath;
+
+import java.io.StringReader;
+
+import gnu.testlet.TestHarness;
+import gnu.testlet.Testlet;
+
+import javax.xml.namespace.QName;
+import javax.xml.xpath.XPathConstants;
+import javax.xml.xpath.XPathExpressionException;
+import javax.xml.xpath.XPathFactory;
+
+import org.w3c.dom.NodeList;
+import org.xml.sax.InputSource;
+
+/**
+ * JSR 206 (JAXP 1.3) XPath Tests
+ */
+public class XPath implements Testlet {
+
+    public void test( TestHarness harness ) {
+        try {
+            // According to the JAXP 1.3 spec Chapter 13 Section 2.2.4
+            // The XPath 1.0 NodeSet data type Maps to Java org.w3c.dom.NodeList
+            harness.checkPoint( "jaxp-1.3-ch13s2.2.4" );
+            harness.check( nodeset( "//*", "<o/>" ) instanceof NodeList );
+        } catch ( XPathExpressionException e ) {
+            harness.debug( e );
+            harness.check( false );
+        }
+    }
+
+    private Object nodeset( String expr, String document )
+            throws XPathExpressionException {
+        return eval( expr, document, XPathConstants.NODESET );
+    }
+
+    private Object eval( String expr, String document, QName returnType )
+            throws XPathExpressionException {
+        final XPathFactory factory = XPathFactory.newInstance();
+        final javax.xml.xpath.XPath xpath = factory.newXPath();
+        return xpath.evaluate( expr, source( document ), returnType );
+    }
+
+    private InputSource source( String xml ) {
+        return new InputSource( new StringReader( xml ) );
+    }
+
+}

[-- Attachment #2: Questa è una parte del messaggio firmata digitalmente --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

      reply	other threads:[~2006-08-30  0:03 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-25  6:17 XPath test still not commited? Stephane Mikaty
2006-08-25  8:51 ` Mark Wielaard
2006-08-25 12:02   ` Chris Burdess
2006-08-25 12:19     ` Mario Torre
2006-08-29 20:55       ` Stephane Mikaty
2006-08-30  0:03         ` Mario Torre [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1156896522.2772.13.camel@localhost.localdomain \
    --to=neugens@limasoftware.net \
    --cc=mauve-patches@sourceware.org \
    --cc=stephane@mikaty.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).