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