Third part of onap rename
[appc.git] / appc-lifecycle-management / state-machine-lib / src / test / java / org / onap / appc / statemachine / objects / StateMachineResponseTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.statemachine.objects;
26
27 import org.junit.Assert;
28 import org.junit.Test;
29 import org.mockito.internal.util.reflection.Whitebox;
30
31 public class StateMachineResponseTest {
32     private StateMachineResponse stateMachineResponse = new StateMachineResponse();
33
34     @Test
35     public void testConstructor() {
36         StateMachineResponse stateMachineResponse = new StateMachineResponse();
37         Assert.assertTrue("Do not: no change to nextState",
38                 Whitebox.getInternalState(stateMachineResponse, "nextState") == null);
39         Assert.assertTrue("Do not: no change to response",
40                 Whitebox.getInternalState(stateMachineResponse, "response") == null);
41     }
42
43     @Test
44     public void testGetAndSetNextState() throws Exception {
45         stateMachineResponse.setNextState(null);
46         Assert.assertTrue("internal nextState should be null",
47                 Whitebox.getInternalState(stateMachineResponse, "nextState") == null);
48         Assert.assertTrue("should return null", stateMachineResponse.getNextState() == null);
49
50         State state = new State("TestingState");
51         stateMachineResponse.setNextState(state);
52         Assert.assertEquals("internal nextState should be the state",
53                 state, Whitebox.getInternalState(stateMachineResponse, "nextState"));
54         Assert.assertEquals("should return the state", state, stateMachineResponse.getNextState());
55     }
56
57     @Test
58     public void testGetAndSetResponse() throws Exception {
59         stateMachineResponse.setResponse(null);
60         Assert.assertTrue("internal response should be null",
61                 Whitebox.getInternalState(stateMachineResponse, "response") == null);
62         Assert.assertTrue("should return null", stateMachineResponse.getResponse() == null);
63
64         Response response = Response.NO_STATE_CHANGE;
65         stateMachineResponse.setResponse(response);
66         Assert.assertEquals("internal response should be the response",
67                 response, Whitebox.getInternalState(stateMachineResponse, "response"));
68         Assert.assertEquals("should return the response", response, stateMachineResponse.getResponse());
69     }
70
71 }