More iaas adapter license header changes
[appc.git] / appc-adapters / appc-iaas-adapter / appc-iaas-adapter-bundle / src / test / java / org / onap / appc / adapter / iaas / provider / operation / impl / TestVmStatuschecker.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
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  *
21  * ============LICENSE_END=========================================================
22  */
23 package org.onap.appc.adapter.iaas.provider.operation.impl;
24
25 import org.junit.Assert;
26 import org.junit.Test;
27 import org.onap.appc.Constants;
28 import org.onap.appc.exceptions.APPCException;
29 import static org.mockito.Mockito.verify;
30 import static org.mockito.Mockito.atLeastOnce;
31 import com.att.cdp.zones.model.ModelObject;
32 import com.att.cdp.zones.model.Server;
33 import com.att.cdp.zones.model.Server.Status;
34
35 public class TestVmStatuschecker {
36
37     @Test
38     public void vmStatuscheckerSuspended() {
39         MockGenerator mg = new MockGenerator(Status.SUSPENDED);
40         Server server = mg.getServer();
41         VmStatuschecker rbs = new VmStatuschecker();
42         rbs.setProviderCache(mg.getProviderCacheMap());
43         ModelObject mo = null;
44         try {
45             mo = rbs.executeProviderOperation(mg.getParams(), mg.getSvcLogicContext());
46         } catch (APPCException e) {
47             Assert.fail("Exception during VmStatuschecker.executeProviderOperation");
48         }
49         verify(mg.getSvcLogicContext(), atLeastOnce()).setAttribute(Constants.STATUS_OF_VM,
50                 "suspended");
51     }
52
53     @Test
54     public void vmStatuscheckerRunning() {
55         MockGenerator mg = new MockGenerator(Status.RUNNING);
56         Server server = mg.getServer();
57         VmStatuschecker rbs = new VmStatuschecker();
58         rbs.setProviderCache(mg.getProviderCacheMap());
59         ModelObject mo = null;
60         try {
61             mo = rbs.executeProviderOperation(mg.getParams(), mg.getSvcLogicContext());
62         } catch (APPCException e) {
63             Assert.fail("Exception during VmStatuschecker.executeProviderOperation");
64         }
65         verify(mg.getSvcLogicContext(), atLeastOnce()).setAttribute(Constants.STATUS_OF_VM,
66                 "running");
67     }
68
69     @Test
70     public void vmStatuscheckerError() {
71         MockGenerator mg = new MockGenerator(Status.ERROR);
72         Server server = mg.getServer();
73         VmStatuschecker rbs = new VmStatuschecker();
74         rbs.setProviderCache(mg.getProviderCacheMap());
75         ModelObject mo = null;
76         try {
77             mo = rbs.executeProviderOperation(mg.getParams(), mg.getSvcLogicContext());
78         } catch (APPCException e) {
79             Assert.fail("Exception during VmStatuschecker.executeProviderOperation");
80         }
81         verify(mg.getSvcLogicContext(), atLeastOnce()).setAttribute(Constants.STATUS_OF_VM,
82                 "error");
83     }
84 }