tests: Create radio for p2ps_channel_active_go_and_station_different_mcc
Instead of relying on existing configuration (which may conflict with other tests) and skipping otherwise, create a new radio with two channels in this test and use it. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
d25f16e478
commit
2e5397d5db
1 changed files with 28 additions and 27 deletions
|
@ -1576,17 +1576,18 @@ def test_p2ps_channel_active_go_and_station_different(dev, apdev):
|
||||||
@remote_compatible
|
@remote_compatible
|
||||||
def test_p2ps_channel_active_go_and_station_different_mcc(dev, apdev):
|
def test_p2ps_channel_active_go_and_station_different_mcc(dev, apdev):
|
||||||
"""P2PS connection, active P2P GO and station on channel"""
|
"""P2PS connection, active P2P GO and station on channel"""
|
||||||
if dev[0].get_mcc() == 1:
|
with HWSimRadio(n_channels=2) as (radio, iface):
|
||||||
raise HwsimSkip('Skip due to MCC not being enabled')
|
wpas = WpaSupplicant(global_iface='/tmp/wpas-wlan5')
|
||||||
|
wpas.interface_add(iface)
|
||||||
|
|
||||||
set_no_group_iface(dev[0], 0)
|
set_no_group_iface(wpas, 0)
|
||||||
set_no_group_iface(dev[1], 0)
|
set_no_group_iface(dev[1], 0)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
hapd = hostapd.add_ap(apdev[0],
|
hapd = hostapd.add_ap(apdev[0],
|
||||||
{ "ssid": 'bss-channel-6', "channel": '6' })
|
{ "ssid": 'bss-channel-6', "channel": '6' })
|
||||||
|
|
||||||
dev[0].connect("bss-channel-6", key_mgmt="NONE", scan_freq="2437")
|
wpas.connect("bss-channel-6", key_mgmt="NONE", scan_freq="2437")
|
||||||
|
|
||||||
# Add a P2P GO on the seeker
|
# Add a P2P GO on the seeker
|
||||||
dev[1].global_request("P2P_GROUP_ADD freq=2462 persistent")
|
dev[1].global_request("P2P_GROUP_ADD freq=2462 persistent")
|
||||||
|
@ -1596,20 +1597,20 @@ def test_p2ps_channel_active_go_and_station_different_mcc(dev, apdev):
|
||||||
|
|
||||||
dev[1].group_form_result(ev)
|
dev[1].group_form_result(ev)
|
||||||
|
|
||||||
p2ps_advertise(r_dev=dev[0], r_role='2',
|
p2ps_advertise(r_dev=wpas, r_role='2',
|
||||||
svc_name='org.wi-fi.wfds.send.rx',
|
svc_name='org.wi-fi.wfds.send.rx',
|
||||||
srv_info='I can receive files upto size 2 GB')
|
srv_info='I can receive files upto size 2 GB')
|
||||||
[adv_id, rcvd_svc_name] = p2ps_exact_seek(i_dev=dev[1], r_dev=dev[0],
|
[adv_id, rcvd_svc_name] = p2ps_exact_seek(i_dev=dev[1], r_dev=wpas,
|
||||||
svc_name='org.wi-fi.wfds.send.rx',
|
svc_name='org.wi-fi.wfds.send.rx',
|
||||||
srv_info='2 GB')
|
srv_info='2 GB')
|
||||||
|
|
||||||
ev1, ev0 = p2ps_provision(dev[1], dev[0], adv_id)
|
ev1, ev0 = p2ps_provision(dev[1], wpas, adv_id)
|
||||||
p2ps_connect_pd(dev[0], dev[1], ev0, ev1)
|
p2ps_connect_pd(wpas, dev[1], ev0, ev1)
|
||||||
finally:
|
finally:
|
||||||
dev[0].request("DISCONNECT")
|
wpas.request("DISCONNECT")
|
||||||
hapd.disable()
|
hapd.disable()
|
||||||
dev[0].global_request("P2P_SERVICE_DEL asp all")
|
wpas.global_request("P2P_SERVICE_DEL asp all")
|
||||||
remove_group(dev[0], dev[1])
|
remove_group(wpas, dev[1])
|
||||||
|
|
||||||
def test_p2ps_connect_p2p_device(dev):
|
def test_p2ps_connect_p2p_device(dev):
|
||||||
"""P2PS connection using cfg80211 P2P Device"""
|
"""P2PS connection using cfg80211 P2P Device"""
|
||||||
|
|
Loading…
Reference in a new issue