summaryrefslogtreecommitdiffstats
path: root/scripts/stl_test_api/trex_stl_api.py
blob: 6d85ee9fb08d636cd7bd5bf6f9457cba034bc242 (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
import sys
import os
import time
import cStringIO

api_path = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(api_path, '../automation/trex_control_plane/client/'))

from trex_stateless_client import CTRexStatelessClient, LoggerApi

class BasicTest(object):

    # exception class
    class Failure(Exception):
        def __init__ (self, rc):
            self.rc = rc

        def __str__ (self):
            s = "\n******\n"
            s += "Test has failed.\n\n"
            s += "Error reported:\n\n  {0}\n".format(str(self.rc.err()))
            return s


    # logger
    class Logger(LoggerApi):
        def __init__ (self):
            LoggerApi.__init__(self)
            self.buffer = cStringIO.StringIO()

        def write (self, msg, newline = True):
            self.buffer.write(str(msg))

            if newline:
                self.buffer.write("\n")

        def flush (self):
            pass


    def __init__ (self):
        self.logger = BasicTest.Logger()
        self.client = CTRexStatelessClient(logger = self.logger)

    def connect (self):
        rc = self.client.connect(mode = "RWF")
        __verify_rc(rc)


    def disconnect (self):
        self.client.disconnect()


    def __verify_rc (self, rc):
        if rc.bad():
            raise self.Failure(rc)

    def inject_profile (self, filename, rate = "1", duration = None):
        cmd = "-f {0} -m {1}".format(filename, rate)
        if duration:
            cmd += " -d {0}".format(duration)

        print cmd
        rc = self.client.cmd_start_line(cmd)
        self.__verify_rc(rc)


    def wait_while_traffic_on (self, timeout = None):
        while self.client.get_active_ports():
            time.sleep(0.1)


def start ():
    test = BasicTest()
    
    try:
        test.connect()
        test.inject_profile("stl/imix_1pkt.yaml", rate = "5gbps", duration = 10)
        test.wait_while_traffic_on()
    finally:
        test.disconnect()


def main ():
    try:
        start()
        print "\nTest has passed :)\n"
    except BasicTest.Failure as e:
        print e



#main()