Blame SOURCES/0121-multipath-tests-tests-for-reconcile_features_with_qu.patch

1595c1
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
1595c1
From: Benjamin Marzinski <bmarzins@redhat.com>
1595c1
Date: Fri, 7 Oct 2022 12:35:41 -0500
1595c1
Subject: [PATCH] multipath tests: tests for reconcile_features_with_queue_mode
1595c1
1595c1
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
1595c1
Reviewed-by: Martin Wilck <mwilck@suse.com>
1595c1
---
1595c1
 tests/Makefile   |   2 +
1595c1
 tests/features.c | 232 ++++++++++++++++++++++++++++++++++++++++++++++-
1595c1
 2 files changed, 233 insertions(+), 1 deletion(-)
1595c1
1595c1
diff --git a/tests/Makefile b/tests/Makefile
1595c1
index 914413b8..f3e49487 100644
1595c1
--- a/tests/Makefile
1595c1
+++ b/tests/Makefile
1595c1
@@ -29,6 +29,7 @@ endif
1595c1
 ifneq ($(DIO_TEST_DEV),)
1595c1
 directio-test_FLAGS := -DDIO_TEST_DEV=\"$(DIO_TEST_DEV)\"
1595c1
 endif
1595c1
+features-test_FLAGS := -I$(multipathdir)/nvme
1595c1
 
1595c1
 # test-specific linker flags
1595c1
 # XYZ-test_TESTDEPS: test libraries containing __wrap_xyz functions
1595c1
@@ -53,6 +54,7 @@ alias-test_LIBDEPS := -lpthread -ldl
1595c1
 ifneq ($(DIO_TEST_DEV),)
1595c1
 directio-test_LIBDEPS := -laio
1595c1
 endif
1595c1
+features-test_LIBDEPS := -ludev -lpthread
1595c1
 
1595c1
 %.o: %.c
1595c1
 	$(CC) $(CFLAGS) $($*-test_FLAGS) -c -o $@ $<
1595c1
diff --git a/tests/features.c b/tests/features.c
1595c1
index 1e2e6bff..01fbccb7 100644
1595c1
--- a/tests/features.c
1595c1
+++ b/tests/features.c
1595c1
@@ -1,9 +1,10 @@
1595c1
+#define _GNU_SOURCE
1595c1
 #include <stddef.h>
1595c1
 #include <stdarg.h>
1595c1
 #include <setjmp.h>
1595c1
 #include <cmocka.h>
1595c1
 
1595c1
-#include "structs.h"
1595c1
+#include "../libmultipath/propsel.c"
1595c1
 #include "globals.c"
1595c1
 
1595c1
 static void test_af_null_features_ptr(void **state)
1595c1
@@ -307,12 +308,241 @@ static int test_remove_features(void)
1595c1
 	return cmocka_run_group_tests(tests, NULL, NULL);
1595c1
 }
1595c1
 
