mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-09 12:10:08 +01:00
f57dc13081
In this py-test, add a new system robot account, and verify all project privileges. Signed-off-by: danfengliu <danfengl@vmware.com>
29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
import base
|
|
import swagger_client
|
|
from swagger_client.rest import ApiException
|
|
|
|
class Label(base.Base):
|
|
def create_label(self, name=None, desc="", color="", scope="g",
|
|
project_id=0, expect_status_code = 201, **kwargs):
|
|
if name is None:
|
|
name = base._random_name("label")
|
|
label = swagger_client.Label(name=name,
|
|
description=desc, color=color,
|
|
scope=scope, project_id=project_id)
|
|
client = self._get_client(**kwargs)
|
|
|
|
try:
|
|
_, status_code, header = client.labels_post_with_http_info(label)
|
|
except ApiException as e:
|
|
base._assert_status_code(expect_status_code, e.status)
|
|
else:
|
|
base._assert_status_code(expect_status_code, status_code)
|
|
base._assert_status_code(201, status_code)
|
|
return base._get_id_from_header(header), name
|
|
|
|
def delete_label(self, label_id, **kwargs):
|
|
client = self._get_client(**kwargs)
|
|
return client.labels_id_delete_with_http_info(int(label_id)) |