本文整理汇总了Python中common_suite_file.CommonSuiteData类的典型用法代码示例。如果您正苦于以下问题:Python CommonSuiteData类的具体用法?Python CommonSuiteData怎么用?Python CommonSuiteData使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CommonSuiteData类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testSessionConfigSuite
class testSessionConfigSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.sessionCase = conversationStrategy(self.browser)
self.initDriver = initDriver()
#前置条件
self.commonSuite.session_module_prefix_condition()
def test_session(self):
#添加访问失败次数和失败锁定时间
self.sessionCase.add_session_config_001()
#校验访问失败次数和失败锁定时间
self.sessionCase.check_session_config_002()
#单用户登录方式和web超时时间添加
self.sessionCase.sing_user_login_and_session_003()
#单用户登录方式校验
self.sessionCase.check_sing_user_login_004()
def tearDown(self):
#后置条件
self.commonSuite.session_module_post_condition()
#关闭浏览器
self.initDriver.close_driver(self.browser)
示例2: testRetimeRuleSuite
class testRetimeRuleSuite(unittest.TestCase):
def setUp(self):
#调用驱动
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.retime = testRetime(self.browser)
#资源时间规则前置条件
self.comsuit.retimerule_module_prefix_condition()
def test_retime_rule(self):
#添加资源时间规则
self.retime.add_retime_rule_001()
#编辑资源时间规则
self.retime.mod_retime_rule_002()
#资源时间规则结果验证
self.retime.add_retime_rule_result_003()
#操作资源时间规则
self.retime.option_retime_rule_004()
#校验资源时间规则
self.retime.check_retime_rule_005()
#删除资源时间规则
self.retime.del_retime_rule_006()
def tearDown(self):
#资源时间规则后置条件
self.comsuit.retimerule_module_post_condition()
initDriver().close_driver(self.browser)
示例3: testAppSuite
class testAppSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.appMethod = testApp(self.browser)
#应用发布前置条件
self.commonSuite.application_module_prefix_condition()
def test_app_method(self):
#添加应用发布
self.appMethod.add_app_001()
#编辑应用发布
self.appMethod.edit_app_002()
#校验应用发布
self.appMethod.check_app_003()
#检索应用发布
self.appMethod.query_app_004()
#添加账号
self.appMethod.add_account_006()
#修改账号
self.appMethod.edit_account_007()
#删除账号
self.appMethod.del_account_008()
#删除应用发布
self.appMethod.del_app_005()
def tearDown(self):
#应用发布后置条件
self.commonSuite.application_module_post_condition()
initDriver().close_driver(self.browser)
示例4: testDepartSuite
class testDepartSuite(unittest.TestCase):
def setUp(self):
#调用驱动
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.testdptment = testDepartment(self.browser)
#部门前置条件
self.comsuit.depart_module_prefix_condition()
def test_department(self):
u'''添加和编辑部门'''
self.testdptment.add_edit_department_001()
u'''上移和下移部门'''
self.testdptment.up_down_department_002()
u'''上移和下移部门校验'''
self.testdptment.up_down_department_check_003()
u'''检验添加和编辑部门'''
self.testdptment.check_add_edit_department_004()
u'''删除部门'''
self.testdptment.del_department_005()
def tearDown(self):
self.comsuit.user_quit()
initDriver().close_driver(self.browser)
示例5: testAdSuite
class testAdSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.adMethod = testAdEx(self.browser)
#AD域前置条件
self.commonSuite.ad_module_prefix_condition()
def test_client_method(self):
#发现AD域账号
self.adMethod.ad_extract_001()
#移动AD域账号
self.adMethod.ad_discover_002()
#移动AD域账号校验
self.adMethod.move_user_check_003()
#移动AD域账号密码校验
self.adMethod.ad_pwd_checkout_004()
#设置定时
self.adMethod.cycle_005()
#清空历史记录
self.adMethod.clear_history_006()
def tearDown(self):
#AD域后置条件
self.commonSuite.ad_module_post_condition()
initDriver().close_driver(self.browser)
示例6: testComRuleSuite
class testComRuleSuite(unittest.TestCase):
def setUp(self):
#调用驱动
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.comm = testCommand(self.browser)
#命令规则前置条件
self.comsuit.commandrule_module_prefix_condition()
def test_command_rule(self):
#添加命令规则
self.comm.add_command_rule_001()
#编辑命令规则
self.comm.mod_command_rule_002()
#操作命令规则
self.comm.option_command_rule_003()
#校验命令规则
self.comm.check_command_rule_004()
#命令审批
# self.comm.command_approval_005()
#删除命令规则
self.comm.del_command_rule_006()
def tearDown(self):
#命令规则后置条件
self.comsuit.commandrule_module_post_condition()
initDriver().close_driver(self.browser)
示例7: testAuthMethodSuite
class testAuthMethodSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.authMethod = testAuthMethod(self.browser)
#认证方式前置条件
self.commonSuite.auth_method_prefix_condition()
def test_auth_method(self):
#添加AD域认证方式
self.authMethod.add_ad_method_001()
#添加radius认证方式
self.authMethod.add_radius_method_002()
#添加AD域+口令认证方式
self.authMethod.add_ad_and_pwd_method_003()
#添加RADIUS+口令认证方式
self.authMethod.add_radius_and_pwd_method_004()
#添加数字证书认证方式
self.authMethod.add_cert_method_005()
#校验认证方式是否添加成功
self.authMethod.auth_method_add_is_success_006()
#修改AD域认证方式
self.authMethod.mod_ad_method_007()
#AD域认证方式校验
self.authMethod.ad_method_checkout_008()
#radius认证方式校验
self.authMethod.radius_checkout_009()
#删除多种认证方式
self.authMethod.del_auth_method_010()
def tearDown(self):
#认证方式后置条件
self.commonSuite.auth_method_post_condition()
initDriver().close_driver(self.browser)
示例8: testTimeRuleSuite
class testTimeRuleSuite(unittest.TestCase):
def setUp(self):
#调用驱动
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.timerule = testTime(self.browser)
#时间规则前置条件
self.comsuit.timerule_module_prefix_condition()
def test_time_rule(self):
#添加时间规则
self.timerule.add_time_rule_001()
#添加时间规则结果
self.timerule.add_time_rule_result_002()
#编辑时间规则
self.timerule.mod_time_rule_003()
#校验时间规则
self.timerule.check_time_rule_004()
#检索时间规则
self.timerule.query_time_rule_005()
#删除时间规则
self.timerule.del_time_rule_006()
def tearDown(self):
#时间规则后置条件
self.comsuit.timerule_module_post_condition()
initDriver().close_driver(self.browser)
示例9: testPasswdEnvelopeSuit
class testPasswdEnvelopeSuit(unittest.TestCase):
def setUp(self):
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.testenvelope = testEnvelope(self.browser)
#前置条件
self.comsuit.passwd_envelope_module_prefix_condition()
def test_passwd_envelope(self):
#配置密码信封
self.testenvelope.add_passwd_envelope_001()
#浏览、上传图片
self.testenvelope.upload_passwd_envelope_002()
#同步图片
self.testenvelope.passwd_envelope_image_sync_003()
#编辑密码信封
self.testenvelope.mode_passwd_envelope_004()
#检验密码信封
self.testenvelope.check_passwd_envelope_005()
#后置条件
def tearDown(self):
self.comsuit.passwd_envelope_module_post_condition()
initDriver().close_driver(self.browser)
示例10: TestAlarmSuite
class TestAlarmSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.alarmCase = AlarmConfig(self.browser)
self.initDriver = initDriver()
#前置条件
self.commonSuite.alarm_strategy_module_prefix_condition()
def test_alarm(self):
#为用户添加邮箱
self.alarmCase.mod_user_mail_008()
#配置高危运维
self.alarmCase.command_alarm_level_config_001()
#运行状态告警校验
self.alarmCase.default_alarm_level_checkout_003()
#配置运行状态告警
self.alarmCase.default_alarm_level_config_002()
#配置认证失败告警
self.alarmCase.auth_alarm_level_config_004()
#告警归纳类型检索
self.alarmCase.search_by_type_005()
#告警归纳级别检索
self.alarmCase.search_by_level_006()
def tearDown(self):
#后置条件
self.commonSuite.alarm_strategy_module_post_condition()
#关闭浏览器
self.initDriver.close_driver(self.browser)
示例11: UseAuthSuite
class UseAuthSuite(unittest.TestCase):
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.useAuthCase = UseAuthorization(self.browser)
self.initDriver = initDriver()
#前置条件
self.commonSuite.use_auth_module_prefix_condition()
def test_use_auth(self):
#填写产品信息
self.useAuthCase.add_product_information_001()
#上传logo
self.useAuthCase.upload_logo_upgrade_002()
#产品信息校验
self.useAuthCase.check_product_information_003()
#logo包校验
self.useAuthCase.check_logo_upgrade_004()
#上传授权码
self.useAuthCase.add_product_information_005()
#上传授权码校验
self.useAuthCase.check_updata_auth_006()
def tearDown(self):
self.commonSuite.use_auth_module_post_condition()
self.initDriver.close_driver(self.browser)
示例12: testAdreRuleSuite
class testAdreRuleSuite(unittest.TestCase):
def setUp(self):
#调用驱动
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.adrerule = testAddress(self.browser)
#地址规则前置条件
self.comsuit.addressrule_module_prefix_condition()
def test_address_rule(self):
#添加地址规则
self.adrerule.add_address_rule_001()
#添加地址规则结果
self.adrerule.add_address_rule_result_002()
#编辑地址规则
self.adrerule.mod_address_rule_003()
#校验地址规则
self.adrerule.check_address_rule_004()
#检索地址规则
self.adrerule.query_address_rule_005()
#删除地址规则
self.adrerule.del_address_rule_006()
def tearDown(self):
#时间规则后置条件
self.comsuit.addressrule_module_post_condition()
initDriver().close_driver(self.browser)
示例13: testDatabaseResourceSuite
class testDatabaseResourceSuite(unittest.TestCase):
def setUp(self):
#调用驱动
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.linuxresource = testLinuxResource(self.browser)
self.database = testDatabaseResource(self.browser)
self.account = testResourceAccount(self.browser)
#添加数据库前置条件
self.comsuit.database_resource_prefix_condition()
# self.comsuit.login_and_switch_to_dep()
# self.comsuit.switch_to_moudle(u"运维管理", u"资源")
def test_database_resource(self):
#------------------------------windows资源-----------------------------------
# 添加database资源
self.database.add_database_resource_001()
# 编辑database资源
self.database.edit_database_resource_002()
# 校验database资源
self.database.check_database_resource_003()
# 添加和编辑mysql资源账号
self.account.add_edit_resource_account_001(_testDataPath.DATABASE_TEST_DATA_URL, "add_mysql_account")
# 添加和编辑oracle资源账号
self.account.add_edit_resource_account_001(_testDataPath.DATABASE_TEST_DATA_URL, "add_oracle_account")
# 添加和编辑bs资源账号
self.account.add_edit_resource_account_001(_testDataPath.DATABASE_TEST_DATA_URL, "add_bs_account")
# 添加和编辑sql资源账号
self.account.add_edit_resource_account_001(_testDataPath.DATABASE_TEST_DATA_URL, "add_sql_account")
#删除mysql资源账号
self.account.del_resource_account_004(_testDataPath.DATABASE_TEST_DATA_URL, "del_mysql_account")
#查询database资源
self.linuxresource.query_resource_004(_testDataPath.DATABASE_TEST_DATA_URL, "query_database_resource")
#删除mysql资源
self.linuxresource.del_resource_005(_testDataPath.DATABASE_TEST_DATA_URL, "del_mysql_resource")
# #删除db2资源
# self.linuxresource.del_resource_005(_testDataPath.DATABASE_TEST_DATA_URL, "del_db2_resorce")
#全选删除资源
#self.linuxresource.bulkdel_resource_006()
def tearDown(self):
#数据库后置条件
self.comsuit.database_resource_post_condition()
initDriver().close_driver(self.browser)
示例14: setUp
def setUp(self):
#定义驱动
self.browser = setDriver().set_driver()
self.commonSuite = CommonSuiteData(self.browser)
self.auditLog = testAuditLog(self.browser)
#运维审计检索前置条件
self.commonSuite.audit_log_prefix_condition()
示例15: setUp
def setUp(self):
self.browser = setDriver().set_driver()
self.comsuit = CommonSuiteData(self.browser)
self.testenvelope = testEnvelope(self.browser)
#前置条件
self.comsuit.passwd_envelope_module_prefix_condition()