Fixing functional test cases
[optf/osdf.git] / test / functest / scripts / start-simulators.sh
1 #!/bin/bash
2 #
3 # -------------------------------------------------------------------------
4 #   Copyright (c) 2015-2017 AT&T Intellectual Property
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 # -------------------------------------------------------------------------
19 #
20
21 # This script is in osdf/test/functest/scripts/
22
23 SCRIPTDIR=$(dirname $(readlink -f $0))
24 FUNC_TEST_DIR=$(dirname $SCRIPTDIR)
25 TEST_DIR=$(dirname $FUNC_TEST_DIR)
26 OSDF_DIR=$(dirname $TEST_DIR)
27 SIMULATORS_DIR=$FUNC_TEST_DIR/simulators
28
29 # Copy policy files from $TEST_DIR/policy-local-files into $SIMULATORS_DIR/policy/response-payloads
30 (
31     cd $SIMULATORS_DIR
32     cp $TEST_DIR/policy-local-files/*.json $SIMULATORS_DIR/policy/response-payloads/pdp-has-vcpe-good
33 )
34
35
36 # start the flask application after linking the code location and config folder
37 (
38     cd $SIMULATORS_DIR
39     ln -s $OSDF_DIR/osdf .
40     ln -s $SIMULATORS_DIR/simulated-config config
41
42     XPID=$(ps -x | grep "python oof_dependencies_simulators.py" | grep -v grep | awk '{print $1}')
43     echo "simulator pid " $XPID
44     if [ -z "$XPID" ]; then
45       python oof_dependencies_simulators.py > simulator-logs 2>&1 &
46       sleep 10
47     fi
48
49
50
51