aboutsummaryrefslogtreecommitdiffstats
path: root/testsuites/performance/performance-benchmark-test/src/test/java/org/onap
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/performance/performance-benchmark-test/src/test/java/org/onap')
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexBaseBenchMarkTest.java139
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexEngineBenchmark.java137
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/TestApexEventListener.java92
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/BaseTest.java120
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMIMO.java36
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMISO.java33
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSIMO.java36
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSISO.java33
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventMIMO.java36
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventSISO.java33
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceModelUpdateTest.java363
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceTest.java474
-rw-r--r--testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/utils/Utils.java40
13 files changed, 1572 insertions, 0 deletions
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexBaseBenchMarkTest.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexBaseBenchMarkTest.java
new file mode 100644
index 000000000..363811978
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexBaseBenchMarkTest.java
@@ -0,0 +1,139 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2018 Ericsson. 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.benchmark;
+
+import java.util.List;
+import java.util.Map;
+import java.util.concurrent.TimeUnit;
+
+import org.onap.policy.apex.context.impl.schema.java.JavaSchemaHelperParameters;
+import org.onap.policy.apex.context.parameters.ContextParameters;
+import org.onap.policy.apex.context.parameters.SchemaParameters;
+import org.onap.policy.apex.core.engine.EngineParameters;
+import org.onap.policy.apex.core.engine.ExecutorParameters;
+import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
+import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
+import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
+import org.onap.policy.apex.plugins.context.schema.avro.AvroSchemaHelperParameters;
+import org.onap.policy.apex.plugins.executor.java.JavaExecutorParameters;
+import org.onap.policy.apex.plugins.executor.javascript.JavascriptExecutorParameters;
+import org.onap.policy.apex.plugins.executor.jruby.JrubyExecutorParameters;
+import org.onap.policy.apex.plugins.executor.jython.JythonExecutorParameters;
+import org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters;
+import org.onap.policy.apex.service.engine.event.ApexEvent;
+import org.onap.policy.apex.service.engine.runtime.ApexEventListener;
+import org.onap.policy.apex.service.engine.runtime.ApexServiceModelUpdateTest;
+import org.onap.policy.apex.service.engine.runtime.EngineService;
+import org.onap.policy.apex.service.engine.runtime.EngineServiceEventInterface;
+import org.onap.policy.apex.service.engine.runtime.impl.EngineServiceImpl;
+import org.onap.policy.apex.service.parameters.engineservice.EngineServiceParameters;
+import org.slf4j.ext.XLogger;
+import org.slf4j.ext.XLoggerFactory;
+
+public class ApexBaseBenchMarkTest {
+ private static final long STOP_TIME_OUT = TimeUnit.SECONDS.toMillis(30);
+ private static final XLogger LOGGER = XLoggerFactory.getXLogger(ApexServiceModelUpdateTest.class);
+ private static final long MAX_START_WAIT = TimeUnit.SECONDS.toMillis(10);
+ private final AxArtifactKey engineServiceKey = new AxArtifactKey("Machine-1_process-1_engine-1", "0.0.0");
+ private final String model;
+ private final int threads;
+ private final ApexEventListener listener;
+ private EngineService service;
+ private EngineServiceEventInterface engineServiceEventInterface;
+
+
+ public ApexBaseBenchMarkTest(final String model, final int threads, final ApexEventListener listener) {
+ this.model = model;
+ this.threads = threads;
+ this.listener = listener;
+ }
+
+ public void setUp() throws Exception {
+ final EngineServiceParameters parameters = new EngineServiceParameters();
+ parameters.setInstanceCount(threads);
+ parameters.setName(engineServiceKey.getName());
+ parameters.setVersion(engineServiceKey.getVersion());
+ parameters.setId(100);
+
+ final EngineParameters engineParameters = parameters.getEngineParameters();
+ final Map<String, ExecutorParameters> executorParameterMap = engineParameters.getExecutorParameterMap();
+ executorParameterMap.put("MVEL", new MVELExecutorParameters());
+ executorParameterMap.put("JAVASCRIPT", new JavascriptExecutorParameters());
+ executorParameterMap.put("JYTHON", new JythonExecutorParameters());
+ executorParameterMap.put("JAVA", new JavaExecutorParameters());
+ executorParameterMap.put("JRUBY", new JrubyExecutorParameters());
+
+ final ContextParameters contextParameters = engineParameters.getContextParameters();
+ final SchemaParameters schemaParameters = contextParameters.getSchemaParameters();
+ schemaParameters.getSchemaHelperParameterMap().put("Avro", new AvroSchemaHelperParameters());
+ schemaParameters.getSchemaHelperParameterMap().put("Java", new JavaSchemaHelperParameters());
+ service = EngineServiceImpl.create(parameters);
+
+ service = EngineServiceImpl.create(parameters);
+ service.registerActionListener("listener", listener);
+ service.updateModel(parameters.getEngineKey(), model, true);
+
+ LOGGER.info("Starting EngineService ... ");
+ service.startAll();
+
+ final long starttime = System.currentTimeMillis();
+ while (!service.isStarted() && System.currentTimeMillis() - starttime < MAX_START_WAIT) {
+ ThreadUtilities.sleep(50);
+ }
+ if (!service.isStarted()) {
+ LOGGER.error("Apex Service {} failed to start after {} ms", service.getKey(), MAX_START_WAIT);
+ new ApexException("Unable to start engine service ");
+ }
+
+ engineServiceEventInterface = service.getEngineServiceEventInterface();
+ }
+
+ public void sendEvents(final List<ApexEvent> events) {
+ for (final ApexEvent event : events) {
+ engineServiceEventInterface.sendEvent(event);
+ }
+ }
+
+ public void sendEvent(final ApexEvent event) {
+ engineServiceEventInterface.sendEvent(event);
+ }
+
+
+ public EngineService getService() {
+ return service;
+ }
+
+ public void destroy() throws Exception {
+ if (service != null) {
+ LOGGER.info("Stopping EngineService ... ");
+ service.stop();
+ final long currentTimeInMillSec = System.currentTimeMillis();
+ while (!service.isStopped()) {
+ if (System.currentTimeMillis() - currentTimeInMillSec > STOP_TIME_OUT) {
+ LOGGER.warn("Timed Out EngineService status: ", service.isStopped());
+ break;
+ }
+ ThreadUtilities.sleep(500);
+ }
+ service = null;
+ }
+ }
+
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexEngineBenchmark.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexEngineBenchmark.java
new file mode 100644
index 000000000..d7a4ef800
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/ApexEngineBenchmark.java
@@ -0,0 +1,137 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.benchmark;
+
+import static org.junit.Assert.assertEquals;
+
+import java.util.concurrent.TimeUnit;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
+import org.onap.policy.apex.service.engine.event.ApexEvent;
+import org.onap.policy.apex.service.engine.utils.Utils;
+import org.onap.policy.apex.test.common.model.EvalDomainModelFactory;
+import org.python.icu.impl.Assert;
+import org.slf4j.ext.XLogger;
+import org.slf4j.ext.XLoggerFactory;
+
+/**
+ * The Class ApexEngineBenchmark.
+ */
+public class ApexEngineBenchmark {
+ // Logger for this class
+ private static final XLogger LOGGER = XLoggerFactory.getXLogger(ApexEngineBenchmark.class);
+
+ private static final String TARGET = "apex";
+ private static final String SOURCE = "test";
+ private static final String NAME = "Event0000";
+ private static final String VERSION = "0.0.1";
+ private static final String PACKAGE = "org.onap.policy.apex.domains.sample.events";
+
+ private static final long TIME_OUT_IN_MILLISEC = TimeUnit.MINUTES.toMillis(1);
+
+ private String apexECAModelString;
+ private String apexOODAModelString;
+
+ @Before
+ public void setUp() throws Exception {
+ apexECAModelString = Utils.getModelString(new EvalDomainModelFactory().getECAPolicyModel());
+ apexOODAModelString = Utils.getModelString(new EvalDomainModelFactory().getOODAPolicyModel());
+ }
+
+ @Test
+ public void testBenchmark_SingletonWorker() throws Exception {
+ executeTest(apexECAModelString, 100, 1, 20);
+ executeTest(apexOODAModelString, 100, 1, 20);
+ }
+
+ @Test
+ public void testBenchmark_3ThreadWorker() throws Exception {
+ executeTest(apexECAModelString, 1000, 3, 10);
+ executeTest(apexOODAModelString, 100, 3, 10);
+ }
+
+ @Test
+ public void testBenchmark_10ThreadWorker() throws Exception {
+ executeTest(apexECAModelString, 2000, 10, 10);
+ executeTest(apexOODAModelString, 2000, 10, 10);
+ }
+
+ @Test
+ public void testBenchmark_50ThreadWorker() throws Exception {
+ executeTest(apexECAModelString, 3000, 50, 10);
+ executeTest(apexOODAModelString, 3000, 50, 10);
+ }
+
+ @Test
+ public void TestE_AvailableProcessorsThreadWorker() throws Exception {
+ final int cores = Runtime.getRuntime().availableProcessors();
+ executeTest(apexECAModelString, 3000, cores, 10);
+ executeTest(apexOODAModelString, 3000, cores, 10);
+ }
+
+ private void executeTest(final String policyModel, final int eventsCount, final int threads, final int loop)
+ throws Exception {
+
+ LOGGER.info("Running Test with Event count: {}, Instance count: {} and loop: {}", eventsCount, threads, loop);
+ final TestApexEventListener apexEventListener = new TestApexEventListener();
+
+ final ApexBaseBenchMarkTest apexBaseBenchMarkTest =
+ new ApexBaseBenchMarkTest(policyModel, threads, apexEventListener);
+
+ try {
+ apexBaseBenchMarkTest.setUp();
+ for (int i = 0; i < loop; i++) {
+ sendEvents(apexBaseBenchMarkTest, eventsCount);
+ final long currentTimeInMillSec = System.currentTimeMillis();
+ while (apexEventListener.getEventReceived() < eventsCount) {
+ if (System.currentTimeMillis() - currentTimeInMillSec > TIME_OUT_IN_MILLISEC) {
+ LOGGER.warn("Wait timed out ... ");
+ break;
+ }
+ ThreadUtilities.sleep(500);
+ }
+ assertEquals(eventsCount, apexEventListener.getEventReceived());
+ apexEventListener.printResult();
+ apexEventListener.reset();
+ }
+ } catch (final Exception exception) {
+ Assert.fail(exception);
+ } finally {
+ apexBaseBenchMarkTest.destroy();
+ LOGGER.info("Finished Running Test with Event count: {}, Instance count: {} and loop: {}", eventsCount,
+ threads, loop);
+ }
+ }
+
+ public void sendEvents(final ApexBaseBenchMarkTest apexBaseBenchMarkTest, final int eventsCount) throws Exception {
+ for (int eventNum = 0; eventNum < eventsCount; eventNum++) {
+ final long currentTimeMillis = System.currentTimeMillis();
+ final ApexEvent event = new ApexEvent(NAME, VERSION, PACKAGE, SOURCE, TARGET);
+ event.put("TestTemperature", eventNum);
+ event.put("FirstEventTimestamp", currentTimeMillis);
+ event.put("SentTimestamp", currentTimeMillis);
+ event.put("EventNumber", eventNum);
+ apexBaseBenchMarkTest.sendEvent(event);
+ }
+ }
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/TestApexEventListener.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/TestApexEventListener.java
new file mode 100644
index 000000000..b2de8f072
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/benchmark/TestApexEventListener.java
@@ -0,0 +1,92 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2018 Ericsson. 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.benchmark;
+
+import static org.junit.Assert.assertNull;
+
+import java.util.Queue;
+import java.util.concurrent.ConcurrentLinkedQueue;
+import java.util.concurrent.atomic.AtomicLong;
+
+import org.onap.policy.apex.service.engine.event.ApexEvent;
+import org.onap.policy.apex.service.engine.runtime.ApexEventListener;
+import org.slf4j.ext.XLogger;
+import org.slf4j.ext.XLoggerFactory;
+
+public class TestApexEventListener implements ApexEventListener {
+
+ private static final String SENT_TIMESTAMP = "SentTimestamp";
+ private static final XLogger LOGGER = XLoggerFactory.getXLogger(TestApexEventListener.class);
+ private static final String RECVD_TIMESTAMP = "RecvdTimestamp";
+ private Queue<ApexEvent> queue;
+
+ private final AtomicLong eventReceived = new AtomicLong();
+
+ public TestApexEventListener() {
+ this.queue = new ConcurrentLinkedQueue<ApexEvent>();
+ }
+
+ @Override
+ public void onApexEvent(final ApexEvent apexEvent) {
+ apexEvent.put(RECVD_TIMESTAMP, System.currentTimeMillis());
+ eventReceived.incrementAndGet();
+ queue.add(apexEvent);
+ }
+
+ public void printResult() {
+ if (!queue.isEmpty()) {
+ long maxTimeInMilliSeconds = 0;
+ long minTimeInMilliSeconds = Long.MAX_VALUE;
+ final long numEvents = queue.size();
+ long totalTimeInMilliSeconds = 0;
+ for (final ApexEvent apexEvent : queue) {
+ assertNull(apexEvent.getExceptionMessage());
+ final Long endTimeInMilliSeconds = (Long) apexEvent.get(RECVD_TIMESTAMP);
+ final Long startTimeInMilliSeconds = (Long) apexEvent.get(SENT_TIMESTAMP);
+ final long timeTaken = endTimeInMilliSeconds - startTimeInMilliSeconds;
+ totalTimeInMilliSeconds += timeTaken;
+ if (timeTaken > maxTimeInMilliSeconds) {
+ maxTimeInMilliSeconds = timeTaken;
+ }
+ if (timeTaken < minTimeInMilliSeconds) {
+ minTimeInMilliSeconds = timeTaken;
+ }
+ }
+ LOGGER.info("Average Time Taken to process {} events: {} ms", numEvents,
+ (totalTimeInMilliSeconds / numEvents));
+ LOGGER.info("Max Time Taken: {} ms", maxTimeInMilliSeconds);
+ LOGGER.info("Min Time Taken: {} ms", minTimeInMilliSeconds);
+ }
+ }
+
+ public void reset() {
+ this.queue = new ConcurrentLinkedQueue<ApexEvent>();
+ eventReceived.set(0);;
+ }
+
+ public Queue<ApexEvent> getQueue() {
+ return queue;
+ }
+
+ public long getEventReceived() {
+ return eventReceived.get();
+ }
+
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/BaseTest.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/BaseTest.java
new file mode 100644
index 000000000..d38107daf
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/BaseTest.java
@@ -0,0 +1,120 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2018 Ericsson. 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.main;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+
+import java.io.File;
+import java.io.IOException;
+import java.nio.file.Files;
+import java.util.concurrent.TimeUnit;
+
+import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
+import org.onap.policy.apex.model.utilities.TextFileUtils;
+
+public class BaseTest {
+ protected final static long TIME_OUT_IN_MS = TimeUnit.SECONDS.toMillis(10);
+
+ protected long getFileLength(final String file, final long expectedFileSize) throws IOException {
+ return getFileLength(10, file, expectedFileSize);
+ }
+
+ protected long getFileLength(final int loopTime, final String file, final long expectedFileSize)
+ throws IOException {
+ long length = 0;
+ for (int i = 0; i < loopTime; i++) {
+ final String fileString = TextFileUtils.getTextFileAsString(file).replaceAll("\\s+", "");
+ length = fileString.length();
+ if (length > 0 && length >= expectedFileSize) {
+ break;
+ }
+ ThreadUtilities.sleep(500);
+ }
+ return length;
+ }
+
+ protected void waitForOutFiles(final File... files) {
+ final long timeInMillis = System.currentTimeMillis();
+ while (!isFilesExist(files)) {
+ if (System.currentTimeMillis() - timeInMillis > TIME_OUT_IN_MS) {
+ break;
+ }
+ ThreadUtilities.sleep(500);
+ }
+
+ }
+
+ private void assertFilesExists(final File... files) {
+ for (final File file : files) {
+ assertTrue("Test failed, the output " + file + "event file was not created", file.exists());
+ }
+ }
+
+ private void deleteFiles(final File... files) throws IOException {
+ for (final File file : files) {
+ Files.deleteIfExists(file.toPath());
+ }
+ }
+
+ private boolean isFilesExist(final File[] files) {
+ for (final File file : files) {
+ if (!file.exists()) {
+ return false;
+ }
+ }
+ return true;
+ }
+
+ protected File[] toFile(final String[] filesPath) {
+ if (filesPath == null || filesPath.length == 0) {
+ return new File[] {};
+ }
+ final File[] files = new File[filesPath.length];
+
+ for (int index = 0; index < filesPath.length; index++) {
+ files[index] = new File(filesPath[index]);
+ }
+
+ return files;
+ }
+
+ protected void testFileEvents(final String[] args, final String[] expectedFilesPath, final long expectedFileSize)
+ throws Exception {
+ final ApexMain apexMain = new ApexMain(args);
+
+ final File[] expectedFiles = toFile(expectedFilesPath);
+ try {
+
+ waitForOutFiles(expectedFiles);
+ assertFilesExists(expectedFiles);
+
+ for (final String filePath : expectedFilesPath) {
+ assertEquals(expectedFileSize, getFileLength(filePath, expectedFileSize));
+ }
+
+ apexMain.shutdown();
+
+ } finally {
+ deleteFiles(expectedFiles);
+ }
+ }
+
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMIMO.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMIMO.java
new file mode 100644
index 000000000..714deba30
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMIMO.java
@@ -0,0 +1,36 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.main;
+
+import org.junit.Test;
+
+public class TestAsyncEventMIMO extends BaseTest {
+
+ @Test
+ public void testJsonFileAsyncMIMO() throws Exception {
+ final String[] args = {"-c", "src/test/resources/parameters/File2FileJsonEventAsyncMIMO.json"};
+ final String[] outFilePaths = {"src/test/resources/events/EventsOutMulti0.json",
+ "src/test/resources/events/EventsOutMulti1.json", "src/test/resources/events/EventsOutMulti2.json"};
+
+ testFileEvents(args, outFilePaths, 48956 * 3);
+ }
+
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMISO.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMISO.java
new file mode 100644
index 000000000..c5e7f4d9c
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventMISO.java
@@ -0,0 +1,33 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.main;
+
+import org.junit.Test;
+
+public class TestAsyncEventMISO extends BaseTest {
+
+ @Test
+ public void testJsonFileAsyncMISO() throws Exception {
+ final String[] args = {"-c", "src/test/resources/parameters/File2FileJsonEventAsyncMISO.json"};
+
+ testFileEvents(args, new String[] {"src/test/resources/events/EventsOutSingle.json"}, 48956 * 3);
+ }
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSIMO.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSIMO.java
new file mode 100644
index 000000000..0f570679a
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSIMO.java
@@ -0,0 +1,36 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.main;
+
+import org.junit.Test;
+
+public class TestAsyncEventSIMO extends BaseTest {
+
+ @Test
+ public void testJsonFileAsyncSIMO() throws Exception {
+ final String[] args = {"-c", "src/test/resources/parameters/File2FileJsonEventAsyncSIMO.json"};
+ final String[] outFilePaths = {"src/test/resources/events/EventsOutMulti0.json",
+ "src/test/resources/events/EventsOutMulti1.json", "src/test/resources/events/EventsOutMulti2.json"};
+
+ testFileEvents(args, outFilePaths, 48956);
+ }
+
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSISO.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSISO.java
new file mode 100644
index 000000000..4152e20c9
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestAsyncEventSISO.java
@@ -0,0 +1,33 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.main;
+
+import org.junit.Test;
+
+public class TestAsyncEventSISO extends BaseTest {
+
+ @Test
+ public void testJsonFileAsyncSISO() throws Exception {
+ final String[] args = {"-c", "src/test/resources/parameters/File2FileJsonEventAsyncSISO.json"};
+
+ testFileEvents(args, new String[] {"src/test/resources/events/EventsOutSingle.json"}, 48956);
+ }
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventMIMO.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventMIMO.java
new file mode 100644
index 000000000..ad1a9810a
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventMIMO.java
@@ -0,0 +1,36 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.main;
+
+import org.junit.Test;
+
+public class TestSyncEventMIMO extends BaseTest {
+
+ @Test
+ public void testJsonFileAsyncMIMO() throws Exception {
+ final String[] args = {"-c", "src/test/resources/parameters/File2FileJsonEventSyncMIMO.json"};
+ final String[] outFilePaths = {"src/test/resources/events/EventsOutMulti0.json",
+ "src/test/resources/events/EventsOutMulti1.json", "src/test/resources/events/EventsOutMulti2.json"};
+
+ testFileEvents(args, outFilePaths, 48956 * 3);
+ }
+
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventSISO.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventSISO.java
new file mode 100644
index 000000000..395c2fe0b
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/main/TestSyncEventSISO.java
@@ -0,0 +1,33 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.main;
+
+import org.junit.Test;
+
+public class TestSyncEventSISO extends BaseTest {
+
+ @Test
+ public void testJsonFileAsyncSISO() throws Exception {
+ final String[] args = {"-c", "src/test/resources/parameters/File2FileJsonEventSyncSISO.json"};
+
+ testFileEvents(args, new String[] {"src/test/resources/events/EventsOutSingle.json"}, 48956);
+ }
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceModelUpdateTest.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceModelUpdateTest.java
new file mode 100644
index 000000000..d26580611
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceModelUpdateTest.java
@@ -0,0 +1,363 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.runtime;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+import java.io.IOException;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
+import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
+import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
+import org.onap.policy.apex.model.basicmodel.service.ModelService;
+import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
+import org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters;
+import org.onap.policy.apex.service.engine.event.ApexEvent;
+import org.onap.policy.apex.service.engine.event.ApexEventException;
+import org.onap.policy.apex.service.engine.runtime.impl.EngineServiceImpl;
+import org.onap.policy.apex.service.engine.utils.Utils;
+import org.onap.policy.apex.service.parameters.engineservice.EngineServiceParameters;
+import org.onap.policy.apex.test.common.model.SampleDomainModelFactory;
+import org.slf4j.ext.XLogger;
+import org.slf4j.ext.XLoggerFactory;
+
+
+/**
+ * The Class ApexServiceTest.
+ *
+ * @author Liam Fallon (liam.fallon@ericsson.com)
+ */
+public class ApexServiceModelUpdateTest {
+ // Logger for this class
+ private static final XLogger LOGGER = XLoggerFactory.getXLogger(ApexServiceModelUpdateTest.class);
+
+ private final AxArtifactKey engineServiceKey = new AxArtifactKey("Machine-1_process-1_engine-1", "0.0.0");
+ private final EngineServiceParameters parameters = new EngineServiceParameters();
+ private EngineService service = null;
+ private TestListener listener = null;
+ private int actionEventsReceived = 0;
+
+ private AxPolicyModel apexSamplePolicyModel = null;
+ private String apexSampleModelString;
+
+ /**
+ * Sets up the test by creating an engine and reading in the test policy.
+ *
+ * @throws ApexException if something goes wron
+ * @throws IOException
+ */
+ @Before
+ public void setUp() throws ApexException, IOException {
+ // create engine with 3 threads
+ parameters.setInstanceCount(3);
+ parameters.setName(engineServiceKey.getName());
+ parameters.setVersion(engineServiceKey.getVersion());
+ parameters.setId(100);
+ parameters.getEngineParameters().getExecutorParameterMap().put("MVEL", new MVELExecutorParameters());
+ service = EngineServiceImpl.create(parameters);
+
+ LOGGER.debug("Running TestApexEngine. . .");
+
+ apexSamplePolicyModel = new SampleDomainModelFactory().getSamplePolicyModel("MVEL");
+ assertNotNull(apexSamplePolicyModel);
+
+ apexSampleModelString = Utils.getModelString(apexSamplePolicyModel);
+
+ // create engine
+ listener = new TestListener();
+ service.registerActionListener("MyListener", listener);
+ }
+
+ /**
+ * Tear down the the test infrastructure.
+ *
+ * @throws ApexException if there is an error
+ */
+ @After
+ public void tearDown() throws Exception {
+ if (service != null) {
+ service.stop();
+ }
+ service = null;
+ }
+
+ /**
+ * Test start with no model.
+ */
+ @Test
+ public void testNoModelStart() {
+ try {
+ service.startAll();
+ fail("Engine should not start with no model");
+ } catch (final Exception e) {
+ e.printStackTrace();
+ assertEquals("start()<-Machine-1_process-1_engine-1-0:0.0.0,STOPPED, cannot start engine, "
+ + "engine has not been initialized, its model is not loaded", e.getMessage());
+ }
+ }
+
+ /**
+ * Test model update with string model without force.
+ *
+ * @throws ApexException if there is an error
+ */
+ @Test
+ public void testModelUpdateStringNewNoForce() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexSampleModelString, false);
+ service.startAll();
+ assertEquals(apexSamplePolicyModel.getKey(), ModelService.getModel(AxPolicyModel.class).getKey());
+ }
+
+ /**
+ * Test model update with string model with force.
+ *
+ * @throws ApexException if there is an error
+ */
+ @Test
+ public void testModelUpdateStringNewForce() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexSampleModelString, true);
+ service.startAll();
+ assertEquals(apexSamplePolicyModel.getKey(), ModelService.getModel(AxPolicyModel.class).getKey());
+ }
+
+ /**
+ * Test model update with a new string model without force.
+ *
+ * @throws ApexException if there is an error
+ */
+ @Test
+ public void testModelUpdateStringNewNewNoForce() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexSampleModelString, false);
+ service.startAll();
+ assertEquals(apexSamplePolicyModel.getKey(), ModelService.getModel(AxPolicyModel.class).getKey());
+
+ sendEvents();
+
+ service.updateModel(parameters.getEngineKey(), apexSampleModelString, false);
+ assertEquals(apexSamplePolicyModel.getKey(), ModelService.getModel(AxPolicyModel.class).getKey());
+
+ sendEvents();
+ }
+
+ /**
+ * Test incompatible model update with a model object without force.
+ *
+ * @throws ApexException if there is an error
+ */
+ @Test
+ public void testModelUpdateIncoNoForce() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexSamplePolicyModel, false);
+ service.startAll();
+ assertEquals(apexSamplePolicyModel.getKey(), ModelService.getModel(AxPolicyModel.class).getKey());
+
+ // Different model name, incompatible
+ final AxPolicyModel incoPolicyModel0 = new AxPolicyModel(apexSamplePolicyModel);
+ incoPolicyModel0.getKey().setName("INCOMPATIBLE");
+
+ try {
+ service.updateModel(parameters.getEngineKey(), incoPolicyModel0, false);
+ fail("model update should fail on incompatible model without force being true");
+ } catch (final Exception e) {
+ System.err.println(e.getMessage());
+ assertEquals(
+ "apex model update failed, supplied model with key \"INCOMPATIBLE:0.0.1\" is not a compatible "
+ + "model update from the existing engine model with key \"SamplePolicyModelMVEL:0.0.1\"",
+ e.getMessage());
+ }
+
+ // Still on old model
+ sendEvents();
+
+ // Different major version, incompatible
+ final AxPolicyModel incoPolicyModel1 = new AxPolicyModel(apexSamplePolicyModel);
+ incoPolicyModel1.getKey().setVersion("1.0.1");
+
+ try {
+ service.updateModel(parameters.getEngineKey(), incoPolicyModel1, false);
+ fail("model update should fail on incompatible model without force being true");
+ } catch (final Exception e) {
+ System.err.println(e.getMessage());
+ e.printStackTrace();
+ assertEquals(
+ "apex model update failed, supplied model with key \"SamplePolicyModelMVEL:1.0.1\" is not a compatible "
+ + "model update from the existing engine model with key \"SamplePolicyModelMVEL:0.0.1\"",
+ e.getMessage());
+ }
+
+ // Still on old model
+ sendEvents();
+
+ // Different minor version, compatible
+ final AxPolicyModel coPolicyModel0 = new AxPolicyModel(apexSamplePolicyModel);
+ coPolicyModel0.getKey().setVersion("0.1.0");
+ service.updateModel(parameters.getEngineKey(), coPolicyModel0, false);
+
+ // On new compatible model
+ sendEvents();
+
+ // Different patch version, compatible
+ final AxPolicyModel coPolicyModel1 = new AxPolicyModel(apexSamplePolicyModel);
+ coPolicyModel1.getKey().setVersion("0.0.2");
+ service.updateModel(parameters.getEngineKey(), coPolicyModel1, false);
+
+ // On new compatible model
+ sendEvents();
+
+ }
+
+ /**
+ * Test incompatible model update with a model object with force.
+ *
+ * @throws ApexException if there is an error
+ */
+ @Test
+ public void testModelUpdateIncoForce() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexSamplePolicyModel, false);
+ service.startAll();
+ assertEquals(apexSamplePolicyModel.getKey(), ModelService.getModel(AxPolicyModel.class).getKey());
+
+ // Different model name, incompatible
+ final AxPolicyModel incoPolicyModel0 = new AxPolicyModel(apexSamplePolicyModel);
+ incoPolicyModel0.getKey().setName("INCOMPATIBLE");
+ service.updateModel(parameters.getEngineKey(), incoPolicyModel0, true);
+
+ // On updated model
+ sendEvents();
+
+ // Different major version, incompatible
+ final AxPolicyModel incoPolicyModel1 = new AxPolicyModel(apexSamplePolicyModel);
+ incoPolicyModel1.getKey().setVersion("1.0.1");
+ service.updateModel(parameters.getEngineKey(), incoPolicyModel1, true);
+
+ // On updated model
+ sendEvents();
+
+ // Different minor version, compatible
+ final AxPolicyModel coPolicyModel0 = new AxPolicyModel(apexSamplePolicyModel);
+ coPolicyModel0.getKey().setVersion("0.1.0");
+ service.updateModel(parameters.getEngineKey(), coPolicyModel0, true);
+
+ // On new compatible model
+ sendEvents();
+
+ // Different patch version, compatible
+ final AxPolicyModel coPolicyModel1 = new AxPolicyModel(apexSamplePolicyModel);
+ coPolicyModel1.getKey().setVersion("0.0.2");
+ service.updateModel(parameters.getEngineKey(), coPolicyModel1, true);
+
+ // On new compatible model
+ sendEvents();
+
+ }
+
+ /**
+ * Utility method to send some events into the test engine.
+ *
+ * @throws ApexEventException if there is an error
+ */
+ private void sendEvents() throws ApexEventException {
+ final EngineServiceEventInterface engineServiceEventInterface = service.getEngineServiceEventInterface();
+
+ // Send some events
+ final Date testStartTime = new Date();
+ final Map<String, Object> eventDataMap = new HashMap<String, Object>();
+ eventDataMap.put("TestSlogan", "This is a test slogan");
+ eventDataMap.put("TestMatchCase", (byte) 123);
+ eventDataMap.put("TestTimestamp", testStartTime.getTime());
+ eventDataMap.put("TestTemperature", 34.5445667);
+
+ final ApexEvent event =
+ new ApexEvent("Event0000", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event.putAll(eventDataMap);
+ engineServiceEventInterface.sendEvent(event);
+
+ final ApexEvent event2 =
+ new ApexEvent("Event0100", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event2.putAll(eventDataMap);
+ engineServiceEventInterface.sendEvent(event2);
+
+ // Wait for results
+ while (actionEventsReceived < 2) {
+ ThreadUtilities.sleep(100);
+ }
+ ThreadUtilities.sleep(500);
+ }
+
+ /**
+ * The listener interface for receiving test events. The class that is interested in processing
+ * a test event implements this interface, and the object created with that class is registered
+ * with a component using the component's <code>addTestListener</code> method. When the test
+ * event occurs, that object's appropriate method is invoked.
+ *
+ * @see TestEvent
+ */
+ private final class TestListener implements ApexEventListener {
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see
+ * org.onap.policy.apex.service.engine.runtime.ApexEventListener#onApexEvent(org.onap.policy
+ * .apex.service.engine.event.ApexEvent)
+ */
+ @Override
+ public synchronized void onApexEvent(final ApexEvent event) {
+ LOGGER.debug("result 1 is:" + event);
+ checkResult(event);
+ actionEventsReceived++;
+
+ final Date testStartTime = new Date((Long) event.get("TestTimestamp"));
+ final Date testEndTime = new Date();
+
+ LOGGER.info("policy execution time: " + (testEndTime.getTime() - testStartTime.getTime()) + "ms");
+ }
+
+ /**
+ * Check result.
+ *
+ * @param result the result
+ */
+ private void checkResult(final ApexEvent result) {
+ assertTrue(result.getName().startsWith("Event0004") || result.getName().startsWith("Event0104"));
+
+ assertTrue(result.get("TestSlogan").equals("This is a test slogan"));
+ assertTrue(result.get("TestMatchCase").equals(new Byte((byte) 123)));
+ assertTrue(result.get("TestTemperature").equals(34.5445667));
+ assertTrue(((byte) result.get("TestMatchCaseSelected")) >= 0
+ && ((byte) result.get("TestMatchCaseSelected") <= 3));
+ assertTrue(((byte) result.get("TestEstablishCaseSelected")) >= 0
+ && ((byte) result.get("TestEstablishCaseSelected") <= 3));
+ assertTrue(((byte) result.get("TestDecideCaseSelected")) >= 0
+ && ((byte) result.get("TestDecideCaseSelected") <= 3));
+ assertTrue(
+ ((byte) result.get("TestActCaseSelected")) >= 0 && ((byte) result.get("TestActCaseSelected") <= 3));
+ }
+ }
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceTest.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceTest.java
new file mode 100644
index 000000000..c5617e1e4
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/runtime/ApexServiceTest.java
@@ -0,0 +1,474 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2016-2018 Ericsson. 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.runtime;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.fail;
+
+import java.util.Date;
+import java.util.HashMap;
+import java.util.Map;
+
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
+import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
+import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
+import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
+import org.onap.policy.apex.plugins.executor.mvel.MVELExecutorParameters;
+import org.onap.policy.apex.service.engine.event.ApexEvent;
+import org.onap.policy.apex.service.engine.runtime.impl.EngineServiceImpl;
+import org.onap.policy.apex.service.engine.utils.Utils;
+import org.onap.policy.apex.service.parameters.engineservice.EngineServiceParameters;
+import org.onap.policy.apex.test.common.model.SampleDomainModelFactory;
+import org.slf4j.ext.XLogger;
+import org.slf4j.ext.XLoggerFactory;
+
+/**
+ * The Class ApexServiceTest.
+ *
+ * @author Liam Fallon (liam.fallon@ericsson.com)
+ */
+public class ApexServiceTest {
+ // Logger for this class
+ private static final XLogger LOGGER = XLoggerFactory.getXLogger(ApexServiceTest.class);
+
+ private static final long MAX_STOP_WAIT = 5000; // 5 sec
+ private static final long MAX_START_WAIT = 5000; // 5 sec
+ private static final long MAX_RECV_WAIT = 5000; // 5 sec
+
+ private final static AxArtifactKey engineServiceKey = new AxArtifactKey("Machine-1_process-1_engine-1", "0.0.0");
+ private final static EngineServiceParameters parameters = new EngineServiceParameters();
+ private static EngineService service = null;
+ private static TestListener listener = null;
+ private static AxPolicyModel apexPolicyModel = null;
+ private static int actionEventsReceived = 0;
+
+ private static String apexModelString;
+
+ private boolean waitFlag = true;
+
+ /**
+ * Sets the up.
+ *
+ * @throws Exception the exception
+ */
+ @BeforeClass
+ public static void setUp() throws Exception {
+ // create engine with 3 threads
+ parameters.setInstanceCount(3);
+ parameters.setName(engineServiceKey.getName());
+ parameters.setVersion(engineServiceKey.getVersion());
+ parameters.setId(100);
+ parameters.getEngineParameters().getExecutorParameterMap().put("MVEL", new MVELExecutorParameters());
+ service = EngineServiceImpl.create(parameters);
+
+
+ LOGGER.debug("Running TestApexEngine. . .");
+
+ apexPolicyModel = new SampleDomainModelFactory().getSamplePolicyModel("MVEL");
+ assertNotNull(apexPolicyModel);
+
+ apexModelString = Utils.getModelString(apexPolicyModel);
+
+ // create engine
+ listener = new TestListener();
+ service.registerActionListener("Listener", listener);
+ }
+
+ /**
+ * Update the engine then test the engine with 2 sample events.
+ *
+ * @throws ApexException if there is a problem
+ */
+ @Test
+ public void testExecutionSet1() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexModelString, true);
+ // Start the service
+ service.startAll();
+ final long starttime = System.currentTimeMillis();
+ for (final AxArtifactKey engineKey : service.getEngineKeys()) {
+ LOGGER.info("{}", service.getStatus(engineKey));
+ }
+ while (!service.isStarted() && System.currentTimeMillis() - starttime < MAX_START_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStarted()) {
+ fail("Apex Service " + service.getKey() + " failed to start after " + MAX_START_WAIT + " ms");
+ }
+
+ final EngineServiceEventInterface engineServiceEventInterface = service.getEngineServiceEventInterface();
+
+ // Send some events
+ final Date testStartTime = new Date();
+ final Map<String, Object> eventDataMap = new HashMap<String, Object>();
+ eventDataMap.put("TestSlogan", "This is a test slogan");
+ eventDataMap.put("TestMatchCase", (byte) 123);
+ eventDataMap.put("TestTimestamp", testStartTime.getTime());
+ eventDataMap.put("TestTemperature", 34.5445667);
+
+ final ApexEvent event =
+ new ApexEvent("Event0000", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event.setExecutionID(System.nanoTime());
+ event.putAll(eventDataMap);
+ engineServiceEventInterface.sendEvent(event);
+
+ final ApexEvent event2 =
+ new ApexEvent("Event0100", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event2.setExecutionID(System.nanoTime());
+ event2.putAll(eventDataMap);
+ engineServiceEventInterface.sendEvent(event2);
+
+ // Wait for results
+ final long recvtime = System.currentTimeMillis();
+ while (actionEventsReceived < 2 && System.currentTimeMillis() - recvtime < MAX_RECV_WAIT) {
+ ThreadUtilities.sleep(100);
+ }
+ ThreadUtilities.sleep(500);
+ assertEquals(2, actionEventsReceived);
+ actionEventsReceived = 0;
+
+
+ // Stop all engines on this engine service
+ final long stoptime = System.currentTimeMillis();
+ service.stop();
+ while (!service.isStopped() && System.currentTimeMillis() - stoptime < MAX_STOP_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStopped()) {
+ fail("Apex Service " + service.getKey() + " failed to stop after " + MAX_STOP_WAIT + " ms");
+ }
+ }
+
+ /**
+ * Update the engine then test the engine with 2 sample events.
+ *
+ * @throws ApexException if there is a problem
+ */
+ @Test
+ public void testExecutionSet1Sync() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexModelString, true);
+ // Start the service
+ service.startAll();
+ final long starttime = System.currentTimeMillis();
+ for (final AxArtifactKey engineKey : service.getEngineKeys()) {
+ LOGGER.info("{}", service.getStatus(engineKey));
+ }
+ while (!service.isStarted() && System.currentTimeMillis() - starttime < MAX_START_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStarted()) {
+ fail("Apex Service " + service.getKey() + " failed to start after " + MAX_START_WAIT + " ms");
+ }
+
+ // Send some events
+ final Date testStartTime = new Date();
+ final Map<String, Object> eventDataMap = new HashMap<String, Object>();
+ eventDataMap.put("TestSlogan", "This is a test slogan");
+ eventDataMap.put("TestMatchCase", (byte) 123);
+ eventDataMap.put("TestTimestamp", testStartTime.getTime());
+ eventDataMap.put("TestTemperature", 34.5445667);
+
+ final ApexEvent event1 =
+ new ApexEvent("Event0000", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event1.putAll(eventDataMap);
+ event1.setExecutionID(System.nanoTime());
+
+ final ApexEventListener myEventListener1 = new ApexEventListener() {
+ @Override
+ public void onApexEvent(final ApexEvent responseEvent) {
+ assertNotNull("Synchronous sendEventWait failed", responseEvent);
+ assertEquals(event1.getExecutionID(), responseEvent.getExecutionID());
+ waitFlag = false;
+ }
+ };
+
+ waitFlag = true;
+ service.registerActionListener("Listener1", myEventListener1);
+ service.getEngineServiceEventInterface().sendEvent(event1);
+
+ while (waitFlag) {
+ ThreadUtilities.sleep(100);
+ }
+
+ final ApexEvent event2 =
+ new ApexEvent("Event0100", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event2.setExecutionID(System.nanoTime());
+ event2.putAll(eventDataMap);
+
+ final ApexEventListener myEventListener2 = new ApexEventListener() {
+ @Override
+ public void onApexEvent(final ApexEvent responseEvent) {
+ assertNotNull("Synchronous sendEventWait failed", responseEvent);
+ assertEquals(event2.getExecutionID(), responseEvent.getExecutionID());
+ assertEquals(2, actionEventsReceived);
+ waitFlag = false;
+ }
+ };
+
+ waitFlag = true;
+ service.deregisterActionListener("Listener1");
+ service.registerActionListener("Listener2", myEventListener2);
+ service.getEngineServiceEventInterface().sendEvent(event2);
+
+ while (waitFlag) {
+ ThreadUtilities.sleep(100);
+ }
+ service.deregisterActionListener("Listener2");
+
+ actionEventsReceived = 0;
+
+ // Stop all engines on this engine service
+ final long stoptime = System.currentTimeMillis();
+ service.stop();
+ while (!service.isStopped() && System.currentTimeMillis() - stoptime < MAX_STOP_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStopped()) {
+ fail("Apex Service " + service.getKey() + " failed to stop after " + MAX_STOP_WAIT + " ms");
+ }
+ }
+
+ /**
+ * Update the engine then test the engine with 2 sample events - again.
+ *
+ * @throws ApexException if there is a problem
+ */
+ @Test
+ public void testExecutionSet2() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexModelString, true);
+ // Start the service
+ service.startAll();
+ final long starttime = System.currentTimeMillis();
+ for (final AxArtifactKey engineKey : service.getEngineKeys()) {
+ LOGGER.info("{}", service.getStatus(engineKey));
+ }
+ while (!service.isStarted() && System.currentTimeMillis() - starttime < MAX_START_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStarted()) {
+ fail("Apex Service " + service.getKey() + " failed to start after " + MAX_START_WAIT + " ms");
+ }
+
+ final EngineServiceEventInterface engineServiceEventInterface = service.getEngineServiceEventInterface();
+
+ // Send some events
+ final Date testStartTime = new Date();
+ final Map<String, Object> eventDataMap = new HashMap<String, Object>();
+ eventDataMap.put("TestSlogan", "This is a test slogan");
+ eventDataMap.put("TestMatchCase", (byte) 123);
+ eventDataMap.put("TestTimestamp", testStartTime.getTime());
+ eventDataMap.put("TestTemperature", 34.5445667);
+
+ final ApexEvent event =
+ new ApexEvent("Event0000", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event.setExecutionID(System.nanoTime());
+ event.putAll(eventDataMap);
+ engineServiceEventInterface.sendEvent(event);
+
+ final ApexEvent event2 =
+ new ApexEvent("Event0100", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event2.setExecutionID(System.nanoTime());
+ event2.putAll(eventDataMap);
+ engineServiceEventInterface.sendEvent(event2);
+
+ // Wait for results
+ final long recvtime = System.currentTimeMillis();
+ while (actionEventsReceived < 2 && System.currentTimeMillis() - recvtime < MAX_RECV_WAIT) {
+ ThreadUtilities.sleep(100);
+ }
+ ThreadUtilities.sleep(500);
+ assertEquals(2, actionEventsReceived);
+ actionEventsReceived = 0;
+
+ // Stop all engines on this engine service
+ final long stoptime = System.currentTimeMillis();
+ service.stop();
+ while (!service.isStopped() && System.currentTimeMillis() - stoptime < MAX_STOP_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStopped()) {
+ fail("Apex Service " + service.getKey() + " failed to stop after " + MAX_STOP_WAIT + " ms");
+ }
+ }
+
+ /**
+ * Update the engine then test the engine with 2 sample events - again.
+ *
+ * @throws ApexException if there is a problem
+ */
+ @Test
+ public void testExecutionSet2Sync() throws ApexException {
+ service.updateModel(parameters.getEngineKey(), apexModelString, true);
+ // Start the service
+ service.startAll();
+ final long starttime = System.currentTimeMillis();
+ for (final AxArtifactKey engineKey : service.getEngineKeys()) {
+ LOGGER.info("{}", service.getStatus(engineKey));
+ }
+ while (!service.isStarted() && System.currentTimeMillis() - starttime < MAX_START_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStarted()) {
+ fail("Apex Service " + service.getKey() + " failed to start after " + MAX_START_WAIT + " ms");
+ }
+
+ // Send some events
+ final Date testStartTime = new Date();
+ final Map<String, Object> eventDataMap = new HashMap<String, Object>();
+ eventDataMap.put("TestSlogan", "This is a test slogan");
+ eventDataMap.put("TestMatchCase", (byte) 123);
+ eventDataMap.put("TestTimestamp", testStartTime.getTime());
+ eventDataMap.put("TestTemperature", 34.5445667);
+
+ final ApexEvent event1 =
+ new ApexEvent("Event0000", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event1.putAll(eventDataMap);
+
+ final ApexEventListener myEventListener1 = new ApexEventListener() {
+ @Override
+ public void onApexEvent(final ApexEvent responseEvent) {
+ assertNotNull("Synchronous sendEventWait failed", responseEvent);
+ assertEquals(event1.getExecutionID(), responseEvent.getExecutionID());
+ waitFlag = false;
+ }
+ };
+
+ waitFlag = true;
+ service.registerActionListener("Listener1", myEventListener1);
+ service.getEngineServiceEventInterface().sendEvent(event1);
+
+ while (waitFlag) {
+ ThreadUtilities.sleep(100);
+ }
+
+ final ApexEvent event2 =
+ new ApexEvent("Event0100", "0.0.1", "org.onap.policy.apex.domains.sample.events", "test", "apex");
+ event2.putAll(eventDataMap);
+
+ final ApexEventListener myEventListener2 = new ApexEventListener() {
+ @Override
+ public void onApexEvent(final ApexEvent responseEvent) {
+ assertNotNull("Synchronous sendEventWait failed", responseEvent);
+ assertEquals(event2.getExecutionID(), responseEvent.getExecutionID());
+ waitFlag = false;
+ }
+ };
+
+ waitFlag = true;
+ service.registerActionListener("Listener2", myEventListener2);
+ service.deregisterActionListener("Listener1");
+ service.getEngineServiceEventInterface().sendEvent(event2);
+
+ while (waitFlag) {
+ ThreadUtilities.sleep(100);
+ }
+
+ service.deregisterActionListener("Listener2");
+
+ assertEquals(2, actionEventsReceived);
+
+ actionEventsReceived = 0;
+
+ // Stop all engines on this engine service
+ final long stoptime = System.currentTimeMillis();
+ service.stop();
+ while (!service.isStopped() && System.currentTimeMillis() - stoptime < MAX_STOP_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStopped()) {
+ fail("Apex Service " + service.getKey() + " failed to stop after " + MAX_STOP_WAIT + " ms");
+ }
+ }
+
+ /**
+ * Tear down the the test infrastructure.
+ *
+ * @throws ApexException if there is an error
+ */
+ @AfterClass
+ public static void tearDown() throws Exception {
+ // Stop all engines on this engine service
+ final long stoptime = System.currentTimeMillis();
+ service.stop();
+ while (!service.isStopped() && System.currentTimeMillis() - stoptime < MAX_STOP_WAIT) {
+ ThreadUtilities.sleep(200);
+ }
+ if (!service.isStopped()) {
+ fail("Apex Service " + service.getKey() + " failed to stop after " + MAX_STOP_WAIT + " ms");
+ }
+ service = null;
+ }
+
+ /**
+ * The listener interface for receiving test events. The class that is interested in processing
+ * a test event implements this interface, and the object created with that class is registered
+ * with a component using the component's <code>addTestListener</code> method. When the test
+ * event occurs, that object's appropriate method is invoked.
+ *
+ * @see TestEvent
+ */
+ private final static class TestListener implements ApexEventListener {
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see
+ * org.onap.policy.apex.service.engine.runtime.ApexEventListener#onApexEvent(org.onap.policy
+ * .apex.service.engine.event.ApexEvent)
+ */
+ @Override
+ public synchronized void onApexEvent(final ApexEvent event) {
+ LOGGER.debug("result 1 is:" + event);
+ checkResult(event);
+ actionEventsReceived++;
+
+ final Date testStartTime = new Date((Long) event.get("TestTimestamp"));
+ final Date testEndTime = new Date();
+
+ LOGGER.info("policy execution time: " + (testEndTime.getTime() - testStartTime.getTime()) + "ms");
+ }
+
+ /**
+ * Check result.
+ *
+ * @param result the result
+ */
+ private void checkResult(final ApexEvent result) {
+ assertTrue(result.getName().startsWith("Event0004") || result.getName().startsWith("Event0104"));
+
+ assertTrue(result.get("TestSlogan").equals("This is a test slogan"));
+ assertTrue(result.get("TestMatchCase").equals(new Byte((byte) 123)));
+ assertTrue(result.get("TestTemperature").equals(34.5445667));
+ assertTrue(((byte) result.get("TestMatchCaseSelected")) >= 0
+ && ((byte) result.get("TestMatchCaseSelected") <= 3));
+ assertTrue(((byte) result.get("TestEstablishCaseSelected")) >= 0
+ && ((byte) result.get("TestEstablishCaseSelected") <= 3));
+ assertTrue(((byte) result.get("TestDecideCaseSelected")) >= 0
+ && ((byte) result.get("TestDecideCaseSelected") <= 3));
+ assertTrue(
+ ((byte) result.get("TestActCaseSelected")) >= 0 && ((byte) result.get("TestActCaseSelected") <= 3));
+ }
+ }
+}
diff --git a/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/utils/Utils.java b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/utils/Utils.java
new file mode 100644
index 000000000..cfc787d64
--- /dev/null
+++ b/testsuites/performance/performance-benchmark-test/src/test/java/org/onap/policy/apex/service/engine/utils/Utils.java
@@ -0,0 +1,40 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2018 Ericsson. 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.utils;
+
+import java.io.ByteArrayOutputStream;
+import java.io.IOException;
+
+import org.onap.policy.apex.model.basicmodel.handling.ApexModelException;
+import org.onap.policy.apex.model.basicmodel.handling.ApexModelWriter;
+import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
+
+public class Utils {
+
+ private Utils() {}
+
+ public static String getModelString(final AxPolicyModel ecaPolicyModel) throws ApexModelException, IOException {
+ try (final ByteArrayOutputStream baOutputStream = new ByteArrayOutputStream()) {
+ new ApexModelWriter<AxPolicyModel>(AxPolicyModel.class).write(ecaPolicyModel, baOutputStream);
+ return baOutputStream.toString();
+ }
+ }
+
+}