本文整理汇总了Python中common_suite_file.CommonSuiteData.database_resource_post_condition方法的典型用法代码示例。如果您正苦于以下问题:Python CommonSuiteData.database_resource_post_condition方法的具体用法?Python CommonSuiteData.database_resource_post_condition怎么用?Python CommonSuiteData.database_resource_post_condition使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common_suite_file.CommonSuiteData
的用法示例。
在下文中一共展示了CommonSuiteData.database_resource_post_condition方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testDatabaseResourceSuite
# 需要导入模块: from common_suite_file import CommonSuiteData [as 别名]
# 或者: from common_suite_file.CommonSuiteData import database_resource_post_condition [as 别名]
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)