You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by mm...@apache.org on 2018/02/11 17:09:28 UTC

[incubator-pulsar] branch master updated: Remove org.apache.pulsar.proxy.authentication.AuthenticationServiceTest (#1220)

This is an automated email from the ASF dual-hosted git repository.

mmerli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 3bfc505  Remove org.apache.pulsar.proxy.authentication.AuthenticationServiceTest (#1220)
3bfc505 is described below

commit 3bfc505b5fe430d69750b65e3e911cdbd32f3aa4
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Mon Feb 12 02:09:26 2018 +0900

    Remove org.apache.pulsar.proxy.authentication.AuthenticationServiceTest (#1220)
    
    org.apache.pulsar.broker.auth.AuthenticationServiceTest tests the same thing.
---
 .../broker/auth/AuthenticationServiceTest.java     |  6 +-
 .../authentication/AuthenticationServiceTest.java  | 91 ----------------------
 2 files changed, 4 insertions(+), 93 deletions(-)

diff --git a/pulsar-broker/src/test/java/org/apache/pulsar/broker/auth/AuthenticationServiceTest.java b/pulsar-broker/src/test/java/org/apache/pulsar/broker/auth/AuthenticationServiceTest.java
index 343e6ad..6600566 100644
--- a/pulsar-broker/src/test/java/org/apache/pulsar/broker/auth/AuthenticationServiceTest.java
+++ b/pulsar-broker/src/test/java/org/apache/pulsar/broker/auth/AuthenticationServiceTest.java
@@ -41,7 +41,7 @@ public class AuthenticationServiceTest {
 
     private static final String s_authentication_success = "authenticated";
 
-    @Test
+    @Test(timeOut = 10000)
     public void testAuthentication() throws Exception {
         ServiceConfiguration config = new ServiceConfiguration();
         Set<String> providersClassNames = Sets.newHashSet(MockAuthenticationProvider.class.getName());
@@ -50,9 +50,10 @@ public class AuthenticationServiceTest {
         AuthenticationService service = new AuthenticationService(config);
         String result = service.authenticate(null, "auth");
         assertEquals(result, s_authentication_success);
+        service.close();
     }
 
-    @Test
+    @Test(timeOut = 10000)
     public void testAuthenticationHttp() throws Exception {
         ServiceConfiguration config = new ServiceConfiguration();
         Set<String> providersClassNames = Sets.newHashSet(MockAuthenticationProvider.class.getName());
@@ -65,6 +66,7 @@ public class AuthenticationServiceTest {
         when(request.getHeader(anyString())).thenReturn("data");
         String result = service.authenticateHttpRequest(request);
         assertEquals(result, s_authentication_success);
+        service.close();
     }
 
     public static class MockAuthenticationProvider implements AuthenticationProvider {
diff --git a/pulsar-websocket/src/test/java/org/apache/pulsar/proxy/authentication/AuthenticationServiceTest.java b/pulsar-websocket/src/test/java/org/apache/pulsar/proxy/authentication/AuthenticationServiceTest.java
deleted file mode 100644
index 8985c96..0000000
--- a/pulsar-websocket/src/test/java/org/apache/pulsar/proxy/authentication/AuthenticationServiceTest.java
+++ /dev/null
@@ -1,91 +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.pulsar.proxy.authentication;
-
-import static org.mockito.Matchers.anyString;
-import static org.mockito.Mockito.mock;
-import static org.mockito.Mockito.when;
-import static org.testng.Assert.assertEquals;
-
-import java.io.IOException;
-import java.util.Set;
-
-import javax.naming.AuthenticationException;
-import javax.servlet.http.HttpServletRequest;
-
-import org.apache.pulsar.broker.ServiceConfiguration;
-import org.apache.pulsar.broker.authentication.AuthenticationDataSource;
-import org.apache.pulsar.broker.authentication.AuthenticationProvider;
-import org.apache.pulsar.broker.authentication.AuthenticationService;
-import org.testng.annotations.Test;
-
-import com.google.common.collect.Sets;
-
-public class AuthenticationServiceTest {
-    private static final String s_authentication_success = "authenticated";
-
-    @Test(timeOut = 10000)
-    public void testAuthentication() throws Exception {
-        ServiceConfiguration config = new ServiceConfiguration();
-        Set<String> providersClassNames = Sets.newHashSet(MockAuthenticationProvider.class.getName());
-        config.setAuthenticationProviders(providersClassNames);
-        config.setAuthenticationEnabled(true);
-        AuthenticationService service = new AuthenticationService(config);
-        String result = service.authenticate(null, "auth");
-        assertEquals(result, s_authentication_success);
-        service.close();
-    }
-
-    @Test(timeOut = 10000)
-    public void testAuthenticationHttp() throws Exception {
-        ServiceConfiguration config = new ServiceConfiguration();
-        Set<String> providersClassNames = Sets.newHashSet(MockAuthenticationProvider.class.getName());
-        config.setAuthenticationProviders(providersClassNames);
-        config.setAuthenticationEnabled(true);
-        AuthenticationService service = new AuthenticationService(config);
-        HttpServletRequest request = mock(HttpServletRequest.class);
-        when(request.getRemoteAddr()).thenReturn("192.168.1.1");
-        when(request.getRemotePort()).thenReturn(8080);
-        when(request.getHeader(anyString())).thenReturn("data");
-        String result = service.authenticateHttpRequest(request);
-        assertEquals(result, s_authentication_success);
-        service.close();
-    }
-
-    public static class MockAuthenticationProvider implements AuthenticationProvider {
-
-        @Override
-        public void close() throws IOException {
-        }
-
-        @Override
-        public void initialize(ServiceConfiguration config) throws IOException {
-        }
-
-        @Override
-        public String getAuthMethodName() {
-            return "auth";
-        }
-
-        @Override
-        public String authenticate(AuthenticationDataSource authData) throws AuthenticationException {
-            return s_authentication_success;
-        }
-    }
-}

-- 
To stop receiving notification emails like this one, please contact
mmerli@apache.org.