mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 01:30:15 +01:00
95c0c259ec
This commit creates a new E2E API test case to verify the replication based on label Signed-off-by: Wenkai Yin <yinw@vmware.com>
22 lines
887 B
Python
22 lines
887 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
import base
|
|
import swagger_client
|
|
|
|
class Registry(base.Base):
|
|
def create_registry(self, endpoint, name = base._random_name("registry"), username="",
|
|
password="", insecure=True, **kwargs):
|
|
client = self._get_client(**kwargs)
|
|
registry = swagger_client.RepTargetPost(name=name, endpoint=endpoint,
|
|
username=username, password=password, insecure=insecure)
|
|
_, _, header = client.targets_post_with_http_info(registry)
|
|
return base._get_id_from_header(header), name
|
|
|
|
def get_registry_id_by_endpoint(self, endpoint, **kwargs):
|
|
client = self._get_client(**kwargs)
|
|
registries = client.targets_get()
|
|
for registry in registries or []:
|
|
if registry.endpoint == endpoint:
|
|
return registry.id
|
|
raise Exception("registry %s not found" % endpoint) |