Blame SOURCES/0119-multipath-tests-tests-for-adding-and-removing-featur.patch

8b67ad
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
8b67ad
From: Benjamin Marzinski <bmarzins@redhat.com>
8b67ad
Date: Fri, 7 Oct 2022 12:35:39 -0500
8b67ad
Subject: [PATCH] multipath tests: tests for adding and removing features
8b67ad
8b67ad
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
8b67ad
Reviewed-by: Martin Wilck <mwilck@suse.com>
8b67ad
---
8b67ad
 tests/Makefile   |   2 +-
8b67ad
 tests/features.c | 318 +++++++++++++++++++++++++++++++++++++++++++++++
8b67ad
 2 files changed, 319 insertions(+), 1 deletion(-)
8b67ad
 create mode 100644 tests/features.c
8b67ad
8b67ad
diff --git a/tests/Makefile b/tests/Makefile
8b67ad
index 77ff3249..914413b8 100644
8b67ad
--- a/tests/Makefile
8b67ad
+++ b/tests/Makefile
8b67ad
@@ -13,7 +13,7 @@ CFLAGS += $(BIN_CFLAGS) -I$(multipathdir) -I$(mpathcmddir) \
8b67ad
 LIBDEPS += -L$(multipathdir) -lmultipath -lcmocka
8b67ad
 
8b67ad
 TESTS := uevent parser util dmevents hwtable blacklist unaligned vpd pgpolicy \
8b67ad
-	 alias directio
8b67ad
+	 alias directio features
8b67ad
 
8b67ad
 .SILENT: $(TESTS:%=%.o)
8b67ad
 .PRECIOUS: $(TESTS:%=%-test)
