]> git.gir.st - tmk_keyboard.git/blob - tool/mbed/mbed-sdk/workspace_tools/host_tests/tcpecho_client.py
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[tmk_keyboard.git] / tool / mbed / mbed-sdk / workspace_tools / host_tests / tcpecho_client.py
1 """
2 mbed SDK
3 Copyright (c) 2011-2013 ARM Limited
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 """
17 import socket
18 import string, random
19 from time import time
20
21 from private_settings import SERVER_ADDRESS
22
23 ECHO_PORT = 7
24
25 LEN_PACKET = 127
26 N_PACKETS = 5000
27 TOT_BITS = float(LEN_PACKET * N_PACKETS * 8) * 2
28 MEGA = float(1024 * 1024)
29 UPDATE_STEP = (N_PACKETS/10)
30
31 class TCP_EchoClient:
32 def __init__(self, host):
33 self.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
34 self.s.connect((host, ECHO_PORT))
35 self.packet = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(LEN_PACKET))
36
37 def __packet(self):
38 # Comment out the checks when measuring the throughput
39 # self.packet = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(LEN_PACKET))
40 self.s.send(self.packet)
41 data = self.s.recv(LEN_PACKET)
42 # assert self.packet == data, "packet error:\n%s\n%s\n" % (self.packet, data)
43
44 def test(self):
45 start = time()
46 for i in range(N_PACKETS):
47 if (i % UPDATE_STEP) == 0: print '%.2f%%' % ((float(i)/float(N_PACKETS)) * 100.)
48 self.__packet()
49 t = time() - start
50 print 'Throughput: (%.2f)Mbits/s' % ((TOT_BITS / t)/MEGA)
51
52 def __del__(self):
53 self.s.close()
54
55 while True:
56 e = TCP_EchoClient(SERVER_ADDRESS)
57 e.test()
Imprint / Impressum