Changes for checkstyle 8.32
[policy/apex-pdp.git] / testsuites / integration / integration-uservice-test / src / test / java / org / onap / policy / apex / testsuites / integration / uservice / adapt / events / syncasync / BaseEventTest.java
1 /*-
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
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
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.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.testsuites.integration.uservice.adapt.events.syncasync;
23
24 import static org.junit.Assert.assertEquals;
25
26 import java.io.File;
27 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.service.engine.main.ApexMain;
31 import org.onap.policy.common.utils.resources.TextFileUtils;
32
33 public class BaseEventTest {
34     private static final long TIME_OUT_IN_MS = 10000;
35
36     private void waitForOutFiles(final String[] expectedFileNames, final long expectedFileSize) throws IOException {
37         final long totalExpectedSize = expectedFileSize * expectedFileNames.length;
38
39         long startWaitTime = System.currentTimeMillis();
40         long lastTotalSize = 0;
41
42         do {
43             long totalSize = 0;
44
45             for (String expectedFileName : expectedFileNames) {
46                 totalSize += getEventCount(expectedFileName);
47             }
48
49             if (totalSize >= totalExpectedSize) {
50                 return;
51             }
52
53             // We're making progress, extend the timeout
54             if (totalSize > lastTotalSize) {
55                 lastTotalSize = totalSize;
56                 startWaitTime = System.currentTimeMillis();
57             }
58
59             ThreadUtilities.sleep(100);
60         } while (TIME_OUT_IN_MS >= System.currentTimeMillis() - startWaitTime);
61     }
62
63     private int getEventCount(final String expectedFileName) throws IOException {
64         File expectedFile = new File(expectedFileName);
65
66         if (!expectedFile.exists()) {
67             return 0;
68         }
69
70         String expectedFileContents = TextFileUtils.getTextFileAsString(expectedFileName);
71
72         return StringUtils.countMatches(expectedFileContents, "{");
73     }
74
75     protected void testFileEvents(final String[] args, final String[] expectedFileNames, final long expectedFileSize)
76             throws Exception {
77         final ApexMain apexMain = new ApexMain(args);
78
79         waitForOutFiles(expectedFileNames, expectedFileSize);
80
81         apexMain.shutdown();
82
83         for (final String expectedFileName : expectedFileNames) {
84             assertEquals(expectedFileSize, getEventCount(expectedFileName));
85         }
86     }
87 }