Commit 971bbd58 by Serge Hallyn Committed by GitHub

Merge pull request #1129 from brauner/2016-08-13/minimal_unit_testing

[RFC] add minimal unit testing for liblxc functions
parents b9977146 29c57e4e
...@@ -32,7 +32,8 @@ noinst_HEADERS = \ ...@@ -32,7 +32,8 @@ noinst_HEADERS = \
start.h \ start.h \
state.h \ state.h \
utils.h \ utils.h \
criu.h criu.h \
../tests/lxctest.h
if IS_BIONIC if IS_BIONIC
noinst_HEADERS += \ noinst_HEADERS += \
......
...@@ -23,6 +23,7 @@ lxc_test_list_SOURCES = list.c ...@@ -23,6 +23,7 @@ lxc_test_list_SOURCES = list.c
lxc_test_attach_SOURCES = attach.c lxc_test_attach_SOURCES = attach.c
lxc_test_device_add_remove_SOURCES = device_add_remove.c lxc_test_device_add_remove_SOURCES = device_add_remove.c
lxc_test_apparmor_SOURCES = aa.c lxc_test_apparmor_SOURCES = aa.c
lxc_test_utils_SOURCES = lxc-test-utils.c lxctest.h
AM_CFLAGS=-DLXCROOTFSMOUNT=\"$(LXCROOTFSMOUNT)\" \ AM_CFLAGS=-DLXCROOTFSMOUNT=\"$(LXCROOTFSMOUNT)\" \
-DLXCPATH=\"$(LXCPATH)\" \ -DLXCPATH=\"$(LXCPATH)\" \
...@@ -50,7 +51,7 @@ bin_PROGRAMS = lxc-test-containertests lxc-test-locktests lxc-test-startone \ ...@@ -50,7 +51,7 @@ bin_PROGRAMS = lxc-test-containertests lxc-test-locktests lxc-test-startone \
lxc-test-cgpath lxc-test-clonetest lxc-test-console \ lxc-test-cgpath lxc-test-clonetest lxc-test-console \
lxc-test-snapshot lxc-test-concurrent lxc-test-may-control \ lxc-test-snapshot lxc-test-concurrent lxc-test-may-control \
lxc-test-reboot lxc-test-list lxc-test-attach lxc-test-device-add-remove \ lxc-test-reboot lxc-test-list lxc-test-attach lxc-test-device-add-remove \
lxc-test-apparmor lxc-test-apparmor lxc-test-utils
bin_SCRIPTS = lxc-test-automount lxc-test-autostart lxc-test-cloneconfig \ bin_SCRIPTS = lxc-test-automount lxc-test-autostart lxc-test-cloneconfig \
lxc-test-createconfig lxc-test-createconfig
...@@ -94,6 +95,7 @@ EXTRA_DIST = \ ...@@ -94,6 +95,7 @@ EXTRA_DIST = \
lxc-test-symlink \ lxc-test-symlink \
lxc-test-ubuntu \ lxc-test-ubuntu \
lxc-test-unpriv \ lxc-test-unpriv \
lxc-test-utils \
may_control.c \ may_control.c \
saveconfig.c \ saveconfig.c \
shutdowntest.c \ shutdowntest.c \
......
/*
* lxc: linux Container library
*
* Copyright © 2016 Canonical Ltd.
*
* Authors:
* Christian Brauner <christian.brauner@mailbox.org>
*
* This program 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 program 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 program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "lxctest.h"
#include "utils.h"
void test_lxc_string_replace(void)
{
char *s;
s = lxc_string_replace("A", "A", "A");
lxc_test_assert_abort(strcmp(s, "A") == 0);
free(s);
s = lxc_string_replace("A", "AA", "A");
lxc_test_assert_abort(strcmp(s, "AA") == 0);
free(s);
s = lxc_string_replace("A", "AA", "BA");
lxc_test_assert_abort(strcmp(s, "BAA") == 0);
free(s);
s = lxc_string_replace("A", "AA", "BAB");
lxc_test_assert_abort(strcmp(s, "BAAB") == 0);
free(s);
s = lxc_string_replace("AA", "A", "AA");
lxc_test_assert_abort(strcmp(s, "A") == 0);
free(s);
s = lxc_string_replace("AA", "A", "BAA");
lxc_test_assert_abort(strcmp(s, "BA") == 0);
free(s);
s = lxc_string_replace("AA", "A", "BAAB");
lxc_test_assert_abort(strcmp(s, "BAB") == 0);
free(s);
s = lxc_string_replace("\"A\"A", "\"A\"", "B\"A\"AB");
lxc_test_assert_abort(strcmp(s, "B\"A\"B") == 0);
free(s);
}
void test_lxc_string_in_array(void)
{
lxc_test_assert_abort(lxc_string_in_array("", (const char *[]){"", NULL}));
lxc_test_assert_abort(!lxc_string_in_array("A", (const char *[]){"", NULL}));
lxc_test_assert_abort(!lxc_string_in_array("AAA", (const char *[]){"", "3472", "jshH", NULL}));
lxc_test_assert_abort(lxc_string_in_array("A", (const char *[]){"A", NULL}));
lxc_test_assert_abort(lxc_string_in_array("A", (const char *[]){"A", "B", "C", NULL}));
lxc_test_assert_abort(lxc_string_in_array("A", (const char *[]){"B", "A", "C", NULL}));
lxc_test_assert_abort(lxc_string_in_array("ABC", (const char *[]){"ASD", "ATR", "ABC", NULL}));
lxc_test_assert_abort(lxc_string_in_array("GHJ", (const char *[]){"AZIU", "WRT567B", "879C", "GHJ", "IUZ89", NULL}));
lxc_test_assert_abort(lxc_string_in_array("XYZ", (const char *[]){"BERTA", "ARQWE(9", "C8Zhkd", "7U", "XYZ", "UOIZ9", "=)()", NULL}));
}
int main(int argc, char *argv[])
{
test_lxc_string_replace();
test_lxc_string_in_array();
exit(EXIT_SUCCESS);
}
/*
* lxc: linux Container library
*
* Copyright © 2016 Canonical Ltd.
*
* Authors:
* Christian Brauner <christian.brauner@mailbox.org>
*
* This program 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 program 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 program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef __LXC_TEST_H_
#define __LXC_TEST_H_
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#define lxc_test_assert_stringify(expression, stringify_expression) \
do { \
if (!(expression)) { \
fprintf(stderr, "%s: %s: %d: %s\n", __FILE__, \
__func__, __LINE__, stringify_expression); \
abort(); \
} \
} while (false)
#define lxc_test_assert_abort(expression) lxc_test_assert_stringify(expression, #expression)
#endif /* __LXC_TEST_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment