79c5e55a71a79115457c5da7ceb5c966e3ac217c
[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 Resource       /robot/resources/ric/ric_utils.robot
22
23 Library  KubernetesEntity  ${GLOBAL_RICPLT_NAMESPACE}
24 Library  Collections
25 Library  String
26
27 *** Test Cases ***
28 Ensure RIC components are deployed and available
29   [Tags]  etetests  k8stests  ci_tests
30   FOR  ${component}  IN  @{GLOBAL_RICPLT_COMPONENTS}
31      ${controllerName} =  Get From Dictionary              ${GLOBAL_RICPLT_COMPONENTS}  ${Component}
32      ${cType}  ${name} =  Split String  ${controllerName}  |
33      ${ctrl} =            Run Keyword   ${cType}           ${name}
34      Component Should Be Ready          ${ctrl}
35   END