mirror of
https://github.com/libfuse/libfuse.git
synced 2026-07-07 14:47:41 +08:00
6d3bc27d60
Valgrind complains that it does not know the fsmount syscall, pytest checks for warnings, find that and fails the test --14936-- WARNING: unhandled amd64-linux syscall: 430 --14936-- You may be able to write your own handler. --14936-- Read the file README_MISSING_SYSCALL_OR_IOCTL. --14936-- Nevertheless we consider this a bug. Please report --14936-- it at http://valgrind.org/support/bug_reports.html. fuse: fsopen(fuse) failed: Function not implemented =========================== short test summary info Obviously we want to filter our valgrind warnings. Signed-off-by: Bernd Schubert <bschubert@ddn.com>
106 lines
3.6 KiB
Python
106 lines
3.6 KiB
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import pytest
|
|
import time
|
|
import re
|
|
import os
|
|
import threading
|
|
|
|
|
|
# If a test fails, wait a moment before retrieving the captured
|
|
# stdout/stderr. When using a server process, this makes sure that we capture
|
|
# any potential output of the server that comes *after* a test has failed. For
|
|
# example, if a request handler raises an exception, the server first signals an
|
|
# error to FUSE (causing the test to fail), and then logs the exception. Without
|
|
# the extra delay, the exception will go into nowhere.
|
|
@pytest.hookimpl(hookwrapper=True)
|
|
def pytest_pyfunc_call(pyfuncitem):
|
|
outcome = yield
|
|
failed = outcome.excinfo is not None
|
|
if failed:
|
|
time.sleep(1)
|
|
|
|
|
|
class OutputChecker:
|
|
'''Check output data for suspicious patterns.
|
|
|
|
Everything written to check_output.fd will be scanned for suspicious
|
|
messages and then written to sys.stdout.
|
|
'''
|
|
|
|
def __init__(self):
|
|
(fd_r, fd_w) = os.pipe()
|
|
self.fd = fd_w
|
|
self._false_positives = []
|
|
self._buf = bytearray()
|
|
self._thread = threading.Thread(target=self._loop, daemon=True, args=(fd_r,))
|
|
self._thread.start()
|
|
|
|
def register_output(self, pattern, count=1, flags=re.MULTILINE):
|
|
'''Register *pattern* as false positive for output checking
|
|
|
|
This prevents the test from failing because the output otherwise
|
|
appears suspicious.
|
|
'''
|
|
|
|
self._false_positives.append((pattern, flags, count))
|
|
|
|
def _loop(self, ifd):
|
|
BUFSIZE = 128*1024
|
|
ofd = sys.stdout.fileno()
|
|
while True:
|
|
buf = os.read(ifd, BUFSIZE)
|
|
if not buf:
|
|
break
|
|
os.write(ofd, buf)
|
|
self._buf += buf
|
|
|
|
def _check(self):
|
|
os.close(self.fd)
|
|
self._thread.join()
|
|
|
|
buf = self._buf.decode('utf8', errors='replace')
|
|
|
|
# Strip out false positives
|
|
for (pattern, flags, count) in self._false_positives:
|
|
cp = re.compile(pattern, flags)
|
|
(buf, cnt) = cp.subn('', buf, count=count)
|
|
|
|
# Filter out Valgrind output lines before checking for suspicious words
|
|
# ==PID== prefix: Valgrind standard messages (errors, info)
|
|
# --PID-- prefix: Valgrind warnings (e.g., unhandled syscalls)
|
|
buf = re.sub(r'^==[0-9]+== .*$', '', buf, flags=re.MULTILINE)
|
|
buf = re.sub(r'^--[0-9]+-- .*$', '', buf, flags=re.MULTILINE)
|
|
|
|
patterns = [ r'\b{}\b'.format(x) for x in
|
|
('exception', 'error', 'warning', 'fatal', 'traceback',
|
|
'fault', 'crash(?:ed)?', 'abort(?:ed)',
|
|
'uninitiali[zs]ed') ]
|
|
|
|
for pattern in patterns:
|
|
cp = re.compile(pattern, re.IGNORECASE | re.MULTILINE)
|
|
hit = cp.search(buf)
|
|
if hit:
|
|
# Skip FUSE error messages in the format "unique: X, error: -Y (...), outsize: Z"
|
|
# These are no errors, but just fuse debug messages with the return code
|
|
if re.search(r'unique: \d+, error: -\d+ \(.*\), outsize: \d+', hit.group(0)):
|
|
continue
|
|
raise AssertionError(f'Suspicious output to stderr (matched "{hit.group(0)}")')
|
|
|
|
@pytest.fixture()
|
|
def output_checker(request):
|
|
checker = OutputChecker()
|
|
yield checker
|
|
checker._check()
|
|
|
|
|
|
# Make test outcome available to fixtures
|
|
# (from https://github.com/pytest-dev/pytest/issues/230)
|
|
@pytest.hookimpl(hookwrapper=True, tryfirst=True)
|
|
def pytest_runtest_makereport(item, call):
|
|
outcome = yield
|
|
rep = outcome.get_result()
|
|
setattr(item, "rep_" + rep.when, rep)
|
|
return rep
|