rpmlint/test/test_bashisms.py

36 lines
1.4 KiB
Python

import pytest
from rpmlint.checks.BashismsCheck import BashismsCheck
from rpmlint.filter import Filter
from Testing import CONFIG, get_tested_package, HAS_CHECKBASHISMS, HAS_DASH
@pytest.fixture(scope='function', autouse=True)
def bashismscheck():
CONFIG.info = True
output = Filter(CONFIG)
test = BashismsCheck(CONFIG, output)
return output, test
@pytest.mark.skipif(not HAS_CHECKBASHISMS, reason='Optional dependency checkbashisms not installed')
@pytest.mark.skipif(not HAS_DASH, reason='Optional dependency dash not installed')
@pytest.mark.parametrize('package', ['binary/bashisms'])
def test_bashisms(tmp_path, package, bashismscheck):
output, test = bashismscheck
test.check(get_tested_package(package, tmp_path))
out = output.print_results(output.results)
assert 'W: potential-bashisms /bin/script1' in out
assert 'W: bin-sh-syntax-error /bin/script2' in out
@pytest.mark.skipif(not HAS_CHECKBASHISMS, reason='Optional dependency checkbashisms not installed')
@pytest.mark.skipif(not HAS_DASH, reason='Optional dependency dash not installed')
@pytest.mark.parametrize('package', ['binary/bashisms'])
def test_bashisms_error(tmp_path, package, bashismscheck):
output, test = bashismscheck
package = get_tested_package(package, tmp_path)
package.dirname = 'I-do-not-exist-for-sure'
with pytest.raises(FileNotFoundError):
test.check(package)