blob: 19a77ba4b7eb9068d092fcb410819fd00a0a762f [file] [log] [blame]
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +02001# ============LICENSE_START===============================================
2# Copyright (C) 2020 Nordix Foundation. All rights reserved.
3# ========================================================================
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15# ============LICENSE_END=================================================
16#
17
18# This script create/update policies spread over a number rics
19# Intended for parallel processing
20# Returns a string with result, either "0" for ok, or "1<fault description>"
21
22import os
23import json
24import sys
25import requests
BjornMagnussonXA048aaa12020-06-04 07:48:37 +020026import traceback
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020027
28# disable warning about unverified https requests
29from requests.packages import urllib3
30
31urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
32
33#arg responsecode baseurl ric_base num_rics startid templatepath count pids pid_id
34try:
35 if len(sys.argv) != 10:
36 print("1Expected 9 args, got "+str(len(sys.argv)-1)+ ". Args: responsecode baseurl ric_base num_rics startid templatepath count pids pid_id")
37 sys.exit()
38
39 responsecode=int(sys.argv[1])
40 baseurl=sys.argv[2]
41 ric_base=sys.argv[3]
42 num_rics=int(sys.argv[4])
43 start=int(sys.argv[5])
44 templatepath=sys.argv[6]
45 count=int(sys.argv[7])
46 pids=int(sys.argv[8])
47 pid_id=int(sys.argv[9])
48
49 with open(templatepath, 'r') as file:
50 template = file.read()
51
52 start=start
53 stop=count*num_rics+start
54
55 for i in range(start,stop):
56 if (i%pids == (pid_id-1)):
57 payload=template.replace("XXX",str(i))
58 ric_id=(i%num_rics)+1
59 ric=ric_base+str(ric_id)
60 url=baseurl+"&id="+str(i)+"&ric="+str(ric)
61 try:
62 headers = {'Content-type': 'application/json'}
63 resp=requests.put(url, json.dumps(json.loads(payload)), headers=headers, verify=False, timeout=90)
64 except Exception as e1:
BjornMagnussonXA048aaa12020-06-04 07:48:37 +020065 print("1Put failed for id:"+str(i)+ ", "+str(e1) + " "+traceback.format_exc())
66 sys.exit()
67 if (resp.status_code == None):
68 print("1Put failed for id:"+str(i)+ ", expected response code: "+responsecode+", got: None")
BjornMagnussonXAbbd2e9d2020-05-27 21:24:06 +020069 sys.exit()
70 if (resp.status_code != responsecode):
71 print("1Put failed for id:"+str(i)+ ", expected response code: "+responsecode+", got: "+str(resp.status_code))
72 sys.exit()
73
74 print("0")
75 sys.exit()
76
77except Exception as e:
78 print("1"+str(e))
79sys.exit()