summaryrefslogtreecommitdiff
path: root/lib/tests/bitops_kunit.c
blob: 7fd9d697f131dfa38b5f261dc6255450dbdac156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2020 Intel Corporation
 * Copyright (C) 2026 Ryota Sakamoto <sakamo.ryota@gmail.com>
 */

#include <linux/bitops.h>
#include <linux/module.h>
#include <kunit/test.h>

/* use an enum because that's the most common BITMAP usage */
enum bitops_fun {
	BITOPS_4 = 4,
	BITOPS_7 = 7,
	BITOPS_11 = 11,
	BITOPS_31 = 31,
	BITOPS_88 = 88,
	BITOPS_LENGTH = 256
};

struct bitops_test_case {
	const char *str;
	const long nr;
};

static struct bitops_test_case bitops_cases[] = {
	{
		.str = "BITOPS_4",
		.nr = BITOPS_4,
	},
	{
		.str = "BITOPS_7",
		.nr = BITOPS_7,
	},
	{
		.str = "BITOPS_11",
		.nr = BITOPS_11,
	},
	{
		.str = "BITOPS_31",
		.nr = BITOPS_31,
	},
	{
		.str = "BITOPS_88",
		.nr = BITOPS_88,
	},
};

KUNIT_ARRAY_PARAM_DESC(bitops, bitops_cases, str);

static void test_set_bit_clear_bit(struct kunit *test)
{
	const struct bitops_test_case *params = test->param_value;
	DECLARE_BITMAP(bitmap, BITOPS_LENGTH);
	int bit_set;

	bitmap_zero(bitmap, BITOPS_LENGTH);

	set_bit(params->nr, bitmap);
	KUNIT_EXPECT_TRUE(test, test_bit(params->nr, bitmap));

	clear_bit(params->nr, bitmap);
	KUNIT_EXPECT_FALSE(test, test_bit(params->nr, bitmap));

	bit_set = find_first_bit(bitmap, BITOPS_LENGTH);
	KUNIT_EXPECT_EQ(test, bit_set, BITOPS_LENGTH);
}

static void test_change_bit(struct kunit *test)
{
	const struct bitops_test_case *params = test->param_value;
	DECLARE_BITMAP(bitmap, BITOPS_LENGTH);
	int bit_set;

	bitmap_zero(bitmap, BITOPS_LENGTH);

	change_bit(params->nr, bitmap);
	KUNIT_EXPECT_TRUE(test, test_bit(params->nr, bitmap));

	change_bit(params->nr, bitmap);
	KUNIT_EXPECT_FALSE(test, test_bit(params->nr, bitmap));

	bit_set = find_first_bit(bitmap, BITOPS_LENGTH);
	KUNIT_EXPECT_EQ(test, bit_set, BITOPS_LENGTH);
}

static void test_test_and_set_bit_test_and_clear_bit(struct kunit *test)
{
	const struct bitops_test_case *params = test->param_value;
	DECLARE_BITMAP(bitmap, BITOPS_LENGTH);
	int bit_set;

	bitmap_zero(bitmap, BITOPS_LENGTH);

	KUNIT_EXPECT_FALSE(test, test_and_set_bit(params->nr, bitmap));
	KUNIT_EXPECT_TRUE(test, test_bit(params->nr, bitmap));

	KUNIT_EXPECT_TRUE(test, test_and_set_bit(params->nr, bitmap));
	KUNIT_EXPECT_TRUE(test, test_bit(params->nr, bitmap));

	KUNIT_EXPECT_TRUE(test, test_and_clear_bit(params->nr, bitmap));
	KUNIT_EXPECT_FALSE(test, test_bit(params->nr, bitmap));

	KUNIT_EXPECT_FALSE(test, test_and_clear_bit(params->nr, bitmap));
	KUNIT_EXPECT_FALSE(test, test_bit(params->nr, bitmap));

	bit_set = find_first_bit(bitmap, BITOPS_LENGTH);
	KUNIT_EXPECT_EQ(test, bit_set, BITOPS_LENGTH);
}

