2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * Copyright (C) 2022 Samsung Electronics.
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END=========================================================
22 package org.onap.so.cloud.authentication;
24 import static com.shazam.shazamcrest.matcher.Matchers.sameBeanAs;
25 import static org.junit.Assert.assertThat;
26 import static org.junit.Assert.assertEquals;
27 import java.io.IOException;
28 import java.nio.file.Files;
29 import java.nio.file.Paths;
30 import org.junit.Test;
31 import org.onap.so.cloud.authentication.models.RackspaceAuthentication;
32 import org.onap.so.db.catalog.beans.AuthenticationType;
33 import org.onap.so.db.catalog.beans.CloudIdentity;
34 import org.onap.so.utils.CryptoUtils;
35 import com.fasterxml.jackson.databind.JsonMappingException;
36 import com.fasterxml.jackson.databind.ObjectMapper;
37 import com.woorea.openstack.keystone.model.Authentication;
38 import com.woorea.openstack.keystone.model.authentication.UsernamePassword;
41 * A few JUnit tests to evaluate the new factory that manages authentication types and their associated wrapper classes.
42 * Here it is assumed that core types only are tested.
45 public class AuthenticationMethodTest {
47 private AuthenticationMethodFactory authenticationMethodFactory = new AuthenticationMethodFactory();
52 public AuthenticationMethodTest() {
53 // TODO Auto-generated constructor stub
57 public void testCustomRackspaceAuth() {
58 CloudIdentity ci = new CloudIdentity();
59 ci.setIdentityAuthenticationType(AuthenticationType.RACKSPACE_APIKEY);
60 ci.setMsoPass("FD205490A48D48475607C36B9AD902BF");
63 Authentication auth = authenticationMethodFactory.getAuthenticationFor(ci);
64 assertEquals(RackspaceAuthentication.class, auth.getClass());
69 public void testCoreUsernamePasswordAuth() {
70 CloudIdentity ci = new CloudIdentity();
71 ci.setIdentityAuthenticationType(AuthenticationType.USERNAME_PASSWORD);
72 ci.setMsoPass("FD205490A48D48475607C36B9AD902BF");
73 ci.setMsoId("someuser");
75 Authentication auth = authenticationMethodFactory.getAuthenticationFor(ci);
76 assertEquals(UsernamePassword.class, auth.getClass());
81 public void testCustomRackspaceAuthFromCloudIdentity() {
82 CloudIdentity ci = new CloudIdentity();
83 ci.setIdentityAuthenticationType(AuthenticationType.RACKSPACE_APIKEY);
84 ci.setMsoPass("FD205490A48D48475607C36B9AD902BF");
87 Authentication auth = authenticationMethodFactory.getAuthenticationFor(ci);
88 assertEquals(RackspaceAuthentication.class, auth.getClass());
92 public void testCoreUsernamePasswordAuthFromCloudIdentity() {
93 CloudIdentity ci = new CloudIdentity();
94 ci.setIdentityAuthenticationType(AuthenticationType.USERNAME_PASSWORD);
95 ci.setMsoPass("FD205490A48D48475607C36B9AD902BF");
96 ci.setMsoId("someuser");
98 Authentication auth = authenticationMethodFactory.getAuthenticationFor(ci);
99 assertEquals(UsernamePassword.class, auth.getClass());
104 public void getAuthenticationForV3Test() throws JsonMappingException, IOException {
106 CloudIdentity identity = new CloudIdentity();
107 identity.setMsoId("my-username");
108 identity.setMsoPass(CryptoUtils.encryptCloudConfigPassword("my-password"));
109 identity.setProjectDomainName("test-domain");
110 identity.setUserDomainName("user-domain");
111 ObjectMapper mapper = new ObjectMapper();
112 com.woorea.openstack.keystone.v3.model.Authentication expected = mapper.readValue(
113 new String(Files.readAllBytes(Paths.get("src/test/resources/__files/KeystoneV3Payload.json"))),
114 com.woorea.openstack.keystone.v3.model.Authentication.class);
115 com.woorea.openstack.keystone.v3.model.Authentication actual =
116 authenticationMethodFactory.getAuthenticationForV3(identity, "project-x");
118 assertThat(actual, sameBeanAs(expected));