mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-27 04:35:16 +01:00
444de8536a
1. Since upgrade python to 3.7, some urllib3 warnings come out during execution, because missing disconnection when using request by docker library, it's not affect script execution, therefore ignore them first. 2. Replication tests failed in nightly due to new UI code, some element locators are not valid anymore; 3. Remove switch scanner test steps, since Clair was removed. Signed-off-by: danfengliu <danfengl@vmware.com>
69 lines
3.1 KiB
Python
69 lines
3.1 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"
|
|
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)
|
|
|
|
#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_repoitory(project_name, "goharbor%2Falpine", **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() |