mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-21 17:55:30 +01:00
feat: add api test case for quota sorting (#20209)
Signed-off-by: Shengwen Yu <yshengwen@vmware.com>
This commit is contained in:
parent
7b8a322a88
commit
c12064df4e
21
tests/apitests/python/library/quota_sorting.py
Normal file
21
tests/apitests/python/library/quota_sorting.py
Normal file
@ -0,0 +1,21 @@
|
||||
import base
|
||||
from v2_swagger_client.rest import ApiException
|
||||
|
||||
class QuotaSorting(base.Base):
|
||||
def __init__(self):
|
||||
super(QuotaSorting,self).__init__(api_type="quota")
|
||||
|
||||
def list_quotas_with_sorting(self, expect_status_code=200, **kwargs):
|
||||
params = {}
|
||||
if "sort" in kwargs:
|
||||
params["sort"] = kwargs["sort"]
|
||||
if "reference" in kwargs:
|
||||
params["reference"] = kwargs["reference"]
|
||||
|
||||
try:
|
||||
resp_data, status_code, _ = self._get_client(**kwargs).list_quotas_with_http_info(**params)
|
||||
except ApiException as e:
|
||||
raise Exception(r"Error out with exception. Exception status: {}; exception reason: {}; exception body: {}", e.status, e.reason, e.body)
|
||||
base._assert_status_code(expect_status_code, status_code)
|
||||
|
||||
return resp_data
|
86
tests/apitests/python/test_quota_sorting.py
Normal file
86
tests/apitests/python/test_quota_sorting.py
Normal file
@ -0,0 +1,86 @@
|
||||
from __future__ import absolute_import
|
||||
|
||||
import unittest
|
||||
|
||||
from testutils import harbor_server, suppress_urllib3_warning
|
||||
from testutils import TEARDOWN
|
||||
from testutils import ADMIN_CLIENT
|
||||
from library.project import Project
|
||||
from library.user import User
|
||||
from library.repository import Repository
|
||||
from library.repository import push_self_build_image_to_project
|
||||
from library.quota_sorting import QuotaSorting
|
||||
|
||||
class TestQuotaSorting(unittest.TestCase):
|
||||
@suppress_urllib3_warning
|
||||
def setUp(self):
|
||||
self.project = Project()
|
||||
self.user = User()
|
||||
self.repo = Repository()
|
||||
self.quota_sorting = QuotaSorting()
|
||||
|
||||
@unittest.skipIf(TEARDOWN == False, "Test data won't be erased.")
|
||||
def tearDown(self):
|
||||
#1. Delete repository(RA) by user(UA);
|
||||
self.repo.delete_repository(TestQuotaSorting.project_1_name, TestQuotaSorting.repo_name_1.split('/')[1], **TestQuotaSorting.user_global_client)
|
||||
self.repo.delete_repository(TestQuotaSorting.project_2_name, TestQuotaSorting.repo_name_2.split('/')[1], **TestQuotaSorting.user_global_client)
|
||||
|
||||
#2. Delete project(PA);
|
||||
self.project.delete_project(TestQuotaSorting.project_1_id, **TestQuotaSorting.user_global_client)
|
||||
self.project.delete_project(TestQuotaSorting.project_2_id, **TestQuotaSorting.user_global_client)
|
||||
|
||||
#3. Delete user(UA);
|
||||
self.user.delete_user(TestQuotaSorting.user_001_id, **ADMIN_CLIENT)
|
||||
|
||||
def testQuotaSorting(self):
|
||||
"""
|
||||
Test case:
|
||||
Quota Sorting
|
||||
Test step and expected result:
|
||||
1. Create a new user(UA);
|
||||
2. Create two new private projects(PA) by user(UA);
|
||||
3. Push two images to projects(PA) respectively by user(UA)
|
||||
4. Get quota list with sort=used.storage, the used storage should be in ascending order
|
||||
5. Get quota list with sort=-used.storage, the used storage should be in descending order
|
||||
Tear down:
|
||||
1. Delete repository(RA) by user(UA);
|
||||
2. Delete project(PA);
|
||||
3. Delete user(UA);
|
||||
"""
|
||||
url = ADMIN_CLIENT["endpoint"]
|
||||
user_001_password = "Aa123456"
|
||||
global_admin_client = dict(endpoint=ADMIN_CLIENT["endpoint"], username=ADMIN_CLIENT["username"], passwor=ADMIN_CLIENT["password"], reference="project")
|
||||
|
||||
#1. Create user-001
|
||||
TestQuotaSorting.user_001_id, user_001_name = self.user.create_user(user_password=user_001_password, **ADMIN_CLIENT)
|
||||
TestQuotaSorting.user_global_client = dict(endpoint=url, username=user_001_name, password=user_001_password)
|
||||
|
||||
#2. Create private project_1 and private project_2
|
||||
TestQuotaSorting.project_1_id, TestQuotaSorting.project_1_name = self.project.create_project(metadata={"public": "false"}, **TestQuotaSorting.user_global_client)
|
||||
TestQuotaSorting.project_2_id, TestQuotaSorting.project_2_name = self.project.create_project(metadata={"public": "false"}, **TestQuotaSorting.user_global_client)
|
||||
|
||||
#3. Push images to project_1 and project_2 respectively
|
||||
image1 = "alpine"
|
||||
tag1 = "2.6"
|
||||
TestQuotaSorting.repo_name_1, _ = push_self_build_image_to_project(TestQuotaSorting.project_1_name, harbor_server, user_001_name, user_001_password, image1, tag1)
|
||||
image2 = "photon"
|
||||
tag2 = "2.0"
|
||||
TestQuotaSorting.repo_name_2, _ = push_self_build_image_to_project(TestQuotaSorting.project_2_name, harbor_server, user_001_name, user_001_password, image2, tag2)
|
||||
|
||||
#4. Check whether quota list is in ascending order
|
||||
global_admin_client["sort"] = "used.storage"
|
||||
res_ascending = self.quota_sorting.list_quotas_with_sorting(expect_status_code=200, **global_admin_client)
|
||||
self.assertTrue(len(res_ascending) >= 2)
|
||||
for idx in range(1, len(res_ascending)):
|
||||
self.assertTrue(res_ascending[idx - 1].to_dict()["used"]["storage"] <= res_ascending[idx].to_dict()["used"]["storage"])
|
||||
|
||||
#5. Check whether quota list is in descending order
|
||||
global_admin_client["sort"] = "-used.storage"
|
||||
res_descending = self.quota_sorting.list_quotas_with_sorting(expect_status_code=200, **global_admin_client)
|
||||
self.assertTrue(len(res_descending) >= 2)
|
||||
for idx in range(1, len(res_descending)):
|
||||
self.assertTrue(res_descending[idx - 1].to_dict()["used"]["storage"] >= res_descending[idx].to_dict()["used"]["storage"])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
@ -20,6 +20,10 @@ Test Case - Garbage Collection
|
||||
[Tags] gc
|
||||
Harbor API Test ./tests/apitests/python/test_garbage_collection.py
|
||||
|
||||
Test Case - Quota Sorting
|
||||
[Tags] quota_sorting
|
||||
Harbor API Test ./tests/apitests/python/test_quota_sorting.py
|
||||
|
||||
Test Case - Add Private Project Member and Check User Can See It
|
||||
[Tags] private_member
|
||||
Harbor API Test ./tests/apitests/python/test_add_member_to_private_project.py
|
||||
|
Loading…
Reference in New Issue
Block a user