blob: 7c53255564253dc9b0d305f8c8c37a5f74542b4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
---
tiers:
-
name: healthcheck
order: 1
ci_loop: '(daily)|(weekly)'
description: >-
A set of e2e tests integrated from kubernetes project.
testcases:
-
case_name: k8s_smoke
project_name: functest
criteria: 100
blocking: false
description: >-
Smoke Tests a running Kubernetes cluster, which
validates the deployed cluster is accessible, and
at least satisfies minimal functional requirements.
dependencies:
installer: '(compass)|(joid)|(kubespray)|(container4nfv)'
scenario: 'k8-*'
run:
module: 'functest_kubernetes.k8stest'
class: 'K8sSmokeTest'
-
name: smoke
order: 2
ci_loop: '(daily)|(weekly)'
description: >-
A set of conformance tests integrated from kubernetes project.
testcases:
-
case_name: k8s_conformance
project_name: functest
criteria: 100
blocking: false
description: >-
Conformance Tests are expect to pass on any Kubernetes
cluster, this tests are necessary demonstrate conformance
of the Kubernetes deployment.
dependencies:
installer: '(compass)|(joid)|(kubespray)'
scenario: 'k8-*'
run:
module: 'functest_kubernetes.k8stest'
class: 'K8sConformanceTest'
-
name: stor4nfv
order: 3
ci_loop: '(daily)|(weekly)'
description: >-
Test suite from Stor4NFV project.
testcases:
-
case_name: stor4nfv_k8s
project_name: stor4nfv
criteria: 100
blocking: false
description: >-
This tests are necessary demonstrate conformance
of the K8s+Stor4NFV deployment.
dependencies:
installer: 'compass'
scenario: 'stor4nfv'
run:
module: 'stor4nfv_tests.stor4nfv_k8s'
class: 'K8sStor4nfvTest'
-
name: clover
order: 4
ci_loop: '(daily)|(weekly)'
description: >-
Test suite from Clover project.
testcases:
-
case_name: clover_k8s
project_name: clover
criteria: 100
blocking: false
description: >-
This tests are necessary demonstrate features
of K8s+Istio+Clover deployment.
dependencies:
installer: 'container4nfv'
scenario: 'clover'
run:
module: 'clover.functest.clover_k8s'
class: 'K8sCloverTest'
|