vhost: add unit test framework
While here, add a new DEFINE_STUB_V for void stubs. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: I6b0b27616ddc2525cdd425f65edf8a0bd89ba564 Reviewed-on: https://review.gerrithub.io/371735 Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
parent
1238cfb95a
commit
c41338ce70
@ -71,8 +71,9 @@
|
|||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
|
|
||||||
/* for defining the implmentation of stubs for SPDK funcs */
|
/* For defining the implmentation of stubs for SPDK funcs. */
|
||||||
/* the _P macro is for stubs that return pointer values */
|
/* DEFINE_STUB_P macro is for stubs that return pointer values. */
|
||||||
|
/* DEFINE_STUB_V macro is for void stubs. */
|
||||||
#define DEFINE_STUB(fn, ret, dargs, val) \
|
#define DEFINE_STUB(fn, ret, dargs, val) \
|
||||||
ret ut_ ## fn = val; \
|
ret ut_ ## fn = val; \
|
||||||
ret fn dargs; \
|
ret fn dargs; \
|
||||||
@ -90,6 +91,12 @@
|
|||||||
return MOCK_GET_P(fn); \
|
return MOCK_GET_P(fn); \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define DEFINE_STUB_V(fn, dargs) \
|
||||||
|
void fn dargs; \
|
||||||
|
void fn dargs \
|
||||||
|
{ \
|
||||||
|
}
|
||||||
|
|
||||||
/* declare wrapper protos (alphabetically please) here */
|
/* declare wrapper protos (alphabetically please) here */
|
||||||
DECLARE_WRAPPER(pthread_mutex_init, int,
|
DECLARE_WRAPPER(pthread_mutex_init, int,
|
||||||
(pthread_mutex_t *mtx, const pthread_mutexattr_t *attr));
|
(pthread_mutex_t *mtx, const pthread_mutexattr_t *attr));
|
||||||
|
@ -35,6 +35,9 @@ SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../..)
|
|||||||
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||||
|
|
||||||
DIRS-y = bdev blob ioat iscsi json jsonrpc log nvme nvmf scsi util
|
DIRS-y = bdev blob ioat iscsi json jsonrpc log nvme nvmf scsi util
|
||||||
|
ifeq ($(OS),Linux)
|
||||||
|
DIRS-$(CONFIG_VHOST) += vhost
|
||||||
|
endif
|
||||||
|
|
||||||
.PHONY: all clean $(DIRS-y)
|
.PHONY: all clean $(DIRS-y)
|
||||||
|
|
||||||
|
44
test/unit/lib/vhost/Makefile
Normal file
44
test/unit/lib/vhost/Makefile
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
#
|
||||||
|
# BSD LICENSE
|
||||||
|
#
|
||||||
|
# Copyright (c) Intel Corporation.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions
|
||||||
|
# are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer in
|
||||||
|
# the documentation and/or other materials provided with the
|
||||||
|
# distribution.
|
||||||
|
# * Neither the name of Intel Corporation nor the names of its
|
||||||
|
# contributors may be used to endorse or promote products derived
|
||||||
|
# from this software without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
#
|
||||||
|
|
||||||
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../..)
|
||||||
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||||
|
|
||||||
|
DIRS-y = vhost.c
|
||||||
|
|
||||||
|
.PHONY: all clean $(DIRS-y)
|
||||||
|
|
||||||
|
all: $(DIRS-y)
|
||||||
|
clean: $(DIRS-y)
|
||||||
|
|
||||||
|
include $(SPDK_ROOT_DIR)/mk/spdk.subdirs.mk
|
1
test/unit/lib/vhost/vhost.c/.gitignore
vendored
Normal file
1
test/unit/lib/vhost/vhost.c/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
vhost_ut
|
58
test/unit/lib/vhost/vhost.c/Makefile
Normal file
58
test/unit/lib/vhost/vhost.c/Makefile
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
#
|
||||||
|
# BSD LICENSE
|
||||||
|
#
|
||||||
|
# Copyright (c) Intel Corporation.
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
# modification, are permitted provided that the following conditions
|
||||||
|
# are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer in
|
||||||
|
# the documentation and/or other materials provided with the
|
||||||
|
# distribution.
|
||||||
|
# * Neither the name of Intel Corporation nor the names of its
|
||||||
|
# contributors may be used to endorse or promote products derived
|
||||||
|
# from this software without specific prior written permission.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
#
|
||||||
|
|
||||||
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../../../../..)
|
||||||
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
||||||
|
include $(SPDK_ROOT_DIR)/mk/spdk.app.mk
|
||||||
|
|
||||||
|
SPDK_LIB_LIST = log
|
||||||
|
|
||||||
|
CFLAGS += -I$(SPDK_ROOT_DIR)/test
|
||||||
|
CFLAGS += -I$(SPDK_ROOT_DIR)/lib/vhost
|
||||||
|
CFLAGS += -I$(SPDK_ROOT_DIR)/lib/vhost/rte_vhost
|
||||||
|
CFLAGS += -I$(DPDK_DIR)/include
|
||||||
|
LIBS += $(SPDK_LIB_LINKER_ARGS)
|
||||||
|
LIBS += -lcunit
|
||||||
|
|
||||||
|
APP = vhost_ut
|
||||||
|
C_SRCS = vhost_ut.c
|
||||||
|
|
||||||
|
all: $(APP)
|
||||||
|
|
||||||
|
$(APP): $(OBJS) $(SPDK_LIB_FILES)
|
||||||
|
$(LINK_C)
|
||||||
|
|
||||||
|
clean:
|
||||||
|
$(CLEAN_C) $(APP)
|
||||||
|
|
||||||
|
include $(SPDK_ROOT_DIR)/mk/spdk.deps.mk
|
112
test/unit/lib/vhost/vhost.c/vhost_ut.c
Normal file
112
test/unit/lib/vhost/vhost.c/vhost_ut.c
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
/*-
|
||||||
|
* BSD LICENSE
|
||||||
|
*
|
||||||
|
* Copyright (c) Intel Corporation.
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
*
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in
|
||||||
|
* the documentation and/or other materials provided with the
|
||||||
|
* distribution.
|
||||||
|
* * Neither the name of Intel Corporation nor the names of its
|
||||||
|
* contributors may be used to endorse or promote products derived
|
||||||
|
* from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "spdk/stdinc.h"
|
||||||
|
|
||||||
|
#include "CUnit/Basic.h"
|
||||||
|
#include "spdk_cunit.h"
|
||||||
|
#include "spdk_internal/mock.h"
|
||||||
|
|
||||||
|
#include "vhost.c"
|
||||||
|
|
||||||
|
DEFINE_STUB(rte_vhost_driver_unregister, int, (const char *path), 0);
|
||||||
|
DEFINE_STUB(spdk_event_allocate, struct spdk_event *,
|
||||||
|
(uint32_t lcore, spdk_event_fn fn, void *arg1, void *arg2), NULL);
|
||||||
|
DEFINE_STUB_V(spdk_mem_register, (void *vaddr, size_t len));
|
||||||
|
DEFINE_STUB_V(spdk_mem_unregister, (void *vaddr, size_t len));
|
||||||
|
DEFINE_STUB(spdk_iommu_mem_register, int, (uint64_t addr, uint64_t len), 0);
|
||||||
|
DEFINE_STUB(spdk_app_get_core_mask, uint64_t, (void), 0);
|
||||||
|
DEFINE_STUB_V(spdk_app_stop, (int rc));
|
||||||
|
DEFINE_STUB_V(spdk_event_call, (struct spdk_event *event));
|
||||||
|
DEFINE_STUB(spdk_iommu_mem_unregister, int, (uint64_t addr, uint64_t len), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_get_mem_table, int, (int vid, struct rte_vhost_memory **mem), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_get_negotiated_features, int, (int vid, uint64_t *features), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_get_vhost_vring, int,
|
||||||
|
(int vid, uint16_t vring_idx, struct rte_vhost_vring *vring), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_enable_guest_notification, int,
|
||||||
|
(int vid, uint16_t queue_id, int enable), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_get_ifname, int, (int vid, char *buf, size_t len), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_get_vring_num, uint16_t, (int vid), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_driver_start, int, (const char *name), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_driver_callback_register, int,
|
||||||
|
(const char *path, struct vhost_device_ops const *const ops), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_driver_disable_features, int, (const char *path, uint64_t features), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_driver_set_features, int, (const char *path, uint64_t features), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_driver_register, int, (const char *path, uint64_t flags), 0);
|
||||||
|
DEFINE_STUB(spdk_vhost_scsi_controller_construct, int, (void), 0);
|
||||||
|
DEFINE_STUB(spdk_vhost_blk_controller_construct, int, (void), 0);
|
||||||
|
DEFINE_STUB(rte_vhost_set_vhost_vring_last_idx, int,
|
||||||
|
(int vid, uint16_t vring_idx, uint16_t last_avail_idx, uint16_t last_used_idx), 0);
|
||||||
|
|
||||||
|
static int
|
||||||
|
test_setup(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
null_test(void)
|
||||||
|
{
|
||||||
|
CU_ASSERT(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
main(int argc, char **argv)
|
||||||
|
{
|
||||||
|
CU_pSuite suite = NULL;
|
||||||
|
unsigned int num_failures;
|
||||||
|
|
||||||
|
if (CU_initialize_registry() != CUE_SUCCESS) {
|
||||||
|
return CU_get_error();
|
||||||
|
}
|
||||||
|
|
||||||
|
suite = CU_add_suite("vhost_suite", test_setup, NULL);
|
||||||
|
if (suite == NULL) {
|
||||||
|
CU_cleanup_registry();
|
||||||
|
return CU_get_error();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (
|
||||||
|
CU_add_test(suite, "null test", null_test) == NULL
|
||||||
|
) {
|
||||||
|
CU_cleanup_registry();
|
||||||
|
return CU_get_error();
|
||||||
|
}
|
||||||
|
|
||||||
|
CU_basic_set_mode(CU_BRM_VERBOSE);
|
||||||
|
CU_basic_run_tests();
|
||||||
|
num_failures = CU_get_number_of_failures();
|
||||||
|
CU_cleanup_registry();
|
||||||
|
|
||||||
|
return num_failures;
|
||||||
|
}
|
@ -89,6 +89,10 @@ $valgrind test/unit/lib/util/bit_array.c/bit_array_ut
|
|||||||
$valgrind test/unit/lib/util/io_channel.c/io_channel_ut
|
$valgrind test/unit/lib/util/io_channel.c/io_channel_ut
|
||||||
$valgrind test/unit/lib/util/string.c/string_ut
|
$valgrind test/unit/lib/util/string.c/string_ut
|
||||||
|
|
||||||
|
if [ $(uname -s) = Linux ]; then
|
||||||
|
$valgrind test/unit/lib/vhost/vhost.c/vhost_ut
|
||||||
|
fi
|
||||||
|
|
||||||
# local unit test coverage
|
# local unit test coverage
|
||||||
if [ "$cov_avail" = "yes" ]; then
|
if [ "$cov_avail" = "yes" ]; then
|
||||||
$LCOV -q -d . -c -t "$(hostname)" -o $UT_COVERAGE/ut_cov_test.info
|
$LCOV -q -d . -c -t "$(hostname)" -o $UT_COVERAGE/ut_cov_test.info
|
||||||
|
Loading…
Reference in New Issue
Block a user