24c63a12bcd4f91a911d0064b9b811bade7d6950
[policy/apex-pdp.git] / testsuites / integration / integration-context-test / src / test / java / org / onap / policy / apex / testsuites / integration / context / distribution / ContextUpdate.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.testsuites.integration.context.distribution;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNotNull;
26 import static org.junit.Assert.assertNull;
27 import static org.junit.Assert.assertTrue;
28 import static org.junit.Assert.fail;
29 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.APEX_DISTRIBUTOR;
30 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.DATE_CONTEXT_ALBUM;
31 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.EXCEPTION_MESSAGE;
32 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.LONG_CONTEXT_ALBUM;
33 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.MAP_CONTEXT_ALBUM;
34 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.TIME_ZONE;
35 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.VERSION;
36 import static org.onap.policy.apex.testsuites.integration.context.utils.Constants.getAxArtifactKeyArray;
37
38 import java.util.Date;
39 import java.util.HashMap;
40 import java.util.Locale;
41 import java.util.Map;
42
43 import org.onap.policy.apex.context.ContextAlbum;
44 import org.onap.policy.apex.context.ContextException;
45 import org.onap.policy.apex.context.ContextRuntimeException;
46 import org.onap.policy.apex.context.Distributor;
47 import org.onap.policy.apex.context.impl.distribution.DistributorFactory;
48 import org.onap.policy.apex.context.test.concepts.TestContextDateItem;
49 import org.onap.policy.apex.context.test.concepts.TestContextDateLocaleItem;
50 import org.onap.policy.apex.context.test.concepts.TestContextTreeMapItem;
51 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
52 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
53 import org.onap.policy.apex.model.contextmodel.concepts.AxContextModel;
54 import org.onap.policy.apex.testsuites.integration.context.factory.TestContextAlbumFactory;
55 import org.slf4j.ext.XLogger;
56 import org.slf4j.ext.XLoggerFactory;
57
58 /**
59  * The Class TestContextUpdate checks context updates.
60  *
61  * @author Sergey Sachkov (sergey.sachkov@ericsson.com)
62  */
63 public class ContextUpdate {
64     // Recurring string constants.
65     private static final String NORMAL_TEST_EXCEPTION = "normal test exception";
66
67     private static final String ZERO = "zero";
68     private static final String NUMBER_ZERO = "0";
69     // Logger for this class
70     private static final XLogger LOGGER = XLoggerFactory.getXLogger(ContextUpdate.class);
71
72     /**
73      * Test context update.
74      *
75      * @throws ApexException the apex exception
76      */
77     public void testContextUpdate() throws ApexException {
78         LOGGER.debug("Running TestContextUpdate test . . .");
79
80         final Distributor contextDistributor = getDistributor();
81
82         final ContextAlbum longContextAlbum = getContextAlbum(LONG_CONTEXT_ALBUM, contextDistributor);
83         final ContextAlbum dateContextAlbum = getContextAlbum(DATE_CONTEXT_ALBUM, contextDistributor);
84         final ContextAlbum mapContextAlbum = getContextAlbum(MAP_CONTEXT_ALBUM, contextDistributor);
85
86         final TestContextDateLocaleItem tciA = getTestContextDateLocaleItem();
87         final TestContextTreeMapItem tciC = getTestContextTreeMapItem();
88
89         longContextAlbum.put(NUMBER_ZERO, (long) 0);
90         longContextAlbum.put(NUMBER_ZERO, 0);
91         longContextAlbum.put(NUMBER_ZERO, NUMBER_ZERO);
92
93         try {
94             longContextAlbum.put(NUMBER_ZERO, ZERO);
95             fail(EXCEPTION_MESSAGE);
96         } catch (final ContextRuntimeException e) {
97             assertEquals("Failed to set context value for key \"0\" in album \"LongContextAlbum:0.0.1\":"
98                 + " LongContextAlbum:0.0.1: object \"zero\" of class \"java.lang.String\" not compatible with"
99                 + " class \"java.lang.Long\"", e.getMessage());
100             LOGGER.trace(NORMAL_TEST_EXCEPTION, e);
101         }
102
103         try {
104             longContextAlbum.put(NUMBER_ZERO, "");
105             fail(EXCEPTION_MESSAGE);
106         } catch (final ContextRuntimeException e) {
107             assertEquals(
108                 "Failed to set context value for key \"0\" in album \"LongContextAlbum:0.0.1\": LongContextAlbum"
109                     + ":0.0.1: object \"\" of class \"java.lang.String\" not compatible with class \"java.lang.Long\"",
110                 e.getMessage());
111             LOGGER.trace(NORMAL_TEST_EXCEPTION, e);
112         }
113
114         try {
115             longContextAlbum.put(NUMBER_ZERO, null);
116             fail(EXCEPTION_MESSAGE);
117         } catch (final ContextRuntimeException e) {
118             assertEquals("album \"LongContextAlbum:0.0.1\" null values are illegal on key \"0\" for put()",
119                 e.getMessage());
120             LOGGER.trace(NORMAL_TEST_EXCEPTION, e);
121         }
122
123         try {
124             longContextAlbum.put(null, null);
125             fail(EXCEPTION_MESSAGE);
126         } catch (final ContextRuntimeException e) {
127             assertEquals("album \"LongContextAlbum:0.0.1\" null keys are illegal on keys for put()", e.getMessage());
128             LOGGER.trace(NORMAL_TEST_EXCEPTION, e);
129         }
130
131         assertNull(dateContextAlbum.put("date0", tciA));
132         assertTrue(dateContextAlbum.put("date0", tciA).equals(tciA));
133
134         assertNull(mapContextAlbum.put("map0", tciC));
135         assertTrue(mapContextAlbum.put("map0", tciC).equals(tciC));
136
137         contextDistributor.clear();
138     }
139
140     private TestContextTreeMapItem getTestContextTreeMapItem() {
141         final Map<String, String> testHashMap = new HashMap<>();
142         testHashMap.put(NUMBER_ZERO, ZERO);
143         testHashMap.put("1", "one");
144         testHashMap.put("2", "two");
145         testHashMap.put("3", "three");
146         testHashMap.put("4", "four");
147
148         return new TestContextTreeMapItem(testHashMap);
149     }
150
151     private TestContextDateLocaleItem getTestContextDateLocaleItem() {
152         final TestContextDateLocaleItem tciA = new TestContextDateLocaleItem();
153         tciA.setDateValue(new TestContextDateItem(new Date()));
154         tciA.setTzValue(TIME_ZONE.getDisplayName());
155         tciA.setDst(true);
156         tciA.setUtcOffset(-600);
157         tciA.setLocale(Locale.ENGLISH);
158         return tciA;
159     }
160
161     private ContextAlbum getContextAlbum(final String albumKey, final Distributor contextDistributor)
162         throws ContextException {
163         final ContextAlbum longContextAlbum = contextDistributor
164             .createContextAlbum(new AxArtifactKey(albumKey, VERSION));
165         assertNotNull(longContextAlbum);
166         longContextAlbum.setUserArtifactStack(getAxArtifactKeyArray());
167         return longContextAlbum;
168     }
169
170     private Distributor getDistributor() throws ContextException {
171         final AxArtifactKey distributorKey = new AxArtifactKey(APEX_DISTRIBUTOR, VERSION);
172         final Distributor contextDistributor = new DistributorFactory().getDistributor(distributorKey);
173
174         final AxContextModel multiModel = TestContextAlbumFactory.createMultiAlbumsContextModel();
175         contextDistributor.registerModel(multiModel);
176         return contextDistributor;
177     }
178 }