aboutsummaryrefslogtreecommitdiffstats
path: root/services/services-engine/src/test/java/org/onap/policy/apex/service/engine/parameters/ParameterTests.java
blob: 4948ab5f3bd2e0a95f54ac7f03c7d0bc83ed5019 (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
/*-
 * ============LICENSE_START=======================================================
 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
 * Modifications Copyright (C) 2019-2020 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.
 *
 * 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 static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.util.Arrays;
import org.junit.Test;
import org.onap.policy.apex.service.engine.event.impl.filecarrierplugin.consumer.ApexFileEventConsumer;
import org.onap.policy.apex.service.engine.event.impl.filecarrierplugin.producer.ApexFileEventProducer;
import org.onap.policy.apex.service.engine.main.ApexCommandLineArguments;
import org.onap.policy.apex.service.engine.parameters.dummyclasses.SuperDooperCarrierTechnologyParameters;
import org.onap.policy.apex.service.engine.parameters.dummyclasses.SuperDooperEventProducer;
import org.onap.policy.apex.service.engine.parameters.dummyclasses.SuperDooperEventSubscriber;
import org.onap.policy.apex.service.parameters.ApexParameterHandler;
import org.onap.policy.apex.service.parameters.ApexParameters;
import org.onap.policy.apex.service.parameters.carriertechnology.CarrierTechnologyParameters;
import org.onap.policy.apex.service.parameters.eventprotocol.EventProtocolParameters;
import org.onap.policy.common.parameters.ParameterException;

/**
 * Test for an empty parameter file.
 *
 * @author Liam Fallon (liam.fallon@ericsson.com)
 */
public class ParameterTests {
    @Test
    public void testInvalidParametersNoFileTest() throws ParameterException {
        final String[] args = {"-c", "src/test/resources/parameters/invalidNoFile.json"};
        final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessageStartingWith("error reading parameters from \"src")
            .hasMessageContaining("FileNotFoundException");
    }

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

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessageStartingWith("validation error(s) on parameters from \"src/test/resources/parameters/empty"
                    + ".json\"");
    }

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

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("validation error(s) on parameters from \"src/test/resources/parameters/noParams.json\"\n"
                + "parameter group \"APEX_PARAMETERS\" type "
                + "\"org.onap.policy.apex.service.parameters.ApexParameters\" INVALID, "
                + "parameter group has status INVALID\n" + "  parameter group \"UNDEFINED\" INVALID, "
                + "engine service parameters are not specified\n"
                + "  parameter group map \"eventOutputParameters\" INVALID, "
                + "at least one event output must be specified\n"
                + "  parameter group map \"eventInputParameters\" INVALID, "
                + "at least one event input must be specified\n");
    }

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

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("validation error(s) on parameters from \"src/test/resources/parameters/blankParams.json\"\n"
                + "parameter group \"APEX_PARAMETERS\" type "
                + "\"org.onap.policy.apex.service.parameters.ApexParameters\" INVALID, "
                + "parameter group has status INVALID\n" + "  parameter group \"ENGINE_SERVICE_PARAMETERS\" type "
                + "\"org.onap.policy.apex.service.parameters.engineservice.EngineServiceParameters\" "
                + "INVALID, parameter group has status INVALID\n"
                + "    field \"id\" type \"int\" value \"-1\" INVALID, "
                + "id not specified or specified value [-1] invalid, must be specified as id >= 0\n"
                + "  parameter group map \"eventOutputParameters\" INVALID, "
                + "at least one event output must be specified\n"
                + "  parameter group map \"eventInputParameters\" INVALID, "
                + "at least one event input must be specified\n");
    }

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

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("validation error(s) on parameters from \"src/test/resources/parameters/badParams.json\"\n"
                + "parameter group \"APEX_PARAMETERS\" type "
                + "\"org.onap.policy.apex.service.parameters.ApexParameters\" INVALID, "
                + "parameter group has status INVALID\n" + "  parameter group \"hello there\" type "
                + "\"org.onap.policy.apex.service.parameters.engineservice.EngineServiceParameters\" "
                + "INVALID, parameter group has status INVALID\n"
                + "    field \"name\" type \"java.lang.String\" value \"hello there\" INVALID, "
                + "name is invalid, it must match regular expression[A-Za-z0-9\\-_\\.]+\n"
                + "    field \"id\" type \"int\" value \"-45\" INVALID, id not specified or "
                + "specified value [-45] invalid, must be specified as id >= 0\n"
                + "    field \"instanceCount\" type \"int\" value \"-345\" INVALID, "
                + "instanceCount [-345] invalid, must be specified as instanceCount >= 1\n"
                + "    field \"deploymentPort\" type \"int\" value \"65536\" INVALID, "
                + "deploymentPort [65536] invalid, must be specified as 1024 <= port <= 65535\n"
                + "    field \"policyModelFileName\" type \"java.lang.String\" "
                + "value \"/some/file/name.xml\" INVALID, not found\n"
                + "  parameter group map \"eventOutputParameters\" INVALID, "
                + "parameter group map has status INVALID\n" + "    parameter group \"FirstProducer\" type "
                + "\"org.onap.policy.apex.service.parameters.eventhandler.EventHandlerParameters\" INVALID"
                + ", parameter group has status INVALID\n" + "      parameter group \"FILE\" type "
                + "\"org.onap.policy.apex.service.engine.event.impl."
                + "filecarrierplugin.FileCarrierTechnologyParameters\" INVALID, "
                + "parameter group has status INVALID\n"
                + "        field \"fileName\" type \"java.lang.String\" value \"null\" INVALID, "
                + "\"null\" invalid, must be specified as a non-empty string\n"
                + "  parameter group map \"eventInputParameters\" INVALID, "
                + "parameter group map has status INVALID\n" + "    parameter group \"TheFileConsumer1\" type "
                + "\"org.onap.policy.apex.service.parameters.eventhandler.EventHandlerParameters\" INVALID"
                + ", parameter group has status INVALID\n" + "      parameter group \"FILE\" type "
                + "\"org.onap.policy.apex.service.engine.event.impl."
                + "filecarrierplugin.FileCarrierTechnologyParameters\" INVALID, "
                + "parameter group has status INVALID\n"
                + "        field \"fileName\" type \"java.lang.String\" value \"null\" INVALID, "
                + "\"null\" invalid, must be specified as a non-empty string\n");
    }

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

        assertThatThrownBy(() -> new ApexParameterHandler().getParameters(arguments))
            .hasMessage("validation error(s) on parameters from "
                + "\"src/test/resources/parameters/badParamsModelNotFile.json\"\n"
                + "parameter group \"APEX_PARAMETERS\" type "
                + "\"org.onap.policy.apex.service.parameters.ApexParameters\" INVALID, "
                + "parameter group has status INVALID\n" + "  parameter group \"MyApexEngine\" type "
                + "\"org.onap.policy.apex.service.parameters.engineservice.EngineServiceParameters\" "
                + "INVALID, parameter group has status INVALID\n" + "    field \"policyModelFileName\" "
                + "type \"java.lang.String\" value \"src/test\" INVALID, is not a plain file\n");
    }

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

        final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);

        assertEquals(2, parameters.getEventInputParameters().size());
        assertEquals(2, parameters.getEventOutputParameters().size());
        assertTrue(parameters.getEventOutputParameters().containsKey("FirstProducer"));
        assertTrue(parameters.getEventOutputParameters().containsKey("MyOtherProducer"));
        assertEquals("FILE", parameters.getEventOutputParameters().get("FirstProducer")
                .getCarrierTechnologyParameters().getLabel());
        assertEquals("FILE", parameters.getEventOutputParameters().get("MyOtherProducer")
                .getCarrierTechnologyParameters().getLabel());
        assertEquals(ApexFileEventProducer.class.getName(), parameters.getEventOutputParameters()
                .get("MyOtherProducer").getCarrierTechnologyParameters().getEventProducerPluginClass());
        assertEquals(ApexFileEventConsumer.class.getName(), parameters.getEventOutputParameters()
                .get("MyOtherProducer").getCarrierTechnologyParameters().getEventConsumerPluginClass());
        assertEquals("JSON",
                parameters.getEventOutputParameters().get("FirstProducer").getEventProtocolParameters().getLabel());
        assertEquals("JSON", parameters.getEventOutputParameters().get("MyOtherProducer")
                .getEventProtocolParameters().getLabel());

        assertTrue(parameters.getEventInputParameters().containsKey("TheFileConsumer1"));
        assertTrue(parameters.getEventInputParameters().containsKey("MySuperDooperConsumer1"));
        assertEquals("FILE", parameters.getEventInputParameters().get("TheFileConsumer1")
                .getCarrierTechnologyParameters().getLabel());
        assertEquals("SUPER_DOOPER", parameters.getEventInputParameters().get("MySuperDooperConsumer1")
                .getCarrierTechnologyParameters().getLabel());
        assertEquals("JSON", parameters.getEventInputParameters().get("TheFileConsumer1")
                .getEventProtocolParameters().getLabel());
        assertEquals("SUPER_TOK_DEL", parameters.getEventInputParameters().get("MySuperDooperConsumer1")
                .getEventProtocolParameters().getLabel());
        assertEquals(ApexFileEventProducer.class.getName(), parameters.getEventInputParameters()
                .get("TheFileConsumer1").getCarrierTechnologyParameters().getEventProducerPluginClass());
        assertEquals(ApexFileEventConsumer.class.getName(), parameters.getEventInputParameters()
                .get("TheFileConsumer1").getCarrierTechnologyParameters().getEventConsumerPluginClass());
        assertEquals(SuperDooperEventProducer.class.getName(), parameters.getEventInputParameters()
                .get("MySuperDooperConsumer1").getCarrierTechnologyParameters().getEventProducerPluginClass());
        assertEquals(SuperDooperEventSubscriber.class.getName(), parameters.getEventInputParameters()
                .get("MySuperDooperConsumer1").getCarrierTechnologyParameters().getEventConsumerPluginClass());
    }

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

        final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);

        assertEquals("MyApexEngine", parameters.getEngineServiceParameters().getName());
        assertEquals("0.0.1", parameters.getEngineServiceParameters().getVersion());
        assertEquals(45, parameters.getEngineServiceParameters().getId());
        assertEquals(345, parameters.getEngineServiceParameters().getInstanceCount());
        assertEquals(65522, parameters.getEngineServiceParameters().getDeploymentPort());

        final CarrierTechnologyParameters prodCarrierTech =
                parameters.getEventOutputParameters().get("FirstProducer").getCarrierTechnologyParameters();
        final EventProtocolParameters prodEventProt =
                parameters.getEventOutputParameters().get("FirstProducer").getEventProtocolParameters();
        final CarrierTechnologyParameters consCarrierTech =
                parameters.getEventInputParameters().get("MySuperDooperConsumer1").getCarrierTechnologyParameters();
        final EventProtocolParameters consEventProt =
                parameters.getEventInputParameters().get("MySuperDooperConsumer1").getEventProtocolParameters();

        assertEquals("SUPER_DOOPER", prodCarrierTech.getLabel());
        assertEquals("SUPER_TOK_DEL", prodEventProt.getLabel());
        assertEquals("SUPER_DOOPER", consCarrierTech.getLabel());
        assertEquals("JSON", consEventProt.getLabel());

        assertTrue(prodCarrierTech instanceof SuperDooperCarrierTechnologyParameters);

        final SuperDooperCarrierTechnologyParameters superDooperParameters =
                (SuperDooperCarrierTechnologyParameters) prodCarrierTech;
        assertEquals("somehost:12345", superDooperParameters.getBootstrapServers());
        assertEquals("0", superDooperParameters.getAcks());
        assertEquals(25, superDooperParameters.getRetries());
        assertEquals(98765, superDooperParameters.getBatchSize());
        assertEquals(21, superDooperParameters.getLingerTime());
        assertEquals(50505050, superDooperParameters.getBufferMemory());
        assertEquals("first-group-id", superDooperParameters.getGroupId());
        assertFalse(superDooperParameters.isEnableAutoCommit());
        assertEquals(441, superDooperParameters.getAutoCommitTime());
        assertEquals(987, superDooperParameters.getSessionTimeout());
        assertEquals("producer-out", superDooperParameters.getProducerTopic());
        assertEquals(101, superDooperParameters.getConsumerPollTime());
        assertEquals("some.key.serailizer", superDooperParameters.getKeySerializer());
        assertEquals("some.value.serailizer", superDooperParameters.getValueSerializer());
        assertEquals("some.key.deserailizer", superDooperParameters.getKeyDeserializer());
        assertEquals("some.value.deserailizer", superDooperParameters.getValueDeserializer());

        final String[] consumerTopics = {"consumer-out-0", "consumer-out-1", "consumer-out-2"};
        assertEquals(Arrays.asList(consumerTopics), superDooperParameters.getConsumerTopicList());

    }
}