2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2018 Ericsson. All rights reserved.
4 * Modifications Copyright (C) 2020 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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.core.engine.executor.context;
24 import static org.assertj.core.api.Assertions.assertThatThrownBy;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNotNull;
28 import java.util.LinkedHashMap;
30 import org.junit.After;
31 import org.junit.Before;
32 import org.junit.Test;
33 import org.mockito.Mock;
34 import org.mockito.Mockito;
35 import org.mockito.MockitoAnnotations;
36 import org.onap.policy.apex.context.parameters.ContextParameterConstants;
37 import org.onap.policy.apex.context.parameters.SchemaParameters;
38 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
39 import org.onap.policy.apex.model.basicmodel.concepts.AxReferenceKey;
40 import org.onap.policy.apex.model.basicmodel.service.ModelService;
41 import org.onap.policy.apex.model.contextmodel.concepts.AxContextSchema;
42 import org.onap.policy.apex.model.contextmodel.concepts.AxContextSchemas;
43 import org.onap.policy.apex.model.eventmodel.concepts.AxInputField;
44 import org.onap.policy.apex.model.eventmodel.concepts.AxOutputField;
45 import org.onap.policy.apex.model.policymodel.concepts.AxTask;
46 import org.onap.policy.common.parameters.ParameterService;
49 * Test the state facade.
51 public class AxTaskFacadeTest {
53 private AxTask axTaskMock;
56 private AxInputField axInputFieldMock;
59 private AxInputField axInputFieldBadMock;
62 private AxOutputField axOutputFieldMock;
65 private AxOutputField axOutputFieldBadMock;
71 public void startMocking() {
72 AxContextSchemas schemas = new AxContextSchemas();
74 AxArtifactKey stringTypeKey = new AxArtifactKey("StringType:0.0.1");
75 AxContextSchema stringType = new AxContextSchema(stringTypeKey, "Java", "java.lang.String");
76 schemas.getSchemasMap().put(stringTypeKey, stringType);
78 ModelService.registerModel(AxContextSchemas.class, schemas);
80 MockitoAnnotations.initMocks(this);
82 AxArtifactKey task0Key = new AxArtifactKey("Task0:0.0.1");
83 Mockito.doReturn(task0Key).when(axTaskMock).getKey();
84 Mockito.doReturn(task0Key.getId()).when(axTaskMock).getId();
86 Map<String, AxInputField> inFieldMap = new LinkedHashMap<>();
87 Map<String, AxOutputField> outFieldMap = new LinkedHashMap<>();
89 inFieldMap.put("InField0", axInputFieldMock);
90 inFieldMap.put("InFieldBad", axInputFieldBadMock);
91 outFieldMap.put("OutField0", axOutputFieldMock);
92 outFieldMap.put("OutFieldBad", axOutputFieldBadMock);
94 Mockito.doReturn(inFieldMap).when(axTaskMock).getInputFields();
95 Mockito.doReturn(outFieldMap).when(axTaskMock).getOutputFields();
97 Mockito.doReturn(new AxReferenceKey(task0Key, "InField0")).when(axInputFieldMock).getKey();
98 Mockito.doReturn(stringTypeKey).when(axInputFieldMock).getSchema();
100 Mockito.doReturn(new AxReferenceKey(task0Key, "OutField0")).when(axOutputFieldMock).getKey();
101 Mockito.doReturn(stringTypeKey).when(axOutputFieldMock).getSchema();
103 ParameterService.register(new SchemaParameters());
107 public void teardown() {
108 ParameterService.deregister(ContextParameterConstants.SCHEMA_GROUP_NAME);
109 ModelService.clear();
113 public void testAxStateFacade() {
114 AxTaskFacade taskFacade = new AxTaskFacade(axTaskMock);
116 assertEquals("Task0", taskFacade.getTaskName());
117 assertEquals("Task0:0.0.1", taskFacade.getId());
119 assertThatThrownBy(() -> taskFacade.getInFieldSchemaHelper("InFieldDoesntExist"))
120 .hasMessage("no incoming field with name \"InFieldDoesntExist\" " + "defined on task "
121 + "\"Task0:0.0.1\"");
122 assertThatThrownBy(() -> taskFacade.getOutFieldSchemaHelper("OutFieldDoesntExist"))
123 .hasMessage("no outgoing field with name \"OutFieldDoesntExist\" " + "defined on task "
124 + "\"Task0:0.0.1\"");
125 assertNotNull(taskFacade.getInFieldSchemaHelper("InField0"));
126 assertNotNull(taskFacade.getOutFieldSchemaHelper("OutField0"));
128 assertThatThrownBy(() -> taskFacade.getInFieldSchemaHelper("InFieldBad"))
129 .hasMessage("schema helper cannot be created for task field \"InFieldBad\" "
130 + "with key \"null\" with schema \"null\"");
131 assertThatThrownBy(() -> taskFacade.getOutFieldSchemaHelper("OutFieldBad"))
132 .hasMessage("schema helper cannot be created for task field \"OutFieldBad\" "
133 + "with key \"null\" with schema \"null\"");