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 ***
Test Case - Garbage Collection
Init Chrome Driver
${d}= Get Current Date result_format=%m%s
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
2022-06-13 08:19:32 +02:00
GC Now
${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
${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}
GC Now
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
2020-04-29 23:42:21 +02:00
Go Into Artifact latest
Should Contain Tag latest
Delete A Tag latest
Should Not Contain Tag latest
# run gc without param delete untagged artifacts checked, should not delete hello-world:latest
2022-06-13 08:19:32 +02:00
GC Now
${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 Contain Artifact
# run gc with param delete untagged artifacts checked, should delete hello-world
Switch To Garbage Collection
2022-06-13 08:19:32 +02:00
GC Now untag=${true}
${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
2021-07-02 04:19:43 +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}
2022-07-13 11:38:22 +02:00
FOR ${n} IN RANGE 1 3
${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'
Sleep 1
END
Should Be Equal As Strings '${out2[0]}' 'PASS'
2023-07-06 07:47:00 +02:00
Close Browser