blob: 35a1dbe3ec90c4154bf3e156532bd36acfdeacb8 (
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
|
.. This work is licensed under a Creative Commons Attribution 4.0 International
.. License.
.. http://creativecommons.org/licenses/by/4.0
.. (c) OPNFV, Intel Corporation and others.
=================================
Apexlake API Interface Definition
=================================
Abstract
--------
The API interface provided by the framework to enable the execution of test
cases is defined as follows.
init
----
**static init()**
Initializes the Framework
**Returns** None
execute_framework
-----------------
**static execute_framework** (test_cases,
iterations,
heat_template,
heat_template_parameters,
deployment_configuration,
openstack_credentials)
Executes the framework according the specified inputs
**Parameters**
- **test_cases**
Test cases to be run with the workload (dict() of dict())
Example:
test_case = dict()
test_case[’name’] = ‘module.Class’
test_case[’params’] = dict()
test_case[’params’][’throughput’] = ‘1’
test_case[’params’][’vlan_sender’] = ‘1000’
test_case[’params’][’vlan_receiver’] = ‘1001’
test_cases = [test_case]
- **iterations**
Number of test cycles to be executed (int)
- **heat_template**
(string) File name of the heat template corresponding to the workload to be deployed.
It contains the parameters to be evaluated in the form of #parameter_name.
(See heat_templates/vTC.yaml as example).
- **heat_template_parameters**
(dict) Parameters to be provided as input to the
heat template. See http://docs.openstack.org/developer/heat/ template_guide/hot_guide.html
section “Template input parameters” for further info.
- **deployment_configuration**
( dict[string] = list(strings) ) ) Dictionary of parameters
representing the deployment configuration of the workload.
The key is a string corresponding to the name of the parameter,
the value is a list of strings representing the value to be
assumed by a specific param. The parameters are user defined:
they have to correspond to the place holders (#parameter_name)
specified in the heat template.
**Returns** dict() containing results
|