aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/test/java/org/onap/policy/pap/main/comm/msgdata/StateChangeReqTest.java
blob: e0185890d86a19b6ee803b8189a18911816ce380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 * ============LICENSE_START=======================================================
 * ONAP PAP
 * ================================================================================
 * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
 * Modifications Copyright (C) 2023 Nordix Foundation.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.pap.main.comm.msgdata;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertSame;
import static org.junit.jupiter.api.Assertions.assertTrue;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.onap.policy.models.pdp.concepts.PdpStateChange;
import org.onap.policy.models.pdp.concepts.PdpStatus;
import org.onap.policy.models.pdp.concepts.PdpUpdate;
import org.onap.policy.models.pdp.enums.PdpState;
import org.onap.policy.pap.main.comm.CommonRequestBase;

public class StateChangeReqTest extends CommonRequestBase {

    private StateChangeReq data;
    private PdpStatus response;
    private PdpStateChange msg;

    /**
     * Sets up.
     *
     * @throws Exception if an error occurs
     */
    @BeforeEach
    public void setUp() throws Exception {
        super.setUp();

        response = new PdpStatus();

        response.setName(MY_NAME);
        response.setState(MY_STATE);

        msg = new PdpStateChange();
        msg.setName(MY_NAME);
        msg.setState(MY_STATE);

        data = new StateChangeReq(reqParams, MY_REQ_NAME, msg);
    }

    @Test
    public void testGetMessage() {
        assertEquals(MY_REQ_NAME, data.getName());
        assertSame(msg, data.getMessage());
    }

    @Test
    public void testCheckResponse() {
        assertNull(data.checkResponse(response));
    }

    @Test
    public void testCheckResponse_NullName() {
        response.setName(null);

        assertEquals("null PDP name", data.checkResponse(response));
    }

    @Test
    public void testCheckResponse_NullMsgName() {
        msg.setName(null);

        assertNull(data.checkResponse(response));
    }

    @Test
    public void testCheckResponse_MismatchedState() {
        response.setState(DIFF_STATE);

        assertEquals("state is TERMINATED, but expected SAFE", data.checkResponse(response));
    }

    @Test
    public void testReconfigure() {
        // different message type should fail and leave message unchanged
        assertFalse(data.reconfigure(new PdpUpdate()));
        assertSame(msg, data.getMessage());

        // same state - should succeed, but leave message unchanged
        PdpStateChange msg2 = new PdpStateChange();
        msg2.setState(msg.getState());
        assertTrue(data.reconfigure(msg2));
        assertSame(msg, data.getMessage());

        // change old state to active - should fail and leave message unchanged
        msg2.setState(PdpState.ACTIVE);
        assertFalse(data.reconfigure(msg2));
        assertSame(msg, data.getMessage());

        // different, inactive state - should succeed and install NEW message
        msg2.setState(PdpState.PASSIVE);
        assertTrue(data.reconfigure(msg2));
        assertSame(msg2, data.getMessage());
    }
}