1595c1
+static void test_cf_null_features(void **state)
1595c1
+{
1595c1
+	struct multipath mp = {
1595c1
+			.alias = "test",
1595c1
+	};
1595c1
+	reconcile_features_with_queue_mode(&mp);
1595c1
+	assert_null(mp.features);
1595c1
+}
1595c1
+
1595c1
+static void cf_helper(const char *features_start, const char *features_end,
1595c1
+		      int queue_mode_start, int queue_mode_end)
1595c1
+{
1595c1
+	struct multipath mp = {
1595c1
+			.alias = "test",
1595c1
+			.features = strdup(features_start),
1595c1
+			.queue_mode = queue_mode_start,
1595c1
+	};
1595c1
+	char *orig = mp.features;
1595c1
+
1595c1
+	assert_non_null(orig);
1595c1
+	reconcile_features_with_queue_mode(&mp);
1595c1
+	if (!features_end)
1595c1
+		assert_ptr_equal(orig, mp.features);
1595c1
+	else
1595c1
+		assert_string_equal(mp.features, features_end);
1595c1
+	free(mp.features);
1595c1
+	assert_int_equal(mp.queue_mode, queue_mode_end);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_unset1(void **state)
1595c1
+{
1595c1
+	cf_helper("0", NULL, QUEUE_MODE_UNDEF, QUEUE_MODE_UNDEF);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_unset2(void **state)
1595c1
+{
1595c1
+	cf_helper("1 queue_mode", NULL, QUEUE_MODE_UNDEF, QUEUE_MODE_UNDEF);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_unset3(void **state)
1595c1
+{
1595c1
+	cf_helper("queue_mode", NULL, QUEUE_MODE_UNDEF, QUEUE_MODE_UNDEF);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_unset4(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_model bio", NULL, QUEUE_MODE_UNDEF,
1595c1
+		  QUEUE_MODE_UNDEF);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_unset5(void **state)
1595c1
+{
1595c1
+	cf_helper("1 queue_if_no_path", NULL, QUEUE_MODE_UNDEF,
1595c1
+		  QUEUE_MODE_UNDEF);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_invalid_unset1(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode biop", "0", QUEUE_MODE_UNDEF, QUEUE_MODE_UNDEF);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_invalid_unset2(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_mode rqs queue_if_no_path", "1 queue_if_no_path",
1595c1
+		  QUEUE_MODE_UNDEF, QUEUE_MODE_UNDEF);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_rq_unset1(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode rq", NULL, QUEUE_MODE_UNDEF, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_rq_unset2(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode mq", NULL, QUEUE_MODE_UNDEF, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_bio_unset(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode bio", NULL, QUEUE_MODE_UNDEF, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_bio1(void **state)
1595c1
+{
1595c1
+	cf_helper("1 queue_if_no_path", "3 queue_if_no_path queue_mode bio",
1595c1
+		  QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_bio2(void **state)
1595c1
+{
1595c1
+	cf_helper("0", "2 queue_mode bio", QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_bio3(void **state)
1595c1
+{
1595c1
+	cf_helper("2 pg_init_retries 50", "4 pg_init_retries 50 queue_mode bio",
1595c1
+		  QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_invalid_bio1(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode bad", "2 queue_mode bio",
1595c1
+		  QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_invalid_bio2(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_if_no_path queue_mode\tbad", "3 queue_if_no_path queue_mode bio",
1595c1
+		  QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_bio_bio1(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode bio", NULL, QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_bio_bio2(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_if_no_path queue_mode bio", NULL, QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_bio_bio3(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_mode\nbio queue_if_no_path", NULL, QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_bio_rq1(void **state)
1595c1
+{
1595c1
+	cf_helper("2\nqueue_mode\tbio", "0", QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_bio_rq2(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_if_no_path\nqueue_mode bio", "1 queue_if_no_path",
1595c1
+		  QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_bio_rq3(void **state)
1595c1
+{
1595c1
+	cf_helper("4 queue_mode bio pg_init_retries 20", "2 pg_init_retries 20",
1595c1
+		  QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_rq1(void **state)
1595c1
+{
1595c1
+	cf_helper("0", NULL, QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_unset_rq2(void **state)
1595c1
+{
1595c1
+	cf_helper("2 pg_init_retries 15", NULL, QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_invalid_rq1(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode bionic", "0", QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_invalid_rq2(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_mode b\nqueue_if_no_path", "1 queue_if_no_path",
1595c1
+		  QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_rq_rq1(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode rq", NULL, QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_rq_rq2(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_mode\t \trq\nqueue_if_no_path", NULL, QUEUE_MODE_RQ, QUEUE_MODE_RQ);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_rq_bio1(void **state)
1595c1
+{
1595c1
+	cf_helper("2 queue_mode rq", "2 queue_mode bio", QUEUE_MODE_BIO,
1595c1
+		  QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_rq_bio2(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_if_no_path\nqueue_mode rq", "3 queue_if_no_path queue_mode bio", QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static void test_cf_rq_bio3(void **state)
1595c1
+{
1595c1
+	cf_helper("3 queue_mode rq\nqueue_if_no_path", "3 queue_if_no_path queue_mode bio", QUEUE_MODE_BIO, QUEUE_MODE_BIO);
1595c1
+}
1595c1
+
1595c1
+static int test_reconcile_features(void)
1595c1
+{
1595c1
+	const struct CMUnitTest tests[] = {
1595c1
+		cmocka_unit_test(test_cf_null_features),
1595c1
+		cmocka_unit_test(test_cf_unset_unset1),
1595c1
+		cmocka_unit_test(test_cf_unset_unset2),
1595c1
+		cmocka_unit_test(test_cf_unset_unset3),
1595c1
+		cmocka_unit_test(test_cf_unset_unset4),
1595c1
+		cmocka_unit_test(test_cf_unset_unset5),
1595c1
+		cmocka_unit_test(test_cf_invalid_unset1),
1595c1
+		cmocka_unit_test(test_cf_invalid_unset2),
1595c1
+		cmocka_unit_test(test_cf_rq_unset1),
1595c1
+		cmocka_unit_test(test_cf_rq_unset2),
1595c1
+		cmocka_unit_test(test_cf_bio_unset),
1595c1
+		cmocka_unit_test(test_cf_unset_bio1),
1595c1
+		cmocka_unit_test(test_cf_unset_bio2),
1595c1
+		cmocka_unit_test(test_cf_unset_bio3),
1595c1
+		cmocka_unit_test(test_cf_invalid_bio1),
1595c1
+		cmocka_unit_test(test_cf_invalid_bio2),
1595c1
+		cmocka_unit_test(test_cf_bio_bio1),
1595c1
+		cmocka_unit_test(test_cf_bio_bio2),
1595c1
+		cmocka_unit_test(test_cf_bio_bio3),
1595c1
+		cmocka_unit_test(test_cf_bio_rq1),
1595c1
+		cmocka_unit_test(test_cf_bio_rq2),
1595c1
+		cmocka_unit_test(test_cf_bio_rq3),
1595c1
+		cmocka_unit_test(test_cf_unset_rq1),
1595c1
+		cmocka_unit_test(test_cf_unset_rq2),
1595c1
+		cmocka_unit_test(test_cf_invalid_rq1),
1595c1
+		cmocka_unit_test(test_cf_invalid_rq2),
1595c1
+		cmocka_unit_test(test_cf_rq_rq1),
1595c1
+		cmocka_unit_test(test_cf_rq_rq2),
1595c1
+		cmocka_unit_test(test_cf_rq_bio1),
1595c1
+		cmocka_unit_test(test_cf_rq_bio2),
1595c1
+		cmocka_unit_test(test_cf_rq_bio3),
1595c1
+	};
1595c1
+	return cmocka_run_group_tests(tests, NULL, NULL);
1595c1
+}
1595c1
+
1595c1
 int main(void)
1595c1
 {
1595c1
 	int ret = 0;
1595c1
 
1595c1
 	ret += test_add_features();
1595c1
 	ret += test_remove_features();
1595c1
+	ret += test_reconcile_features();
1595c1
 
1595c1
 	return ret;
1595c1
 }