static void test_test_and_change_bit(struct kunit *test)
{
	const struct bitops_test_case *params = test->param_value;
	DECLARE_BITMAP(bitmap, BITOPS_LENGTH);
	int bit_set;

	bitmap_zero(bitmap, BITOPS_LENGTH);

	KUNIT_EXPECT_FALSE(test, test_and_change_bit(params->nr, bitmap));
	KUNIT_EXPECT_TRUE(test, test_bit(params->nr, bitmap));

	KUNIT_EXPECT_TRUE(test, test_and_change_bit(params->nr, bitmap));
	KUNIT_EXPECT_FALSE(test, test_bit(params->nr, bitmap));

	bit_set = find_first_bit(bitmap, BITOPS_LENGTH);
	KUNIT_EXPECT_EQ(test, bit_set, BITOPS_LENGTH);
}

struct order_test_case {
	const char *str;
	const unsigned int count;
	const int expected;
};

static struct order_test_case order_test_cases[] = {
	{"0x00000003", 0x00000003,  2},
	{"0x00000004", 0x00000004,  2},
	{"0x00001fff", 0x00001fff, 13},
	{"0x00002000", 0x00002000, 13},
	{"0x50000000", 0x50000000, 31},
	{"0x80000000", 0x80000000, 31},
	{"0x80003000", 0x80003000, 32},
};

KUNIT_ARRAY_PARAM_DESC(order, order_test_cases, str);

static void test_get_count_order(struct kunit *test)
{
	const struct order_test_case *params = test->param_value;

	KUNIT_EXPECT_EQ(test, get_count_order(params->count), params->expected);
	KUNIT_EXPECT_EQ(test, get_count_order_long(params->count), params->expected);
}

#ifdef CONFIG_64BIT
struct order_long_test_case {
	const char *str;
	const unsigned long count;
	const int expected;
};

static struct order_long_test_case order_long_test_cases[] = {
	{"0x0000000300000000", 0x0000000300000000, 34},
	{"0x0000000400000000", 0x0000000400000000, 34},
	{"0x00001fff00000000", 0x00001fff00000000, 45},
	{"0x0000200000000000", 0x0000200000000000, 45},
	{"0x5000000000000000", 0x5000000000000000, 63},
	{"0x8000000000000000", 0x8000000000000000, 63},
	{"0x8000300000000000", 0x8000300000000000, 64},
};

KUNIT_ARRAY_PARAM_DESC(order_long, order_long_test_cases, str);

static void test_get_count_order_long(struct kunit *test)
{
	const struct order_long_test_case *params = test->param_value;

	KUNIT_EXPECT_EQ(test, get_count_order_long(params->count), params->expected);
}
#endif

static struct kunit_case bitops_test_cases[] = {
	KUNIT_CASE_PARAM(test_set_bit_clear_bit, bitops_gen_params),
	KUNIT_CASE_PARAM(test_change_bit, bitops_gen_params),
	KUNIT_CASE_PARAM(test_test_and_set_bit_test_and_clear_bit, bitops_gen_params),
	KUNIT_CASE_PARAM(test_test_and_change_bit, bitops_gen_params),
	KUNIT_CASE_PARAM(test_get_count_order, order_gen_params),
#ifdef CONFIG_64BIT
	KUNIT_CASE_PARAM(test_get_count_order_long, order_long_gen_params),
#endif
	{},
};

static struct kunit_suite bitops_test_suite = {
	.name = "bitops",
	.test_cases = bitops_test_cases,
};

kunit_test_suite(bitops_test_suite);

MODULE_AUTHOR("Jesse Brandeburg <jesse.brandeburg@intel.com>");
MODULE_AUTHOR("Wei Yang <richard.weiyang@gmail.com>");
MODULE_AUTHOR("Ryota Sakamoto <sakamo.ryota@gmail.com>");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("Bit testing module");