Skip to content

Commit da17d54

Browse files
committed
Fix regression in WiFi.onEvent, add testcase (thanks @everslick)
1 parent b4490cd commit da17d54

File tree

2 files changed

+131
-0
lines changed

2 files changed

+131
-0
lines changed

libraries/ESP8266WiFi/src/ESP8266WiFiGeneric.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ void ESP8266WiFiGenericClass::onEvent(WiFiEventCb f, WiFiEvent_t event)
9292
(*f)(static_cast<WiFiEvent>(e->event));
9393
});
9494
handler->mCanExpire = false;
95+
sCbEventList.push_back(handler);
9596
}
9697

9798
WiFiEventHandler ESP8266WiFiGenericClass::onStationModeConnected(std::function<void(const WiFiEventStationModeConnected&)> f)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
#include <map>
2+
#include <Arduino.h>
3+
#include <ESP8266WiFi.h>
4+
#include <ESP8266HTTPClient.h>
5+
#include <BSTest.h>
6+
#include <test_config.h>
7+
#include <pgmspace.h>
8+
9+
BS_ENV_DECLARE();
10+
11+
void setup()
12+
{
13+
Serial.begin(115200);
14+
Serial.setDebugOutput(false);
15+
WiFi.persistent(false);
16+
WiFi.mode(WIFI_OFF);
17+
BS_RUN(Serial);
18+
}
19+
20+
static std::map<WiFiEvent_t, int> sEventsReceived;
21+
22+
static void onWiFiEvent(WiFiEvent_t event)
23+
{
24+
sEventsReceived[event]++;
25+
}
26+
27+
TEST_CASE("WiFi.onEvent is called for specific events", "[wifi][events]")
28+
{
29+
sEventsReceived[WIFI_EVENT_STAMODE_CONNECTED] = 0;
30+
sEventsReceived[WIFI_EVENT_STAMODE_DISCONNECTED] = 0;
31+
sEventsReceived[WIFI_EVENT_STAMODE_GOT_IP] = 0;
32+
33+
WiFi.onEvent(onWiFiEvent, WIFI_EVENT_STAMODE_CONNECTED);
34+
WiFi.onEvent(onWiFiEvent, WIFI_EVENT_STAMODE_DISCONNECTED);
35+
WiFi.onEvent(onWiFiEvent, WIFI_EVENT_STAMODE_GOT_IP);
36+
WiFi.onEvent(onWiFiEvent, WIFI_EVENT_ANY);
37+
38+
WiFi.mode(WIFI_STA);
39+
WiFi.begin(STA_SSID, STA_PASS);
40+
unsigned long start = millis();
41+
while (WiFi.status() != WL_CONNECTED) {
42+
delay(500);
43+
REQUIRE(millis() - start < 5000);
44+
}
45+
WiFi.disconnect();
46+
delay(100);
47+
WiFi.mode(WIFI_OFF);
48+
REQUIRE(sEventsReceived[WIFI_EVENT_STAMODE_CONNECTED] == 2);
49+
REQUIRE(sEventsReceived[WIFI_EVENT_STAMODE_DISCONNECTED] >= 2 && sEventsReceived[WIFI_EVENT_STAMODE_DISCONNECTED] % 2 == 0);
50+
REQUIRE(sEventsReceived[WIFI_EVENT_STAMODE_GOT_IP] == 2);
51+
}
52+
53+
TEST_CASE("STA mode events are called both when using DHCP and static config", "[wifi][events]")
54+
{
55+
String events;
56+
57+
auto handler1 = WiFi.onStationModeConnected([&](const WiFiEventStationModeConnected& evt){
58+
events += "connected,";
59+
});
60+
auto handler2 = WiFi.onStationModeDisconnected([&](const WiFiEventStationModeDisconnected& evt){
61+
if (events.length()) {
62+
events += "disconnected,";
63+
}
64+
});
65+
auto handler3 = WiFi.onStationModeGotIP([&](const WiFiEventStationModeGotIP& evt){
66+
events += "got_ip,";
67+
});
68+
69+
// run the test with DHCP
70+
WiFi.mode(WIFI_STA);
71+
WiFi.begin(STA_SSID, STA_PASS);
72+
unsigned long start = millis();
73+
while (WiFi.status() != WL_CONNECTED) {
74+
delay(500);
75+
REQUIRE(millis() - start < 5000);
76+
}
77+
// save IP config
78+
IPAddress localIP = WiFi.localIP();
79+
IPAddress subnetMask = WiFi.subnetMask();
80+
IPAddress gatewayIP = WiFi.gatewayIP();
81+
WiFi.disconnect();
82+
delay(100);
83+
84+
REQUIRE(events == "connected,got_ip,disconnected,");
85+
events = String();
86+
87+
// now run the same with static IP config saved above
88+
89+
WiFi.mode(WIFI_STA);
90+
WiFi.config(localIP, gatewayIP, subnetMask);
91+
WiFi.begin(STA_SSID, STA_PASS);
92+
start = millis();
93+
while (WiFi.status() != WL_CONNECTED) {
94+
delay(500);
95+
REQUIRE(millis() - start < 5000);
96+
}
97+
WiFi.disconnect();
98+
delay(100);
99+
WiFi.mode(WIFI_OFF);
100+
REQUIRE(events == "connected,got_ip,disconnected,");
101+
}
102+
103+
TEST_CASE("Events are not called if handler is deleted", "[wifi][events]")
104+
{
105+
String events;
106+
107+
WiFi.onStationModeConnected([&](const WiFiEventStationModeConnected& evt){
108+
events += "connected,";
109+
});
110+
WiFi.onStationModeDisconnected([&](const WiFiEventStationModeDisconnected& evt){
111+
events += "disconnected,";
112+
});
113+
WiFi.onStationModeGotIP([&](const WiFiEventStationModeGotIP& evt){
114+
events += "got_ip,";
115+
});
116+
117+
WiFi.mode(WIFI_STA);
118+
WiFi.begin(STA_SSID, STA_PASS);
119+
unsigned long start = millis();
120+
while (WiFi.status() != WL_CONNECTED) {
121+
delay(500);
122+
REQUIRE(millis() - start < 5000);
123+
}
124+
WiFi.disconnect();
125+
delay(100);
126+
127+
REQUIRE(events == "");
128+
}
129+
130+
void loop() {}

0 commit comments

Comments
 (0)