def delete_libcurve_file_with_normal_user():
    rc = base_operate.delete_libcurve_file(config.file_name, config.user_name)
    if rc < 0:
        #logger.error("delete libcurve file fail. rc = %s" % rc)
        return rc
        raise AssertionError
    else:
        return rc
def delete_libcurve_file_with_root_user_and_no_password():
    rc = base_operate.delete_libcurve_file(config.file_name, config.root_name,
                                           "")
    if rc < 0:
        logger.info("delete libcurve file fail. rc = %s" % rc)
        return rc
        #raise AssertionError
    else:
        return rc
def delete_libcurve_file_with_normal_user_and_password():
    rc = base_operate.delete_libcurve_file(config.file_name, config.user_name,
                                           config.root_password)
    if rc < 0:
        logger.debug("delete libcurve file fail. rc = %s" % rc)
        return rc
        raise AssertionError
    else:
        return rc
def delete_libcurve_file_with_error_user_and_root_password():
    rc = base_operate.delete_libcurve_file(config.file_name, "test",
                                           config.root_password)
    logger.info("delete libcurve file with error user and root password.")
    return rc
def delete_libcurve_file_with_error_user():
    rc = base_operate.delete_libcurve_file(config.file_name, "test")
    logger.info("delete libcurve file with error user.")
    return rc
def delete_libcurve_file_with_no_user():
    rc = base_operate.delete_libcurve_file(config.file_name, "")
    logger.info("delete libcurve file with no user.")
    return rc