Junit for AuthProvider 60/75860/1
authorDriptaroop Das <driptaroop.das@in.ibm.com>
Wed, 16 Jan 2019 10:10:39 +0000 (15:40 +0530)
committerDriptaroop Das <driptaroop.das@in.ibm.com>
Wed, 16 Jan 2019 10:12:01 +0000 (15:42 +0530)
Junit for AuthProvider

Issue-ID: OPTFRA-413
Change-Id: Iaa6f321286e8160a3fcbbac947db8e871fa5cc35
Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
cmso-service/src/test/java/org/onap/optf/cmso/AuthProviderTest.java [new file with mode: 0644]

diff --git a/cmso-service/src/test/java/org/onap/optf/cmso/AuthProviderTest.java b/cmso-service/src/test/java/org/onap/optf/cmso/AuthProviderTest.java
new file mode 100644 (file)
index 0000000..c8613f8
--- /dev/null
@@ -0,0 +1,67 @@
+/*
+ * Copyright © 2019 IBM Intellectual Property.
+ *
+ * Licensed 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.
+ *
+ *
+ * Unless otherwise specified, all documentation contained herein is licensed
+ * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
+ * you may not use this documentation except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *         https://creativecommons.org/licenses/by/4.0/
+ *
+ * Unless required by applicable law or agreed to in writing, documentation
+ * 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.onap.optf.cmso;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mockito;
+import org.mockito.runners.MockitoJUnitRunner;
+import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
+import org.springframework.security.core.Authentication;
+
+import static org.junit.Assert.*;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+@RunWith(MockitoJUnitRunner.class)
+public class AuthProviderTest {
+
+    @Test
+    public void authenticate() {
+        String principal = "testName";
+        String credential = "testPassword";
+        Authentication authentication = mock(Authentication.class);
+        when(authentication.getName()).thenReturn(principal);
+        when(authentication.getCredentials()).thenReturn(credential);
+        AuthProvider authProvider = new AuthProvider();
+        Authentication auth = authProvider.authenticate(authentication);
+        assertEquals(principal, auth.getPrincipal());
+        assertEquals(credential, auth.getCredentials());
+    }
+
+    @Test
+    public void supports() {
+        AuthProvider authProvider = new AuthProvider();
+        assertTrue(authProvider.supports(UsernamePasswordAuthenticationToken.class));
+        assertFalse(authProvider.supports(Authentication.class));
+    }
+}
\ No newline at end of file