blob: ff149c9039f27e100b84316844f2ccbbb4695759 [file] [log] [blame]
ecaiyanlinuxdc962f42020-10-19 11:13:12 +02001#!/bin/bash
2
3# ============LICENSE_START===============================================
4# Copyright (C) 2020 Nordix Foundation. 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# ============LICENSE_END=================================================
18#
19
20# The scripts in data/ will generate some dummy data in the running system.
21# It will create:
22# one EiProducer in ECS
23# one EiType in ECS
24# one EiJob in ECS
25
26# Run command:
27# ./prepareEcsData.sh [ECS port] [http/https]
28
29ecs_port=${1:-8083}
30httpx=${4:-"http"}
31
32echo "using ecs port: "$ecs_port
33echo "using protocol: "$httpx
34echo -e "\n"
35
36echo "ECS status:"
37curl -skw " %{http_code}" $httpx://localhost:$ecs_port/status
38echo -e "\n"
39
40# Get EiTypes
41echo "Get EiTypes:"
42curl -X GET -skw " %{http_code}" $httpx://localhost:$ecs_port/ei-producer/v1/eitypes -H Content-Type:application/json | jq
43echo -e "\n"
44
ecaiyanlinuxdc962f42020-10-19 11:13:12 +020045# Create EiProducer
46echo "Create EiProducer:"
47curl -X PUT -skw " %{http_code}" $httpx://localhost:$ecs_port/ei-producer/v1/eiproducers/1 -H Content-Type:application/json --data-binary @testdata/ECS/EiProducer.json
48echo -e "\n"
49
ecaiyanlinuxc13a5aa2020-12-01 11:25:20 +010050# Get Individual EiType
51echo "Get Individual EiType:"
52curl -X GET -skw " %{http_code}" $httpx://localhost:$ecs_port/ei-producer/v1/eitypes/type1 -H Content-Type:application/json | jq
53echo -e "\n"
54
ecaiyanlinuxdc962f42020-10-19 11:13:12 +020055# Get EiProducers
56echo "Get EiProducers:"
57curl -X GET -skw " %{http_code}" $httpx://localhost:$ecs_port/ei-producer/v1/eiproducers -H Content-Type:application/json | jq
58echo -e "\n"
59
60# Get Individual EiProducer
61echo "Get Individual EiProducer:"
62curl -X GET -skw " %{http_code}" $httpx://localhost:$ecs_port/ei-producer/v1/eiproducers/1 -H Content-Type:application/json | jq
63echo -e "\n"
64
65# Get Individual EiProducer Status
66echo "Get Individual EiProducer:"
67curl -X GET -skw " %{http_code}" $httpx://localhost:$ecs_port/ei-producer/v1/eiproducers/1/status -H Content-Type:application/json | jq
ecaiyanlinuxdc962f42020-10-19 11:13:12 +020068echo -e "\n"