blob: e08ec6c3d804920b3f9e0b8eb9840322669c5477 [file] [log] [blame]
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import logging
import urlparse
import ap_configurator
from selenium.common.exceptions import WebDriverException
from selenium.common.exceptions import TimeoutException as \
SeleniumTimeoutException
class BelkinF9KAPConfigurator(ap_configurator.APConfigurator):
"""Class to configure Blekin f9k1002v4 router."""
security_popup = '//select[@name="security_type"]'
def _security_alert(self, alert):
text = alert.text
if 'Invalid character' in text:
alert.accept()
elif 'It is recommended to use WPA/WPA2 when WPS is enabled' in text:
alert.accept()
else:
alert.accept()
raise RuntimeError('Unhandeled modal dialog. %s' % text)
def _login(self):
"""Opens the login page and logs in using the password.
We need to login before doing any other change to make sure that
we have access to the router."""
page_url = urlparse.urljoin(self.admin_interface_url,'login.stm')
self.get_url(page_url, page_title='login.stm')
xpath = '//input[@name="pws"]'
self.wait_for_object_by_xpath(xpath, wait_time=10)
self.set_content_of_text_field_by_xpath('password', xpath,
abort_check=True)
self.click_button_by_xpath('//input[@type="button" and '
'@value="Submit"]')
def get_supported_bands(self):
return [{'band': self.band_2ghz,
'channels': ['Auto', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]}]
def get_supported_modes(self):
return [{'band': self.band_2ghz,
'modes': [self.mode_g, self.mode_n,
self.mode_b | self.mode_g | self.mode_n]}]
def get_number_of_pages(self):
return 2
def is_security_mode_supported(self, security_mode):
return security_mode in (self.security_type_disabled,
self.security_type_wpapsk,
self.security_type_wpa2psk,
self.security_type_wep)
def navigate_to_page(self, page_number):
self._login()
if page_number == 1:
page_url = urlparse.urljoin(self.admin_interface_url,
'wireless_id.stm')
self.get_url(page_url, page_title='wireless_id')
self.wait_for_object_by_xpath('//input[@name="ssid"]')
elif page_number == 2:
page_url = urlparse.urljoin(self.admin_interface_url,
'wireless_e.stm')
try:
self.get_url(page_url, page_title='wireless')
self.wait_for_object_by_xpath(self.security_popup)
except WebDriverException, e:
message = str(e)
if message.find('An open modal dialog blocked') == -1:
raise RuntimeError(message)
return
self._security_alert(self.driver.switch_to_alert())
else:
raise RuntimeError('Invalid page number passed. Number of pages '
'%d, page value sent was %d' %
(self.get_number_of_pages(), page_number))
def save_page(self, page_number):
"""Save changes and logout from the router."""
self.click_button_by_xpath('//input[@type="submit" and '
'@value="Apply Changes"]',
alert_handler=self._security_alert)
self.set_wait_time(26)
try:
self.wait.until(lambda _:'setup.htm' in self.driver.title)
except SeleniumTimeoutException, e:
raise SeleniumTimeoutException('The changes were not saved. '
'%s' % str(e))
self.restore_default_wait_time()
def set_ssid(self, ssid):
self.add_item_to_command_list(self._set_ssid, (ssid,), 1, 900)
def _set_ssid(self, ssid):
xpath = '//input[@name="ssid"]'
self.set_content_of_text_field_by_xpath(ssid, xpath, abort_check=False)
def set_channel(self, channel):
self.add_item_to_command_list(self._set_channel, (channel,), 1, 900)
def _set_channel(self, channel):
position = self._get_channel_popup_position(channel)
channel_choices = ['Auto', '1', '2', '3', '4', '5', '6', '7', '8',
'9', '10', '11']
xpath = '//select[@name="wchan"]'
self.select_item_from_popup_by_xpath(channel_choices[position], xpath)
def set_mode(self, mode):
self.add_item_to_command_list(self._set_mode, (mode,), 1, 900)
def _set_mode(self, mode):
mode_mapping = {self.mode_g: '802.11g',
self.mode_n: '802.11n',
self.mode_b | self.mode_g | self.mode_n:
'802.11b&802.11g&802.11n'}
mode_name = mode_mapping.get(mode)
if not mode_name:
raise RuntimeError('The mode %d not supported by router %s. ',
hex(mode), self.get_router_name())
xpath = '//select[@name="wbr"]'
self.select_item_from_popup_by_xpath(mode_name, xpath,
wait_for_xpath=None,
alert_handler=self._security_alert)
def set_ch_width(self, channel_width):
self.add_item_to_command_list(self._set_ch_width,(channel_width,),
1, 900)
def _set_ch_width(self, channel_width):
channel_choice = ['20MHz', '20/40MHz']
xpath = '//select[@name="bandwidth"]'
self.select_item_from_popup_by_xpath(channel_choice[channel_width],
xpath)
def set_radio(self, enabled=True):
logging.info('This router (%s) does not support radio',
self.get_router_name())
return None
def set_band(self, band):
logging.info('This router %s does not support multiple bands.',
self.get_router_name())
return None
def set_security_disabled(self):
self.add_item_to_command_list(self._set_security_disabled, (), 2, 1000)
def _set_security_disabled(self):
self.select_item_from_popup_by_xpath('Disabled',
self.security_popup,
alert_handler=self._security_alert)
def set_security_wep(self, key_value, authentication):
self.add_item_to_command_list(self._set_security_wep,
(key_value, authentication), 2, 1000)
def _set_security_wep(self, key_value, authentication):
text_field = '//input[@name="passphrase"]'
try:
self.select_item_from_popup_by_xpath('64bit WEP',
self.security_popup,
wait_for_xpath=text_field)
except WebDriverException, e:
message = str(e)
if message.find('An open modal dialog blocked') == -1:
raise RuntimeError(message)
return
self._security_alert(self.driver.switch_to_alert())
self.set_content_of_text_field_by_xpath(key_value, text_field,
abort_check=True)
self.click_button_by_xpath('//input[@class="submitBtn" and '
'@value="Generate"]',
alert_handler=self._security_alert)
def set_security_wpapsk(self, shared_key, update_interval=None):
self.add_item_to_command_list(self._set_security_wpapsk,
(shared_key, update_interval), 2, 900)
def _set_security_wpapsk(self, shared_key, update_interval=None):
key_field = '//input[@name="wpa_key_text"]'
psk = '//select[@name="authentication"]'
self.select_item_from_popup_by_xpath('WPA/WPA2-Personal (PSK)',
self.security_popup,
wait_for_xpath=key_field,
alert_handler=self._security_alert)
self.select_item_from_popup_by_xpath('WPA-PSK', psk,
alert_handler=self._security_alert)
self.set_content_of_text_field_by_xpath(shared_key, key_field,
abort_check=False)
def set_visibility(self, visible=True):
logging.info('Visibility is not supported for this router %s.',
self.get_router_name())
return None