mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 08:39:44 +01:00
7b93e845e1
Signed-off-by: Yogi_Wang <yawang@vmware.com>
59 lines
2.9 KiB
Plaintext
59 lines
2.9 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
|
|
Resource ../../resources/Util.robot
|
|
|
|
*** Variables ***
|
|
|
|
*** Keywords ***
|
|
|
|
Sign In Harbor With OIDC User
|
|
[Arguments] ${url} ${username}=${OIDC_USERNAME}
|
|
${head_username}= Set Variable xpath=//harbor-app/harbor-shell/clr-main-container/navigator/clr-header//clr-dropdown//button[contains(.,'${username}')]
|
|
Init Chrome Driver
|
|
Go To ${url}
|
|
Retry Element Click ${log_oidc_provider_btn}
|
|
Retry Text Input ${dex_login_btn} ${username}@example.com
|
|
Retry Text Input ${dex_pwd_btn} password
|
|
Retry Element Click ${submit_login_btn}
|
|
Retry Element Click ${grant_btn}
|
|
|
|
#If input box for harbor user name is visible, it means it's the 1st time login of this user,
|
|
# but if this user has been logged into harbor successfully, this input box will not show up,
|
|
# so there is condition branch for this stituation.
|
|
${isVisible}= Run Keyword And Return Status Element Should Be Visible ${oidc_username_input}
|
|
Run Keyword If '${isVisible}' == 'True' Run Keywords Retry Text Input ${oidc_username_input} ${username} AND Retry Element Click ${save_btn}
|
|
Retry Wait Element ${head_username}
|
|
|
|
Get Secrete By API
|
|
[Arguments] ${url} ${username}=${OIDC_USERNAME}
|
|
${json}= Run Curl And Return Json curl -s -k -X GET --header 'Accept: application/json' -u '${HARBOR_ADMIN}:${HARBOR_PASSWORD}' '${url}/api/users/search?username=${username}'
|
|
${user_info}= Set Variable ${json[0]}
|
|
${user_id}= Set Variable ${user_info["user_id"]}
|
|
${json}= Run Curl And Return Json curl -s -k -X GET --header 'Accept: application/json' -u '${HARBOR_ADMIN}:${HARBOR_PASSWORD}' '${url}/api/users/${user_id}'
|
|
${secret}= Set Variable ${json["oidc_user_meta"]["secret"]}
|
|
[Return] ${secret}
|
|
|
|
Generate And Return Secret
|
|
[Arguments] ${url}
|
|
Retry Element Click ${head_admin_xpath}
|
|
Retry Element Click ${user_profile_xpath}
|
|
Retry Element Click ${more_btn}
|
|
Retry Element Click ${generate_secret_btn}
|
|
Retry Double Keywords When Error Retry Element Click ${confirm_btn} Retry Wait Until Page Not Contains Element ${confirm_btn}
|
|
Retry Wait Until Page Contains Cli secret setting is successful
|
|
${secret}= Get Secrete By API ${url}
|
|
[Return] ${secret} |