Exemplo n.º 1
0
 def enter_default_portal(self):
     try:
         #点击进入,确定能够跳转
         CPControl.click_agree(self)
         CPControl.click_connect_WiFi(self)
         current_time = time.strftime('%m-%d %H:%M',
                                      time.localtime(time.time()))
         print "-----------rick.zeng portal debug:access auth time:%s-----------" % current_time
         time.sleep(30)
         self.driver.execute_script('window.stop()')
         current_time = time.strftime('%m-%d %H:%M',
                                      time.localtime(time.time()))
         print "-----------rick.zeng portal debug:return title time:%s-----------" % current_time
         return self.driver.title
     except:
         #如果页面没有跳转到认证页面,捕捉页面
         current_time = time.strftime('%m%d%H%M',
                                      time.localtime(time.time()))
         png = "error_redirect_%s.png" % str(current_time)
         self.driver.get_screenshot_as_file("./data/testresultdata/" + png)
         print "-----------rick.zeng portal debug:Can't goin portal webpage, refresh webpage and return webpage title!"
         time.sleep(30)
         self.driver.refresh()
         self.driver.implicitly_wait(30)
         #如果页面没有跳转到认证页面,返回当前页面
         return self.driver.title
Exemplo n.º 2
0
 def enter_radius_portal(self, radius_name, radius_password):
     #输入用户名
     CPControl.set_radius_name(self, radius_name)
     #输入用户名
     CPControl.set_radius_password(self, radius_password)
     #点击进入,确定能够跳转
     result = CPBusiness.enter_default_portal(self)
     return result
Exemplo n.º 3
0
 def Get_clients_number(self):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击强制网络门户页面上的客户端菜单
     CPControl.client_menu(self)
     #获取客户端的数量
     result = CPControl.get_clients_number(self)
     return result
Exemplo n.º 4
0
 def Get_clients_mac_ip(self, n):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击强制网络门户页面上的客户端菜单
     CPControl.client_menu(self)
     mac = CPControl.get_client_mac(self, n)
     ip = CPControl.get_client_ip(self, n)
     return mac, ip
Exemplo n.º 5
0
 def check_add_new_policy_success(self, n, name, t):
     #新增一个policy
     CPBusiness.add_new_default_policy(self, n, name, t)
     #获取页面所有标题
     result1 = CPControl.get_titlediv(self)
     self.driver.refresh()
     self.driver.implicitly_wait(10)
     #再次获取页面所有标题
     result2 = CPControl.get_titlediv(self)
     if (name in result1) and (name in result2):
         return True
     else:
         return False
Exemplo n.º 6
0
 def change_portal_rule_expiration(self, n, t):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击编辑按钮
     CPControl.click_edit_button(self, n)
     #输入有效期
     CPControl.set_expiration(self, n, t)
     #编辑或添加的页面点击保存
     CPControl.click_add_save(self)
     CPControl.apply(self)
Exemplo n.º 7
0
 def change_portal_rule_name(self, n, name):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击编辑按钮
     CPControl.click_edit_button(self, n)
     #输入list名称
     CPControl.set_policy_name(self, name)
     #编辑或添加的页面点击保存
     CPControl.click_add_save(self)
     CPControl.apply(self)
Exemplo n.º 8
0
 def change_portal_page_to_default(self, n):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击编辑按钮
     CPControl.click_edit_button(self, n)
     #点击使用默认门户页面
     CPControl.click_default_page(self)
     #编辑或添加的页面点击保存
     CPControl.click_add_save(self)
     CPControl.apply(self)
     print "change portal page of the %s list to default page successfully!" % n
Exemplo n.º 9
0
 def check_del_default_policy(self):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     element = self.driver.find_element_by_id("del_portal_policy_0")
     result = element.is_enabled()
     print result
     return result
Exemplo n.º 10
0
 def check_del_policy(self, n):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击删除按钮
     CPControl.del_button(self, n)
     #判断是否会弹出提示框,有则返回True,没有则返回False
     element1 = self.driver.find_element_by_xpath(
         ".//div[@class='modal-footer']//button[@class='btn btn-primary']")
     result1 = element1.is_displayed()
     try:
         element2 = self.driver.find_element_by_xpath(
             ".//div[@class='modal-footer']//button[@class='btn btn-cancel']"
         )
         result2 = True
     except:
         result2 = False
     print result1, result2
     return result1, result2
