Add cli testing

This commit is contained in:
Daniel Marjamäki 2019-04-14 10:45:20 +02:00
parent 97157046f7
commit 6a83c5d3f3
3 changed files with 78 additions and 0 deletions

View File

@ -0,0 +1,8 @@
#include <stdio.h>
int main() {
printf("Hello world!\n");
x = 3 / 0; // ERROR
return 0;
}

17
test/cli/readme.txt Normal file
View File

@ -0,0 +1,17 @@
Systemtesting of Cppcheck CLI on some projects
addons
base path
exclude folders
importing projects
* visual studio
* compile database
- different generators bear/cmake/..
- different platforms
suppressions
Different paths:
* relative
* absolute

View File

@ -0,0 +1,53 @@
# python -m pytest test-helloworld.py
import logging
import os
import subprocess
# Run Cppcheck with args
def cppcheck(args):
cmd = '%s %s' % (os.path.expanduser('~/cppcheck/cppcheck'), args)
logging.info(cmd)
p = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
comm = p.communicate()
stdout = comm[0].decode(encoding='utf-8', errors='ignore')
stderr = comm[1].decode(encoding='utf-8', errors='ignore')
return p.returncode, stdout, stderr
def test_relative_path():
ret, stdout, stderr = cppcheck('1-helloworld')
assert ret == 0
assert stdout == 'Checking 1-helloworld/main.c ...\n'
assert stderr == '[1-helloworld/main.c:5]: (error) Division by zero.\n'
def test_local_path():
cwd = os.getcwd()
os.chdir('1-helloworld')
ret, stdout, stderr = cppcheck('.')
os.chdir(cwd)
assert ret == 0
assert stdout == 'Checking main.c ...\n'
assert stderr == '[main.c:5]: (error) Division by zero.\n'
def test_absolute_path():
prjpath = '%s/1-helloworld' % (os.getcwd())
ret, stdout, stderr = cppcheck(prjpath)
assert ret == 0
assert stdout == 'Checking %s/main.c ...\n' % (prjpath)
assert stderr == '[%s/main.c:5]: (error) Division by zero.\n' % (prjpath)
def test_basepath_relative_path():
prjpath = '1-helloworld'
ret, stdout, stderr = cppcheck('%s -rp=%s' % (prjpath, prjpath))
assert ret == 0
assert stdout == 'Checking %s/main.c ...\n' % (prjpath)
assert stderr == '[main.c:5]: (error) Division by zero.\n'
def test_basepath_absolute_path():
prjpath = '%s/1-helloworld' % (os.getcwd())
ret, stdout, stderr = cppcheck('%s -rp=%s' % (prjpath, prjpath))
assert ret == 0
assert stdout == 'Checking %s/main.c ...\n' % (prjpath)
assert stderr == '[main.c:5]: (error) Division by zero.\n'