You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/02/06 14:37:37 UTC

svn commit: r1067664 - /commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java

Author: simonetripodi
Date: Sun Feb  6 13:37:36 2011
New Revision: 1067664

URL: http://svn.apache.org/viewvc?rev=1067664&view=rev
Log:
first checkin of URLTestCase, an adapted version of the proper on /trunk
old testcases continue pass!

Added:
    commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java   (with props)

Added: commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java?rev=1067664&view=auto
==============================================================================
--- commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java (added)
+++ commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java Sun Feb  6 13:37:36 2011
@@ -0,0 +1,76 @@
+/* $Id$
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.commons.digester3;
+
+import static org.junit.Assert.assertNotNull;
+
+import java.net.URL;
+
+import org.junit.Test;
+
+/**
+ * <p>Unit tests that exercise the new (in 1.8) methods for passing in
+ * <code>URL</code> arguments instead of strings.</p>
+ */
+public class URLTestCase {
+
+    /**
+     * <p>Public identifier of the Digester Rules DTD.</p>
+     */
+    private static final String DIGESTER_RULES_PUBLIC_ID =
+            "-//Jakarta Apache //DTD digester-rules XML V1.0//EN";
+
+    /**
+     * <p>System identifier of the Digester Rules DTD.</p>
+     */
+    private static final String DIGESTER_RULES_SYSTEM_ID =
+            "/org/apache/commons/digester3/xmlrules/digester-rules.dtd";
+
+    /**
+     * <p>System identifier for the Digester Rules file that we will parse.</p>
+     */
+    private static final String TEST_INPUT_SYSTEM_ID =
+            "/org/apache/commons/digester3/xmlrules/test-call-param-rules.xml";
+
+    // Test parsing a resource, using a registered DTD, both passed with URLs
+    @Test
+    public void testResource() throws Exception {
+        // Register the Digester Rules DTD
+        URL dtd = URLTestCase.class.getResource(DIGESTER_RULES_SYSTEM_ID);
+        assertNotNull(dtd);
+
+        Digester digester = DigesterLoader.newLoader(new RulesModule() {
+
+            public void configure(RulesBinder rulesBinder) {
+                // do nothing, just test purposes
+            }
+
+        })
+        .register(DIGESTER_RULES_PUBLIC_ID, dtd)
+        .newDigester();
+
+        // Parse one of the existing test resources twice with
+        // the same Digester instance
+        URL xml = URLTestCase.class.getResource(TEST_INPUT_SYSTEM_ID);
+        assertNotNull(xml);
+
+        digester.parse(xml);
+        digester.parse(xml);
+    }
+
+}

Propchange: commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: commons/sandbox/digester3/trunk/src/test/java/org/apache/commons/digester3/URLTestCase.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain