Пример #1
0
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
Пример #2
0
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
Пример #3
0
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
Пример #4
0
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
Пример #5
0
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