aboutsummaryrefslogtreecommitdiffstats
path: root/integrity-monitor/src/test/java/org/onap/policy/common/im/StateManagementTest.java
blob: a335b2c26ad5878a56d392c734b22f70e6c3ded4 (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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/*-
 * ============LICENSE_START=======================================================
 * Integrity Monitor
 * ================================================================================
 * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.common.im;

import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.junit.Assert.assertEquals;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.EntityTransaction;
import javax.persistence.PersistenceException;
import javax.persistence.QueryTimeoutException;
import javax.persistence.TypedQuery;

import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.mockito.Mockito;
import org.onap.policy.common.im.jpa.StateManagementEntity;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/*
 * All JUnits are designed to run in the local development environment where they have write
 * privileges and can execute time-sensitive tasks.
 */
public class StateManagementTest extends IntegrityMonitorTestBase {
    private static final String LOCKED_DISABLED_FAILED_COLDSTANDBY = "locked,disabled,failed,coldstandby";
    private static final String UNLOCKED_DISABLED_FAILED_COLDSTANDBY = "unlocked,disabled,failed,coldstandby";
    private static final String UNLOCKED_ENABLED_NULL_HOTSTANDBY = "unlocked,enabled,null,hotstandby";
    private static final String UNLOCKED_ENABLED_NULL_NULL = "unlocked,enabled,null,null";
    private static final String UNLOCKED_ENABLED_NULL_PROVIDINGSERVICE = "unlocked,enabled,null,providingservice";
    private static final String TEST_RESOURCE_NAME = "test_resource1";

    private static Logger logger = LoggerFactory.getLogger(StateManagementTest.class);
    //

    @BeforeClass
    public static void setUpClass() throws Exception {
        IntegrityMonitorTestBase.setUpBeforeClass(DEFAULT_DB_URL_PREFIX + StateManagementTest.class.getSimpleName());

    }

    @AfterClass
    public static void tearDownClass() {
        IntegrityMonitorTestBase.tearDownAfterClass();
    }

    @Before
    public void setUp() {
        super.setUpTest();
    }

    @After
    public void tearDown() {
        super.tearDownTest();
    }

    @Test
    public void test() throws Exception {
        logger.info("\n\nlogger.infor StateManagementTest: Entering\n\n");
        String resourceName = TEST_RESOURCE_NAME;

        // These parameters are in a properties file
        try {
            final StateManagement sm = new StateManagement(emf, resourceName);

            logger.info("\n??? initial state");
            assertEquals(UNLOCKED_ENABLED_NULL_NULL, makeString(sm));

            logger.info("\n??? test lock()");
            sm.lock();
            assertEquals("locked,enabled,null,null", makeString(sm));

            logger.info("\n??? test unlock()");
            sm.unlock();
            assertEquals(UNLOCKED_ENABLED_NULL_NULL, makeString(sm));

            logger.info("\n??? test enableNotFailed()");
            sm.enableNotFailed();
            assertEquals(UNLOCKED_ENABLED_NULL_NULL, makeString(sm));

            logger.info("\n??? test disableFailed()");
            sm.disableFailed();
            assertEquals("unlocked,disabled,failed,null", makeString(sm));

            // P4 If promote() is called while either the opState is disabled or
            // the adminState is locked,
            // the standbystatus shall transition to coldstandby and a
            // StandbyStatusException shall be thrown
            logger.info("\n??? promote() test case P4");
            assertThatThrownBy(() -> {
                sm.disableFailed();
                sm.lock();

                sm.promote();
            });
            assertEquals(LOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(sm));

            // P3 If promote() is called while standbyStatus is coldstandby, the
            // state shall not transition
            // and a StandbyStatusException shall be thrown
            logger.info("\n??? promote() test case P3");
            assertThatThrownBy(sm::promote);
            assertEquals(LOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(sm));

            // P2 If promote() is called while the standbyStatus is null and the
            // opState is enabled and adminState is unlocked,
            // the state shall transition to providingservice
            logger.info("\n??? promote() test case P2");
            resourceName = "test_resource2";
            final StateManagement sm2 = new StateManagement(emf, resourceName);
            sm2.enableNotFailed();
            sm2.unlock();
            assertEquals(UNLOCKED_ENABLED_NULL_NULL, makeString(sm2));
            sm2.promote();
            assertEquals(UNLOCKED_ENABLED_NULL_PROVIDINGSERVICE, makeString(sm2));

            // P5 If promote() is called while standbyStatus is
            // providingservice, no action is taken
            logger.info("\n??? promote() test case P5");
            sm2.promote();
            assertEquals(UNLOCKED_ENABLED_NULL_PROVIDINGSERVICE, makeString(sm2));

            // D1 If demote() is called while standbyStatus is providingservice,
            // the state shall transition to hotstandby
            logger.info("\n??? demote() test case D1");
            sm2.demote();
            assertEquals(UNLOCKED_ENABLED_NULL_HOTSTANDBY, makeString(sm2));

            // D4 If demote() is called while standbyStatus is hotstandby, no
            // action is taken
            logger.info("\n??? demote() test case D4");
            sm2.demote();
            assertEquals(UNLOCKED_ENABLED_NULL_HOTSTANDBY, makeString(sm2));

            // D3 If demote() is called while standbyStatus is null and
            // adminState is locked or opState is disabled,
            // the state shall transition to coldstandby
            logger.info("\n??? demote() test case D3");
            resourceName = "test_resource3";
            final StateManagement sm3 = new StateManagement(emf, resourceName);
            sm3.lock();
            sm3.disableFailed();
            sm3.demote();
            assertEquals(LOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(sm3));

            // D5 If demote() is called while standbyStatus is coldstandby, no
            // action is taken
            logger.info("\n??? demote() test case D5");
            sm3.demote();
            assertEquals(LOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(sm3));

            // D2 If demote() is called while standbyStatus is null and
            // adminState is unlocked and opState is enabled,
            // the state shall transition to hotstandby
            logger.info("\n??? demote() test case D2");
            resourceName = "test_resource4";
            final StateManagement sm4 = new StateManagement(emf, resourceName);
            sm4.unlock();
            sm4.enableNotFailed();
            assertEquals(UNLOCKED_ENABLED_NULL_NULL, makeString(sm4));
            sm4.demote();
            assertEquals(UNLOCKED_ENABLED_NULL_HOTSTANDBY, makeString(sm4));

            // P1 If promote() is called while standbyStatus is hotstandby, the
            // state shall transition to providingservice.
            logger.info("\n??? promote() test case P1");
            sm4.promote();
            assertEquals(UNLOCKED_ENABLED_NULL_PROVIDINGSERVICE, makeString(sm4));

            // State change notification
            logger.info("\n??? State change notification test case 1 - lock()");
            final StateChangeNotifier stateChangeNotifier = new StateChangeNotifier();
            sm.addObserver(stateChangeNotifier);
            sm.lock();
            assertEquals(LOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(stateChangeNotifier.getStateManagement()));

            logger.info("\n??? State change notification test case 2 - unlock()");
            sm.unlock();
            assertEquals(UNLOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(stateChangeNotifier.getStateManagement()));

            logger.info("\n??? State change notification test case 3 - enabled()");
            sm.enableNotFailed();
            assertEquals(UNLOCKED_ENABLED_NULL_HOTSTANDBY, makeString(stateChangeNotifier.getStateManagement()));

            logger.info("\n??? State change notification test case 4 - disableFailed()");
            sm.disableFailed();
            assertEquals(UNLOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(stateChangeNotifier.getStateManagement()));

            logger.info("\n??? State change notification test case 5 - demote()");
            sm.demote();
            assertEquals(UNLOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(stateChangeNotifier.getStateManagement()));

            logger.info("\n??? State change notification test case 6 - promote()");
            assertThatThrownBy(sm::promote);
            assertEquals(UNLOCKED_DISABLED_FAILED_COLDSTANDBY, makeString(sm));

        } catch (final Exception ex) {
            logger.error("Exception: {}", ex.toString());
            throw ex;
        }

        logger.info("\n\nStateManagementTest: Exit\n\n");
    }

    @Test(expected = StateManagementException.class)
    @SuppressWarnings("unchecked")
    public void test_StateManagementInitialization_ThrowException_ifEntityManagerCreateQuerythrowsAnyException()
            throws Exception {
        final EntityManager mockedEm = getMockedEntityManager();
        final EntityManagerFactory mockedEmf = getMockedEntityManagerFactory(mockedEm);

        doThrow(PersistenceException.class).when(mockedEm).createQuery(anyString(),
                any(StateManagementEntity.class.getClass()));

        new StateManagement(mockedEmf, TEST_RESOURCE_NAME);

    }

    @Test(expected = StateManagementException.class)
    @SuppressWarnings("unchecked")
    public void test_StateManagementInitialization_ThrowStateManagementException_ifEntityManagerthrowsAnyException()
            throws Exception {
        final EntityManager mockedEm = getMockedEntityManager();
        final EntityManagerFactory mockedEmf = getMockedEntityManagerFactory(mockedEm);
        final TypedQuery<StateManagementEntity> mockedQuery = mock(TypedQuery.class);

        when(mockedQuery.setFlushMode(Mockito.anyObject())).thenReturn(mockedQuery);
        when(mockedQuery.setLockMode(Mockito.anyObject())).thenReturn(mockedQuery);
        when(mockedEm.createQuery(anyString(), any(StateManagementEntity.class.getClass()))).thenReturn(mockedQuery);

        doThrow(QueryTimeoutException.class).when(mockedQuery).getResultList();

        new StateManagement(mockedEmf, TEST_RESOURCE_NAME);

    }

    private EntityManager getMockedEntityManager() {
        final EntityManager mockedEm = mock(EntityManager.class);
        final EntityTransaction mockedTransaction = mock(EntityTransaction.class);

        when(mockedEm.getTransaction()).thenReturn(mockedTransaction);
        return mockedEm;
    }

    private EntityManagerFactory getMockedEntityManagerFactory(final EntityManager entityManager) {
        final EntityManagerFactory mockedEmf = mock(EntityManagerFactory.class);
        when(mockedEmf.createEntityManager()).thenReturn(entityManager);

        return mockedEmf;

    }

    /**
     * Converts a state element to a comma-separated string.
     *
     * @param sm element to be converted
     * @return a string representing the element
     */
    private String makeString(final StateManagement sm) {
        if (sm == null) {
            return null;
        }

        final StringBuilder b = new StringBuilder();

        b.append(sm.getAdminState());
        b.append(',');
        b.append(sm.getOpState());
        b.append(',');
        b.append(sm.getAvailStatus());
        b.append(',');
        b.append(sm.getStandbyStatus());

        return b.toString();
    }
}