Update css file name in conf.py
[policy/engine.git] / PolicyEngineClient / src / test / java / org / onap / policyengine / ClosedLoopPolicyClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineClient
4  * ================================================================================
5  * Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policyengine;
22
23 import java.io.File;
24 import java.io.FileInputStream;
25 import java.io.FileNotFoundException;
26 import java.io.IOException;
27 import java.io.InputStream;
28 import java.io.StringReader;
29 import java.nio.file.Path;
30 import java.nio.file.Paths;
31 import java.text.SimpleDateFormat;
32 import java.util.Date;
33 import java.util.UUID;
34
35 import javax.json.Json;
36 import javax.json.JsonObject;
37 import javax.json.JsonReader;
38
39 import org.onap.policy.api.PolicyChangeResponse;
40 import org.onap.policy.api.PolicyConfigType;
41 import org.onap.policy.api.PolicyEngine;
42 import org.onap.policy.api.PolicyParameters;
43 import org.onap.policy.api.PolicyType;
44
45 public class ClosedLoopPolicyClient {
46     // For updating a ClosedLoop_Fault policy set the "isEdit" flag to true.
47     // For creating a ClosedLoop_Fault policy set the "isEdit" flag to false.
48     static Boolean isEdit = false;
49
50     // Builds JSONObject from File
51     private static JsonObject buildJson(File jsonInput, String jsonString) throws FileNotFoundException {
52         JsonObject json = null;;
53         JsonReader jsonReader = null;
54         if (jsonString != null && jsonInput == null) {
55             StringReader in = null;
56             in = new StringReader(jsonString);
57             jsonReader = Json.createReader(in);
58             json = jsonReader.readObject();
59             in.close();
60         } else {
61             InputStream in = null;
62             in = new FileInputStream(jsonInput);
63             jsonReader = Json.createReader(in);
64             json = jsonReader.readObject();
65             try {
66                 in.close();
67             } catch (IOException e) {
68                 System.err.println("Exception Occured while closing input stream" + e);
69             }
70         }
71         jsonReader.close();
72
73         return json;
74     }
75
76     /**
77      * main.
78      *
79      * @param args String[] args
80      */
81     public static void main(String[] args) {
82         try {
83             PolicyEngine policyEngine = new PolicyEngine("config.properties");
84             PolicyParameters policyParameters = new PolicyParameters();
85             // Set Policy Type
86             policyParameters.setPolicyConfigType(PolicyConfigType.ClosedLoop_Fault);
87             policyParameters.setPolicyName("MikeAPItests.ClosedLoopFaultApiTest45");
88             policyParameters.setPolicyDescription("This is a sample ClosedLoop_Fault policy CREATE example");
89             // policyParameters.setPolicyScope("MikeAPItests");
90
91             // Set up Micro Services Attributes
92             File jsonFile = null;
93             String msJsonString = null;
94             Path file = Paths.get("C:\\policyAPI\\ClosedLoopJSON\\faultTestJson.json");
95             jsonFile = file.toFile();
96
97             policyParameters.setConfigBody(buildJson(jsonFile, msJsonString).toString());
98             policyParameters.setConfigBodyType(PolicyType.JSON);
99
100             policyParameters.setRequestID(UUID.randomUUID());
101             // Set Safe Policy value for Risk Type
102             SimpleDateFormat dateformat3 = new SimpleDateFormat("dd/MM/yyyy");
103             Date date = dateformat3.parse("15/10/2016");
104             policyParameters.setTtlDate(date);
105             // Set Safe Policy value for Guard
106             policyParameters.setGuard(true);
107             // Set Safe Policy value for Risk Level
108             policyParameters.setRiskLevel("5");
109             // Set Safe Policy value for Risk Type
110             policyParameters.setRiskType("PROD");
111
112             // API method to create or update Policy.
113             PolicyChangeResponse response = null;
114             if (!isEdit) {
115                 response = policyEngine.createPolicy(policyParameters);
116             } else {
117                 response = policyEngine.updatePolicy(policyParameters);
118             }
119
120             if (response.getResponseCode() == 200) {
121                 System.out.println(response.getResponseMessage());
122                 System.out.println("Policy Created Successfully!");
123             } else {
124                 System.out.println("Error! " + response.getResponseMessage());
125             }
126         } catch (Exception e) {
127             System.err.println(e.getMessage());
128         }
129     }
130 }