2 * Copyright 2017 ZTE Corporation.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onap.aai.esr.entity.rest;
18 import static org.junit.Assert.assertEquals;
19 import org.junit.Test;
21 public class VimAuthInfoTest {
24 public void getterAndSetter4cloudDomain() {
25 final String cloudDomain = "chengdu";
26 VimAuthInfo vimAuthInfo = new VimAuthInfo();
27 vimAuthInfo.setCloudDomain(cloudDomain);
28 assertEquals(vimAuthInfo.getCloudDomain(), cloudDomain);
32 public void getterAndSetter4userName() {
33 final String userName = "nancy";
34 VimAuthInfo vimAuthInfo = new VimAuthInfo();
35 vimAuthInfo.setUserName(userName);
36 assertEquals(vimAuthInfo.getUserName(), userName);
40 public void getterAndSetter4password() {
41 final String password = "dasffa";
42 VimAuthInfo vimAuthInfo = new VimAuthInfo();
43 vimAuthInfo.setPassword(password);
44 assertEquals(vimAuthInfo.getPassword(), password);
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);
56 public void getterAndSetter4sslCacert() {
57 final String sslCacert = "fdfafda";
58 VimAuthInfo vimAuthInfo = new VimAuthInfo();
59 vimAuthInfo.setSslCacert(sslCacert);
60 assertEquals(vimAuthInfo.getSslCacert(), sslCacert);
64 public void getterAndSetter4sslInsecure() {
65 final Boolean sslInsecure = true;
66 VimAuthInfo vimAuthInfo = new VimAuthInfo();
67 vimAuthInfo.setSslInsecure(sslInsecure);
68 assertEquals(vimAuthInfo.getSslInsecure(), sslInsecure);