APEX standalone support for ToscaPolicy format
[policy/apex-pdp.git] / examples / examples-onap-vcpe / src / test / java / org / onap / policy / apex / domains / onap / vcpe / OnapVcpeStandaloneRunner.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.domains.onap.vcpe;
22
23 import org.onap.policy.apex.auth.clieditor.tosca.ApexCliToscaEditorMain;
24 import org.onap.policy.apex.core.infrastructure.threading.ThreadUtilities;
25 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
26 import org.onap.policy.apex.service.engine.main.ApexMain;
27
28 /**
29  * Test the ONAP vCPE use case.
30  */
31 public class OnapVcpeStandaloneRunner {
32
33     private OnapVcpeStandaloneRunner() throws ApexException {
34
35         // @formatter:off
36         final String[] cliArgs = new String[] {
37             "-c",
38             "src/main/resources/policy/ONAPvCPEPolicyModelStandalone.apex",
39             "-ac",
40             "src/main/resources/examples/config/ONAPvCPEStandalone/ApexConfig_Sim.json",
41             "-t",
42             "src/main/resources/tosca/ToscaTemplate.json",
43             "-ot",
44             "target/classes/APEXPolicy.json"
45         };
46         // @formatter:on
47
48         new ApexCliToscaEditorMain(cliArgs);
49
50         // @formatter:off
51         final String[] apexArgs = {
52             "-p",
53             "target/classes/APEXPolicy.json"
54         };
55         // @formatter:on
56         final ApexMain apexMain = new ApexMain(apexArgs);
57
58         ThreadUtilities.sleep(1000000);
59         apexMain.shutdown();
60     }
61
62     public static void main(String[] args) throws ApexException {
63         new OnapVcpeStandaloneRunner();
64     }
65 }