beef up the AI/ML framework tests by adding InfluxDB as data source and populate...
[it/test.git] / ric_robot_suite / robot / 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       ../resources/global_properties.robot
20 Resource       ../resources/ric/ric_utils.robot
21
22 Library  KubernetesEntity  ${GLOBAL_RICPLT_NAMESPACE}
23 Library  Collections
24 Library  String
25
26 *** Test Cases ***
27 Deployments
28   [Tags]  etetests  k8stests  ci_tests
29   FOR  ${component}  IN  @{GLOBAL_RICPLT_COMPONENTS}
30      ${controllerName} =  Get From Dictionary              ${GLOBAL_RICPLT_COMPONENTS}  ${Component}
31      ${cType}  ${name} =  Split String  ${controllerName}  |
32      ${ctrl} =            Run Keyword   ${cType}           ${name}
33      Should Be Equal      ${ctrl.status.replicas}          ${ctrl.status.ready_replicas}
34      # this doesn't seem to exist for statefulsets
35      ${status} =          Run Keyword If       '${cType}' == 'deployment'
36      ...                  ${status} =          Most Recent Availability Condition  @{deploy.status.conditions}
37      ...  ELSE
38      ...                  Set Variable         'True'
39      Should Be Equal As Strings  ${status}  True  ignore_case=True  msg=${Component} is not available
40   END
41   
42