All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel Wagner <wagi@monom.org>
To: ell@lists.01.org
Subject: [PATCH 2/2] unit: Add l_rtnl_* unit tests
Date: Fri, 14 Feb 2020 17:33:28 +0100	[thread overview]
Message-ID: <20200214163328.17647-3-wagi@monom.org> (raw)
In-Reply-To: <20200214163328.17647-1-wagi@monom.org>

[-- Attachment #1: Type: text/plain, Size: 6932 bytes --]

Test the get and dump functions because these don't need special
permissions to run.

For testing the other functions we need first setup a test environment
so we don't disturb the hosts routing or IP configuration.
---
 .gitignore       |   1 +
 Makefile.am      |   3 +
 unit/test-rtnl.c | 236 +++++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 240 insertions(+)
 create mode 100644 unit/test-rtnl.c

diff --git a/.gitignore b/.gitignore
index 372f0e7d3885..fca4b423678c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -32,6 +32,7 @@ unit/test-checksum
 unit/test-settings
 unit/test-netlink
 unit/test-genl-msg
+unit/test-rtnl
 unit/test-dbus
 unit/test-dbus-message
 unit/test-dbus-message-fds
diff --git a/Makefile.am b/Makefile.am
index 453f0d1b42d0..22b8f3daf5bb 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -167,6 +167,7 @@ unit_tests = unit/test-unit \
 			unit/test-settings \
 			unit/test-netlink \
 			unit/test-genl-msg \
+			unit/test-rtnl \
 			unit/test-siphash \
 			unit/test-cipher \
 			unit/test-random \
@@ -249,6 +250,8 @@ unit_test_netlink_LDADD = ell/libell-private.la
 
 unit_test_genl_msg_LDADD = ell/libell-private.la
 
+unit_test_rtnl_LDADD = ell/libell-private.la
+
 unit_test_dbus_LDADD = ell/libell-private.la
 
 unit_test_dbus_message_LDADD = ell/libell-private.la
diff --git a/unit/test-rtnl.c b/unit/test-rtnl.c
new file mode 100644
index 000000000000..454d0529fe7f
--- /dev/null
+++ b/unit/test-rtnl.c
@@ -0,0 +1,236 @@
+/*
+ *
+ *  Embedded Linux library
+ *
+ *  Copyright (C) 2011-2014  Intel Corporation. All rights reserved.
+ *  Copyright (C) 2020  Daniel Wagner <dwagner@suse.de>
+ *
+ *  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, write to the Free Software
+ *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#define _GNU_SOURCE
+#include <stdio.h>
+#include <unistd.h>
+#include <stdlib.h>
+#include <signal.h>
+#include <sys/wait.h>
+
+#include <ell/ell.h>
+#include "ell/dbus-private.h"
+
+static void signal_handler(uint32_t signo, void *user_data)
+{
+	switch (signo) {
+	case SIGINT:
+	case SIGTERM:
+		l_info("Terminate");
+		l_main_quit();
+		break;
+	}
+}
+
+static struct l_netlink *rtnl;
+
+struct rtnl_test {
+	const char *name;
+	void (*start)(struct l_netlink *rtnl, void *);
+	void *data;
+};
+
+static bool success;
+static struct l_queue *tests;
+static const struct l_queue_entry *current;
+
+static void test_add(const char *name,
+			void (*start)(struct l_netlink *rtnl, void *),
+			void *user_data)
+{
+	struct rtnl_test *test = l_new(struct rtnl_test, 1);
+
+	test->name = name;
+	test->start = start;
+	test->data = user_data;
+
+	if (!tests)
+		tests = l_queue_new();
+
+	l_queue_push_tail(tests, test);
+}
+
+static void test_next()
+{
+	struct rtnl_test *test;
+
+	if (current)
+		current = current->next;
+	else
+		current = l_queue_get_entries(tests);
+
+	if (!current) {
+		success = true;
+		l_main_quit();
+		return;
+	}
+
+	test = current->data;
+
+	l_info("TEST: %s", test->name);
+
+	test->start(rtnl, test->data);
+}
+
+#define test_assert(cond)	\
+	do {	\
+		if (!(cond)) {	\
+			l_info("TEST FAILED in %s at %s:%i: %s",	\
+				__func__, __FILE__, __LINE__,	\
+				L_STRINGIFY(cond));	\
+			l_main_quit();	\
+			return;	\
+		}	\
+	} while (0)
+
+
+static void route_dump_ipv4_cb(int error,
+			uint16_t type, const void *data,
+			uint32_t len, void *user_data)
+{
+	const struct rtmsg *rtmsg = data;
+	char *dst = NULL, *gateway = NULL, *src = NULL;
+	uint32_t idx;
+
+	test_assert(!error);
+	test_assert(type == RTM_NEWROUTE);
+
+	l_rtnl_route_extract_ipv4(rtmsg, len, &idx, &dst, &gateway, &src);
+
+	l_info("idx %d dst %s gateway %s src %s", idx, dst, gateway, src);
+
+	l_free(dst);
+	l_free(gateway);
+	l_free(src);
+}
+
+static void route_dump_ipv4_destroy_cb(void *user_data)
+{
+	test_next();
+}
+
+static void test_route_dump_ipv4(struct l_netlink *rtnl, void *user_data)
+{
+	test_assert(l_rtnl_route_dump_ipv4(rtnl, route_dump_ipv4_cb,
+					NULL, route_dump_ipv4_destroy_cb));
+}
+
+static void ifaddr_get_cb(int error,
+				uint16_t type, const void *data,
+				uint32_t len, void *user_data)
+{
+	const struct ifaddrmsg *ifa = data;
+	char *label = NULL, *ip = NULL, *broadcast = NULL;
+
+	test_assert(!error);
+	test_assert(type == RTM_NEWADDR);
+
+	l_rtnl_ifaddr_extract(ifa, len, &label, &ip, &broadcast);
+
+	l_info("label %s ip %s broadcast %s", label, ip, broadcast);
+
+	l_free(label);
+	l_free(ip);
+	l_free(broadcast);
+}
+
+static void ifaddr_get_destroy_cb(void *user_data)
+{
+	test_next();
+}
+
+static void test_ifaddr_get(struct l_netlink *rntl, void *user_data)
+{
+	test_assert(l_rtnl_ifaddr_get(rtnl, ifaddr_get_cb,
+					NULL, ifaddr_get_destroy_cb));
+}
+
+static void ifaddr_ipv6_get_cb(int error,
+				uint16_t type, const void *data,
+				uint32_t len, void *user_data)
+{
+	const struct ifaddrmsg *ifa = data;
+	char *ip = NULL;
+
+	test_assert(!error);
+	test_assert(type == RTM_NEWADDR);
+
+	l_rtnl_ifaddr_ipv6_extract(ifa, len, &ip);
+
+	l_info("ip %s", ip);
+
+	l_free(ip);
+}
+
+static void ifaddr_ipv6_get_destroy_cb(void *user_data)
+{
+	test_next();
+}
+
+static void test_ifaddr_ipv6_get(struct l_netlink *rntl, void *user_data)
+{
+	test_assert(l_rtnl_ifaddr_ipv6_get(rtnl, ifaddr_ipv6_get_cb,
+					NULL, ifaddr_ipv6_get_destroy_cb));
+}
+
+static void test_run(void)
+{
+	success = false;
+
+	l_idle_oneshot(test_next, NULL, NULL);
+	l_main_run_with_signal(signal_handler, NULL);
+}
+
+int main(int argc, char *argv[])
+{
+	if (!l_main_init())
+		return -1;
+
+	test_add("Dump IPv4 routing table", test_route_dump_ipv4, NULL);
+	test_add("Get IPv4 address", test_ifaddr_get, NULL);
+	test_add("Get IPv6 address", test_ifaddr_ipv6_get, NULL);
+
+	l_log_set_stderr();
+
+	rtnl = l_netlink_new(NETLINK_ROUTE);
+	if (!rtnl)
+		goto done;
+
+	test_run();
+
+	l_netlink_destroy(rtnl);
+
+done:
+	l_queue_destroy(tests, l_free);
+
+	l_main_exit();
+
+	if (!success)
+		abort();
+
+	return 0;
+}
-- 
2.25.0

  parent reply	other threads:[~2020-02-14 16:33 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-14 16:33 [PATCH 0/2] Import rntlutil from iwd Daniel Wagner
2020-02-14 16:33 ` [PATCH 1/2] rtnl: Add initial rtnl support Daniel Wagner
2020-02-14 16:33 ` Daniel Wagner [this message]
2020-02-14 17:53 ` [PATCH 0/2] Import rntlutil from iwd Denis Kenzior

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200214163328.17647-3-wagi@monom.org \
    --to=wagi@monom.org \
    --cc=ell@lists.01.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.