Fix the xacml-pdp CSIT failures
[policy/xacml-pdp.git] / packages / policy-xacmlpdp-docker / src / main / docker / policy-pdpx.sh
1 #!/bin/bash -xv
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
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 JAVA_HOME=/usr/lib/jvm/java-1.8-openjdk/
22 POLICY_PDPX_HOME=/opt/app/policy/pdpx
23 KEYSTORE="${POLICY_HOME}/etc/ssl/policy-keystore"
24 KEYSTORE_PASSWD="Pol1cy_0nap"
25 TRUSTSTORE="${POLICY_HOME}/etc/ssl/policy-truststore"
26 TRUSTSTORE_PASSWD="Pol1cy_0nap"
27
28
29 if [ "$#" -ge 1 ]; then
30     CONFIG_FILE=$1
31 else
32     CONFIG_FILE=${CONFIG_FILE}
33 fi
34
35 if [ "$#" -ge 2 ]; then
36         PROP_FILE=$2
37 else
38         PROP_FILE=${PROP_FILE}
39
40 if [ -z "$CONFIG_FILE" ]
41   then
42     CONFIG_FILE="$POLICY_PDPX_HOME/etc/defaultConfig.json"
43 fi
44
45 if [ -z "$PROP_FILE" ]
46   then
47     PROP_FILE="$POLICY_PDPX_HOME/etc/topic.properties"
48 fi
49
50 echo "Policy Xacml PDP config file: $CONFIG_FILE"
51 echo "Policy Xacml PDP topic properties file: $PROP_FILE"
52
53 $JAVA_HOME/bin/java -cp "$POLICY_PDPX_HOME/etc:$POLICY_PDPX_HOME/lib/*" -Djavax.net.ssl.keyStore="$KEYSTORE" -Djavax.net.ssl.keyStorePassword="$KEYSTORE_PASSWD" -Djavax.net.ssl.trustStore="$TRUSTSTORE" -Djavax.net.ssl.trustStorePassword="$TRUSTSTORE_PASSWD" org.onap.policy.pdpx.main.startstop.Main -c $CONFIG_FILE -p $PROP_FILE