Blob Blame History Raw
import os
import sys

import SCLCheck
import Testing


# add rpmlint-scl, rpmlint and rpmlint/tools to PATH
# also add rpmlint-scl/tools, so this keeps working once merged with rpmlint
for directory in ['../rpmlint/tools', '../rpmlint', '../tools', '..']:
    sys.path.insert(0, os.path.join(os.path.dirname(__file__), directory))


class TestSCLBasic(Testing.OutputTest):
    '''Basic tests of Software Collections checks'''

    @classmethod
    def setup_class(cls):
        cls.check = SCLCheck.check.check
        cls.check_spec = SCLCheck.check.check_spec

    def test_nonscl_spec_silent(self):
        '''SCL check on non-SCL spec has to be silent'''
        assert not self._spec_test_output('spec/SpecCheck')

    def test_nonscl_binary_silent(self):
        '''
        SCL check on non-SCL binary RPM has to be silent even with
        suspicious filename
        '''
        assert not self._rpm_test_output('binary/python3-power')

    def test_bunch_of_scl_source_rpms(self):
        '''
        A bunch of testing source RPM packages using SCL
        Assuming they are all OK and except silent output
        While adding more checks, this might change
        '''
        for package in ['nodejs010-1', 'nodejs010-nodejs-0.10.3',
                        'nodejs010-nodejs-forever']:
            assert not self._rpm_test_output(os.path.join('source', package))

    def test_bunch_of_scl_binary_rpms(self):
        '''
        A bunch of testing binary RPM packages using SCL
        Assuming they are all OK and except silent output
        While adding more checks, this might change
        '''
        for package in ['nodejs010-runtime', 'nodejs010-nodejs-0.10.3',
                        'nodejs010-nodejs-oauth']:
            assert not self._rpm_test_output(os.path.join('binary', package))

    def test_correct_nodejs(self):
        '''Tests probably correct nodejs.spec and nodejs010.spec'''
        assert not self._spec_test_output('spec/nodejs-good')
        assert not self._spec_test_output('spec/nodejs010')

    def test_undeclared(self):
        '''Tests SCL specs without %scl definition or %scl_package calls'''
        for spec in ['nodejs010', 'nodejs']:
            out = self._spec_test_output('spec/%s-undeclared' % spec)
            assert len(out) == 1
            assert 'undeclared-scl' in out[0]


class TestSCLMain(Testing.OutputTest):
    '''Tests of Software Collections main package checks'''

    @classmethod
    def setup_class(cls):
        cls.check = SCLCheck.check.check
        cls.check_spec = SCLCheck.check.check_spec

    def test_nobuild(self):
        '''Tests SCL metapackage without build subpackage'''
        out = self._spec_test_output('spec/nodejs010-nobuild')
        assert len(out) == 1
        assert 'no-build-in-scl-metapackage' in out[0]

    def test_noruntime(self):
        '''Tests SCL metapackage without runtime subpackage'''
        out = self._spec_test_output('spec/nodejs010-noruntime')
        assert len(out) == 2
        out = '\n'.join(out)
        assert 'no-runtime-in-scl-metapackage' in out
        assert 'scl-main-metapackage-contains-files' in out

    def test_missing_requires(self):
        '''Tests SCL metapackage without scl-utils-build (B)Rs'''
        out = self._spec_test_output('spec/nodejs010-missing-requires')
        assert len(out) == 2
        out = '\n'.join(out)
        assert 'scl-metapackage-without-scl-utils-build-br' in out
        assert 'scl-build-without-requiring-scl-utils-build' in out

    def test_alien_subpackage(self):
        '''Tests SCL metapackage with extra subpackage'''
        for diff in ['', '-n']:
            out = self._spec_test_output(
                'spec/nodejs010-alien-subpackage' + diff)
            assert len(out) == 1
            assert 'weird-subpackage-in-scl-metapackage' in out[0]
            assert 'hehe' in out[0]

    def test_nosclinstall(self):
        '''Tests SCL metapackage that doesn't call %scl_install'''
        out = self._spec_test_output('spec/nodejs010-nosclinstall')
        assert len(out) == 1
        assert 'scl-metapackage-without-%scl_install' in out[0]

    def test_noarch(self):
        '''Tests noarch SCL metapackages (not) containing %{_libdir}'''
        assert not self._spec_test_output('spec/nodejs010-noarch-good')
        out = self._spec_test_output('spec/nodejs010-noarch-libdir')
        assert len(out) == 1
        assert 'noarch-scl-metapackage-with-libdir' in out[0]

    def test_badfiles(self):
        '''Tests SCL metapackage %files section checks'''
        out = self._spec_test_output('spec/nodejs010-badfiles')
        assert len(out) == 3
        out = '\n'.join(out)
        assert 'scl-main-metapackage-contains-files' in out
        assert 'scl-runtime-package-without-%scl_files' in out
        assert 'scl-build-package-without-rpm-macros' in out


