mirror of
https://github.com/goharbor/harbor.git
synced 2024-10-31 23:59:32 +01:00
7fb9dbd0fa
1. Fix E2E quotas issue, push the same image but with different name; 2. Add checkpoint for robot account test; 3. Upgraded docker and containerd in E2E image; 4. Package base image sample(busybox) into E2E image, so in E2E container, all local docker images can be cleaned up, once base image is needed for building image, it can be loaded locally; 5. Adapt OIDC service of supporting LDAP user, and add OIDC group user test; 6. Restart docker deamon before content trust test, both in API and UI test; 7. Add retry for keyword "Add A Tag Immutability Rule"; 8. Fix tag retention test issue, missing click angle icon, and enhance checkpoint of dry run and real run; 9. Fix schedule test issue for wrong cron string; 10. Disable quotas verification, it's not stable for script defect; Signed-off-by: danfengliu <danfengl@vmware.com>
35 lines
1.5 KiB
Plaintext
35 lines
1.5 KiB
Plaintext
# 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
|
|
|
|
*** Settings ***
|
|
Documentation This resource provides any keywords related to the Harbor private registry appliance
|
|
|
|
*** Variables ***
|
|
${project_p2p_preheat_tag_xpath} //clr-main-container//project-detail/clr-tabs//a[contains(.,'P2P Preheat')]
|
|
${p2p_preheat_new_policy_btn_id} //*[@id='new-policy']
|
|
${p2p_preheat_provider_select_id} //*[@id='provider']
|
|
${p2p_preheat_name_input_id} //*[@id='name']
|
|
${p2p_preheat_repoinput_id} //*[@id='repo']
|
|
${p2p_preheat_tag_input_id} //*[@id='tag']
|
|
${p2p_preheat_trigger_type_select_id} //*[@id='trigger-type']
|
|
${p2p_preheat_add_save_btn_id} //add-p2p-policy//*[@id='new-policy']
|
|
${p2p_preheat_edit_save_btn_id} //*[@id='edit-policy-save']
|
|
${p2p_preheat_action_btn_id} //*[@id='action-policy']
|
|
${p2p_preheat_del_btn_id} //*[@id='delete-policy']
|
|
${p2p_preheat_edit_btn_id} //*[@id='edit-policy']
|
|
${p2p_execution_header} //clr-main-container//project-detail//ng-component//h4[contains(.,'Executions')]
|
|
|
|
|
|
|