forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_ClientContext.py
60 lines (50 loc) · 1.63 KB
/
test_ClientContext.py
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
from mock_decorators import setup, teardown
from flask import Flask, request
from threading import Thread
import socket
import select
import sys
import os
@setup('WiFi release ClientContext')
def setup_tcpsrv(e):
global thread
app = Flask(__name__)
def run():
global running
running = False
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
for port in range(8266, 8285 + 1):
try:
print >>sys.stderr, 'trying port', port
server_address = ("0.0.0.0", port)
sock.bind(server_address)
sock.listen(1)
running = True
break
except Exception:
print >>sys.stderr, 'busy'
if not running:
return
print >>sys.stderr, 'starting up on %s port %s' % server_address
print >>sys.stderr, 'waiting for connections'
while running:
print >>sys.stderr, 'loop'
readable, writable, errored = select.select([sock], [], [], 1.0)
if readable:
connection, client_address = sock.accept()
try:
print >>sys.stderr, 'client connected:', client_address
finally:
print >>sys.stderr, 'close'
connection.shutdown(socket.SHUT_RDWR)
connection.close()
thread = Thread(target=run)
thread.start()
@teardown('WiFi release ClientContext')
def teardown_tcpsrv(e):
global thread
global running
print >>sys.stderr, 'closing'
running = False
thread.join()
return 0