# 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 urlparse import ap_spec import linksyse_dual_band_configurator class Linksyse2500APConfigurator(linksyse_dual_band_configurator. LinksyseDualBandAPConfigurator): """Derived class to control Linksys E2500 router.""" def get_number_of_pages(self): return 2 def get_supported_modes(self): return [{'band': ap_spec.BAND_2GHZ, 'modes': [ap_spec.MODE_B, ap_spec.MODE_N, ap_spec.MODE_B | ap_spec.MODE_G, ap_spec.MODE_G, ap_spec.MODE_M]}, {'band': ap_spec.BAND_5GHZ, 'modes': [ap_spec.MODE_A, ap_spec.MODE_N, ap_spec.MODE_M]}] def is_security_mode_supported(self, security_mode): """Returns if the passed in security mode is supported. @param security_mode: one of the supported security methods defined in APSpec. @returns True is suppported; False otherwise. """ if self.current_band == ap_spec.BAND_5GHZ: return security_mode in (ap_spec.SECURITY_TYPE_DISABLED, ap_spec.SECURITY_TYPE_WPAPSK, ap_spec.SECURITY_TYPE_WPA2PSK) return security_mode in (ap_spec.SECURITY_TYPE_DISABLED, ap_spec.SECURITY_TYPE_WPAPSK, ap_spec.SECURITY_TYPE_WPA2PSK, ap_spec.SECURITY_TYPE_WEP) def navigate_to_page(self, page_number): """Navigate to the passed in page. @param page_number: the page number as an integer """ if page_number == 1: page_url = urlparse.urljoin(self.admin_interface_url, 'Wireless_Basic.asp') self.get_url(page_url, page_title='Settings') elif page_number == 2: page_url = urlparse.urljoin(self.admin_interface_url, 'WL_WPATable.asp') self.get_url(page_url, page_title='Security') else: raise RuntimeError('Invalid page number passed. Number of pages ' '%d, page value sent was %d' % (self.get_number_of_pages(), page_number)) def _set_mode(self, mode, band=None): mode_mapping = {ap_spec.MODE_B: 'Wireless-B Only', ap_spec.MODE_G: 'Wireless-G Only', ap_spec.MODE_B | ap_spec.MODE_G: 'Wireless-B/G Only', ap_spec.MODE_N: 'Wireless-N Only', ap_spec.MODE_A: 'Wireless-A Only', ap_spec.MODE_M: 'Mixed'} xpath = '//select[@name="net_mode_24g"]' if self.current_band == ap_spec.BAND_5GHZ or band == ap_spec.BAND_5GHZ: self.current_band = ap_spec.BAND_5GHZ xpath = '//select[@name="net_mode_5g"]' mode_name = '' if mode in mode_mapping.keys(): mode_name = mode_mapping[mode] else: raise RuntimeError('The mode selected %d is not supported by router' ' %s.', hex(mode), self.name) self.select_item_from_popup_by_xpath(mode_name, xpath, alert_handler=self._alert_handler) def _set_ssid(self, ssid): xpath = '//input[@maxlength="32" and @name="ssid_24g"]' if self.current_band == ap_spec.BAND_5GHZ: xpath = '//input[@maxlength="32" and @name="ssid_5g"]' self.set_content_of_text_field_by_xpath(ssid, xpath) self._ssid = ssid def _set_channel(self, channel): position = self._get_channel_popup_position(channel) channel_choices = ['Auto', '1 - 2.412GHZ', '2 - 2.417GHZ', '3 - 2.422GHZ', '4 - 2.427GHZ', '5 - 2.432GHZ', '6 - 2.437GHZ', '7 - 2.442GHZ', '8 - 2.447GHZ', '9 - 2.452GHZ', '10 - 2.457GHZ', '11 - 2.462GHZ'] xpath = '//select[@name="_wl0_channel"]' if self.current_band == ap_spec.BAND_5GHZ: xpath = '//select[@name="_wl1_channel"]' channel_choices = ['Auto (DFS)', '36 - 5.180GHz', '40 - 5.200GHz', '44 - 5.220GHz', '48 - 5.240GHz', '149 - 5.745GHz', '153 - 5.765GHz', '157 - 5.785GHz', '161 - 5.805GHz'] self.select_item_from_popup_by_xpath(channel_choices[position], xpath, alert_handler=self._alert_handler) def set_security_disabled(self): self.add_item_to_command_list(self._set_security_disabled, (), 2, 900) def set_security_wep(self, key_value, authentication): self.add_item_to_command_list(self._set_security_wep, (key_value, authentication), 2, 900) def set_security_wpapsk(self, security, shared_key, update_interval=None): self.add_item_to_command_list(self._set_security_wpapsk, (security, shared_key, update_interval), 2, 900) def _set_visibility(self, visible=True): button = 'closed_24g' if self.current_band == ap_spec.BAND_5GHZ: button = 'closed_5g' int_value = 0 if visible else 1 xpath = ('//input[@value="%d" and @name="%s"]' % (int_value, button)) self.click_button_by_xpath(xpath)