8b67ad
diff --git a/tests/features.c b/tests/features.c
8b67ad
new file mode 100644
8b67ad
index 00000000..1e2e6bff
8b67ad
--- /dev/null
8b67ad
+++ b/tests/features.c
8b67ad
@@ -0,0 +1,318 @@
8b67ad
+#include <stddef.h>
8b67ad
+#include <stdarg.h>
8b67ad
+#include <setjmp.h>
8b67ad
+#include <cmocka.h>
8b67ad
+
8b67ad
+#include "structs.h"
8b67ad
+#include "globals.c"
8b67ad
+
8b67ad
+static void test_af_null_features_ptr(void **state)
8b67ad
+{
8b67ad
+	assert_int_equal(add_feature(NULL, "test"), 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void af_helper(const char *features_start, const char *addition,
8b67ad
+		      const char *features_end, int result)
8b67ad
+{
8b67ad
+	char *f = NULL, *orig = NULL;
8b67ad
+
8b67ad
+	if (features_start) {
8b67ad
+		f = strdup(features_start);
8b67ad
+		assert_non_null(f);
8b67ad
+		orig = f;
8b67ad
+	}
8b67ad
+	assert_int_equal(add_feature(&f, addition), result);
8b67ad
+	if (result != 0 || features_end == NULL)
8b67ad
+		assert_ptr_equal(orig, f);
8b67ad
+	else
8b67ad
+		assert_string_equal(f, features_end);
8b67ad
+	free(f);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_null_addition1(void **state)
8b67ad
+{
8b67ad
+	af_helper("0", NULL, NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_null_addition2(void **state)
8b67ad
+{
8b67ad
+	af_helper("1 queue_if_no_path", NULL, NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_empty_addition(void **state)
8b67ad
+{
8b67ad
+	af_helper("2 pg_init_retries 5", "", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_invalid_addition1(void **state)
8b67ad
+{
8b67ad
+	af_helper("2 pg_init_retries 5", " ", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_invalid_addition2(void **state)
8b67ad
+{
8b67ad
+	af_helper("2 pg_init_retries 5", "\tbad", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_invalid_addition3(void **state)
8b67ad
+{
8b67ad
+	af_helper("2 pg_init_retries 5", "bad ", NULL, 1);
8b67ad
+}
8b67ad
+ 
8b67ad
+static void test_af_invalid_addition4(void **state)
8b67ad
+{
8b67ad
+	af_helper("2 pg_init_retries 5", " bad ", NULL, 1);
8b67ad
+}
8b67ad
+ 
8b67ad
+static void test_af_null_features1(void **state)
8b67ad
+{
8b67ad
+	af_helper(NULL, "test", "1 test", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_null_features2(void **state)
8b67ad
+{
8b67ad
+	af_helper(NULL, "test\t  more", "2 test\t  more", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_null_features3(void **state)
8b67ad
+{
8b67ad
+	af_helper(NULL, "test\neven\tmore", "3 test\neven\tmore", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_already_exists1(void **state)
8b67ad
+{
8b67ad
+	af_helper("4 this is a test", "test", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_already_exists2(void **state)
8b67ad
+{
8b67ad
+	af_helper("5 contest testy intestine test retest", "test", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_almost_exists(void **state)
8b67ad
+{
8b67ad
+	af_helper("3 contest testy intestine", "test",
8b67ad
+		  "4 contest testy intestine test", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_bad_features1(void **state)
8b67ad
+{
8b67ad
+	af_helper("bad", "test", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_bad_features2(void **state)
8b67ad
+{
8b67ad
+	af_helper("1bad", "test", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_add1(void **state)
8b67ad
+{
8b67ad
+	af_helper("0", "test", "1 test", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_add2(void **state)
8b67ad
+{
8b67ad
+	af_helper("0", "this is a test", "4 this is a test", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_add3(void **state)
8b67ad
+{
8b67ad
+	af_helper("1 features", "more values", "3 features more values", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_af_add4(void **state)
8b67ad
+{
8b67ad
+	af_helper("2 one\ttwo", "three\t four", "4 one\ttwo three\t four", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static int test_add_features(void)
8b67ad
+{
8b67ad
+	const struct CMUnitTest tests[] = {
8b67ad
+		cmocka_unit_test(test_af_null_features_ptr),
8b67ad
+		cmocka_unit_test(test_af_null_addition1),
8b67ad
+		cmocka_unit_test(test_af_null_addition2),
8b67ad
+		cmocka_unit_test(test_af_empty_addition),
8b67ad
+		cmocka_unit_test(test_af_invalid_addition1),
8b67ad
+		cmocka_unit_test(test_af_invalid_addition2),
8b67ad
+		cmocka_unit_test(test_af_invalid_addition3),
8b67ad
+		cmocka_unit_test(test_af_invalid_addition4),
8b67ad
+		cmocka_unit_test(test_af_null_features1),
8b67ad
+		cmocka_unit_test(test_af_null_features2),
8b67ad
+		cmocka_unit_test(test_af_null_features3),
8b67ad
+		cmocka_unit_test(test_af_already_exists1),
8b67ad
+		cmocka_unit_test(test_af_already_exists2),
8b67ad
+		cmocka_unit_test(test_af_almost_exists),
8b67ad
+		cmocka_unit_test(test_af_bad_features1),
8b67ad
+		cmocka_unit_test(test_af_bad_features2),
8b67ad
+		cmocka_unit_test(test_af_add1),
8b67ad
+		cmocka_unit_test(test_af_add2),
8b67ad
+		cmocka_unit_test(test_af_add3),
8b67ad
+		cmocka_unit_test(test_af_add4),
8b67ad
+	};
8b67ad
+	return cmocka_run_group_tests(tests, NULL, NULL);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_null_features_ptr(void **state)
8b67ad
+{
8b67ad
+	assert_int_equal(remove_feature(NULL, "test"), 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_null_features(void **state)
8b67ad
+{
8b67ad
+	char *f = NULL;
8b67ad
+	assert_int_equal(remove_feature(&f, "test"), 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void rf_helper(const char *features_start, const char *removal,
8b67ad
+		      const char *features_end, int result)
8b67ad
+{
8b67ad
+	char *f = strdup(features_start);
8b67ad
+	char *orig = f;
8b67ad
+
8b67ad
+	assert_non_null(f);
8b67ad
+	assert_int_equal(remove_feature(&f, removal), result);
8b67ad
+	if (result != 0 || features_end == NULL)
8b67ad
+		assert_ptr_equal(orig, f);
8b67ad
+	else
8b67ad
+		assert_string_equal(f, features_end);
8b67ad
+	free(f);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_null_removal(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 feature", NULL, NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_empty_removal(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 feature", "", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_invalid_removal1(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 feature", " ", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_invalid_removal2(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 feature", " bad", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_invalid_removal3(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 feature", "bad\n", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_invalid_removal4(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 feature", "\tbad  \n", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_bad_features1(void **state)
8b67ad
+{
8b67ad
+	rf_helper("invalid feature test string", "test", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_bad_features2(void **state)
8b67ad
+{
8b67ad
+	rf_helper("2no space test", "test", NULL, 1);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_missing_removal1(void **state)
8b67ad
+{
8b67ad
+	rf_helper("0", "test", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_missing_removal2(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 detest", "test", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_missing_removal3(void **state)
8b67ad
+{
8b67ad
+	rf_helper("4 testing one two three", "test", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_missing_removal4(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 contestant", "test", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_missing_removal5(void **state)
8b67ad
+{
8b67ad
+	rf_helper("3 testament protest detestable", "test", NULL, 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_remove_all_features1(void **state)
8b67ad
+{
8b67ad
+	rf_helper("1 test", "test", "0", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_remove_all_features2(void **state)
8b67ad
+{
8b67ad
+	rf_helper("2 another\t test", "another\t test", "0", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_remove1(void **state)
8b67ad
+{
8b67ad
+	rf_helper("2 feature1 feature2", "feature2", "1 feature1", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_remove2(void **state)
8b67ad
+{
8b67ad
+	rf_helper("2 feature1 feature2", "feature1", "1 feature2", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_remove3(void **state)
8b67ad
+{
8b67ad
+	rf_helper("3 test1 test\ttest2", "test", "2 test1 test2", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_remove4(void **state)
8b67ad
+{
8b67ad
+	rf_helper("4 this\t is a test", "is a", "2 this\t test", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static void test_rf_remove5(void **state)
8b67ad
+{
8b67ad
+	rf_helper("3 one more test", "more test", "1 one", 0);
8b67ad
+}
8b67ad
+
8b67ad
+static int test_remove_features(void)
8b67ad
+{
8b67ad
+	const struct CMUnitTest tests[] = {
8b67ad
+		cmocka_unit_test(test_rf_null_features_ptr),
8b67ad
+		cmocka_unit_test(test_rf_null_features),
8b67ad
+		cmocka_unit_test(test_rf_null_removal),
8b67ad
+		cmocka_unit_test(test_rf_empty_removal),
8b67ad
+		cmocka_unit_test(test_rf_invalid_removal1),
8b67ad
+		cmocka_unit_test(test_rf_invalid_removal2),
8b67ad
+		cmocka_unit_test(test_rf_invalid_removal3),
8b67ad
+		cmocka_unit_test(test_rf_invalid_removal4),
8b67ad
+		cmocka_unit_test(test_rf_bad_features1),
8b67ad
+		cmocka_unit_test(test_rf_bad_features2),
8b67ad
+		cmocka_unit_test(test_rf_missing_removal1),
8b67ad
+		cmocka_unit_test(test_rf_missing_removal2),
8b67ad
+		cmocka_unit_test(test_rf_missing_removal3),
8b67ad
+		cmocka_unit_test(test_rf_missing_removal4),
8b67ad
+		cmocka_unit_test(test_rf_missing_removal5),
8b67ad
+		cmocka_unit_test(test_rf_remove_all_features1),
8b67ad
+		cmocka_unit_test(test_rf_remove_all_features2),
8b67ad
+		cmocka_unit_test(test_rf_remove1),
8b67ad
+		cmocka_unit_test(test_rf_remove2),
8b67ad
+		cmocka_unit_test(test_rf_remove3),
8b67ad
+		cmocka_unit_test(test_rf_remove4),
8b67ad
+		cmocka_unit_test(test_rf_remove5),
8b67ad
+	};
8b67ad
+	return cmocka_run_group_tests(tests, NULL, NULL);
8b67ad
+}
8b67ad
+
8b67ad
+int main(void)
8b67ad
+{
8b67ad
+	int ret = 0;
8b67ad
+
8b67ad
+	ret += test_add_features();
8b67ad
+	ret += test_remove_features();
8b67ad
+
8b67ad
+	return ret;
8b67ad
+}