Volume_ - Junit Test case added
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / test / java / org / onap / appc / adapter / openstack / heat / model / TestVolume_.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : APPC
4 * ================================================================================
5 * Copyright 2018 TechMahindra
6 *=================================================================================
7 * Modifications Copyright (c) 2019 IBM
8 * ================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *     http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 */
22 package org.onap.appc.adapter.openstack.heat.model;
23
24 import static org.junit.Assert.*;
25
26 import org.junit.Before;
27 import org.junit.Test;
28
29 public class TestVolume_ {
30     private Volume_ volume_;
31     private Metadata metadata;
32     private ResourceData resourceData;
33
34     @Before
35     public void setUp() {
36         volume_ = new Volume_();
37         metadata = new Metadata();
38         resourceData = new ResourceData();
39     }
40
41     @Test
42     public void testGetStatus() {
43         volume_.setStatus("Success");
44         assertEquals("Success",volume_.getStatus());
45     }
46
47     @Test
48     public void testGetName() {
49         volume_.setName("XYZ");
50         assertNotNull(volume_.getName());
51         assertEquals("XYZ",volume_.getName());
52     }
53
54     @Test
55     public void testGetResourceId() {
56         volume_.setResourceId("333");
57         assertNotNull(volume_.getResourceId());
58         assertEquals("333",volume_.getResourceId());
59     }
60
61     @Test
62     public void testGetAction() {
63         volume_.setAction("action");
64         assertNotNull(volume_.getAction());
65         assertEquals("action",volume_.getAction());
66     }
67
68     @Test
69     public void testGetType() {
70         volume_.setType("A");
71         assertEquals("A",volume_.getType());
72     }
73
74     @Test
75     public void testToString_ReturnNonEmptyString() {
76         assertNotEquals("",volume_.toString());
77         assertNotEquals(null,volume_.toString());
78     }
79
80     @Test
81     public void testGetResourceData() {
82         volume_.setResourceData(resourceData);
83         assertSame(resourceData,volume_.getResourceData());
84     }
85
86     @Test
87     public void testGetMetadata() {
88         volume_.setMetadata(metadata);
89         assertSame(metadata,volume_.getMetadata());
90     }
91 }