From 031220832b33293fa723a024d4744d8338cbc8ba Mon Sep 17 00:00:00 2001 From: Haim Dreyfuss Date: Tue, 10 Jun 2014 20:50:35 +0300 Subject: [PATCH] tests: Autonomous GO force different channel than station interface After station interface is connected on a specific channel, create autonomous GO with forced different channel. Requires MCC. Signed-off-by: Haim Dreyfuss --- tests/hwsim/test_p2p_channel.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/hwsim/test_p2p_channel.py b/tests/hwsim/test_p2p_channel.py index 8201ea9..a630003 100644 --- a/tests/hwsim/test_p2p_channel.py +++ b/tests/hwsim/test_p2p_channel.py @@ -289,3 +289,21 @@ def test_go_neg_with_bss_on_disallowed_chan(dev, apdev): hwsim_utils.test_connectivity(dev[0].ifname, apdev[0]['ifname']) finally: dev[0].request("P2P_SET disallow_freq ") + +def test_autogo_force_diff_channel(dev, apdev): + """P2P autonomous GO and station interface operate on different channels""" + if dev[0].get_mcc() < 2: + logger.info("Skiping test because the driver doesn't support MCC") + return "skip" + + dev[0].request("SET p2p_no_group_iface 0") + + hostapd.add_ap(apdev[0]['ifname'], {"ssid" : 'ap-test', "channel" : '1'}) + dev[0].connect("ap-test", key_mgmt = "NONE", scan_freq = "2412") + channels = { 2 : 2417, 5 : 2432, 9 : 2452 } + for key in channels: + res_go = autogo(dev[0], channels[key]) + hwsim_utils.test_connectivity(dev[0].ifname, apdev[0]['ifname']) + if int(res_go['freq']) == 2412: + raise Exception("Group operation channel is: 2412 excepted: " + res_go['freq']) + dev[0].remove_group(res_go['ifname']) -- 2.1.4