class TestSCLSource(Testing.OutputTest):
    '''Tests of Software Collections enabled package spec checks'''

    @classmethod
    def setup_class(cls):
        cls.check = SCLCheck.check.check
        cls.check_spec = SCLCheck.check.check_spec

    def test_no_pkg_name(self):
        '''Tests SCL spec without pkg_name definition'''
        out = self._spec_test_output('spec/nodejs-no-pkg_name')
        assert len(out) == 1
        assert 'missing-pkg_name-definition' in out[0]

    def test_name_without_prefix(self):
        '''Tests SCL spec without prefixed name'''
        out = self._spec_test_output('spec/nodejs-name-without-prefix')
        assert len(out) == 1
        assert 'name-without-scl-prefix' in out[0]

    def test_name_with_prefix_without_condition(self):
        '''
        Tests SCL spec with prefixed name without condition in scl_prefix macro
        '''
        out = self._spec_test_output(
            'spec/nodejs-name-with-noncondition-prefix')
        assert len(out) == 1
        assert 'scl-prefix-without-condition' in out[0]

    def test_conflicts_without_prefix(self):
        '''Tests SCL spec with nonprefixed conflicts'''
        out = self._spec_test_output('spec/nodejs-conflicts-without-prefix')
        assert len(out) == 1
        assert 'obsoletes-or-conflicts-without-scl-prefix' in out[0]

    def test_provides_without_prefix(self):
        '''Tests SCL spec with nonprefixed conflicts'''
        out = self._spec_test_output('spec/nodejs-provides-without-prefix')
        assert len(out) == 1
        assert 'provides-without-scl-prefix' in out[0]

    def test_main_package_without_scl_require(self):
        '''
        Tests SCL spec where the main package doesn't require anything
        from collection
        '''
        out = self._spec_test_output('spec/nodejs-norequire')
        assert len(out) == 1
        assert 'doesnt-require-scl-runtime-or-other-scl-package' in out[0]

    def test_n_supbackage_without_prefix(self):
        '''
        Tests SCL spec where a subpackage uses -n and doesn't start with
        SCL prefix
        '''
        out = self._spec_test_output('spec/nodejs-n-noprefix')
        assert len(out) == 1
        assert 'subpackage-with-n-without-scl-prefix' in out[0]

    def test_setup_without_n(self):
        '''Tests SCL spec where setup doesn't use -n option'''
        out = self._spec_test_output('spec/nodejs-setup-no-n')
        assert len(out) == 1
        assert 'scl-setup-without-n' in out[0]


class TestSCLBinary(Testing.OutputTest):
    '''Tests of Software Collections binary RPMs'''

    @classmethod
    def setup_class(cls):
        cls.check = SCLCheck.check.check
        cls.check_spec = SCLCheck.check.check_spec

    def test_scl_name_screwed_up(self):
        '''
        SCL check on SCL package that differs it's name from scl tree folder
        '''
        out = self._rpm_test_output('binary/nodejs110-nodejs-oauth')
        assert len(out) == 1
        assert 'scl-name-screwed-up' in out[0]

    def test_scl_forbidden_folders(self):
        '''SCL check on SCL package that has files in forbidden folders'''
        out = self._rpm_test_output('binary/outside-nodejs010-nodejs-oauth')
        assert len(out) == 1
        assert 'file-outside-of-scl-tree' in out[0]

    def test_scl_macros_outside_of_build(self):
        '''SCL check on SCL package that has files in forbidden folders'''
        out = self._rpm_test_output('binary/macros-nodejs010-nodejs-oauth')
        assert len(out) == 1
        assert 'scl-rpm-macros-outside-of-build' in out[0]