2014-03-17 17:29:18 +00:00
|
|
|
"""
|
|
|
|
mbed SDK
|
|
|
|
Copyright (c) 2011-2013 ARM Limited
|
2020-02-20 14:22:24 +00:00
|
|
|
SPDX-License-Identifier: Apache-2.0
|
2014-03-17 17:29:18 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
"""
|
2018-01-12 21:36:14 +00:00
|
|
|
from __future__ import print_function
|
2014-03-17 17:29:18 +00:00
|
|
|
|
2014-09-15 16:43:56 +00:00
|
|
|
import sys
|
2014-03-17 17:29:18 +00:00
|
|
|
import socket
|
|
|
|
from sys import stdout
|
2018-01-12 21:36:14 +00:00
|
|
|
try:
|
|
|
|
from SocketServer import BaseRequestHandler, TCPServer
|
|
|
|
except ImportError:
|
|
|
|
from socketserver import BaseRequestHandler, TCPServer
|
2014-09-15 16:43:56 +00:00
|
|
|
|
2014-03-17 17:29:18 +00:00
|
|
|
class TCPEchoClient_Handler(BaseRequestHandler):
|
|
|
|
def handle(self):
|
2014-10-30 15:22:02 +00:00
|
|
|
""" One handle per connection
|
|
|
|
"""
|
2018-01-12 21:36:14 +00:00
|
|
|
print("HOST: Connection received...")
|
2014-09-15 16:43:56 +00:00
|
|
|
count = 1;
|
2014-03-17 17:29:18 +00:00
|
|
|
while True:
|
|
|
|
data = self.request.recv(1024)
|
|
|
|
if not data: break
|
|
|
|
self.request.sendall(data)
|
2014-09-15 16:43:56 +00:00
|
|
|
if '{{end}}' in str(data):
|
2019-11-21 15:02:37 +00:00
|
|
|
print()
|
2018-01-12 21:36:14 +00:00
|
|
|
print(str(data))
|
2014-09-15 16:43:56 +00:00
|
|
|
else:
|
|
|
|
if not count % 10:
|
|
|
|
sys.stdout.write('.')
|
|
|
|
count += 1
|
2014-03-17 17:29:18 +00:00
|
|
|
stdout.flush()
|
|
|
|
|
2019-11-21 15:02:37 +00:00
|
|
|
class TCPEchoClientTest(object):
|
2015-01-30 09:57:36 +00:00
|
|
|
def send_server_ip_port(self, selftest, ip_address, port_no):
|
|
|
|
""" Set up network host. Reset target and and send server IP via serial to Mbed
|
|
|
|
"""
|
|
|
|
c = selftest.mbed.serial_readline() # 'TCPCllient waiting for server IP and port...'
|
|
|
|
if c is None:
|
|
|
|
self.print_result(selftest.RESULT_IO_SERIAL)
|
|
|
|
return
|
2014-03-17 17:29:18 +00:00
|
|
|
|
2015-01-30 09:57:36 +00:00
|
|
|
selftest.notify(c.strip())
|
|
|
|
selftest.notify("HOST: Sending server IP Address to target...")
|
2014-03-17 17:29:18 +00:00
|
|
|
|
2015-01-30 09:57:36 +00:00
|
|
|
connection_str = ip_address + ":" + str(port_no) + "\n"
|
|
|
|
selftest.mbed.serial_write(connection_str)
|
|
|
|
selftest.notify(connection_str)
|
2014-03-17 17:29:18 +00:00
|
|
|
|
2015-01-30 09:57:36 +00:00
|
|
|
# Two more strings about connection should be sent by MBED
|
|
|
|
for i in range(0, 2):
|
|
|
|
c = selftest.mbed.serial_readline()
|
|
|
|
if c is None:
|
|
|
|
selftest.print_result(self.RESULT_IO_SERIAL)
|
|
|
|
return
|
|
|
|
selftest.notify(c.strip())
|
|
|
|
|
|
|
|
def test(self, selftest):
|
2015-02-19 11:36:34 +00:00
|
|
|
# We need to discover SERVEP_IP and set up SERVER_PORT
|
|
|
|
# Note: Port 7 is Echo Protocol:
|
|
|
|
#
|
|
|
|
# Port number rationale:
|
|
|
|
#
|
|
|
|
# The Echo Protocol is a service in the Internet Protocol Suite defined
|
|
|
|
# in RFC 862. It was originally proposed for testing and measurement
|
|
|
|
# of round-trip times[citation needed] in IP networks.
|
|
|
|
#
|
|
|
|
# A host may connect to a server that supports the Echo Protocol using
|
|
|
|
# the Transmission Control Protocol (TCP) or the User Datagram Protocol
|
|
|
|
# (UDP) on the well-known port number 7. The server sends back an
|
|
|
|
# identical copy of the data it received.
|
|
|
|
SERVER_IP = str(socket.gethostbyname(socket.getfqdn()))
|
|
|
|
SERVER_PORT = 7
|
|
|
|
|
2015-01-30 09:57:36 +00:00
|
|
|
# Returning none will suppress host test from printing success code
|
|
|
|
server = TCPServer((SERVER_IP, SERVER_PORT), TCPEchoClient_Handler)
|
2018-01-12 21:36:14 +00:00
|
|
|
print("HOST: Listening for TCP connections: %s:%s" %
|
|
|
|
(SERVER_IP, str(SERVER_PORT)))
|
2015-01-30 09:57:36 +00:00
|
|
|
self.send_server_ip_port(selftest, SERVER_IP, SERVER_PORT)
|
|
|
|
server.serve_forever()
|