Changes for checkstyle 8.32
[policy/apex-pdp.git] / plugins / plugins-executor / plugins-executor-javascript / src / test / java / org / onap / policy / apex / plugins / executor / javascript / JavascriptExecutorFullApexTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020 Nordix Foundation.
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
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
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.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.plugins.executor.javascript;
22
23 import static org.awaitility.Awaitility.await;
24 import static org.junit.Assert.assertNotNull;
25
26 import java.io.File;
27 import java.io.IOException;
28 import java.util.concurrent.TimeUnit;
29 import org.apache.commons.lang3.StringUtils;
30 import org.junit.Test;
31 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
32 import org.onap.policy.apex.service.engine.main.ApexMain;
33 import org.onap.policy.common.utils.resources.TextFileUtils;
34
35 public class JavascriptExecutorFullApexTest {
36
37     @Test
38     public void testFullApexPolicy() throws ApexException {
39         final String[] args = {"src/test/resources/prodcons/File2File.json"};
40
41         final File outFile0 = new File("src/test/resources/events/EventsOut0.json");
42         final File outFile1 = new File("src/test/resources/events/EventsOut1.json");
43         outFile0.deleteOnExit();
44         outFile1.deleteOnExit();
45
46         final ApexMain apexMain = new ApexMain(args);
47         assertNotNull(apexMain);
48
49         await().atMost(10, TimeUnit.SECONDS).until(() -> outFile0.exists());
50         await().atMost(10, TimeUnit.SECONDS).until(() -> outFile1.exists());
51
52         await().atMost(10, TimeUnit.SECONDS).until(() -> fileHasOccurencesOf(outFile0, "BasicEventOut0", 50));
53         await().atMost(10, TimeUnit.SECONDS).until(() -> fileHasOccurencesOf(outFile1, "BasicEventOut1", 50));
54
55         apexMain.shutdown();
56     }
57
58     private boolean fileHasOccurencesOf(final File file, final String token, final int occurenceCount)
59         throws IOException {
60
61         return occurenceCount == StringUtils.countMatches(TextFileUtils.getTextFileAsString(file.getAbsolutePath()),
62             token);
63     }
64 }