Docker Compose file checkin for tr069-adapter
[oam/tr069-adapter.git] / docker-compose / data / importConfig.sh
1 #!/bin/bash
2 # ============LICENSE_START========================================================================
3 # O-RAN-SC : tr-069-adapter
4 # =================================================================================================
5 # Copyright (C) 2020 CommScope Inc Intellectual Property.
6 # =================================================================================================
7 # This tr-069-adapter software file is distributed by CommScope Inc under the Apache License,
8 # Version 2.0 (the "License"); you may not use this file except in compliance with the License. You
9 # may obtain a copy of the License at
10 #
11 # http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14 # either express or implied. See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ===============LICENSE_END=======================================================================
17
18 # Run command:
19 # If SSL is enabled then execute : ./importConfig.sh SSL
20 # If SSL is not enabled then execute : ./importConfig.sh
21
22 PROTO="http"
23 [ "$1" = "SSL" ] && PROTO="https"
24
25 echo "Importing the Configuration..."
26 curl -k -F "files=@./testdata/0005B9423910.xml" $PROTO://localhost:1111/importConfig
27 echo -e "\n"
28
29 echo "Validating the Import..."
30 curl $PROTO://localhost:1111/getConfig/0005b9423910 -k
31 echo -e "\n"
32