2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2018 Ericsson. All rights reserved.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.testsuites.integration.uservice.adapt.events.syncasync;
23 import static org.junit.Assert.assertEquals;
26 import java.io.IOException;
28 import org.apache.commons.lang3.StringUtils;
29 import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
30 import org.onap.policy.apex.model.utilities.TextFileUtils;
31 import org.onap.policy.apex.service.engine.main.ApexMain;
33 public class BaseEventTest {
34 private static final long TIME_OUT_IN_MS = 10000;
36 private void waitForOutFiles(final String[] expectedFileNames, final long expectedFileSize) throws IOException {
37 final long totalExpectedSize = expectedFileSize * expectedFileNames.length;
39 long startWaitTime = System.currentTimeMillis();
40 long lastTotalSize = 0;
45 for (String expectedFileName : expectedFileNames) {
46 totalSize += getEventCount(expectedFileName);
49 if (totalSize >= totalExpectedSize) {
53 // We're making progress, extend the timeout
54 if (totalSize > lastTotalSize) {
55 lastTotalSize = totalSize;
56 startWaitTime = System.currentTimeMillis();
59 ThreadUtilities.sleep(100);
61 while (TIME_OUT_IN_MS >= System.currentTimeMillis() - startWaitTime);
64 private int getEventCount(final String expectedFileName) throws IOException {
65 File expectedFile = new File(expectedFileName);
67 if (!expectedFile.exists()) {
71 String expectedFileContents = TextFileUtils.getTextFileAsString(expectedFileName);
73 return StringUtils.countMatches(expectedFileContents, "{");
76 protected void testFileEvents(final String[] args, final String[] expectedFileNames, final long expectedFileSize)
78 final ApexMain apexMain = new ApexMain(args);
80 waitForOutFiles(expectedFileNames, expectedFileSize);
84 for (final String expectedFileName : expectedFileNames) {
85 assertEquals(expectedFileSize, getEventCount(expectedFileName));