Update gvnfm-driver .gitreview file
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / test / java / org / openo / nfvo / jujuvnfmadapter / common / servicetoken / VNFAuthConfigInfoTest.java
1 /*
2  * Copyright 2016 Huawei Technologies Co., Ltd.
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
17 package org.openo.nfvo.jujuvnfmadapter.common.servicetoken;
18
19 import static org.junit.Assert.assertEquals;
20
21 import org.junit.Test;
22 import org.openo.nfvo.jujuvnfmadapter.common.servicetoken.VNFAuthConfigInfo;
23
24 /**
25  * <br/>
26  * <p>
27  * </p>
28  * 
29  * @author
30  * @version NFVO 0.5 Aug 10, 2016
31  */
32 public class VNFAuthConfigInfoTest {
33
34     @Test
35     public void testGetDomain() {
36         VNFAuthConfigInfo authConfig = VNFAuthConfigInfo.getInstance();
37         authConfig.setDomain("vnfDomain");
38         assertEquals("vnfDomain", authConfig.getDomain());
39     }
40
41     @Test
42     public void testGetResourceDomain() {
43         VNFAuthConfigInfo authConfig = VNFAuthConfigInfo.getInstance();
44         authConfig.setResourceDomain("vnfResourceDomain");
45         assertEquals("vnfResourceDomain", authConfig.getResourceDomain());
46     }
47
48     @Test
49     public void testGetDefaultDomain() {
50         VNFAuthConfigInfo authConfig = VNFAuthConfigInfo.getInstance();
51         authConfig.setDefaultDomain("defaultDomain");
52         assertEquals("defaultDomain", authConfig.getDefaultDomain());
53     }
54
55     @Test
56     public void testGetUserName() {
57         VNFAuthConfigInfo authConfig = VNFAuthConfigInfo.getInstance();
58         authConfig.setUserName("vnfuserName");
59         assertEquals("vnfuserName", authConfig.getUserName());
60     }
61
62     @Test
63     public void testGetEncryptedPW() {
64         VNFAuthConfigInfo authConfig = VNFAuthConfigInfo.getInstance();
65         authConfig.setEncryptedPW("vnfencryptedPW");
66         assertEquals("vnfencryptedPW", authConfig.getEncryptedPW());
67     }
68 }