Fix the java code style issue.
[aai/esr-server.git] / esr-mgr / src / test / java / org / onap / aai / esr / entity / rest / VimAuthInfoTest.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.rest;
17
18 import static org.junit.Assert.assertEquals;
19 import org.junit.Test;
20
21 public class VimAuthInfoTest {
22
23     @Test
24     public void getterAndSetter4cloudDomain() {
25         final String cloudDomain = "chengdu";
26         VimAuthInfo vimAuthInfo = new VimAuthInfo();
27         vimAuthInfo.setCloudDomain(cloudDomain);
28         assertEquals(vimAuthInfo.getCloudDomain(), cloudDomain);
29     }
30
31     @Test
32     public void getterAndSetter4userName() {
33         final String userName = "nancy";
34         VimAuthInfo vimAuthInfo = new VimAuthInfo();
35         vimAuthInfo.setUserName(userName);
36         assertEquals(vimAuthInfo.getUserName(), userName);
37     }
38
39     @Test
40     public void getterAndSetter4password() {
41         final String password = "dasffa";
42         VimAuthInfo vimAuthInfo = new VimAuthInfo();
43         vimAuthInfo.setPassword(password);
44         assertEquals(vimAuthInfo.getPassword(), password);
45     }
46
47     @Test
48     public void getterAndSetter4authUrl() {
49         final String authUrl = "http://127.0.0.1:5000/auth/";
50         VimAuthInfo vimAuthInfo = new VimAuthInfo();
51         vimAuthInfo.setAuthUrl(authUrl);
52         assertEquals(vimAuthInfo.getAuthUrl(), authUrl);
53     }
54
55     @Test
56     public void getterAndSetter4sslCacert() {
57         final String sslCacert = "fdfafda";
58         VimAuthInfo vimAuthInfo = new VimAuthInfo();
59         vimAuthInfo.setSslCacert(sslCacert);
60         assertEquals(vimAuthInfo.getSslCacert(), sslCacert);
61     }
62
63     @Test
64     public void getterAndSetter4sslInsecure() {
65         final Boolean sslInsecure = true;
66         VimAuthInfo vimAuthInfo = new VimAuthInfo();
67         vimAuthInfo.setSslInsecure(sslInsecure);
68         assertEquals(vimAuthInfo.getSslInsecure(), sslInsecure);
69     }
70 }