2021-05-11 08:55:14 +02:00
# Copyright Project Harbor Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License
2019-08-01 09:10:54 +02:00
*** Settings ***
Documentation Harbor BATs
Resource ../../resources/Util.robot
Default Tags Nightly
*** Variables ***
${HARBOR_URL} https://${ip}
${SSH_USER} root
${HARBOR_ADMIN} admin
*** Test Cases ***
2024-02-02 07:20:40 +01:00
Test Case - Project Quota Sorting
[Tags] project_quota_sorting
Init Chrome Driver
Sign In Harbor ${HARBOR_URL} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
${d1}= Get Current Date result_format=%m%s
Create An New Project And Go Into Project project${d1}
Push Image With Tag ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} project${d1} alpine 2.6 2.6
${d2}= Get Current Date result_format=%m%s
Create An New Project And Go Into Project project${d2}
Push Image With Tag ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} project${d2} photon 2.0 2.0
Switch to Project Quotas Tag
Check Project Quota Sorting project${d1} project${d2}
Go Into Project project${d1}
Delete Repo project${d1} alpine
Go Into Project project${d2}
Delete Repo project${d2} photon
GC Now
Close Browser
2019-08-01 09:10:54 +02:00
Test Case - Garbage Collection
Init Chrome Driver
2023-10-23 09:46:00 +02:00
${d}= Get Current Date result_format=%m%s
2019-08-01 09:10:54 +02:00
Sign In Harbor ${HARBOR_URL} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
2022-06-13 08:19:32 +02:00
GC Now
2020-05-18 11:59:01 +02:00
Create An New Project And Go Into Project project${d}
2021-11-11 08:42:11 +01:00
Push Image ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} project${d} redis sha256=e4b315ad03a1d1d9ff0c111e648a1a91066c09ead8352d3d6a48fa971a82922c
2021-01-04 12:17:51 +01:00
Delete Repo project${d} redis
2023-10-26 05:49:56 +02:00
GC Now workers=5
2022-06-13 08:19:32 +02:00
${latest_job_id}= Get Text ${latest_job_id_xpath}
Retry GC Should Be Successful ${latest_job_id} 7 blobs and 1 manifests eligible for deletion
Retry GC Should Be Successful ${latest_job_id} The GC job actual frees up 34 MB space
2020-04-29 23:42:21 +02:00
Close Browser
2019-08-01 09:10:54 +02:00
2020-04-29 23:42:21 +02:00
Test Case - GC Untagged Images
Init Chrome Driver
2023-10-23 09:46:00 +02:00
${d}= Get Current Date result_format=%m%s
2022-06-13 08:19:32 +02:00
Sign In Harbor ${HARBOR_URL} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
2023-10-26 05:49:56 +02:00
GC Now workers=4
2020-05-18 11:59:01 +02:00
Create An New Project And Go Into Project project${d}
2020-04-29 23:42:21 +02:00
Push Image With Tag ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} project${d} hello-world latest
# make hello-world untagged
2023-07-06 07:47:00 +02:00
Go Into Repo project${d} hello-world
2023-10-23 09:46:00 +02:00
Go Into Artifact latest
Should Contain Tag latest
Delete A Tag latest
Should Not Contain Tag latest
2020-04-29 23:42:21 +02:00
# run gc without param delete untagged artifacts checked, should not delete hello-world:latest
2023-10-26 05:49:56 +02:00
GC Now workers=3
2022-06-13 08:19:32 +02:00
${latest_job_id}= Get Text ${latest_job_id_xpath}
Retry GC Should Be Successful ${latest_job_id} ${null}
2023-10-23 09:46:00 +02:00
Go Into Repo project${d} hello-world
2020-04-29 23:42:21 +02:00
Should Contain Artifact
# run gc with param delete untagged artifacts checked, should delete hello-world
Switch To Garbage Collection
2023-10-26 05:49:56 +02:00
GC Now untag=${true} workers=2
2022-06-13 08:19:32 +02:00
${latest_job_id}= Get Text ${latest_job_id_xpath}
Retry GC Should Be Successful ${latest_job_id} ${null}
2023-07-06 07:47:00 +02:00
Go Into Repo project${d} hello-world
2020-04-29 23:42:21 +02:00
Should Not Contain Any Artifact
Close Browser
# Make sure image logstash was pushed to harbor for the 1st time, so GC will delete it.
Test Case - Project Quotas Control Under GC
Init Chrome Driver
${d}= Get Current Date result_format=%m%s
${storage_quota}= Set Variable 200
2021-07-02 04:19:43 +02:00
${storage_quota_unit}= Set Variable MiB
2020-04-29 23:42:21 +02:00
${image_a}= Set Variable logstash
2023-10-23 09:46:00 +02:00
${image_a_size}= Set Variable 321.03MiB
2020-04-29 23:42:21 +02:00
${image_a_ver}= Set Variable 6.8.3
Sign In Harbor ${HARBOR_URL} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
2022-06-13 08:19:32 +02:00
GC Now
2020-05-18 11:59:01 +02:00
Create An New Project And Go Into Project project${d} storage_quota=${storage_quota} storage_quota_unit=${storage_quota_unit}
2020-04-29 23:42:21 +02:00
Cannot Push image ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} project${d} ${image_a}:${image_a_ver} err_msg=will exceed the configured upper limit of 200.0 MiB
@{param} Create List project${d}
2023-07-25 09:06:04 +02:00
FOR ${n} IN RANGE 1 10
2022-07-13 11:38:22 +02:00
${out1} Run Keyword And Ignore Error GC Now
${latest_job_id}= Get Text ${latest_job_id_xpath}
Retry GC Should Be Successful ${latest_job_id} ${null}
${out2} Run Keyword And Ignore Error Retry Keyword When Return Value Mismatch Get Project Storage Quota Text From Project Quotas List 0Byte of ${storage_quota}${storage_quota_unit} 2 @{param}
Exit For Loop If '${out2[0]}'=='PASS'
2023-07-25 09:06:04 +02:00
Sleep 5
2022-07-13 11:38:22 +02:00
END
Should Be Equal As Strings '${out2[0]}' 'PASS'
2023-07-06 07:47:00 +02:00
Close Browser
2023-10-23 09:46:00 +02:00
Test Case - Garbage Collection Accessory
Init Chrome Driver
${d}= Get Current Date result_format=%m%s
${image}= Set Variable hello-world
${tag}= Set Variable latest
2023-10-26 05:49:56 +02:00
${workers}= Set Variable 1
2023-10-23 09:46:00 +02:00
${deleted_prefix}= Set Variable delete blob from storage:
Sign In Harbor ${HARBOR_URL} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
2023-10-26 05:49:56 +02:00
${gc_job_id}= GC Now
Wait Until GC Complete ${gc_job_id}
Check GC History ${gc_job_id} 0 blob(s) and 0 manifest(s) deleted, 0 space freed up
${log_containing}= Create List workers: ${workers}
${log_excluding}= Create List
Check GC Log ${gc_job_id} ${log_containing} ${log_excluding}
2023-10-23 09:46:00 +02:00
Create An New Project And Go Into Project project${d}
Push Image ${ip} ${HARBOR_ADMIN} ${HARBOR_PASSWORD} project${d} ${image}
${sbom_digest} ${signature_digest} ${signature_of_sbom_digest} ${signature_of_signature_digest}= Prepare Accessory project${d} ${image} ${tag} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
# Delete the Signature of Signature
Delete Accessory By Aeecssory XPath ${artifact_cosign_cosign_accessory_action_btn}
2023-10-26 05:49:56 +02:00
${workers}= Set Variable 2
${gc_job_id}= GC Now workers=${workers}
Wait Until GC Complete ${gc_job_id}
Check GC History ${gc_job_id} 2 blob(s) and 1 manifest(s) deleted
2023-10-23 09:46:00 +02:00
${log_containing}= Create List ${deleted_prefix} ${signature_of_signature_digest}
2023-10-26 05:49:56 +02:00
... workers: ${workers}
2023-10-23 09:46:00 +02:00
${log_excluding}= Create List ${deleted_prefix} ${sbom_digest}
... ${deleted_prefix} ${signature_of_sbom_digest}
... ${deleted_prefix} ${signature_digest}
Check GC Log ${gc_job_id} ${log_containing} ${log_excluding}
Go Into Repo project${d} ${image}
Retry Button Click ${artifact_list_accessory_btn}
# Delete the Signature
Delete Accessory By Aeecssory XPath ${artifact_cosign_accessory_action_btn}
2023-10-26 05:49:56 +02:00
${workers}= Set Variable 3
${gc_job_id}= GC Now workers=${workers}
Wait Until GC Complete ${gc_job_id}
Check GC History ${gc_job_id} 2 blob(s) and 1 manifest(s) deleted
2023-10-23 09:46:00 +02:00
${log_containing}= Create List ${deleted_prefix} ${signature_digest}
2023-10-26 05:49:56 +02:00
... workers: ${workers}
2023-10-23 09:46:00 +02:00
${log_excluding}= Create List ${deleted_prefix} ${sbom_digest}
... ${deleted_prefix} ${signature_of_sbom_digest}
Check GC Log ${gc_job_id} ${log_containing} ${log_excluding}
Go Into Repo project${d} ${image}
Retry Button Click ${artifact_list_accessory_btn}
# Delete the SBOM
Delete Accessory By Aeecssory XPath ${artifact_sbom_accessory_action_btn}
2023-10-26 05:49:56 +02:00
${workers}= Set Variable 4
${gc_job_id}= GC Now workers=${workers}
Wait Until GC Complete ${gc_job_id}
Check GC History ${gc_job_id} 4 blob(s) and 2 manifest(s) deleted
2023-10-23 09:46:00 +02:00
${log_containing}= Create List ${deleted_prefix} ${sbom_digest}
... ${deleted_prefix} ${signature_of_sbom_digest}
2023-10-26 05:49:56 +02:00
... workers: ${workers}
2023-10-23 09:46:00 +02:00
${log_excluding}= Create List
Check GC Log ${gc_job_id} ${log_containing} ${log_excluding}
${sbom_digest} ${signature_digest} ${signature_of_sbom_digest} ${signature_of_signature_digest}= Prepare Accessory project${d} ${image} ${tag} ${HARBOR_ADMIN} ${HARBOR_PASSWORD}
# Delete image tags
Go Into Repo project${d} ${image}
Go Into Artifact ${tag}
Should Contain Tag ${tag}
Delete A Tag ${tag}
2023-10-26 05:49:56 +02:00
${workers}= Set Variable 5
${gc_job_id}= GC Now workers=${workers}
Wait Until GC Complete ${gc_job_id}
Check GC History ${gc_job_id} 0 blob(s) and 0 manifest(s) deleted, 0 space freed up
${log_containing}= Create List workers: ${workers}
2023-10-23 09:46:00 +02:00
${log_excluding}= Create List ${deleted_prefix} ${sbom_digest}
... ${deleted_prefix} ${signature_digest}
... ${deleted_prefix} ${signature_of_sbom_digest}
... ${deleted_prefix} ${signature_of_signature_digest}
Check GC Log ${gc_job_id} ${log_containing} ${log_excluding}
2023-10-26 05:49:56 +02:00
${workers}= Set Variable 5
${gc_job_id}= GC Now workers=${workers} untag=${true}
Wait Until GC Complete ${gc_job_id}
Check GC History ${gc_job_id} 10 blob(s) and 5 manifest(s) deleted
2023-10-23 09:46:00 +02:00
${log_containing}= Create List ${deleted_prefix} ${sbom_digest}
... ${deleted_prefix} ${signature_digest}
... ${deleted_prefix} ${signature_of_sbom_digest}
... ${deleted_prefix} ${signature_of_signature_digest}
2023-10-26 05:49:56 +02:00
... workers: ${workers}
2023-10-23 09:46:00 +02:00
${log_excluding}= Create List
Check GC Log ${gc_job_id} ${log_containing} ${log_excluding}
Close Browser