2020-06-04 12:17:26 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
import unittest
|
|
|
|
import urllib
|
|
|
|
|
2020-11-04 03:13:12 +01:00
|
|
|
from testutils import ADMIN_CLIENT, suppress_urllib3_warning
|
2020-06-04 12:17:26 +02:00
|
|
|
from testutils import harbor_server
|
|
|
|
from testutils import TEARDOWN
|
2020-08-07 08:56:18 +02:00
|
|
|
import library.singularity
|
|
|
|
from library.sign import sign_image
|
2020-06-04 12:17:26 +02:00
|
|
|
from library.user import User
|
|
|
|
from library.project import Project
|
|
|
|
from library.repository import Repository
|
|
|
|
from library.artifact import Artifact
|
|
|
|
|
|
|
|
|
|
|
|
class TestProjects(unittest.TestCase):
|
2020-11-04 03:13:12 +01:00
|
|
|
@suppress_urllib3_warning
|
2020-06-04 12:17:26 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.project = Project()
|
|
|
|
self.user = User()
|
|
|
|
self.artifact = Artifact()
|
|
|
|
self.repo = Repository()
|
2020-06-09 09:33:18 +02:00
|
|
|
self.repo_name = "busybox"
|
|
|
|
self.tag = "1.28"
|
2020-06-04 12:17:26 +02:00
|
|
|
|
|
|
|
@unittest.skipIf(TEARDOWN == False, "Test data won't be erased.")
|
2020-11-04 03:13:12 +01:00
|
|
|
def tearDown(self):
|
2020-06-04 12:17:26 +02:00
|
|
|
#1. Delete user(UA);
|
|
|
|
self.user.delete_user(TestProjects.user_sign_image_id, **ADMIN_CLIENT)
|
|
|
|
|
2020-06-09 09:33:18 +02:00
|
|
|
def testPushSingularity(self):
|
2020-06-04 12:17:26 +02:00
|
|
|
"""
|
|
|
|
Test case:
|
2020-06-09 09:33:18 +02:00
|
|
|
Push Singularity file With Singularity CLI
|
2020-06-04 12:17:26 +02:00
|
|
|
Test step and expected result:
|
|
|
|
1. Create user-001
|
|
|
|
2. Create a new private project(PA) by user(UA);
|
2020-06-09 09:33:18 +02:00
|
|
|
3. Push a sif file to harbor by singularity;
|
|
|
|
4. Get repository from Harbor successfully, and verfiy repository name is repo pushed by singularity CLI;
|
2020-06-04 12:17:26 +02:00
|
|
|
5. Get and verify artifacts by tag;
|
2020-06-09 09:33:18 +02:00
|
|
|
6. Pull sif file from harbor by singularity;
|
2020-06-04 12:17:26 +02:00
|
|
|
Tear down:
|
|
|
|
NA
|
|
|
|
"""
|
|
|
|
url = ADMIN_CLIENT["endpoint"]
|
|
|
|
user_001_password = "Aa123456"
|
|
|
|
|
|
|
|
#1. Create user-001
|
|
|
|
TestProjects.user_sign_image_id, user_name = self.user.create_user(user_password = user_001_password, **ADMIN_CLIENT)
|
|
|
|
|
|
|
|
TestProjects.USER_CLIENT=dict(with_signature = True, endpoint = url, username = user_name, password = user_001_password)
|
|
|
|
|
|
|
|
#2. Create a new private project(PA) by user(UA);
|
|
|
|
TestProjects.project_id, TestProjects.project_name = self.project.create_project(metadata = {"public": "false"}, **TestProjects.USER_CLIENT)
|
|
|
|
|
2020-06-09 09:33:18 +02:00
|
|
|
#3. Push a sif file to harbor by singularity;
|
|
|
|
library.singularity.push_singularity_to_harbor("library:", "library/default/", harbor_server, user_name, user_001_password, TestProjects.project_name, self.repo_name, self.tag)
|
2020-06-04 12:17:26 +02:00
|
|
|
|
2020-06-09 09:33:18 +02:00
|
|
|
|
|
|
|
#4. Get repository from Harbor successfully, and verfiy repository name is repo pushed by singularity CLI;
|
2020-06-04 12:17:26 +02:00
|
|
|
repo_data = self.repo.get_repository(TestProjects.project_name, self.repo_name, **TestProjects.USER_CLIENT)
|
|
|
|
self.assertEqual(repo_data.name, TestProjects.project_name + "/" + self.repo_name)
|
|
|
|
|
|
|
|
#5. Get and verify artifacts by tag;
|
|
|
|
artifact = self.artifact.get_reference_info(TestProjects.project_name, self.repo_name, self.tag, **TestProjects.USER_CLIENT)
|
2020-11-03 08:32:13 +01:00
|
|
|
self.assertEqual(artifact.tags[0].name, self.tag)
|
2020-06-04 12:17:26 +02:00
|
|
|
|
2020-06-09 09:33:18 +02:00
|
|
|
#6. Pull sif file from harbor by singularity;
|
|
|
|
library.singularity.singularity_pull(TestProjects.project_name + ".sif", "oras://"+harbor_server + "/" + TestProjects.project_name + "/" + self.repo_name+":"+ self.tag)
|
2020-06-04 12:17:26 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|