mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-18 08:15: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>
91 lines
4.6 KiB
Python
91 lines
4.6 KiB
Python
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.system import System
|
|
from library.project import Project
|
|
from library.user import User
|
|
from library.repository import Repository
|
|
from library.repository import push_image_to_project
|
|
from library.artifact import Artifact
|
|
class TestScanAll(unittest.TestCase):
|
|
@suppress_urllib3_warning
|
|
def setUp(self):
|
|
self.system = System()
|
|
self.project= Project()
|
|
self.user= User()
|
|
self.artifact = Artifact()
|
|
self.repo = Repository()
|
|
|
|
@unittest.skipIf(TEARDOWN == False, "Test data won't be erased.")
|
|
def tearDown(self):
|
|
#1. Delete Alice's repository and Luca's repository;
|
|
self.repo.delete_repoitory(TestScanAll.project_Alice_name, TestScanAll.repo_Alice_name.split('/')[1], **ADMIN_CLIENT)
|
|
self.repo.delete_repoitory(TestScanAll.project_Luca_name, TestScanAll.repo_Luca_name.split('/')[1], **ADMIN_CLIENT)
|
|
|
|
#2. Delete Alice's project and Luca's project;
|
|
self.project.delete_project(TestScanAll.project_Alice_id, **ADMIN_CLIENT)
|
|
self.project.delete_project(TestScanAll.project_Luca_id, **ADMIN_CLIENT)
|
|
|
|
#3. Delete user Alice and Luca.
|
|
self.user.delete_user(TestScanAll.user_Alice_id, **ADMIN_CLIENT)
|
|
self.user.delete_user(TestScanAll.user_Luca_id, **ADMIN_CLIENT)
|
|
print("Case completed")
|
|
|
|
def testSystemLevelScanALL(self):
|
|
"""
|
|
Test case:
|
|
System level Scan All
|
|
Test step and expected result:
|
|
1. Create user Alice and Luca;
|
|
2. Create 2 new private projects project_Alice and project_Luca;
|
|
3. Push a image to project_Alice and push another image to project_Luca;
|
|
4. Trigger scan all event;
|
|
5. Check if image in project_Alice and another image in project_Luca were both scanned.
|
|
Tear down:
|
|
1. Delete Alice's repository and Luca's repository;
|
|
2. Delete Alice's project and Luca's project;
|
|
3. Delete user Alice and Luca.
|
|
"""
|
|
url = ADMIN_CLIENT["endpoint"]
|
|
user_common_password = "Aa123456"
|
|
|
|
#1. Create user Alice and Luca;
|
|
TestScanAll.user_Alice_id, user_Alice_name = self.user.create_user(user_password = user_common_password, **ADMIN_CLIENT)
|
|
TestScanAll.user_Luca_id, user_Luca_name = self.user.create_user(user_password = user_common_password, **ADMIN_CLIENT)
|
|
|
|
USER_ALICE_CLIENT=dict(endpoint = url, username = user_Alice_name, password = user_common_password, with_scan_overview = True)
|
|
USER_LUCA_CLIENT=dict(endpoint = url, username = user_Luca_name, password = user_common_password, with_scan_overview = True)
|
|
|
|
#2. Create 2 new private projects project_Alice and project_Luca;
|
|
TestScanAll.project_Alice_id, TestScanAll.project_Alice_name = self.project.create_project(metadata = {"public": "false"}, **USER_ALICE_CLIENT)
|
|
TestScanAll.project_Luca_id, TestScanAll.project_Luca_name = self.project.create_project(metadata = {"public": "false"}, **USER_LUCA_CLIENT)
|
|
|
|
#3. Push a image to project_Alice and push another image to project_Luca;
|
|
|
|
#Note: Please make sure that this Image has never been pulled before by any other cases,
|
|
# so it is a not-scanned image rigth after repository creation.
|
|
#image = "tomcat"
|
|
image_a = "mariadb"
|
|
src_tag = "latest"
|
|
#3.1 Push a image to project_Alice;
|
|
TestScanAll.repo_Alice_name, tag_Alice = push_image_to_project(TestScanAll.project_Alice_name, harbor_server, user_Alice_name, user_common_password, image_a, src_tag)
|
|
|
|
#Note: Please make sure that this Image has never been pulled before by any other cases,
|
|
# so it is a not-scanned image rigth after repository creation.
|
|
image_b = "httpd"
|
|
src_tag = "latest"
|
|
#3.2 push another image to project_Luca;
|
|
TestScanAll.repo_Luca_name, tag_Luca = push_image_to_project(TestScanAll.project_Luca_name, harbor_server, user_Luca_name, user_common_password, image_b, src_tag)
|
|
|
|
#4. Trigger scan all event;
|
|
self.system.scan_now(**ADMIN_CLIENT)
|
|
|
|
#5. Check if image in project_Alice and another image in project_Luca were both scanned.
|
|
self.artifact.check_image_scan_result(TestScanAll.project_Alice_name, image_a, tag_Alice, **USER_ALICE_CLIENT)
|
|
self.artifact.check_image_scan_result(TestScanAll.project_Luca_name, image_b, tag_Luca, **USER_LUCA_CLIENT)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main() |