6a71d3cdc016f0958d5b35856a8ea2cd29dfcce2
[optf/osdf.git] / test / functest / simulators / build_sim_image.sh
1 #!/bin/bash
2 #
3 # -------------------------------------------------------------------------
4 #   Copyright (c) 2018 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 if [[ `uname` == "Darwin" ]]
22 then
23   SCRIPTDIR=$(dirname $(greadlink -f $0))
24 else
25   SCRIPTDIR=$(dirname $(readlink -f $0))
26 fi
27
28 FUNC_TEST_DIR=$(dirname $SCRIPTDIR)
29 TEST_DIR=$(dirname $FUNC_TEST_DIR)
30 SIMULATORS_DIR=$FUNC_TEST_DIR/simulators
31 OSDF_DIR=$(dirname $TEST_DIR)
32 DOCKER_DIR=$SIMULATORS_DIR/tmp_docker
33
34 mkdir -p $DOCKER_DIR/sim/osdf/policy/response-payloads/pdp-has-vcpe-good
35
36 cp $SIMULATORS_DIR/Dockerfile $DOCKER_DIR/.
37
38 cp -r $OSDF_DIR/osdf $DOCKER_DIR/sim
39 mkdir -p $DOCKER_DIR/sim/config/
40 cp $SIMULATORS_DIR/simulated-config/*.yaml $DOCKER_DIR/sim/config/
41 cp $SIMULATORS_DIR/simulated-config/*.yml $DOCKER_DIR/sim/config/
42 cp $SIMULATORS_DIR/simulated-config/*.config $DOCKER_DIR/sim/config/
43 cp -r $SIMULATORS_DIR/configdb $DOCKER_DIR/sim
44 cp -r $SIMULATORS_DIR/has-api $DOCKER_DIR/sim
45 cp -r $SIMULATORS_DIR/policy $DOCKER_DIR/sim
46 cp -r $SIMULATORS_DIR/aai $DOCKER_DIR/sim
47 cp $TEST_DIR/policy-local-files/*.json $DOCKER_DIR/sim/policy/response-payloads/pdp-has-vcpe-good
48 cp $TEST_DIR/placement-tests/policy_response.json $DOCKER_DIR/sim/policy/response-payloads/
49 cp $SIMULATORS_DIR/oof_dependencies_simulators.py $DOCKER_DIR/sim/oof_dependencies_simulators.py
50 cp $OSDF_DIR/requirements.txt $DOCKER_DIR
51 cp -r $SIMULATORS_DIR/start_sim.sh $DOCKER_DIR/
52
53 cd $DOCKER_DIR
54
55 docker build -t osdf_sim .
56
57 rm -rf $DOCKER_DIR