blob: 8722e399b990ba0385909e81d7211db2aa7c59d6 (
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
---
cli_file_name: 'cmd_config.yml'
result_file: 'results.json'
# OPENSTACK Credential file
env_file: 'env_config.sh'
# POD info file
pod_file: 'pod.yaml'
# JUMPSERVER private key used in pod_file to login hosts
# If use password to login hosts, there's no need to provide the private key
pri_key: 'id_rsa'
# SDNVPN offline image
sdnvpn_image: 'ubuntu-16.04-server-cloudimg-amd64-disk1.img'
# Tempest image
cirros_image: 'cirros-0.3.5-x86_64-disk.img'
# Ubuntu 14.04 image for snaps_smoke
ubuntu14_image: 'ubuntu-14.04-server-cloudimg-amd64-disk1.img'
# cloudify_ims image
cloudify_image: 'cloudify-manager-premium-4.0.1.qcow2'
# Trusty image
trusty_image: 'trusty-server-cloudimg-amd64-disk1.img'
# testsuite supported, should adjust accordingly
testsuite_supported:
- compliance_set
- proposed_tests
- debug
- healthcheck
- ovp.next
- onap.1.0.0
# testarea supported, should adjust accordingly
testarea_supported:
- ha
- healthcheck
- onap
- sdnvpn
- security
- snaps
- stress
- tempest
- vnf
- vping
functest_testsuite:
- refstack_defcore
- tempest_smoke_serial
- tempest_full_parallel
- tempest_custom
- rally_sanity
- promise
- patrole
- neutron_trunk
functest_testcase:
- bgpvpn
- connection_check
- api_check
- snaps_health_check
- vping_ssh
- vping_userdata
- doctor
- copper
- cloudify_ims
- odl
- snaps_smoke
- juju_epc
# used for testcase cmd template in jinja2 format
# we have two variables available now
# parameter path, use this path to walk through python object and get value
# and the python object is "testcase" object by hard-coded
parameters:
- name: testcase
path: '("name",)'
- name: validate_testcase
path: '("validate", "testcase")'
include_config:
- vnftest_config.yml
test_project:
- 'yardstick'
- 'functest'
- 'bottlenecks'
- 'vnftest'
validate_input:
valid_functest_tags:
- 'latest'
- 'euphrates'
valid_yardstick_tags:
- 'latest'
- 'opnfv-5.1.0'
mandatory:
- osinterop
- ha
- vping
optional:
- ipv6
- tempest
- sdnvpn
|