ddf6864dc89cc493ed78721704afa206ccc6bde7
[yardstick.git] / yardstick / benchmark / scenarios / networking / ping.py
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9
10 # ping scenario
11
12 import pkg_resources
13 import logging
14
15 import yardstick.ssh as ssh
16 from yardstick.benchmark.scenarios import base
17
18 LOG = logging.getLogger(__name__)
19
20
21 class Ping(base.Scenario):
22     """Executes a ping benchmark between two hosts"""
23     __scenario_type__ = "Ping"
24
25     TARGET_SCRIPT = 'ping_benchmark.bash'
26
27     def __init__(self, context):
28         self.context = context
29         self.target_script = pkg_resources.resource_filename(
30             'yardstick.benchmark.scenarios.networking', Ping.TARGET_SCRIPT)
31         user = self.context.get('user', 'ubuntu')
32         host = self.context.get('host', None)
33         key_filename = self.context.get('key_filename', '~/.ssh/id_rsa')
34
35         LOG.debug("user:%s, host:%s", user, host)
36
37         self.connection = ssh.SSH(user, host, key_filename=key_filename)
38         self.connection.wait()
39
40     def run(self, args):
41         """execute the benchmark"""
42
43         if "options" in args:
44             options = "-s %s" % args['options'].get("packetsize", '56')
45         else:
46             options = ""
47
48         destination = args.get("ipaddr", '127.0.0.1')
49
50         LOG.debug("ping '%s' '%s'", options, destination)
51
52         exit_status, stdout, stderr = self.connection.execute(
53             "/bin/sh -s {0} {1}".format(destination, options),
54             stdin=open(self.target_script, "r"))
55
56         if exit_status != 0:
57             raise RuntimeError(stderr)
58
59         rtt = float(stdout)
60
61         if "sla" in args:
62             sla_max_rtt = int(args["sla"]["max_rtt"])
63             assert rtt <= sla_max_rtt, "rtt %f > sla:max_rtt(%f)" % \
64                 (rtt, sla_max_rtt)
65
66         return rtt