aboutsummaryrefslogtreecommitdiffstats
path: root/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/parameters/ContextParameterTests.java
blob: a55afbed41154a3436f74874b6e9c5d650a78add (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
/*-
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
 *  Modifications Copyright (C) 2020 Nordix Foundation.
 *  Modifications Copyright (C) 2020 Bell Canada. 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.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.apex.service.engine.parameters;

import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.junit.Assert.assertEquals;

import org.junit.Test;
import org.onap.policy.apex.service.engine.main.ApexCommandLineArguments;
import org.onap.policy.apex.service.engine.parameters.dummyclasses.SuperDooperDistributorParameters;
import org.onap.policy.apex.service.parameters.ApexParameterHandler;
import org.onap.policy.apex.service.parameters.ApexParameters;
import org.onap.policy.common.parameters.ParameterException;

/**
 * Test for an empty parameter file.
 *
 * @author Liam Fallon (liam.fallon@ericsson.com)
 */
public class ContextParameterTests {

    @Test
    public void testNoParamsTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextNoParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("error reading parameters from \"src/test/resources/parameters/serviceContextNoParams.json\"\n"
                + "(ParameterRuntimeException):could not find field \"parameterClassName\" in "
                + "\"contextParameters\" entry");
    }

    @Test
    public void testBadParamsTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextBadParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("error reading parameters from \"src/test/resources/parameters/serviceContextBadParams.json\""
                + "\n(ParameterRuntimeException):failed to deserialize the parameters for "
                + "\"contextParameters\" to parameter class " + "\"hello\"\njava.lang.ClassNotFoundException: hello");
    }

    @Test
    public void testBadPluginParamNameTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextBadPluginNameParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("error reading parameters from "
                + "\"src/test/resources/parameters/serviceContextBadPluginNameParams.json\"\n"
                + "(ParameterRuntimeException):could not find field \"parameterClassName\" in "
                + "\"contextParameters\" entry");
    }

    @Test
    public void testBadClassParamTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextBadClassParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments)).hasMessage(
            "error reading parameters from " + "\"src/test/resources/parameters/serviceContextBadClassParams.json\""
                + "\n(ParameterRuntimeException):failed to deserialize " + "the parameters for \"contextParameters\""
                + " to parameter class \"java.lang.Integer\"\ncom.google.gson.JsonSyntaxException: "
                + "java.lang.IllegalStateException: Expected NUMBER but was BEGIN_OBJECT at path $");
    }

    @Test
    public void testBadPluginClassTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextBadPluginClassParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("error reading parameters from "
                + "\"src/test/resources/parameters/serviceContextBadPluginClassParams.json\""
                + "\n(ClassCastException):class org.onap.policy.apex.service.engine.parameters."
                + "dummyclasses.SuperDooperExecutorParameters"
                + " cannot be cast to class org.onap.policy.apex.context.parameters.ContextParameters "
                + "(org.onap.policy.apex.service.engine.parameters.dummyclasses.SuperDooperExecutorParameters and "
                + "org.onap.policy.apex.context.parameters.ContextParameters are "
                + "in unnamed module of loader 'app')");
    }

    @Test
    public void testOkFlushParamTest() throws ParameterException {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextOKFlushParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);
        assertEquals("org.onap.policy.apex.context.parameters.ContextParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters().getClass().getName());
        assertEquals(123456, parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
            .getPersistorParameters().getFlushPeriod());

    }

    @Test
    public void testOkDefaultParamTest() throws ParameterException {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextOKDefaultParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);
        assertEquals("org.onap.policy.apex.context.parameters.ContextParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters().getClass().getName());
        assertEquals(300000, parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
            .getPersistorParameters().getFlushPeriod());

    }

    @Test
    public void testOkDistParamTest() throws ParameterException {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextOKDistParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);
        assertEquals("org.onap.policy.apex.context.parameters.ContextParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters().getClass().getName());
        assertEquals("org.onap.policy.apex.context.parameters.DistributorParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
                .getDistributorParameters().getClass().getName());

    }

    @Test
    public void testOkFullDefaultParamTest() throws ParameterException {
        final String[] args = {"-p", "src/test/resources/parameters/goodParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);
        assertEquals("org.onap.policy.apex.context.parameters.ContextParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters().getClass().getName());
        assertEquals("org.onap.policy.apex.context.parameters.DistributorParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
                .getDistributorParameters().getClass().getName());
        assertEquals("org.onap.policy.apex.context.parameters.LockManagerParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
                .getLockManagerParameters().getClass().getName());
        assertEquals("org.onap.policy.apex.context.parameters.PersistorParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
                .getPersistorParameters().getClass().getName());
        assertEquals(300000, parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
            .getPersistorParameters().getFlushPeriod());

    }

    @Test
    public void testOkFullParamTest() throws ParameterException {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextOKFullParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);
        assertEquals("org.onap.policy.apex.context.parameters.ContextParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters().getClass().getName());
        assertEquals("org.onap.policy.apex.context.parameters.LockManagerParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
                .getLockManagerParameters().getClass().getName());
        assertEquals("org.onap.policy.apex.context.parameters.PersistorParameters",
            parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
                .getPersistorParameters().getClass().getName());
        assertEquals(123456, parameters.getEngineServiceParameters().getEngineParameters().getContextParameters()
            .getPersistorParameters().getFlushPeriod());

        final SuperDooperDistributorParameters infinispanParameters = (SuperDooperDistributorParameters) parameters
            .getEngineServiceParameters().getEngineParameters().getContextParameters().getDistributorParameters();
        assertEquals("org.onap.policy.apex.service.engine.parameters.dummyclasses.SuperDooperDistributorParameters",
            infinispanParameters.getClass().getName());
        assertEquals("my/lovely/configFile.xml", infinispanParameters.getConfigFile());
        assertEquals("holy/stone.xml", infinispanParameters.getJgroupsFile());
        assertEquals(false, infinispanParameters.isPreferIPv4Stack());
        assertEquals("fatherted", infinispanParameters.getJgroupsBindAddress());

    }

    @Test
    public void testBadClassDistParamTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextBadClassDistParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("error reading parameters from "
                + "\"src/test/resources/parameters/serviceContextBadClassDistParams.json\"\n"
                + "(ClassCastException):class "
                + "org.onap.policy.apex.context.parameters.ContextParameters cannot be cast to class"
                + " org.onap.policy.apex.context.parameters.DistributorParameters (org.onap.policy.apex.context."
                + "parameters.ContextParameters and org.onap.policy.apex.context.parameters.DistributorParameters "
                + "are in unnamed module of loader 'app')");
    }

    @Test
    public void testBadClassLockParamTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextBadClassLockParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("error reading parameters from "
                + "\"src/test/resources/parameters/serviceContextBadClassLockParams.json\"\n"
                + "(ClassCastException):class "
                + "org.onap.policy.apex.context.parameters.ContextParameters cannot be cast to class "
                + "org.onap.policy.apex.context.parameters.LockManagerParameters (org.onap.policy.apex.context."
                + "parameters.ContextParameters and org.onap.policy.apex.context.parameters.LockManagerParameters "
                + "are in unnamed module of loader 'app')");
    }

    @Test
    public void testBadClassPersistParamTest() {
        final String[] args = {"-p", "src/test/resources/parameters/serviceContextBadClassPersistParams.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("error reading parameters from "
                + "\"src/test/resources/parameters/serviceContextBadClassPersistParams.json\"\n"
                + "(ClassCastException):class "
                + "org.onap.policy.apex.context.parameters.ContextParameters cannot be cast to class "
                + "org.onap.policy.apex.context.parameters.PersistorParameters (org.onap.policy.apex.context."
                + "parameters.ContextParameters and org.onap.policy.apex.context.parameters.PersistorParameters "
                + "are in unnamed module of loader 'app')");
    }
}