mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-02-21 19:02:25 +00:00
tests: Introduce global mock library
The intent is that this library is going to be called every time to check if we are not touching anything outside srcdir or builddir. Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
86d1705a8a
commit
47d2dc831a
2
cfg.mk
2
cfg.mk
@ -1164,7 +1164,7 @@ exclude_file_name_regexp--sc_copyright_usage = \
|
||||
^COPYING(|\.LESSER)$$
|
||||
|
||||
exclude_file_name_regexp--sc_flags_usage = \
|
||||
^(cfg\.mk|docs/|src/util/virnetdevtap\.c$$|tests/(vir(cgroup|pci|usb)|nss|qemuxml2argv)mock\.c$$)
|
||||
^(cfg\.mk|docs/|src/util/virnetdevtap\.c$$|tests/(vir(cgroup|pci|test|usb)|nss|qemuxml2argv)mock\.c$$)
|
||||
|
||||
exclude_file_name_regexp--sc_libvirt_unmarked_diagnostics = \
|
||||
^(src/rpc/gendispatch\.pl$$|tests/)
|
||||
|
@ -443,6 +443,7 @@ endif WITH_DBUS
|
||||
if WITH_LINUX
|
||||
test_libraries += virusbmock.la \
|
||||
virnetdevbandwidthmock.la \
|
||||
virtestmock.la
|
||||
$(NULL)
|
||||
endif WITH_LINUX
|
||||
|
||||
@ -1142,9 +1143,15 @@ virnetdevbandwidthmock_la_CFLAGS = $(AM_CFLAGS)
|
||||
virnetdevbandwidthmock_la_LDFLAGS = $(MOCKLIBS_LDFLAGS)
|
||||
virnetdevbandwidthmock_la_LIBADD = $(MOCKLIBS_LIBS)
|
||||
|
||||
virtestmock_la_SOURCES = \
|
||||
virtestmock.c
|
||||
virtestmock_la_CFLAGS = $(AM_CFLAGS)
|
||||
virtestmock_la_LDFLAGS = $(MOCKLIBS_LDFLAGS)
|
||||
virtestmock_la_LIBADD = $(MOCKLIBS_LIBS)
|
||||
else ! WITH_LINUX
|
||||
EXTRA_DIST += virusbtest.c virusbmock.c \
|
||||
virnetdevbandwidthtest.c virnetdevbandwidthmock.c
|
||||
virnetdevbandwidthtest.c virnetdevbandwidthmock.c \
|
||||
virtestmock.c
|
||||
endif ! WITH_LINUX
|
||||
|
||||
if WITH_DBUS
|
||||
|
135
tests/virtestmock.c
Normal file
135
tests/virtestmock.c
Normal file
@ -0,0 +1,135 @@
|
||||
/*
|
||||
* Copyright (C) 2016 Red Hat, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library. If not, see
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
* Author: Michal Privoznik <mprivozn@redhat.com>
|
||||
*/
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include "virmock.h"
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
#include <fcntl.h>
|
||||
|
||||
#include "internal.h"
|
||||
#include "configmake.h"
|
||||
|
||||
static int (*real_open)(const char *path, int flags, ...);
|
||||
static FILE *(*real_fopen)(const char *path, const char *mode);
|
||||
static int (*real_access)(const char *path, int mode);
|
||||
static int (*real_stat)(const char *path, struct stat *sb);
|
||||
static int (*real___xstat)(int ver, const char *path, struct stat *sb);
|
||||
static int (*real_lstat)(const char *path, struct stat *sb);
|
||||
static int (*real___lxstat)(int ver, const char *path, struct stat *sb);
|
||||
|
||||
static void init_syms(void)
|
||||
{
|
||||
if (real_open)
|
||||
return;
|
||||
|
||||
VIR_MOCK_REAL_INIT(open);
|
||||
VIR_MOCK_REAL_INIT(fopen);
|
||||
VIR_MOCK_REAL_INIT(access);
|
||||
VIR_MOCK_REAL_INIT_ALT(stat, __xstat);
|
||||
VIR_MOCK_REAL_INIT_ALT(lstat, __lxstat);
|
||||
}
|
||||
|
||||
static void
|
||||
checkPath(const char *path ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* Nada */
|
||||
}
|
||||
|
||||
|
||||
int open(const char *path, int flags, ...)
|
||||
{
|
||||
int ret;
|
||||
|
||||
init_syms();
|
||||
|
||||
checkPath(path);
|
||||
|
||||
if (flags & O_CREAT) {
|
||||
va_list ap;
|
||||
mode_t mode;
|
||||
va_start(ap, flags);
|
||||
mode = va_arg(ap, mode_t);
|
||||
va_end(ap);
|
||||
ret = real_open(path, flags, mode);
|
||||
} else {
|
||||
ret = real_open(path, flags);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
FILE *fopen(const char *path, const char *mode)
|
||||
{
|
||||
init_syms();
|
||||
|
||||
checkPath(path);
|
||||
|
||||
return real_fopen(path, mode);
|
||||
}
|
||||
|
||||
|
||||
int access(const char *path, int mode)
|
||||
{
|
||||
init_syms();
|
||||
|
||||
checkPath(path);
|
||||
|
||||
return real_access(path, mode);
|
||||
}
|
||||
|
||||
int stat(const char *path, struct stat *sb)
|
||||
{
|
||||
init_syms();
|
||||
|
||||
checkPath(path);
|
||||
|
||||
return VIR_MOCK_CALL_STAT(_STAT_VER, path, sb);
|
||||
}
|
||||
|
||||
int
|
||||
__xstat(int ver, const char *path, struct stat *sb)
|
||||
{
|
||||
init_syms();
|
||||
|
||||
checkPath(path);
|
||||
|
||||
return VIR_MOCK_CALL_STAT(ver, path, sb);
|
||||
}
|
||||
|
||||
int
|
||||
lstat(const char *path, struct stat *sb)
|
||||
{
|
||||
init_syms();
|
||||
|
||||
checkPath(path);
|
||||
|
||||
return VIR_MOCK_CALL_LSTAT(_STAT_VER, path, sb);
|
||||
}
|
||||
|
||||
int
|
||||
__lxstat(int ver, const char *path, struct stat *sb)
|
||||
{
|
||||
init_syms();
|
||||
|
||||
checkPath(path);
|
||||
|
||||
return VIR_MOCK_CALL_LSTAT(ver, path, sb);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user