mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-16 07:15:13 +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>
120 lines
5.5 KiB
Python
120 lines
5.5 KiB
Python
from __future__ import absolute_import
|
|
|
|
import unittest
|
|
import time
|
|
|
|
from testutils import ADMIN_CLIENT, suppress_urllib3_warning
|
|
from testutils import TEARDOWN
|
|
from testutils import harbor_server
|
|
from library.user import User
|
|
from library.system import System
|
|
from library.project import Project
|
|
from library.repository import Repository
|
|
from library.repository import push_image_to_project
|
|
from library.base import _assert_status_code
|
|
from library.repository import push_special_image_to_project
|
|
from library.artifact import Artifact
|
|
|
|
class TestProjects(unittest.TestCase):
|
|
@suppress_urllib3_warning
|
|
def setUp(self):
|
|
self.system = System()
|
|
self.project = Project()
|
|
self.user = User()
|
|
self.repo = Repository()
|
|
self.artifact = Artifact()
|
|
self.repo_name = "test_repo"
|
|
self.repo_name_untag = "test_untag"
|
|
self.tag = "v1.0"
|
|
|
|
@unittest.skipIf(TEARDOWN == False, "Test data won't be erased.")
|
|
def tearDown(self):
|
|
#2. Delete project(PA);
|
|
self.project.delete_project(TestProjects.project_gc_id, **TestProjects.USER_GC_CLIENT)
|
|
|
|
#3. Delete user(UA);
|
|
self.user.delete_user(TestProjects.user_gc_id, **ADMIN_CLIENT)
|
|
|
|
def testGarbageCollection(self):
|
|
"""
|
|
Test case:
|
|
Garbage Collection
|
|
Test step and expected result:
|
|
1. Create a new user(UA);
|
|
2. Create project(PA) and project(PB) by user(UA);
|
|
3. Push a image in project(PA) and then delete repository by admin;
|
|
4. Get repository by user(UA), it should get nothing;
|
|
5. Tigger garbage collection operation;
|
|
6. Check garbage collection job was finished;
|
|
7. Get garbage collection log, check there is a number of files was deleted;
|
|
8. Push a image in project(PB) by admin and delete the only tag;
|
|
9. Tigger garbage collection operation;
|
|
10. Check garbage collection job was finished;
|
|
11. Repository with untag image should be still there;
|
|
12. But no any artifact in repository anymore.
|
|
Tear down:
|
|
1. Delete project(PA);
|
|
2. Delete user(UA).
|
|
"""
|
|
url = ADMIN_CLIENT["endpoint"]
|
|
admin_name = ADMIN_CLIENT["username"]
|
|
admin_password = ADMIN_CLIENT["password"]
|
|
user_gc_password = "Aa123456"
|
|
|
|
#1. Create a new user(UA);
|
|
TestProjects.user_gc_id, user_gc_name = self.user.create_user(user_password = user_gc_password, **ADMIN_CLIENT)
|
|
|
|
TestProjects.USER_GC_CLIENT=dict(endpoint = url, username = user_gc_name, password = user_gc_password)
|
|
|
|
#2. Create project(PA) and project(PB) by user(UA);
|
|
TestProjects.project_gc_id, TestProjects.project_gc_name = self.project.create_project(metadata = {"public": "false"}, **TestProjects.USER_GC_CLIENT)
|
|
TestProjects.project_gc_untag_id, TestProjects.project_gc_untag_name = self.project.create_project(metadata = {"public": "false"}, **TestProjects.USER_GC_CLIENT)
|
|
|
|
#3. Push a image in project(PA) and then delete repository by admin;
|
|
push_special_image_to_project(TestProjects.project_gc_name, harbor_server, admin_name, admin_password, self.repo_name, ["latest", "v1.2.3"])
|
|
self.repo.delete_repoitory(TestProjects.project_gc_name, self.repo_name, **TestProjects.USER_GC_CLIENT)
|
|
|
|
#4. Get repository by user(UA), it should get nothing;
|
|
repo_data = self.repo.list_repositories(TestProjects.project_gc_name, **TestProjects.USER_GC_CLIENT)
|
|
_assert_status_code(len(repo_data), 0)
|
|
|
|
#8. Push a image in project(PB) by admin and delete the only tag;
|
|
push_special_image_to_project(TestProjects.project_gc_untag_name, harbor_server, admin_name, admin_password, self.repo_name_untag, [self.tag])
|
|
self.artifact.delete_tag(TestProjects.project_gc_untag_name, self.repo_name_untag, self.tag, self.tag, **ADMIN_CLIENT)
|
|
|
|
#5. Tigger garbage collection operation;
|
|
gc_id = self.system.gc_now(**ADMIN_CLIENT)
|
|
|
|
#6. Check garbage collection job was finished;
|
|
self.system.validate_gc_job_status(gc_id, "finished", **ADMIN_CLIENT)
|
|
|
|
#7. Get garbage collection log, check there is a number of files was deleted;
|
|
self.system.validate_deletion_success(gc_id, **ADMIN_CLIENT)
|
|
|
|
artifacts = self.artifact.list_artifacts(TestProjects.project_gc_untag_name, self.repo_name_untag, **TestProjects.USER_GC_CLIENT)
|
|
_assert_status_code(len(artifacts), 1)
|
|
|
|
time.sleep(5)
|
|
|
|
#9. Tigger garbage collection operation;
|
|
gc_id = self.system.gc_now(is_delete_untagged=True, **ADMIN_CLIENT)
|
|
|
|
#10. Check garbage collection job was finished;
|
|
self.system.validate_gc_job_status(gc_id, "finished", **ADMIN_CLIENT)
|
|
|
|
#7. Get garbage collection log, check there is a number of files was deleted;
|
|
self.system.validate_deletion_success(gc_id, **ADMIN_CLIENT)
|
|
|
|
#11. Repository with untag image should be still there;
|
|
repo_data_untag = self.repo.list_repositories(TestProjects.project_gc_untag_name, **TestProjects.USER_GC_CLIENT)
|
|
_assert_status_code(len(repo_data_untag), 1)
|
|
self.assertEqual(TestProjects.project_gc_untag_name + "/" + self.repo_name_untag , repo_data_untag[0].name)
|
|
|
|
#12. But no any artifact in repository anymore.
|
|
artifacts = self.artifact.list_artifacts(TestProjects.project_gc_untag_name, self.repo_name_untag, **TestProjects.USER_GC_CLIENT)
|
|
self.assertEqual(artifacts,[])
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |