forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
device test for esp8266#4516 (WiFiClient leaking) (esp8266#4549)
* device test for esp8266#4516 (WiFiClient leaking) * simply count the number of connections that do not change heap * remove unused heapLost * + python server (to not depend on gateway's opened tcp port) * remove old&bad define * fix another old address
- Loading branch information
Showing
2 changed files
with
154 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
#include <Arduino.h> | ||
#include <BSTest.h> | ||
#include <test_config.h> | ||
#include <ESP8266WiFi.h> | ||
|
||
extern "C" { | ||
#include "user_interface.h" | ||
} | ||
|
||
BS_ENV_DECLARE(); | ||
|
||
// no need for #include | ||
struct tcp_pcb; | ||
extern struct tcp_pcb* tcp_tw_pcbs; | ||
extern "C" void tcp_abort (struct tcp_pcb* pcb); | ||
|
||
void tcpCleanup (void) | ||
{ | ||
while (tcp_tw_pcbs) | ||
tcp_abort(tcp_tw_pcbs); | ||
} | ||
|
||
void setup() | ||
{ | ||
Serial.begin(115200); | ||
Serial.setDebugOutput(true); | ||
WiFi.persistent(false); | ||
WiFi.mode(WIFI_STA); | ||
WiFi.begin(STA_SSID, STA_PASS); | ||
while (WiFi.status() != WL_CONNECTED) { | ||
delay(500); | ||
} | ||
BS_RUN(Serial); | ||
} | ||
|
||
TEST_CASE("WiFi release ClientContext", "[clientcontext]") | ||
{ | ||
#define MAXLOOPS 50 | ||
#define SUCCESS_GOAL 10 | ||
#define srv SERVER_IP | ||
|
||
WiFiClient client; | ||
|
||
Serial.print(srv); | ||
|
||
// look for reachable port on gateway | ||
int port; | ||
for (port = 8266; port <= 8285; port++) | ||
if (client.connect(srv, port)) | ||
{ | ||
client.stop(); | ||
break; | ||
} | ||
if (port > 8285) | ||
port = 0; | ||
|
||
Serial.printf(":%d\r\n", port); | ||
|
||
int loops = 0; | ||
int success = 0; | ||
|
||
if (port) | ||
{ | ||
tcpCleanup(); | ||
int heapStart = ESP.getFreeHeap(); | ||
int minHeap = heapStart / 2; | ||
int heap = heapStart; | ||
Serial.printf("heap: %d\r\n", heap); | ||
|
||
while (success < SUCCESS_GOAL && ++loops <= MAXLOOPS && (int)ESP.getFreeHeap() > minHeap) | ||
if (client.connect(srv, port)) | ||
{ | ||
client.stop(); | ||
tcpCleanup(); | ||
int newHeap = (int)ESP.getFreeHeap(); | ||
Serial.printf("%03d %5d %d\r\n", loops, newHeap, newHeap - heap); | ||
if (newHeap - heap == 0) | ||
success++; | ||
heap = newHeap; | ||
} | ||
|
||
Serial.printf("heap: %d\r\n" | ||
"loops: %d\r\nstable-loops: %d\r\n", | ||
ESP.getFreeHeap(), | ||
loops, | ||
success); | ||
} | ||
|
||
REQUIRE(success >= SUCCESS_GOAL); | ||
} | ||
|
||
void loop() | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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 |