mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
1801a3cee3
1. Add manifest and CNAB replication tests; 2. Duplicate ORAS and sigularity tests from API test to nightly common tests; 3. Optimize get dns code in CI; 4. Optimize E2E dockerfile; 5. Sample image size should be cover requirement for large size like 512M. Signed-off-by: danfengliu <danfengl@vmware.com>
54 lines
2.3 KiB
Python
54 lines
2.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import base
|
|
import json
|
|
import docker_api
|
|
from testutils import DOCKER_USER, DOCKER_PWD
|
|
|
|
def load_bundle(service_image, invocation_image):
|
|
bundle_file = "./tests/apitests/python/bundle_data/bundle.json"
|
|
bundle_tmpl_file = "./tests/apitests/python/bundle_data/bundle.json.tmpl"
|
|
with open(bundle_tmpl_file,'r') as load_f:
|
|
load_dict = json.load(load_f)
|
|
load_dict["images"]["hello"]["image"] = service_image
|
|
load_dict["invocationImages"][0]["image"] = invocation_image
|
|
bundle_str = json.dumps(load_dict)
|
|
with open(bundle_file,'w') as dump_f:
|
|
dump_f.write(bundle_str)
|
|
dump_f.close()
|
|
return bundle_file
|
|
|
|
def cnab_fixup_bundle(bundle_file, target, auto_update_bundle = True):
|
|
fixed_bundle_file = "./tests/apitests/python/bundle_data/fixed-bundle.json"
|
|
command = ["cnab-to-oci", "--log-level", "debug", "fixup", bundle_file, "--target", target, "--bundle", fixed_bundle_file]
|
|
if auto_update_bundle == True:
|
|
command.append("--auto-update-bundle")
|
|
#fixed_bundle_file = bundle_file
|
|
print("Command: ", command)
|
|
ret = base.run_command(command)
|
|
print("Command return: ", ret)
|
|
return fixed_bundle_file
|
|
|
|
def cnab_push_bundle(bundle_file, target):
|
|
command = ["cnab-to-oci", "push", bundle_file, "--target", target, "--auto-update-bundle"]
|
|
print("Command: ", command)
|
|
ret = base.run_command(command)
|
|
print("Command return: ", ret)
|
|
for line in ret.split("\n"):
|
|
line = line.replace('\"', '')
|
|
if line.find('sha256') >= 0:
|
|
return line[-71:]
|
|
raise Exception(r"Fail to get sha256 in returned data: {}".format(ret))
|
|
|
|
def push_cnab_bundle(harbor_server, user, password, service_image, invocation_image, target, auto_update_bundle = True):
|
|
docker_api.docker_info_display()
|
|
|
|
#Add docker login command to avoid pull request access rate elimitation by docker hub
|
|
docker_api.docker_login_cmd("", DOCKER_USER, DOCKER_PWD, enable_manifest = False)
|
|
|
|
docker_api.docker_login_cmd(harbor_server, user, password, enable_manifest = False)
|
|
bundle_file = load_bundle(service_image, invocation_image)
|
|
fixed_bundle_file = cnab_fixup_bundle(bundle_file, target, auto_update_bundle = auto_update_bundle)
|
|
sha256 = cnab_push_bundle(fixed_bundle_file, target)
|
|
return sha256
|