tests: Additional DUP_NETWORK coverage
Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
c054190603
commit
8c020b0f05
1 changed files with 16 additions and 0 deletions
|
@ -229,6 +229,22 @@ def test_wpas_ctrl_dup_network(dev, apdev):
|
||||||
raise Exception("DUP_NETWORK failed")
|
raise Exception("DUP_NETWORK failed")
|
||||||
dev[0].connect_network(id)
|
dev[0].connect_network(id)
|
||||||
|
|
||||||
|
if "FAIL" not in dev[0].request("DUP_NETWORK "):
|
||||||
|
raise Exception("Unexpected DUP_NETWORK success")
|
||||||
|
if "FAIL" not in dev[0].request("DUP_NETWORK %d " % id):
|
||||||
|
raise Exception("Unexpected DUP_NETWORK success")
|
||||||
|
if "FAIL" not in dev[0].request("DUP_NETWORK %d %d" % (id, id)):
|
||||||
|
raise Exception("Unexpected DUP_NETWORK success")
|
||||||
|
if "FAIL" not in dev[0].request("DUP_NETWORK 123456 1234567 "):
|
||||||
|
raise Exception("Unexpected DUP_NETWORK success")
|
||||||
|
if "FAIL" not in dev[0].request("DUP_NETWORK %d 123456 " % id):
|
||||||
|
raise Exception("Unexpected DUP_NETWORK success")
|
||||||
|
if "FAIL" not in dev[0].request("DUP_NETWORK %d %d foo" % (id, id)):
|
||||||
|
raise Exception("Unexpected DUP_NETWORK success")
|
||||||
|
dev[0].request("DISCONNECT")
|
||||||
|
if "OK" not in dev[0].request("DUP_NETWORK %d %d ssid" % (id, id)):
|
||||||
|
raise Exception("Unexpected DUP_NETWORK failure")
|
||||||
|
|
||||||
def add_cred(dev):
|
def add_cred(dev):
|
||||||
id = dev.add_cred()
|
id = dev.add_cred()
|
||||||
ev = dev.wait_event(["CRED-ADDED"])
|
ev = dev.wait_event(["CRED-ADDED"])
|
||||||
|
|
Loading…
Reference in a new issue