Skip to content

Commit 8937d27

Browse files
Fix NetworkCommissioning post-review from project-chip#32156 (project-chip#32172)
* Fix NetworkCommissioning post-review from project-chip#32156 - Found a regression on Thread scanning. - Changed some ConstraintError to InvalidCommand where more applicable. - Removed an update of cluster state on fail safe expiry. Testing done: - Retested on Wi-Fi - Testing on Thread as well * Re-notify errors on empty network at fail-safe expiry * Fix MobileDeviceTest * Fix Cirque tests
1 parent 13f3e05 commit 8937d27

File tree

2 files changed

+18
-13
lines changed

2 files changed

+18
-13
lines changed

src/app/clusters/network-commissioning/network-commissioning.cpp

+14-9
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ void Instance::HandleScanNetworks(HandlerContext & ctx, const Commands::ScanNetw
477477
}
478478
if (ssid.size() > DeviceLayer::Internal::kMaxWiFiSSIDLength)
479479
{
480-
// This should not happen, it means it's a broken driver.
480+
// Clients should never use too large a SSID.
481481
ctx.mCommandHandler.AddStatus(ctx.mRequestPath, Protocols::InteractionModel::Status::ConstraintError);
482482
SetLastNetworkingStatusValue(MakeNullable(Status::kUnknownError));
483483
return;
@@ -491,10 +491,10 @@ void Instance::HandleScanNetworks(HandlerContext & ctx, const Commands::ScanNetw
491491
}
492492
else if (mFeatureFlags.Has(Feature::kThreadNetworkInterface))
493493
{
494-
// Not allowed to populate SSID for Thread.
495-
if (!req.ssid.HasValue())
494+
// SSID present on Thread violates the `[WI]` conformance.
495+
if (req.ssid.HasValue())
496496
{
497-
ctx.mCommandHandler.AddStatus(ctx.mRequestPath, Protocols::InteractionModel::Status::ConstraintError);
497+
ctx.mCommandHandler.AddStatus(ctx.mRequestPath, Protocols::InteractionModel::Status::InvalidCommand);
498498
return;
499499
}
500500

@@ -559,7 +559,7 @@ void Instance::HandleAddOrUpdateWiFiNetwork(HandlerContext & ctx, const Commands
559559
return;
560560
}
561561
#endif // CHIP_DEVICE_CONFIG_ENABLE_WIFI_PDC
562-
ctx.mCommandHandler.AddStatus(ctx.mRequestPath, Protocols::InteractionModel::Status::ConstraintError);
562+
ctx.mCommandHandler.AddStatus(ctx.mRequestPath, Protocols::InteractionModel::Status::InvalidCommand);
563563
return;
564564
}
565565

@@ -1202,11 +1202,16 @@ void Instance::OnFailSafeTimerExpired()
12021202
mpWirelessDriver->RevertConfiguration();
12031203
mAsyncCommandHandle.Release();
12041204

1205-
// Reset state on failsafe expiry.
1205+
// Mark the network list changed since `mpWirelessDriver->RevertConfiguration()` may have updated it.
12061206
ReportNetworksListChanged();
1207-
SetLastNetworkId(ByteSpan{});
1208-
SetLastConnectErrorValue(NullNullable);
1209-
SetLastNetworkingStatusValue(NullNullable);
1207+
1208+
// If no networks are left, clear-out errors;
1209+
if (mpBaseDriver && (CountAndRelease(mpBaseDriver->GetNetworks()) == 0))
1210+
{
1211+
SetLastNetworkId(ByteSpan{});
1212+
SetLastConnectErrorValue(NullNullable);
1213+
SetLastNetworkingStatusValue(NullNullable);
1214+
}
12101215
}
12111216

12121217
CHIP_ERROR Instance::EnumerateAcceptedCommands(const ConcreteClusterPath & cluster, CommandIdCallback callback, void * context)

src/controller/python/test/test_scripts/network_commissioning.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ async def test_wifi(self, endpointId):
149149

150150
# Scan networks
151151
logger.info("Scan networks")
152-
req = Clusters.NetworkCommissioning.Commands.ScanNetworks(
153-
ssid=b'', breadcrumb=self.with_breadcrumb())
152+
req = Clusters.NetworkCommissioning.Commands.ScanNetworks(breadcrumb=self.with_breadcrumb())
154153
interactionTimeoutMs = self._devCtrl.ComputeRoundTripTimeout(self._nodeid, upperLayerProcessingTimeoutMs=30000)
154+
logger.info(f"Request: {req}")
155155
res = await self._devCtrl.SendCommand(
156156
nodeid=self._nodeid,
157157
endpoint=endpointId,
@@ -309,8 +309,8 @@ async def test_thread(self, endpointId):
309309

310310
# Scan networks
311311
logger.info("Scan networks")
312-
req = Clusters.NetworkCommissioning.Commands.ScanNetworks(
313-
ssid=b'', breadcrumb=self.with_breadcrumb())
312+
req = Clusters.NetworkCommissioning.Commands.ScanNetworks(breadcrumb=self.with_breadcrumb())
313+
logger.info(f"Request: {req}")
314314
interactionTimeoutMs = self._devCtrl.ComputeRoundTripTimeout(self._nodeid, upperLayerProcessingTimeoutMs=30000)
315315
res = await self._devCtrl.SendCommand(nodeid=self._nodeid,
316316
endpoint=endpointId,

0 commit comments

Comments
 (0)