Merge "Reorder modifiers"
[so.git] / adapters / mso-adapter-utils / src / test / java / org / openecomp / mso / cloud / authentication / wrappers / UsernamePasswordWrapperTest.java
1 /*
2  * ============LICENSE_START==========================================
3  * ===================================================================
4  * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
5  * ===================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  * ============LICENSE_END============================================
18  *
19  * ECOMP and OpenECOMP are trademarks
20  * and service marks of AT&T Intellectual Property.
21  *
22  */
23
24 package org.openecomp.mso.cloud.authentication.wrappers;
25
26 import static org.assertj.core.api.Assertions.assertThat;
27 import static org.assertj.core.api.Assertions.assertThatThrownBy;
28
29 import com.woorea.openstack.keystone.model.Authentication;
30 import com.woorea.openstack.keystone.model.authentication.UsernamePassword;
31 import org.junit.Test;
32
33 public class UsernamePasswordWrapperTest {
34
35     @Test
36     public void getAuthenticationSuccessful() {
37         UsernamePasswordWrapper testedObject = new UsernamePasswordWrapper();
38         Authentication authentication = testedObject.getAuthentication(WrapperTestUtility.createCloudIdentity());
39
40         assertThat(authentication).isInstanceOf(UsernamePassword.class);
41         UsernamePassword usernamePassword = (UsernamePassword) authentication;
42         assertThat(usernamePassword.getPasswordCredentials().getUsername())
43                 .isEqualTo(WrapperTestUtility.CLOUD_IDENTITY_MSO_ID);
44         assertThat(usernamePassword.getPasswordCredentials().getPassword())
45                 .isEqualTo(WrapperTestUtility.CLOUD_IDENTITY_MSO_PASS);
46     }
47
48     @Test
49     public void getAuthenticationThrowsException() {
50         assertThatThrownBy(() -> new UsernamePasswordWrapper().getAuthentication(null)).
51                 isInstanceOf(IllegalArgumentException.class).
52                 hasMessage(WrapperTestUtility.EXCEPTION_MESSAGE);
53     }
54
55 }