Exemplo n.º 11
0
 def check_portal_rule_name(self, n, name):
     #修改策略的名称
     CPBusiness.change_portal_rule_name(self, n, name)
     #获取页面所有标题
     result = CPControl.get_titlediv(self)
     if name in result:
         return True
     else:
         return False
Exemplo n.º 12
0
 def check_portal_rule_expiration(self, n, t):
     #修改策略的过期时间
     CPBusiness.change_portal_rule_expiration(self, n, t)
     #获取页面所有标题
     result = CPControl.get_titlediv(self)
     if (t + "s") in result:
         return True
     else:
         return False
Exemplo n.º 13
0
 def del_policy_n(self, n):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击删除按钮
     CPControl.del_button(self, n)
     #弹出的提示窗口中,点击确认
     CPControl.notice_ok(self)
     CPControl.apply(self)
Exemplo n.º 14
0
 def check_del_policy_success(self, n, name):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击删除按钮
     CPControl.del_button(self, n)
     CPControl.notice_ok(self)
     CPControl.apply(self)
     result = CPControl.get_titlediv(self)
     if name not in result:
         return True
     else:
         return False
Exemplo n.º 15
0
 def del_many_policys(self, start_n, end_n):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     for i in range(start_n, end_n):
         #点击删除按钮
         CPControl.del_button(self, i)
         #弹出的提示窗口中,点击确认
         CPControl.notice_ok(self)
     CPControl.apply(self)
Exemplo n.º 16
0
 def check_add_rule_invalid(self, n, name):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击添加按钮
     CPControl.click_add(self)
     #输入list名称
     CPControl.set_policy_name(self, name)
     #输入有效期
     CPControl.set_expiration(self, n, "86400")
     #点击保存
     CPControl.click_add_save(self)
     #判断是否会弹出提示框,有则返回True,没有则返回False
     element = self.driver.find_element_by_xpath(
         ".//div[@class='modal-footer']//button[@class='btn btn-primary']")
     result = element.is_displayed()
     print result
     return result
Exemplo n.º 17
0
 def check_STA_unblock_no_need_auth(self, ssid, password, wlan, eth):
     #无线STA通过group0的认证
     tmp = CPBusiness(self.driver)
     tmp.access_No_auth_portal(ssid, password, wlan, eth, "wpa")
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     #刷新页面重新登录ap页面
     Lg = LoginBusiness(self.driver)
     Lg.refresh_login_ap()
     #block STA
     tmp.connect_WPA_AP(ssid, password, wlan)
     tmp3 = ClientsBusiness(self.driver)
     wlan_mac = tmp3.get_wlan_mac(wlan)
     tmp3.block_client(wlan_mac)
     #unblock STA
     tmp4 = ClientAccessBusiness(self.driver)
     #删除Global Blacklist里面的所有的mac
     tmp4.del_Global_Blacklist_mac()
     #使用免认证的规则,腾讯首页,判断是否跳转到portal页面
     result = tmp.check_jump_to_No_auth_portal(ssid, password, wlan, eth)
     return result
Exemplo n.º 18
0
 def check_No_auth_portal(self, ssid, password, wlan, eth, t,
                          wifi_encryption):
     #通过免认证方式上网
     portal_title,redirect_title = CPBusiness.\
         access_No_auth_portal(self,ssid,password,wlan,eth,wifi_encryption)
     #再次确定能否访问腾讯首页
     again_title = CPBusiness.wait_for_title(self, "http://www.qq.com")
     print "Access tencent webpage again, goin to %s" % again_title
     current_time = time.strftime('%m-%d %H:%M',
                                  time.localtime(time.time()))
     print "-----------rick.zeng portal debug:finished access tencent again time:%s-----------" % current_time
     #验证过期时间
     #再次等待一段时间
     time.sleep(t)
     #打开http的页面http://www.qq.com
     expiration_title = CPBusiness.wait_for_title(self, "http://www.qq.com")
     print "wait %s seconds,access tencent webpage again, goin to %s" % (
         t, expiration_title)
     current_time = time.strftime('%m-%d %H:%M',
                                  time.localtime(time.time()))
     print "-----------rick.zeng portal debug:wait expiration time,finished access tencent time:%s-----------" % current_time
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     print "portal_title is %s" % portal_title
     print "redirect_title is %s" % redirect_title
     print "again_title is %s" % again_title
     print "expiration_title is %s" % expiration_title
     return portal_title, redirect_title, again_title, expiration_title
