Bug 2327 fix to verify ipaddress in sol003_02 testsuite
[osm/tests.git] / conformance-tests / osm_client.py
1 # Copyright 2020 ETSI OSM
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12 # implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License
15
16 from subprocess import run, PIPE
17 import requests
18 import time
19 import os
20
21 class OSMException(Exception):
22 """A base class for MyProject exceptions."""
23
24 class ResourceException(OSMException):
25 def __init__(self, *args, **kwargs):
26 super().__init__(*args)
27 self.message = kwargs.get('message')
28
29 class OSM:
30 def __init__(self, osm_hostname, port):
31 self.osm_hostname = osm_hostname
32 self.port = port
33
34 def run_command(self, command):
35 p = run(["osm {}".format(command)], shell=True, stdout=PIPE, stderr=PIPE)
36 if p.returncode != 0:
37 print(p.stdout)
38 print(p.stderr)
39 raise ResourceException(message=p.stdout)
40 else:
41 return self.clean_output(p.stdout)
42
43 def get_auth_token(self):
44
45 r = requests.post("https://{}:{}/osm/admin/v1/tokens".format(self.osm_hostname, self.port), verify=False, headers={"Accept":"application/json"}, json={
46 "username": "admin",
47 "password": "admin",
48 "project": "admin"
49 })
50 return r.json()["id"]
51
52 def clean_output(self, output):
53 return output.decode("utf-8").strip()
54
55 def create_nsd(self, filename):
56 return self.run_command("nsd-create {}".format(filename))
57
58 def create_vnfd(self, filename):
59 return self.run_command("vnfd-create {}".format(filename))
60
61 def create_ns(self, name, nsd, vim):
62 return self.run_command("ns-create --ns_name {} --nsd_name {} --vim_account {}".format(name, nsd, vim))
63
64 def delete_nsd(self, id):
65 return self.run_command("nsd-delete {}".format(id))
66
67 def delete_vnfd(self, id):
68 return self.run_command("vnfd-delete {}".format(id))
69
70 def delete_ns(self, id):
71 self.run_command("ns-delete {}".format(id))
72 while (requests.get("https://{}:{}/osm/nslcm/v1/ns_instances/{}".format(self.osm_hostname, self.port, id), verify=False, headers={"Accept":"application/json", "Authorization":"Bearer {}".format(os.environ["AUTH_TOKEN"])}).status_code != 404):
73 print("Deleting NS...")
74 time.sleep(5)