021707141f23330c09de4d6702b7e5e9f5138491
[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
29 import org.apache.commons.lang3.StringUtils;
30 import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
31 import org.onap.policy.apex.service.engine.main.ApexMain;
32 import org.onap.policy.common.utils.resources.TextFileUtils;
33
34 public class BaseEventTest {
35     private static final long TIME_OUT_IN_MS = 10000;
36
37     private void waitForOutFiles(final String[] expectedFileNames, final long expectedFileSize) throws IOException {
38         final long totalExpectedSize = expectedFileSize * expectedFileNames.length;
39
40         long startWaitTime = System.currentTimeMillis();
41         long lastTotalSize = 0;
42
43         do {
44             long totalSize = 0;
45
46             for (String expectedFileName : expectedFileNames) {
47                 totalSize += getEventCount(expectedFileName);
48             }
49
50             if (totalSize >= totalExpectedSize) {
51                 return;
52             }
53
54             // We're making progress, extend the timeout
55             if (totalSize > lastTotalSize) {
56                 lastTotalSize = totalSize;
57                 startWaitTime = System.currentTimeMillis();
58             }
59
60             ThreadUtilities.sleep(100);
61         }
62         while (TIME_OUT_IN_MS >= System.currentTimeMillis() - startWaitTime);
63     }
64
65     private int getEventCount(final String expectedFileName) throws IOException {
66         File expectedFile = new File(expectedFileName);
67
68         if (!expectedFile.exists()) {
69             return 0;
70         }
71
72         String expectedFileContents = TextFileUtils.getTextFileAsString(expectedFileName);
73
74         return StringUtils.countMatches(expectedFileContents, "{");
75     }
76
77     protected void testFileEvents(final String[] args, final String[] expectedFileNames, final long expectedFileSize)
78             throws Exception {
79         final ApexMain apexMain = new ApexMain(args);
80
81         waitForOutFiles(expectedFileNames, expectedFileSize);
82
83         apexMain.shutdown();
84
85         for (final String expectedFileName : expectedFileNames) {
86             assertEquals(expectedFileSize, getEventCount(expectedFileName));
87         }
88     }
89 }