diff options
author | danicampora <daniel@wipy.io> | 2015-10-14 09:45:37 +0200 |
---|---|---|
committer | danicampora <daniel@wipy.io> | 2015-10-17 23:21:44 +0200 |
commit | e19dfe1c320869de392070d97c98b55942f121d4 (patch) | |
tree | b1ae21b7cf342f9305a806e2456b782babaa94ce /tests/wipy/wlan | |
parent | affcbe4139bfa6bb331edc207d687bb13aa05d65 (diff) | |
download | micropython-e19dfe1c320869de392070d97c98b55942f121d4.tar.gz micropython-e19dfe1c320869de392070d97c98b55942f121d4.zip |
cc3200: In scan results rename 'auth' field to 'sec'.
As defined by the new API, since 'auth' is actually a tuple
composed by the security type and the key.
Diffstat (limited to 'tests/wipy/wlan')
-rw-r--r-- | tests/wipy/wlan/wlan.py | 5 | ||||
-rw-r--r-- | tests/wipy/wlan/wlan.py.exp | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/tests/wipy/wlan/wlan.py b/tests/wipy/wlan/wlan.py index 3d04c98664..9e18f0c4c2 100644 --- a/tests/wipy/wlan/wlan.py +++ b/tests/wipy/wlan/wlan.py @@ -44,6 +44,11 @@ scan_r = wifi.scan() print(len(scan_r) > 3) for net in scan_r: if net.ssid == testconfig.wlan_ssid: + # test that the scan results contains the desired params + print(len(net.bssid) == 6) + print(net.channel == None) + print(net.sec == testconfig.wlan_auth[0]) + print(net.rssi < 0) print('Network found') break diff --git a/tests/wipy/wlan/wlan.py.exp b/tests/wipy/wlan/wlan.py.exp index 6d27bb31c0..41253eab7c 100644 --- a/tests/wipy/wlan/wlan.py.exp +++ b/tests/wipy/wlan/wlan.py.exp @@ -11,6 +11,10 @@ True True True True +True +True +True +True Network found True True |