Exemplo n.º 19
0
 def check_rule_expiration_invalid(self, n, t):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击编辑按钮
     CPControl.click_edit_button(self, n)
     #输入有效期
     CPControl.set_expiration(self, n, t)
     #判断输入框下方是否有错误提示,有则返回True,没有则返回False
     result1 = CPControl.check_error(self)
     #点击保存
     CPControl.click_add_save(self)
     #判断是否会弹出提示框,有则返回True,没有则返回False
     element = self.driver.find_element_by_xpath(
         ".//div[@class='modal-footer']//button[@class='btn btn-primary']")
     result2 = element.is_displayed()
     print result1, result2
     return result1, result2
Exemplo n.º 20
0
 def check_add_new_policy_null(self):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击添加按钮
     CPControl.click_add(self)
     #判断输入框下方是否有错误提示,有则返回True,没有则返回False
     result1 = CPControl.check_error(self)
     #点击保存
     CPControl.click_add_save(self)
     #判断是否会弹出提示框,有则返回True,没有则返回False
     element = self.driver.find_element_by_xpath(
         ".//div[@class='modal-footer']//button[@class='btn btn-primary']")
     result2 = element.is_displayed()
     print result1, result2
     return result1, result2
Exemplo n.º 21
0
 def check_auth_STA_not_need_auth_again(self, ssid, password, wlan, eth,
                                        radius_addr, radius_key, port,
                                        mode):
     #通过免认证方式上网
     CPBusiness.\
         access_No_auth_portal(self,ssid,password,wlan,eth,"wpa")
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     #刷新页面重新登录ap页面
     Lg = LoginBusiness(self.driver)
     Lg.refresh_login_ap()
     #将免认证改为radius认证
     CPBusiness.\
         change_radius_server(self,1,radius_addr,radius_key,port,mode)
     #验证是否需要弹出认证
     result = CPBusiness.\
         check_jump_to_No_auth_portal(self,ssid,password,wlan,eth)
     print result
     return result
Exemplo n.º 22
0
 def check_portal_client_block_function(self, ssid, password, wlan, eth):
     #通过免认证方式上网
     CPBusiness.\
         access_No_auth_portal(self,ssid,password,wlan,eth,"wpa")
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     tmp = ClientsBusiness(self.driver)
     #使用无线网卡能够连接上ssid,并正常使用
     tmp.connect_DHCP_WPA_AP(ssid, password, wlan)
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #刷新页面重新登录ap页面
     Lg = LoginBusiness(self.driver)
     Lg.refresh_login_ap()
     #只有一个客户端,阻塞该客户端
     wlan_mac = tmp.get_wlan_mac(wlan)
     tmp.block_client(wlan_mac)
     time.sleep(60)
     #测试机上判断无线客户端是否依然是连接上的
     result = tmp.get_client_cmd_result("iw dev %s link" % wlan)
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #刷新页面重新登录ap页面
     Lg = LoginBusiness(self.driver)
     Lg.refresh_login_ap()
     tmp1 = ClientAccessBusiness(self.driver)
     #删除Global Blacklist里面的所有的mac
     tmp1.del_Global_Blacklist_mac()
     return result
Exemplo n.º 23
0
 def check_portal_client_auth_status(self, ssid, password, wlan, eth, n):
     #通过免认证方式上网
     CPBusiness.\
         access_No_auth_portal(self,ssid,password,wlan,eth,"wpa")
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     #刷新页面重新登录ap页面
     Lg = LoginBusiness(self.driver)
     Lg.refresh_login_ap()
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击强制网络门户页面上的客户端菜单
     CPControl.client_menu(self)
     auth_status1 = CPControl.get_client_auth_status(self, n)
     #禁用有线网卡
     CPControl.wlan_disable(self, eth)
     time.sleep(60)
     #使用无线网卡再次连接上
     CPControl.connect_DHCP_WPA_AP(self, ssid, password, wlan)
     #等待过期时间
     time.sleep(300)
     #使用无线网卡再次连接上
     CPControl.connect_DHCP_WPA_AP(self, ssid, password, wlan)
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     #刷新页面重新登录ap页面
     Lg = LoginBusiness(self.driver)
     Lg.refresh_login_ap()
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击强制网络门户页面上的客户端菜单
     CPControl.client_menu(self)
     auth_status2 = CPControl.get_client_auth_status(self, n)
     return auth_status1, auth_status2
