2018-08-01 00:38:23 +02:00
|
|
|
import time
|
|
|
|
import os
|
|
|
|
import sys
|
2018-10-31 06:13:31 +01:00
|
|
|
|
2019-09-03 09:52:41 +02:00
|
|
|
sys.path.insert(0, os.environ["SWAGGER_CLIENT_PATH"])
|
2018-08-01 00:38:23 +02:00
|
|
|
from swagger_client.rest import ApiException
|
|
|
|
import swagger_client.models
|
|
|
|
from pprint import pprint
|
|
|
|
|
2018-11-20 07:24:13 +01:00
|
|
|
admin_user = "admin"
|
|
|
|
admin_pwd = "Harbor12345"
|
|
|
|
|
2018-10-31 06:13:31 +01:00
|
|
|
harbor_server = os.environ["HARBOR_HOST"]
|
2018-11-20 07:24:13 +01:00
|
|
|
#CLIENT=dict(endpoint="https://"+harbor_server+"/api")
|
2019-09-03 09:52:41 +02:00
|
|
|
ADMIN_CLIENT=dict(endpoint = os.environ.get("HARBOR_HOST_SCHEMA", "https")+ "://"+harbor_server+"/api", username = admin_user, password = admin_pwd)
|
2018-11-01 11:26:04 +01:00
|
|
|
USER_ROLE=dict(admin=0,normal=1)
|
|
|
|
TEARDOWN = True
|
2018-10-31 06:13:31 +01:00
|
|
|
|
2018-08-01 00:38:23 +02:00
|
|
|
def GetProductApi(username, password, harbor_server= os.environ["HARBOR_HOST"]):
|
2019-05-06 05:34:11 +02:00
|
|
|
|
2018-08-01 00:38:23 +02:00
|
|
|
cfg = swagger_client.Configuration()
|
|
|
|
cfg.host = "https://"+harbor_server+"/api"
|
|
|
|
cfg.username = username
|
|
|
|
cfg.password = password
|
|
|
|
cfg.verify_ssl = False
|
|
|
|
cfg.debug = True
|
|
|
|
api_client = swagger_client.ApiClient(cfg)
|
|
|
|
api_instance = swagger_client.ProductsApi(api_client)
|
2018-11-29 11:27:53 +01:00
|
|
|
return api_instance
|
|
|
|
class TestResult(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.num_errors = 0
|
|
|
|
self.error_message = []
|
|
|
|
def add_test_result(self, error_message):
|
|
|
|
self.num_errors = self.num_errors + 1
|
|
|
|
self.error_message.append(error_message)
|
|
|
|
def get_final_result(self):
|
|
|
|
if self.num_errors > 0:
|
|
|
|
for each_err_msg in self.error_message:
|
|
|
|
print "Error message:", each_err_msg
|
|
|
|
raise Exception(r"Test case failed with {} errors.".format(self.num_errors))
|