mirror of
https://github.com/goharbor/harbor
synced 2025-04-22 17:59:30 +00:00
Merge pull request #11379 from danfengliu/add-nightly-test-of-push-helm-chart
Add nightly test of push helm chart
This commit is contained in:
commit
aa26e624b9
@ -19,6 +19,6 @@ Documentation This resource provides any keywords related to the Harbor private
|
|||||||
${artifact_action_xpath} //clr-dg-action-bar/clr-dropdown/span[contains(@class,'dropdown-toggle')]
|
${artifact_action_xpath} //clr-dg-action-bar/clr-dropdown/span[contains(@class,'dropdown-toggle')]
|
||||||
${artifact_action_delete_xpath} //clr-dropdown-menu//div[contains(.,'Delete')]
|
${artifact_action_delete_xpath} //clr-dropdown-menu//div[contains(.,'Delete')]
|
||||||
${artifact_action_copy_xpath} //clr-dropdown-menu//div[contains(.,'Copy') and @aria-label='retag']
|
${artifact_action_copy_xpath} //clr-dropdown-menu//div[contains(.,'Copy') and @aria-label='retag']
|
||||||
${artifact_achieve_icon} //artifact-list-tab//clr-datagrid//clr-dg-row[contains(.,'sha256')]//clr-dg-cell[1]//clr-tooltip//clr-icon
|
${artifact_achieve_icon} //artifact-list-tab//clr-datagrid//clr-dg-row[contains(.,'sha256')]//clr-dg-cell[1]//clr-tooltip//a
|
||||||
${artifact_rows} //artifact-list-tab//clr-datagrid//clr-dg-row[contains(.,'sha256')]
|
${artifact_rows} //artifact-list-tab//clr-datagrid//clr-dg-row[contains(.,'sha256')]
|
||||||
|
|
||||||
|
@ -211,7 +211,8 @@ Go Into Repo
|
|||||||
Capture Page Screenshot gointo_${repoName}.png
|
Capture Page Screenshot gointo_${repoName}.png
|
||||||
|
|
||||||
Go Into Index
|
Go Into Index
|
||||||
Retry Wait Element ${artifact_achieve_icon}
|
[Arguments] ${index_name}=${null}
|
||||||
|
Retry Element Click ${artifact_achieve_icon}
|
||||||
|
|
||||||
Switch To CardView
|
Switch To CardView
|
||||||
Retry Element Click xpath=//hbr-repository-gridview//span[@class='card-btn']/clr-icon
|
Retry Element Click xpath=//hbr-repository-gridview//span[@class='card-btn']/clr-icon
|
||||||
|
@ -51,6 +51,7 @@ ${repo_list_spinner} xpath=//clr-datagrid//clr-spinner
|
|||||||
${repo_tag_1st_checkbox} xpath=//clr-datagrid//clr-dg-row//clr-checkbox-wrapper
|
${repo_tag_1st_checkbox} xpath=//clr-datagrid//clr-dg-row//clr-checkbox-wrapper
|
||||||
${tag_table_column_pull_command} xpath=//clr-dg-column//span[contains(.,'Pull Command')]
|
${tag_table_column_pull_command} xpath=//clr-dg-column//span[contains(.,'Pull Command')]
|
||||||
${tag_table_column_vulnerabilities} xpath=//clr-dg-column//span[contains(.,'Vulnerabilities')]
|
${tag_table_column_vulnerabilities} xpath=//clr-dg-column//span[contains(.,'Vulnerabilities')]
|
||||||
|
${tag_table_column_os_arch} xpath=//clr-dg-column//span[contains(.,'OS/ARCH')]
|
||||||
${tag_table_column_tag} xpath=//clr-dg-column//span[contains(.,'Tag')]
|
${tag_table_column_tag} xpath=//clr-dg-column//span[contains(.,'Tag')]
|
||||||
${tag_table_column_size} xpath=//clr-dg-column//span[contains(.,'Size')]
|
${tag_table_column_size} xpath=//clr-dg-column//span[contains(.,'Size')]
|
||||||
${tag_table_column_vulnerability} xpath=//clr-dg-column//span[contains(.,'Vulnerability')]
|
${tag_table_column_vulnerability} xpath=//clr-dg-column//span[contains(.,'Vulnerability')]
|
||||||
|
@ -33,3 +33,9 @@ Helm Repo Push
|
|||||||
Run cd ${current_dir}
|
Run cd ${current_dir}
|
||||||
Run wget ${harbor_chart_file_url}
|
Run wget ${harbor_chart_file_url}
|
||||||
Wait Unitl Command Success ${helm_cmd} push --ca-file=/helm_ca/server.crt --username=${user} --password=${pwd} ${chart_filename} ${helm_repo_name}
|
Wait Unitl Command Success ${helm_cmd} push --ca-file=/helm_ca/server.crt --username=${user} --password=${pwd} ${chart_filename} ${helm_repo_name}
|
||||||
|
|
||||||
|
Helm Chart Push
|
||||||
|
[Arguments] ${ip} ${user} ${pwd} ${chart_file} ${archive} ${project} ${repo_name} ${verion}
|
||||||
|
${rc} ${output}= Run And Return Rc And Output ./tests/robot-cases/Group0-Util/helm_push_chart.sh ${ip} ${user} ${pwd} ${chart_file} ${archive} ${project} ${repo_name} ${verion}
|
||||||
|
Log ${output}
|
||||||
|
Should Be Equal As Integers ${rc} 0
|
24
tests/robot-cases/Group0-Util/helm_push_chart.sh
Executable file
24
tests/robot-cases/Group0-Util/helm_push_chart.sh
Executable file
@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
IP=$1
|
||||||
|
USER=$2
|
||||||
|
PWD=$3
|
||||||
|
CHART_FILE=$4
|
||||||
|
ARCHIVE=$5
|
||||||
|
PROJECT=$6
|
||||||
|
REPOSITORY=$7
|
||||||
|
VERSION=$8
|
||||||
|
|
||||||
|
echo $IP
|
||||||
|
|
||||||
|
|
||||||
|
export HELM_EXPERIMENTAL_OCI=1
|
||||||
|
wget $CHART_FILE
|
||||||
|
echo "========================"
|
||||||
|
echo ${CHART_FILE##*/}
|
||||||
|
echo "========================"
|
||||||
|
tar xvf ${CHART_FILE##*/}
|
||||||
|
helm3 registry login $IP -u $USER -p $PWD
|
||||||
|
helm3 chart save $ARCHIVE $IP/$PROJECT/$REPOSITORY
|
||||||
|
helm3 chart push $IP/$PROJECT/$REPOSITORY:$VERSION
|
||||||
|
|
@ -693,7 +693,7 @@ Test Case - Push Docker Manifest Index and Display
|
|||||||
Go Into Project test${d}
|
Go Into Project test${d}
|
||||||
Wait Until Page Contains test${d}/index${d}
|
Wait Until Page Contains test${d}/index${d}
|
||||||
Go Into Repo test${d}/index${d}
|
Go Into Repo test${d}/index${d}
|
||||||
Go Into Index
|
Retry Double Keywords When Error Go Into Index index_name=${null} Page Should Contain Element ${tag_table_column_os_arch}
|
||||||
Page Should Contain Element ${artifact_rows} limit=2
|
Page Should Contain Element ${artifact_rows} limit=2
|
||||||
|
|
||||||
Test Case - Push CNAB Bundle and Display
|
Test Case - Push CNAB Bundle and Display
|
||||||
@ -711,3 +711,30 @@ Test Case - Push CNAB Bundle and Display
|
|||||||
|
|
||||||
Go Into Repo test${d}/cnab${d}
|
Go Into Repo test${d}/cnab${d}
|
||||||
Wait Until Page Contains cnab_tag${d}
|
Wait Until Page Contains cnab_tag${d}
|
||||||
|
Go Into Project test${d}
|
||||||
|
Wait Until Page Contains test${d}/cnab${d}
|
||||||
|
Go Into Repo test${d}/cnab${d}
|
||||||
|
Retry Double Keywords When Error Go Into Index index_name=${null} Page Should Contain Element ${tag_table_column_os_arch}
|
||||||
|
Page Should Contain Element ${artifact_rows} limit=3
|
||||||
|
|
||||||
|
Test Case - Push Helm Chart and Display
|
||||||
|
Init Chrome Driver
|
||||||
|
${d}= Get Current Date result_format=%m%s
|
||||||
|
${chart_file}= Set Variable https://storage.googleapis.com/harbor-builds/helm-chart-test-files/harbor-0.2.0.tgz
|
||||||
|
${archive}= Set Variable harbor/
|
||||||
|
${verion}= Set Variable 0.2.0
|
||||||
|
${repo_name}= Set Variable harbor_chart_test
|
||||||
|
|
||||||
|
Sign In Harbor ${HARBOR_URL} user010 Test1@34
|
||||||
|
Create An New Project test${d}
|
||||||
|
|
||||||
|
Helm Chart Push ${ip} user010 Test1@34 ${chart_file} ${archive} test${d} ${repo_name} ${verion}
|
||||||
|
|
||||||
|
Go Into Project test${d}
|
||||||
|
Wait Until Page Contains test${d}/${repo_name}
|
||||||
|
|
||||||
|
Go Into Repo test${d}/${repo_name}
|
||||||
|
Wait Until Page Contains ${repo_name}
|
||||||
|
Go Into Project test${d}
|
||||||
|
Wait Until Page Contains test${d}/${repo_name}
|
||||||
|
Retry Double Keywords When Error Go Into Repo test${d}/${repo_name} Page Should Contain Element ${tag_table_column_vulnerabilities}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user