You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2017/08/13 07:08:34 UTC

atlas git commit: ATLAS-2038 : Integration Tests for AtlasAuthentication and Authorization Filter

Repository: atlas
Updated Branches:
  refs/heads/master d86be7a3b -> cd49be50a


ATLAS-2038 : Integration Tests for AtlasAuthentication and Authorization Filter

Signed-off-by: Madhan Neethiraj <ma...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/atlas/repo
Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/cd49be50
Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/cd49be50
Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/cd49be50

Branch: refs/heads/master
Commit: cd49be50a2fc351f50165f6bd0573db561612699
Parents: d86be7a
Author: nixonrodrigues <ni...@apache.org>
Authored: Fri Aug 11 21:50:54 2017 +0530
Committer: Madhan Neethiraj <ma...@apache.org>
Committed: Sat Aug 12 22:41:03 2017 -0700

----------------------------------------------------------------------
 .../AtlasAuthenticationSimpleFilterIT.java      | 97 ++++++++++++++++++++
 .../AtlasAuthenticationSimpleFilterTest.java    | 89 ------------------
 2 files changed, 97 insertions(+), 89 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/atlas/blob/cd49be50/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterIT.java
----------------------------------------------------------------------
diff --git a/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterIT.java b/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterIT.java
new file mode 100644
index 0000000..25414fd
--- /dev/null
+++ b/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterIT.java
@@ -0,0 +1,97 @@
+/*
+ * 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.atlas.web.filters;
+
+import org.apache.atlas.web.security.BaseSecurityTest;
+import org.testng.Assert;
+import org.testng.annotations.Test;
+import sun.misc.BASE64Encoder;
+import javax.ws.rs.core.Response;
+import java.net.HttpURLConnection;
+import java.net.URL;
+
+import static org.testng.Assert.assertEquals;
+
+/**
+ *
+ */
+public class AtlasAuthenticationSimpleFilterIT extends BaseSecurityTest {
+    private BASE64Encoder enc = new sun.misc.BASE64Encoder();
+
+
+    @Test(enabled = true)
+    public void testSimpleLoginForValidUser() throws Exception {
+        URL url = new URL("http://localhost:31000/api/atlas/admin/session");
+        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
+        connection.setRequestMethod("GET");
+        String userpassword = "admin:admin"; // right password
+        String encodedAuthorization = enc.encode(userpassword.getBytes());
+        connection.setRequestProperty("Authorization", "Basic " +
+                encodedAuthorization);
+        connection.connect();
+
+        assertEquals(connection.getResponseCode(), Response.Status.OK.getStatusCode());
+    }
+
+
+    @Test(enabled = true)
+    public void testAccessforUnauthenticatedResource() throws Exception {
+
+        URL url = new URL("http://localhost:31000/api/atlas/admin/status");
+        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
+        connection.setRequestMethod("GET");
+        connection.connect();
+        assertEquals(connection.getResponseCode(), Response.Status.OK.getStatusCode());
+
+    }
+
+
+    @Test(enabled = true)
+    public void testSimpleLoginAndAuthorizationWithValidCrendentialsAndInvalidAccessToResource()
+            throws Exception {
+        try {
+            URL url = new URL("http://localhost:31000/api/atlas/v1/taxonomies");
+            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
+            connection.setRequestMethod("GET");
+            String userpassword = "rangertagsync:rangertagsync"; //right password with no policy for taxonomies api
+            String encodedAuthorization = enc.encode(userpassword.getBytes());
+            connection.setRequestProperty("Authorization", "Basic " +
+                    encodedAuthorization);
+            connection.connect();
+            assertEquals(connection.getResponseCode(), 403);
+
+        } catch (Exception e) {
+            Assert.fail("Failed with exception " + e.getMessage());
+        }
+    }
+
+
+    @Test(enabled = true)
+    public void testSimpleLoginWithInvalidCrendentials() throws Exception {
+
+        URL url = new URL("http://localhost:31000/api/atlas/admin/session");
+        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
+        connection.setRequestMethod("GET");
+        String userpassword = "admin:admin1"; //wrong password
+        String encodedAuthorization = enc.encode(userpassword.getBytes());
+        connection.setRequestProperty("Authorization", "Basic " +
+                encodedAuthorization);
+        connection.connect();
+        assertEquals(connection.getResponseCode(), 401);
+    }
+
+}

http://git-wip-us.apache.org/repos/asf/atlas/blob/cd49be50/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterTest.java
----------------------------------------------------------------------
diff --git a/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterTest.java b/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterTest.java
deleted file mode 100644
index 389eefe..0000000
--- a/webapp/src/test/java/org/apache/atlas/web/filters/AtlasAuthenticationSimpleFilterTest.java
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- * 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.atlas.web.filters;
-
-import org.apache.atlas.RequestContext;
-import org.apache.atlas.web.security.BaseSecurityTest;
-import org.apache.atlas.web.service.EmbeddedServer;
-import org.apache.commons.configuration.PropertiesConfiguration;
-import org.eclipse.jetty.server.Server;
-import org.testng.annotations.Test;
-
-import javax.ws.rs.core.Response;
-import java.io.IOException;
-import java.net.HttpURLConnection;
-import java.net.URL;
-
-import static org.testng.Assert.assertEquals;
-
-/**
- *
- */
-public class AtlasAuthenticationSimpleFilterTest extends BaseSecurityTest {
-    public static final String TESTUSER = "testuser";
-
-    class TestEmbeddedServer extends EmbeddedServer {
-        public TestEmbeddedServer(int port, String path) throws IOException {
-            super(port, path);
-        }
-
-        Server getServer() {
-            return server;
-        }
-    }
-
-    @Test(enabled = false)
-    public void testSimpleLogin() throws Exception {
-        String originalConf = System.getProperty("atlas.conf");
-        System.setProperty("atlas.conf", System.getProperty("user.dir"));
-        generateSimpleLoginConfiguration();
-
-        TestEmbeddedServer server = new TestEmbeddedServer(23001, "webapp/target/apache-atlas");
-
-        try {
-            startEmbeddedServer(server.getServer());
-
-            URL url = new URL("http://localhost:23001");
-            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
-            connection.setRequestMethod("GET");
-            connection.connect();
-            assertEquals(connection.getResponseCode(), Response.Status.BAD_REQUEST.getStatusCode());
-
-            url = new URL("http://localhost:23001/?user.name=testuser");
-            connection = (HttpURLConnection) url.openConnection();
-            connection.setRequestMethod("GET");
-            connection.connect();
-
-            assertEquals(connection.getResponseCode(), Response.Status.OK.getStatusCode());
-            assertEquals(RequestContext.get().getUser(), TESTUSER);
-        } finally {
-            server.getServer().stop();
-            if (originalConf != null) {
-                System.setProperty("atlas.conf", originalConf);
-            } else {
-                System.clearProperty("atlas.conf");
-            }
-        }
-    }
-
-    protected String generateSimpleLoginConfiguration() throws Exception {
-        PropertiesConfiguration config = new PropertiesConfiguration();
-        config.setProperty("atlas.http.authentication.enabled", "true");
-        config.setProperty("atlas.http.authentication.type", "simple");
-        return writeConfiguration(config);
-    }
-}