blob: 1ce9d7f761e89dd1595f329d1ab64ec7f6e65849 [file] [log] [blame]
eprasadada6d5b2020-12-07 17:18:33 +00001---
2tiers:
3 -
4 name: healthcheck
5 order: 1
6 ci_loop: '(daily)|(weekly)!(gating)'
7 description: >-
8 Set of basic Functional tests to validate the ONAP installation.
9 testcases:
10 -
11 case_name: auto
12 project_name: integration
13 criteria: 100
14 blocking: false
15 description: >-
16 This test runs a set of basic healthcheck tests to verify only components presently enabled.
17 run:
18 name: 'robotframework'
19 args:
20 suites:
21 - /var/opt/ONAP/robot/testsuites/health-check.robot
22 include:
23{% for item in onap_enabled_services.stdout_lines %}
24{{ item | indent( width=28, indentfirst=True) }}
25{% endfor %}
26 variablefile:
27 - '/share/config/robot_properties.py'
28 -
29 name: healthcheck
30 order: 1
31 ci_loop: '(daily)|(weekly)!(gating)'
32 description: >-
33 Set of basic Functional tests to validate the ONAP installation.
34 testcases:
35 -
36 case_name: core
37 project_name: integration
38 criteria: 100
39 blocking: false
40 description: >-
41 This test case verifies the API of core ONAP components
42 aai, dmap, portal, sdc, sdnc, so, robot
43 run:
44 name: 'robotframework'
45 args:
46 suites:
47 - /var/opt/ONAP/robot/testsuites/health-check.robot
48 include:
49 - core
50 variablefile:
51 - '/share/config/robot_properties.py'
52 -
53 case_name: small
54 project_name: integration
55 criteria: 100
56 blocking: false
57 description: >-
58 This test case verifies the API of the components
59 aai, dmap, portal, sdc, sdnc, so, robot,
60 AAF, APPC, CLI, COnsul, ESR, Log, MSB, Multicloud, NBI, VID
61 run:
62 name: 'robotframework'
63 args:
64 suites:
65 - /var/opt/ONAP/robot/testsuites/health-check.robot
66 include:
67 - core
68 - small
69 variablefile:
70 - '/share/config/robot_properties.py'
71 -
72 case_name: medium
73 project_name: integration
74 criteria: 100
75 blocking: false
76 description: >-
77 This test case verifies the API of the components
78 aai, dmap, portal, sdc, sdnc, so, robot,
79 AAF, APPC, CLI, COnsul, ESR, Log, MSB, Multicloud, NBI, VID,
80 CLAMP, DCAE, OOF, POLICY, UUI, SNIRO
81 run:
82 name: 'robotframework'
83 args:
84 suites:
85 - /var/opt/ONAP/robot/testsuites/health-check.robot
86 include:
87 - core
88 - small
89 - medium
90 variablefile:
91 - '/share/config/robot_properties.py'
92 -
93 case_name: full
94 project_name: integration
95 criteria: 100
96 blocking: false
97 description: >-
98 This test case verifies all the healthcheck Robot tests
99 based on the default robot tests
100 run:
101 name: 'robotframework'
102 args:
103 suites:
104 - /var/opt/ONAP/robot/testsuites/health-check.robot
105 include:
106 - health
107 variablefile:
108 - '/share/config/robot_properties.py'
109 -
110 case_name: postinstall
111 project_name: integration
112 criteria: 100
113 blocking: false
114 description: >-
115 This test runs a set of test to verify some components at
116 the end of the installation: DMAAP Message Router ACL
117 Update Test and AAI Service Design Models Size Test
118 run:
119 name: 'robotframework'
120 args:
121 suites:
122 - /var/opt/ONAP/robot/testsuites/post-install-tests.robot
123 include:
124 - postinstall
125 variablefile:
126 - '/share/config/robot_properties.py'
127 -
128 case_name: healthdist
129 project_name: integration
130 criteria: 100
131 blocking: false
132 description: >-
133 This test case verifies that the vFW model is properly
134 distributed. At the end the csar file shall be downloaded
135 from the sdc
136 run:
137 name: 'robotframework'
138 args:
139 suites:
140 - /var/opt/ONAP/robot/testsuites/health-check.robot
141 include:
142 - healthdist
143 variablefile:
144 - '/share/config/robot_properties.py'