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 2013/09/13 15:49:38 UTC

svn commit: r1522929 - /sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/login/AnonymousAccessTest.java

Author: bdelacretaz
Date: Fri Sep 13 13:49:37 2013
New Revision: 1522929

URL: http://svn.apache.org/r1522929
Log:
SLING-2788 - AnonymousAccessTest added

Added:
    sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/login/AnonymousAccessTest.java

Added: sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/login/AnonymousAccessTest.java
URL: http://svn.apache.org/viewvc/sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/login/AnonymousAccessTest.java?rev=1522929&view=auto
==============================================================================
--- sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/login/AnonymousAccessTest.java (added)
+++ sling/trunk/launchpad/integration-tests/src/main/java/org/apache/sling/launchpad/webapp/integrationtest/login/AnonymousAccessTest.java Fri Sep 13 13:49:37 2013
@@ -0,0 +1,72 @@
+/*
+ * 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.launchpad.webapp.integrationtest.login;
+
+import java.net.URL;
+
+import org.apache.commons.httpclient.Credentials;
+import org.apache.commons.httpclient.UsernamePasswordCredentials;
+import org.apache.commons.httpclient.auth.AuthScope;
+import org.apache.sling.commons.testing.integration.HttpTestBase;
+import org.apache.sling.commons.testing.integration.NameValuePairList;
+import org.apache.sling.servlets.post.SlingPostConstants;
+
+/** Verify that anonymous has read access via HTTP */
+public class AnonymousAccessTest extends HttpTestBase {
+
+    private String displayUrl;
+    private String testText;
+    
+    @Override
+    public void setUp() throws Exception {
+        super.setUp();
+        
+        // create test node under a unique path
+        final String url = HTTP_BASE_URL + "/" + getClass().getSimpleName() + "/" + System.currentTimeMillis() + SlingPostConstants.DEFAULT_CREATE_SUFFIX;
+        testText = "Test text " + System.currentTimeMillis();
+        final NameValuePairList list = new NameValuePairList();
+        list.add("text", testText);
+        displayUrl = testClient.createNode(url, list, null, true);
+    }
+    
+    private void assertContent() throws Exception {
+        final String content = getContent(displayUrl + ".txt", CONTENT_TYPE_PLAIN);
+        assertTrue(content.contains(testText));
+    }
+    
+    public void testAnonymousContent() throws Exception {
+        // disable credentials -> anonymous session
+        final URL url = new URL(HTTP_BASE_URL);
+        final AuthScope scope = new AuthScope(url.getHost(), url.getPort(), AuthScope.ANY_REALM);
+        httpClient.getParams().setAuthenticationPreemptive(false);
+        httpClient.getState().setCredentials(scope, null);
+        
+        try {
+            assertContent();
+        } finally {
+            // re-enable credentials -> admin session
+            httpClient.getParams().setAuthenticationPreemptive(true);
+            Credentials defaultcreds = new UsernamePasswordCredentials("admin", "admin");
+            httpClient.getState().setCredentials(scope, defaultcreds);
+        }
+    }
+    
+    public void testAdminContent() throws Exception {
+        // HTTP test client has credentials by default
+        assertContent();
+    }
+}