Exemplo n.º 24
0
 def check_radius_portal(self,ssid,password,wlan,eth,t,radius_name,\
                         radius_password):
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #禁用有线网卡
     CPControl.wlan_disable(self, eth)
     time.sleep(60)
     #使用无线网卡连接group0的ssid
     CPControl.connect_WPA_AP(self, ssid, password, wlan)
     #再次禁用有线网卡--防止无线网卡的多次连接时会重启全部网络导致有限网卡再次开启
     CPControl.wlan_disable(self, eth)
     #循环三次检查无线网卡是否能够上网
     for i in range(3):
         #无线网卡释放ip地址
         CPControl.dhcp_release_wlan(self, wlan)
         #无线网卡再次获取ip地址
         CPControl.dhcp_wlan(self, wlan)
         CPControl.move_resolv(self)
         #如果不能访问网络
         tmp = CPControl.get_ping(self, "www.qq.com")
         if tmp == 0:
             break
         else:
             "check wlan card can access internet or not,again."
     #打开http的页面http://www.qq.com
     portal_title = CPBusiness.wait_for_title(self, "http://www.qq.com")
     print "Access tencent webpage first, goin to %s" % portal_title
     #radius portal页面输入用户名密码然后点击登录
     redirect_title = CPBusiness.enter_radius_portal(
         self, radius_name, radius_password)
     print "click agree, goin to %s" % redirect_title
     #再次确定能否访问腾讯首页
     again_title = CPBusiness.wait_for_title(self, "http://www.qq.com")
     print "Access tencent webpage again, goin to %s" % again_title
     current_time = time.strftime('%m-%d %H:%M',
                                  time.localtime(time.time()))
     print "-----------rick.zeng portal debug:finished access tencent again time:%s-----------" % current_time
     #验证过期时间
     #再次等待一段时间
     time.sleep(t)
     #打开http的页面http://www.qq.com
     expiration_title = CPBusiness.wait_for_title(self, "http://www.qq.com")
     print "wait %s seconds,access tencent webpage again, goin to %s" % (
         t, expiration_title)
     current_time = time.strftime('%m-%d %H:%M',
                                  time.localtime(time.time()))
     print "-----------rick.zeng portal debug:wait expiration time,finished access tencent time:%s-----------" % current_time
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     print "portal_title is %s" % portal_title
     print "redirect_title is %s" % redirect_title
     print "again_title is %s" % again_title
     print "expiration_title is %s" % expiration_title
     return portal_title, redirect_title, again_title, expiration_title
Exemplo n.º 25
0
 def change_radius_server(self, n, radius_addr, radius_key, port, mode):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击编辑按钮
     CPControl.click_edit_button(self, n)
     #选择认证方式-radius
     CPControl.set_auth_type(self, "1")
     #输入radius服务器地址
     CPControl.set_radius_server_address(self, n, radius_addr)
     #输入radius服务器的端口
     CPControl.set_radius_server_port(self, port)
     #输入radius服务器密钥
     CPControl.set_radius_server_secret(self, n, radius_key)
     #选择radius认证方式
     CPControl.set_radius_auth_method(self, mode)
     #编辑或添加的页面点击保存
     CPControl.click_add_save(self)
     CPControl.apply(self)
     print "change the %s list to radius auth successfully!" % n
