Changed to unmaintained
[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-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
24 package org.onap.appc.statemachine.objects;
25
26 import org.junit.Assert;
27 import org.junit.Test;
28 import org.mockito.internal.util.reflection.Whitebox;
29
30 public class StateMachineResponseTest {
31     private StateMachineResponse stateMachineResponse = new StateMachineResponse();
32
33     @Test
34     public void testConstructor() {
35         StateMachineResponse stateMachineResponse = new StateMachineResponse();
36         Assert.assertTrue("Do not: no change to nextState",
37                 Whitebox.getInternalState(stateMachineResponse, "nextState") == null);
38         Assert.assertTrue("Do not: no change to response",
39                 Whitebox.getInternalState(stateMachineResponse, "response") == null);
40     }
41
42     @Test
43     public void testGetAndSetNextState() throws Exception {
44         stateMachineResponse.setNextState(null);
45         Assert.assertTrue("internal nextState should be null",
46                 Whitebox.getInternalState(stateMachineResponse, "nextState") == null);
47         Assert.assertTrue("should return null", stateMachineResponse.getNextState() == null);
48
49         State state = new State("TestingState");
50         stateMachineResponse.setNextState(state);
51         Assert.assertEquals("internal nextState should be the state",
52                 state, Whitebox.getInternalState(stateMachineResponse, "nextState"));
53         Assert.assertEquals("should return the state", state, stateMachineResponse.getNextState());
54     }
55
56     @Test
57     public void testGetAndSetResponse() throws Exception {
58         stateMachineResponse.setResponse(null);
59         Assert.assertTrue("internal response should be null",
60                 Whitebox.getInternalState(stateMachineResponse, "response") == null);
61         Assert.assertTrue("should return null", stateMachineResponse.getResponse() == null);
62
63         Response response = Response.NO_STATE_CHANGE;
64         stateMachineResponse.setResponse(response);
65         Assert.assertEquals("internal response should be the response",
66                 response, Whitebox.getInternalState(stateMachineResponse, "response"));
67         Assert.assertEquals("should return the response", response, stateMachineResponse.getResponse());
68     }
69
70 }