34176754e67a5a73c2eef945379eeb07cb67b647
[it/test.git] / ric_robot_suite / helm / nanobot / configmap-src / public / testsuites / ricdeployment.robot
1 #   Copyright (c) 2019 AT&T Intellectual Property.
2 #   Copyright (c) 2019 Nokia.
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15
16 *** Settings ***
17 Documentation   Tests for the existence and functionality of RIC components
18
19 Resource       /robot/resources/global_properties.robot
20
21 Library  KubernetesEntity  ${GLOBAL_RICPLT_NAMESPACE}
22 Library  Collections
23 Library  String
24
25 *** Test Cases ***
26 Ensure RIC components are deployed and available
27   [Tags]  etetests  k8stests  ci_tests
28   :FOR  ${component}  IN  @{GLOBAL_RICPLT_COMPONENTS}
29   \  ${deploymentName} =  Get From Dictionary  ${GLOBAL_RICPLT_COMPONENTS}  ${Component}
30   \  ${deploy} =          Deployment           ${deploymentName}
31   \  ${status} =          Most Recent Availability Condition                @{deploy.status.conditions}
32   \  Should Be Equal As Strings  ${status}  True  ignore_case=True  msg=${Component} is not available
33
34 *** Keywords ***
35 Most Recent Availability Condition
36   # this makes the probably-unsafe assumption that the conditions are ordered
37   # temporally.
38   [Arguments]  @{Conditions}
39   ${status} =  Set Variable  'False'
40   :FOR  ${Condition}  IN  @{Conditions}
41   \  ${status} =  Set Variable If  '${Condition.type}' == 'Available'  ${Condition.status}  ${status}
42   [Return]  ${status}