18b8f37cb0d08998a06a4a7eb00fec6517428de7
[policy/apex-pdp.git] / testsuites / integration / integration-uservice-test / src / test / java / org / onap / policy / apex / testsuites / integration / uservice / context / EventAlbumContextTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-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.context;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import java.io.File;
28 import java.io.IOException;
29
30 import org.junit.Before;
31 import org.junit.Rule;
32 import org.junit.Test;
33 import org.junit.rules.TemporaryFolder;
34 import org.onap.policy.apex.auth.clieditor.ApexCommandLineEditorMain;
35 import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
36 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
37 import org.onap.policy.apex.service.engine.main.ApexMain;
38 import org.onap.policy.common.utils.resources.ResourceUtils;
39 import org.onap.policy.common.utils.resources.TextFileUtils;
40
41 public class EventAlbumContextTest {
42     private File tempCommandFile;
43     private File tempLogFile;
44     private File tempModelFile;
45     private String eventContextString;
46     private String configFile;
47     private String outputFile;
48     private String compareFile;
49
50     @Rule
51     public TemporaryFolder tempTestDir = new TemporaryFolder();
52
53     /**
54      * Clear relative file root environment variable.
55      */
56     @Before
57     public void clearRelativeFileRoot() {
58         System.clearProperty("APEX_RELATIVE_FILE_ROOT");
59     }
60
61     @Test
62     public void testJavaEventAlbumContextTest() throws IOException, ApexException {
63         tempCommandFile = tempTestDir.newFile("TestPolicyJavaEventContext.apex");
64         tempLogFile = tempTestDir.newFile("TestPolicyJavaEventContext.log");
65         tempModelFile = tempTestDir.newFile("TestPolicyJavaEventContext.json");
66
67         eventContextString = ResourceUtils.getResourceAsString("examples/scripts/TestPolicyJavaEventContext.apex");
68
69         configFile = "src/test/resources/prodcons/Context_JavaEventAlbum_file2file.json";
70         outputFile = "target/Context_JavaEventAlbum_EventOut.json";
71         compareFile = "src/test/resources/events/Context_JavaEventAlbum_EventOutCompare.json";
72
73         testEventAlbumContextTest();
74     }
75
76     @Test
77     public void testAvroEventAlbumContextTest() throws IOException, ApexException {
78         tempCommandFile = tempTestDir.newFile("TestPolicyAvroEventContext.apex");
79         tempLogFile = tempTestDir.newFile("TestPolicyAvroEventContext.log");
80         tempModelFile = tempTestDir.newFile("TestPolicyAvroEventContext.json");
81
82         eventContextString = ResourceUtils.getResourceAsString("examples/scripts/TestPolicyAvroEventContext.apex");
83
84         configFile = "src/test/resources/prodcons/Context_AvroEventAlbum_file2file.json";
85         outputFile = "target/Context_AvroEventAlbum_EventOut.json";
86         compareFile = "src/test/resources/events/Context_AvroEventAlbum_EventOutCompare.json";
87
88         testEventAlbumContextTest();
89     }
90
91     private void testEventAlbumContextTest() throws IOException, ApexException {
92         TextFileUtils.putStringAsFile(eventContextString, tempCommandFile);
93
94         final String[] cliArgs = new String[] {"-c", tempCommandFile.getCanonicalPath(), "-l",
95             tempLogFile.getAbsolutePath(), "-o", tempModelFile.getAbsolutePath()};
96
97         new ApexCommandLineEditorMain(cliArgs);
98
99         final String[] args = new String[] {"-m", tempModelFile.getAbsolutePath(), "-c", configFile};
100         final ApexMain apexMain = new ApexMain(args);
101
102         // The output event will be in this file
103         final File outputEventFile = new File(outputFile);
104         String receivedApexOutputString = "";
105         for (int tenthsOfSecondsToWait = 100; tenthsOfSecondsToWait > 0; tenthsOfSecondsToWait--) {
106             if (outputEventFile.exists() && outputEventFile.length() > 0) {
107                 // The output event is in this file
108                 receivedApexOutputString =
109                         TextFileUtils.getTextFileAsString(outputEventFile.getCanonicalPath()).replaceAll("\\s+", "");
110                 break;
111             }
112
113             ThreadUtilities.sleep(100);
114         }
115
116         // Shut down Apex
117         apexMain.shutdown();
118
119         assertTrue("Test failed, the output event file was not created", outputEventFile.exists());
120         outputEventFile.delete();
121
122         assertTrue("Test failed, the output event file was empty", receivedApexOutputString.length() > 0);
123
124         // We compare the output to what we expect to get
125         final String expectedFileContent = TextFileUtils.getTextFileAsString(compareFile);
126         final String outputEventCompareString = expectedFileContent.replaceAll("\\s+", "");
127
128         assertEquals(outputEventCompareString, receivedApexOutputString);
129     }
130
131 }