Change nfvbench git checkout to stable/fraser in Dockerfile
[nfvbench.git] / nfvbench / chain_workers.py
1 #!/usr/bin/env python
2 # Copyright 2017 Cisco Systems, Inc.  All rights reserved.
3 #
4 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
5 #    not use this file except in compliance with the License. You may obtain
6 #    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, WITHOUT
12 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 #    License for the specific language governing permissions and limitations
14 #    under the License.
15 #
16
17
18 class BasicWorker(object):
19
20     def __init__(self, config, clients, specs):
21         self.config = config
22         self.clients = clients
23         self.specs = specs
24
25     def set_vlan_tag(self, device, vlan):
26         device.set_vlan_tag(vlan)
27
28     def set_vlans(self, vlans):
29         pass
30
31     def config_interfaces(self):
32         pass
33
34     def get_data(self):
35         return {}
36
37     def get_network_interfaces(self, index):
38         return []
39
40     def clear_interfaces(self):
41         pass
42
43     def run(self):
44         return None, None
45
46     def get_compute_nodes_bios(self):
47         return {}
48
49     def get_version(self):
50         return {}
51
52     def close(self):
53         pass