Exemplo n.º 26
0
 def check_jump_to_No_auth_portal(self, ssid, password, wlan, eth):
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #禁用有线网卡
     CPControl.wlan_disable(self, eth)
     time.sleep(30)
     #使用无线网卡连接group0的ssid
     CPControl.connect_WPA_AP(self, ssid, password, wlan)
     #再次禁用有线网卡--防止无线网卡的多次连接时会重启全部网络导致有限网卡再次开启
     CPControl.wlan_disable(self, eth)
     #循环三次检查无线网卡是否能够上网
     for i in range(3):
         #无线网卡释放ip地址
         CPControl.dhcp_release_wlan(self, wlan)
         #无线网卡再次获取ip地址
         CPControl.dhcp_wlan(self, wlan)
         CPControl.move_resolv(self)
         #如果不能访问网络
         tmp = CPControl.get_ping(self, "www.qq.com")
         if tmp == 0:
             break
         else:
             print "check wlan card can access internet or not,again."
     #打开http的页面http://www.qq.com
     redirect_title = CPBusiness.wait_for_title(self, "http://www.qq.com")
     print "Access tencent webpage, jump to %s webpage" % redirect_title
     #无线网卡释放ip地址
     CPControl.dhcp_release_wlan(self, wlan)
     #断开无线连接
     CPControl.disconnect_ap(self)
     #启用有线网卡
     CPControl.wlan_enable(self, eth)
     print redirect_title
     if redirect_title == "gatewayname Entry":
         return True
     else:
         return False
Exemplo n.º 27
0
 def change_radius_to_No_auth(self, n, t):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击编辑按钮
     CPControl.click_edit_button(self, n)
     #选择认证方式--radius改回免认证
     CPControl.set_radius_to_No_auth(self)
     #输入有效期
     CPControl.set_expiration(self, n, t)
     #编辑或添加的页面点击保存
     CPControl.click_add_save(self)
     CPControl.apply(self)
Exemplo n.º 28
0
    def check_jump_to_No_auth_portal_backup(self, ssid, password, wlan, eth,
                                            wifi_encryption):
        #无线网卡释放ip地址
        CPControl.dhcp_release_wlan(self, wlan)
        #禁用有线网卡
        CPControl.wlan_disable(self, eth)
        time.sleep(60)
        #使用无线网卡连接group0的ssid
        if wifi_encryption == "open":
            CPControl.connect_NONE_AP(self, ssid, wlan)
        elif wifi_encryption == "wep":
            CPControl.connect_WEP_AP(self, ssid, password, wlan)
        elif wifi_encryption == "wpa":
            CPControl.connect_WPA_AP(self, ssid, password, wlan)
        elif wifi_encryption == "wpa_hiddenssid":
            CPControl.connect_WPA_hiddenssid_AP(self, ssid, password, wlan)
        elif wifi_encryption == "802.1x":
            CPControl.connect_8021x_AP(self, ssid,
                                       data_basic['radius_usename'],
                                       data_basic['radius_password'], wlan)

        #再次禁用有线网卡--防止无线网卡的多次连接时会重启全部网络导致有限网卡再次开启
        CPControl.wlan_disable(self, eth)
        #循环三次检查无线网卡是否能够上网
        for i in range(3):
            #无线网卡释放ip地址
            CPControl.dhcp_release_wlan(self, wlan)
            #无线网卡再次获取ip地址
            CPControl.dhcp_wlan(self, wlan)
            CPControl.move_resolv(self)
            #如果不能访问网络
            tmp = CPControl.get_ping(self, "www.qq.com")
            if tmp == 0:
                break
            else:
                "check wlan card can access internet or not,again."
        #打开http的页面http://www.qq.com
        redirect_title = CPBusiness.wait_for_title(self, "http://www.qq.com")
        print "Access tencent webpage, jump to %s webpage" % redirect_title
        #无线网卡释放ip地址
        CPControl.dhcp_release_wlan(self, wlan)
        #断开无线连接
        CPControl.disconnect_ap(self)
        #启用有线网卡
        CPControl.wlan_enable(self, eth)
        print redirect_title
        if redirect_title == "gatewayname Entry":
            return True
        else:
            return False
Exemplo n.º 29
0
 def __init__(self, s):
     #继承CPControl类的属性和方法
     CPControl.__init__(self, s)
Exemplo n.º 30
0
 def change_No_auth(self, n, t):
     #点击页面上强制网络门户
     CPControl.CP_menu(self)
     #点击编辑按钮
     CPControl.click_edit_button(self, n)
     #选择认证方式
     CPControl.set_auth_type(self, "0")
     #输入有效期
     CPControl.set_expiration(self, n, t)
     #编辑或添加的页面点击保存
     CPControl.click_add_save(self)
     CPControl.apply(self)