5078c9730bc73030206a218465701de448920d83
[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
30 import org.apache.commons.lang3.StringUtils;
31 import org.junit.Test;
32 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
33 import org.onap.policy.apex.service.engine.main.ApexMain;
34 import org.onap.policy.common.utils.resources.TextFileUtils;
35
36 public class JavascriptExecutorFullApexTest {
37
38     @Test
39     public void testFullApexPolicy() throws ApexException {
40         final String[] args = {"src/test/resources/prodcons/File2File.json"};
41
42         final File outFile0 = new File("src/test/resources/events/EventsOut0.json");
43         final File outFile1 = new File("src/test/resources/events/EventsOut1.json");
44         outFile0.deleteOnExit();
45         outFile1.deleteOnExit();
46
47         final ApexMain apexMain = new ApexMain(args);
48         assertNotNull(apexMain);
49
50         await().atMost(10, TimeUnit.SECONDS).until(() -> outFile0.exists());
51         await().atMost(10, TimeUnit.SECONDS).until(() -> outFile1.exists());
52
53         await().atMost(10, TimeUnit.SECONDS).until(() -> fileHasOccurencesOf(outFile0, "BasicEventOut0", 50));
54         await().atMost(10, TimeUnit.SECONDS).until(() -> fileHasOccurencesOf(outFile1, "BasicEventOut1", 50));
55
56         apexMain.shutdown();
57     }
58
59     private boolean fileHasOccurencesOf(final File file, final String token, final int occurenceCount)
60         throws IOException {
61
62         return occurenceCount == StringUtils.countMatches(TextFileUtils.getTextFileAsString(file.getAbsolutePath()),
63             token);
64     }
65 }