You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2008/05/05 11:22:19 UTC

svn commit: r653378 - /incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java

Author: bdelacretaz
Date: Mon May  5 02:22:19 2008
New Revision: 653378

URL: http://svn.apache.org/viewvc?rev=653378&view=rev
Log:
SLING-387 - ScriptSelectionTest added, testHtmlPostSelectors fails

Added:
    incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java   (with props)

Added: incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java?rev=653378&view=auto
==============================================================================
--- incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java (added)
+++ incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java Mon May  5 02:22:19 2008
@@ -0,0 +1,80 @@
+/*
+ * 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.sling.servlet.resolver.helper;
+
+import java.util.Collection;
+
+import org.apache.sling.servlet.resolver.mock.MockResource;
+import org.apache.sling.servlet.resolver.mock.MockSlingHttpServletRequest;
+
+/** Various tests that explain and demonstrate how scripts are 
+ *  selected
+ */
+public class ScriptSelectionTest extends LocationTestBase {
+    
+    /** A set of available scripts */
+    protected final String [] SET_A = {
+            "/apps/foo/bar/html.esp",
+            "/apps/foo/bar/POST.esp",
+            "/apps/foo/bar/print.esp",
+            "/apps/foo/bar/print/POST.esp"
+    };
+    
+    /** Given a list of available scripts and the request method, selectors 
+     *  and extension, check that the expected script is selected.
+     *  The resource type is foo:bar, set by LocationTestBase
+     */ 
+    protected void assertScript(String method, String selectors, String extension,
+            String [] scripts, String expectedScript) 
+    {
+        // Add given scripts to our mock resource resolver
+        for(String script : scripts) {
+            final MockResource r = new MockResource(resourceResolver, script, "nt:file");
+            resourceResolver.addResource(r);            
+        }
+        
+        // Create mock request and get scripts from LocationUtil
+        final MockSlingHttpServletRequest req = makeRequest(method, selectors, extension);
+        final LocationUtil u = LocationUtil.create(req);
+        final Collection<LocationResource> s = u.getScripts(req);
+        
+        // Verify that the expected script is the first in the list of candidates
+        assertTrue("Script must be found", s.iterator().hasNext());
+        final String scriptPath = s.iterator().next().getResource().getPath();
+        assertEquals("First script is the expected one", expectedScript, scriptPath);
+    }
+    
+    public void testHtmlGet() {
+        assertScript("GET", null, "html", SET_A, "/apps/foo/bar/html.esp");
+    }
+    
+    public void testHtmlGetSelectors() {
+        assertScript("GET", "print.a4", "html", SET_A, "/apps/foo/bar/print.esp");
+    }
+    
+    public void testHtmlPost() {
+        assertScript("POST", null, "html", SET_A, "/apps/foo/bar/POST.esp");
+    }
+    
+    /** CURRENTLY FAILS, SLING-387
+    public void testHtmlPostSelectors() {
+        assertScript("POST", "print.a4", "html", SET_A, "/apps/foo/bar/print/POST.esp");
+    }
+    */
+}

Propchange: incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/sling/trunk/sling/servlet-resolver/src/test/java/org/apache/sling/servlet/resolver/helper/ScriptSelectionTest.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision Rev URL