mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
7fb9dbd0fa
1. Fix E2E quotas issue, push the same image but with different name; 2. Add checkpoint for robot account test; 3. Upgraded docker and containerd in E2E image; 4. Package base image sample(busybox) into E2E image, so in E2E container, all local docker images can be cleaned up, once base image is needed for building image, it can be loaded locally; 5. Adapt OIDC service of supporting LDAP user, and add OIDC group user test; 6. Restart docker deamon before content trust test, both in API and UI test; 7. Add retry for keyword "Add A Tag Immutability Rule"; 8. Fix tag retention test issue, missing click angle icon, and enhance checkpoint of dry run and real run; 9. Fix schedule test issue for wrong cron string; 10. Disable quotas verification, it's not stable for script defect; Signed-off-by: danfengliu <danfengl@vmware.com>
71 lines
3.3 KiB
Python
71 lines
3.3 KiB
Python
from __future__ import absolute_import
|
|
import unittest
|
|
|
|
from testutils import harbor_server, created_project, created_user, \
|
|
TEARDOWN, ADMIN_CLIENT,suppress_urllib3_warning
|
|
from library.repository import Repository
|
|
from library.repository import push_image_to_project
|
|
from library.system import System
|
|
|
|
class TestProjects(unittest.TestCase):
|
|
@suppress_urllib3_warning
|
|
def setUp(cls):
|
|
cls.repo = Repository()
|
|
cls.system = System()
|
|
|
|
@unittest.skipIf(TEARDOWN == False, "Test data won't be erased.")
|
|
def tearDown(self):
|
|
print("Case completed")
|
|
|
|
def testProjectQuota(self):
|
|
"""
|
|
Test case:
|
|
Project Quota
|
|
Test step and expected result:
|
|
1. Create a new user(UA);
|
|
2. Create a new private project(PA) by user(UA);
|
|
3. Add user(UA) as a member of project(PA) with project-admin role;
|
|
4. Push an image to project(PA) by user(UA), then check the project quota usage;
|
|
5. Check quota change
|
|
6. Push the image with another tag to project(PA) by user(UA)
|
|
7. Check quota not changed
|
|
8. Delete repository(RA) by user(UA);
|
|
9. Delete image, the quota should be changed to 0.
|
|
Tear down:
|
|
1. Delete repository(RA) by user(UA);
|
|
2. Delete project(PA);
|
|
3. Delete user(UA);
|
|
"""
|
|
user_001_password = "Aa123456"
|
|
|
|
#1. Create a new user(UA);
|
|
with created_user(user_001_password) as (user_id, user_name):
|
|
#2. Create a new private project(PA) by user(UA);
|
|
#3. Add user(UA) as a member of project(PA) with project-admin role;
|
|
with created_project(metadata={"public": "false"}, user_id=user_id) as (project_id, project_name):
|
|
#4. Push an image to project(PA) by user(UA), then check the project quota usage; -- {"count": 1, "storage": 2791709}
|
|
image, tag = "goharbor/alpine", "3.10"
|
|
image_alias_name = "_alias"
|
|
push_image_to_project(project_name, harbor_server, user_name, user_001_password, image, tag)
|
|
|
|
#5. Get project quota
|
|
quota = self.system.get_project_quota("project", project_id, **ADMIN_CLIENT)
|
|
self.assertEqual(quota[0].used["storage"], 2789002)
|
|
|
|
#6. Push the image with another tag to project(PA) by user(UA), the check the project quota usage; -- {"count": 1, "storage": 2791709}
|
|
push_image_to_project(project_name, harbor_server, user_name, user_001_password, image, tag, new_image=image+image_alias_name)
|
|
|
|
#7. Get project quota
|
|
quota = self.system.get_project_quota("project", project_id, **ADMIN_CLIENT)
|
|
self.assertEqual(quota[0].used["storage"], 2789002)
|
|
|
|
#8. Delete repository(RA) by user(UA);
|
|
self.repo.delete_repository(project_name, "goharbor%2Falpine", **ADMIN_CLIENT)
|
|
self.repo.delete_repository(project_name, "goharbor%2Falpine"+image_alias_name, **ADMIN_CLIENT)
|
|
|
|
#9. Quota should be 0
|
|
quota = self.system.get_project_quota("project", project_id, **ADMIN_CLIENT)
|
|
self.assertEqual(quota[0].used["storage"], 0)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |