Пример #1
0
def project_validator(value, product=Product.BIGIP, **kwargs):
    if value:
        try:
            project, hotfix = split_hf(value)
            create_finder(project, hotfix=hotfix, product=product).find_file()
            return True
        except IsoNotFoundError:
            return 'Invalid project'
Пример #2
0
def project_validator(value, product=Product.BIGIP, **kwargs):
    if value:
        try:
            project, hotfix = split_hf(value)
            create_finder(project, hotfix=hotfix, product=product).find_file()
            return True
        except IsoNotFoundError:
            return 'Invalid project'
Пример #3
0
def hotfix_validator(value, project=None, build=None, product=Product.BIGIP, **kwargs):
    if value and project:
        if 'eng' == value.lower():
            return True
        try:
            create_finder(identifier=project, build=build or None, hotfix=value,
                          product=product).find_file()
            return True
        except ValueError as e:
            return str(e)
        except IsoNotFoundError:
            return 'Invalid hotfix for %s' % project
Пример #4
0
def build_validator(value, project=None, hotfix=None, product=Product.BIGIP, **kwargs):
    if hotfix and 'eng' == hotfix.lower() and not value:
        return 'Invalid ENG hotfix build'
    if value and project:
        try:
            project2, hotfix2 = split_hf(project)
            create_finder(identifier=project2, build=value,
                          hotfix=hotfix or hotfix2, product=product).find_file()
            return True
        except IsoNotFoundError:
            if hotfix:
                return 'Invalid build for {0} hotfix {1}'.format(project, hotfix)
            return 'Invalid build for %s' % project
Пример #5
0
def min_version_validator(value=None,
                          project=None,
                          hotfix=None,
                          product=Product.BIGIP,
                          iso=None,
                          min_ver='bigip 11.4.0',
                          **kwargs):
    if hotfix and 'eng' == str(hotfix).lower() and not value:
        return 'Invalid ENG hotfix build'
    if iso:
        isofile = sanitize_atom_path(iso)
    elif value and project:
        try:
            project2, hotfix2 = split_hf(project)
            isofile = create_finder(identifier=project2,
                                    build=value,
                                    hotfix=hotfix or hotfix2,
                                    product=product).find_file()
        except IsoNotFoundError:
            if hotfix:
                return 'Invalid build for {0} hotfix {1}'.format(
                    project, hotfix)
            return 'Invalid build for %s' % project
    else:
        raise NotImplementedError('Need build and project or iso')
    iso_version = version_from_metadata(isofile)
    return iso_version >= Version(min_ver)
Пример #6
0
def max_version_validator(value=None,
                          project=None,
                          hotfix=None,
                          product=Product.BIGIP,
                          iso=None,
                          max_ver='bigip 14',
                          **kwargs):
    """ Make sure that we aren't trying to run tests on a BIG-IP version that
        is too new to be supported.
    """
    if hotfix and 'eng' == str(hotfix).lower() and not value:
        return 'Invalid ENG hotfix build'
    if iso:
        isofile = sanitize_atom_path(iso)
    elif value and project:
        try:
            project2, hotfix2 = split_hf(project)
            isofile = create_finder(identifier=project2,
                                    build=value,
                                    hotfix=hotfix or hotfix2,
                                    product=product).find_file()
        except IsoNotFoundError:
            if hotfix:
                return 'Invalid build for {0} hotfix {1}'.format(
                    project, hotfix)
            return 'Invalid build for %s' % project
    else:
        raise NotImplementedError('Need build and project or iso')
    iso_version = version_from_metadata(isofile)
    return iso_version < Version(max_ver)
Пример #7
0
def min_version_validator(value=None, project=None, hotfix=None, product=Product.BIGIP,
                          iso=None, min_ver='bigip 11.4.0', **kwargs):
    if hotfix and 'eng' == hotfix.lower() and not value:
        return 'Invalid ENG hotfix build'
    if iso:
        isofile = sanitize_atom_path(iso)
    elif value and project:
        try:
            project2, hotfix2 = split_hf(project)
            isofile = create_finder(identifier=project2, build=value,
                                    hotfix=hotfix or hotfix2, product=product).find_file()
        except IsoNotFoundError:
            if hotfix:
                return 'Invalid build for {0} hotfix {1}'.format(project, hotfix)
            return 'Invalid build for %s' % project
    else:
        raise NotImplementedError('Need build and project or iso')
    iso_version = version_from_metadata(isofile)
    return iso_version >= Version(min_ver)