From b1f0cd8b4ccb0b52e7668471cb540d37486c15bf Mon Sep 17 00:00:00 2001 From: Avraham Stern Date: Tue, 10 Jun 2014 20:50:37 +0300 Subject: [PATCH] tests: Autonomous GO with preferred channel and station on another channel Verify that when setting up an autonomous GO with configured preferred channel and a station interface is on another channel, the GO is instantiated on the same channel as the station interface and not on the configured preferred channel. Signed-off-by: Avraham Stern --- tests/hwsim/test_p2p_channel.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tests/hwsim/test_p2p_channel.py b/tests/hwsim/test_p2p_channel.py index 9b3a55d7c..3baae3c2c 100644 --- a/tests/hwsim/test_p2p_channel.py +++ b/tests/hwsim/test_p2p_channel.py @@ -343,3 +343,20 @@ def test_go_neg_forced_freq_diff_than_bss_freq(dev, apdev): if r_res2['role'] != "client": raise Exception("GO not selected according to go_intent") hwsim_utils.test_connectivity(dev[0].ifname, apdev[0]['ifname']) + +def test_go_pref_chan_bss_on_diff_chan(dev, apdev): + """P2P channel selection: Station on different channel than GO configured pref channel""" + + dev[0].request("SET p2p_no_group_iface 0") + + try: + hostapd.add_ap(apdev[0]['ifname'], { "ssid": 'bss-2.4ghz', + "channel": '1' }) + dev[0].request("SET p2p_pref_chan 81:2") + dev[0].connect("bss-2.4ghz", key_mgmt="NONE", scan_freq="2412") + res = autogo(dev[0]) + if res['freq'] != "2412": + raise Exception("GO channel did not follow BSS") + hwsim_utils.test_connectivity(dev[0].ifname, apdev[0]['ifname']) + finally: + dev[0].request("SET p2p_pref_chan ")