diff options
author | Radek Zetik <radekx.zetik@intel.com> | 2015-07-20 05:33:58 +0100 |
---|---|---|
committer | Maryam Tahhan <maryam.tahhan@intel.com> | 2015-08-04 09:40:23 +0000 |
commit | 211eb7443e6cdc66c9657399be983184cd16bba7 (patch) | |
tree | fc1a5464451a6702e5774030b9191ef90972973c /core | |
parent | eec369cd944ee4951fe53f542114498a6b7d23dc (diff) |
Add a simple performance test that sends a continuous stream
Implement a simple performance test that sends a continuous
stream of traffic to the vSwitch at line rate for 30 seconds
and measures the throughput
Note: there is issue with calculating of the Tx Fps and Mbps
based on the results from the IxNetwork traffic generator.
This issue will be fixed in a later patch.
JIRA: VSPERF-27
Change-Id: Ic72225888735d33398a602462af159e901fb5957
Signed-off-by: Radek Zetik <radekx.zetik@intel.com>
Reviewed-by: Maryam Tahhan <maryam.tahhan@intel.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/component_factory.py | 5 | ||||
-rw-r--r-- | core/traffic_controller_rfc2544.py | 3 |
2 files changed, 5 insertions, 3 deletions
diff --git a/core/component_factory.py b/core/component_factory.py index eb963d6f..c101f5d2 100644 --- a/core/component_factory.py +++ b/core/component_factory.py @@ -38,14 +38,13 @@ def create_traffic(traffic_type, trafficgen_class): traffic_types: 'rfc2544_throughput' - :param traffic_type: Name of traffic type + :param traffic_type: Name of traffic type :param trafficgen_class: Reference to traffic generator class to be used. :return: A new ITrafficController """ - #TODO - full mapping from all traffic_types to - #correct controller class return TrafficControllerRFC2544(trafficgen_class) + def create_vswitch(deployment_scenario, vswitch_class): """Return a new IVSwitchController for the deployment_scenario. diff --git a/core/traffic_controller_rfc2544.py b/core/traffic_controller_rfc2544.py index bcea9568..aae3ef81 100644 --- a/core/traffic_controller_rfc2544.py +++ b/core/traffic_controller_rfc2544.py @@ -86,6 +86,9 @@ class TrafficControllerRFC2544(ITrafficController, IResults): result = self._traffic_gen_class.send_rfc2544_back2back( traffic, trials=int(self._trials), duration=int(get_test_param('rfc2544_duration', 20))) + elif traffic['traffic_type'] == 'continuous': + result = self._traffic_gen_class.send_cont_traffic( + traffic, time=int(get_test_param('rfc2544_duration', 30))) else: result = self._traffic_gen_class.send_rfc2544_throughput( traffic, trials=int(self._trials), |