# 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 *** Keywords *** Switch To Logs Retry Element Click ${logs_xpath} Refresh Logs Retry Element Click ${logs_refresh_btn} Verify Log [Arguments] ${username} ${resource} ${resource_type} ${operation} ${row_num}=1 Refresh Logs ${real_username}= Get Text //clr-datagrid//clr-dg-row[${row_num}]//clr-dg-cell[1] ${real_resource}= Get Text //clr-datagrid//clr-dg-row[${row_num}]//clr-dg-cell[2] ${real_resource_type}= Get Text //clr-datagrid//clr-dg-row[${row_num}]//clr-dg-cell[3] ${real_operation}= Get Text //clr-datagrid//clr-dg-row[${row_num}]//clr-dg-cell[4] Should Be Equal ${real_username} ${username} Should Be Equal ${real_resource} ${resource} Should Be Equal ${real_resource_type} ${resource_type} Should Be Equal ${real_operation} ${operation} Verify Log In Syslog Service [Arguments] ${username} ${resource} ${resource_type} ${operation} ${expected_count}=1 ${data_raw}= Set Variable {"query": {"match": {"message": {"query": "operator=\\"${username}\\" resource:${resource} resourceType=\\"${resource_type}\\" action:${operation}","operator": "and"}}}} ${cmd}= Set Variable curl -s -k -X GET '${ES_ENDPOINT}/_count' -H 'Content-Type: application/json' -d '${data_raw}' ${json}= Run Curl And Return Json ${cmd} ${count}= Set Variable ${json["count"]} Should Be Equal As Integers ${count} ${expected_count}