def statfs_libcurve_file_with_normal_user(): rc = base_operate.statfs_libcurve_file(config.file_name, config.user_name) if rc < 0: logger.error("statfs libcurve file fail. rc = %s" % rc) return rc raise AssertionError else: return rc
def statfs_libcurve_file_with_root_user_and_no_password(): rc = base_operate.statfs_libcurve_file(config.file_name, config.root_name, "") if rc < 0: logger.info("statfs libcurve file fail. rc = %s" % rc) return rc #raise AssertionError else: return rc
def statfs_libcurve_file_with_error_user_and_root_password(): rc = base_operate.statfs_libcurve_file(config.file_name, "test", config.root_password) logger.info("statfs libcurve file with error user and root password.") return rc
def statfs_libcurve_file_with_error_user(): rc = base_operate.statfs_libcurve_file(config.file_name, "test") logger.info("statfs libcurve file with error user.") return rc
def statfs_libcurve_file_with_no_user(): rc = base_operate.statfs_libcurve_file(config.file_name, "") logger.info("statfs libcurve file with no user.") return rc