~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/lib/test_linear_ranges.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /lib/test_linear_ranges.c (Architecture ppc) and /lib/test_linear_ranges.c (Architecture sparc64)


  1 // SPDX-License-Identifier: GPL-2.0                 1 // SPDX-License-Identifier: GPL-2.0
  2 /*                                                  2 /*
  3  * KUnit test for the linear_ranges helper.         3  * KUnit test for the linear_ranges helper.
  4  *                                                  4  *
  5  * Copyright (C) 2020, ROHM Semiconductors.         5  * Copyright (C) 2020, ROHM Semiconductors.
  6  * Author: Matti Vaittinen <matti.vaittien@fi.      6  * Author: Matti Vaittinen <matti.vaittien@fi.rohmeurope.com>
  7  */                                                 7  */
  8 #include <kunit/test.h>                             8 #include <kunit/test.h>
  9                                                     9 
 10 #include <linux/linear_range.h>                    10 #include <linux/linear_range.h>
 11                                                    11 
 12 /* First things first. I deeply dislike unit-t     12 /* First things first. I deeply dislike unit-tests. I have seen all the hell
 13  * breaking loose when people who think the un     13  * breaking loose when people who think the unit tests are "the silver bullet"
 14  * to kill bugs get to decide how a company sh     14  * to kill bugs get to decide how a company should implement testing strategy...
 15  *                                                 15  *
 16  * Believe me, it may get _really_ ridiculous.     16  * Believe me, it may get _really_ ridiculous. It is tempting to think that
 17  * walking through all the possible execution      17  * walking through all the possible execution branches will nail down 100% of
 18  * bugs. This may lead to ideas about demands      18  * bugs. This may lead to ideas about demands to get certain % of "test
 19  * coverage" - measured as line coverage. And      19  * coverage" - measured as line coverage. And that is one of the worst things
 20  * you can do.                                     20  * you can do.
 21  *                                                 21  *
 22  * Ask people to provide line coverage and the     22  * Ask people to provide line coverage and they do. I've seen clever tools
 23  * which generate test cases to test the exist     23  * which generate test cases to test the existing functions - and by default
 24  * these tools expect code to be correct and j     24  * these tools expect code to be correct and just generate checks which are
 25  * passing when ran against current code-base.     25  * passing when ran against current code-base. Run this generator and you'll get
 26  * tests that do not test code is correct but      26  * tests that do not test code is correct but just verify nothing changes.
 27  * Problem is that testing working code is poi     27  * Problem is that testing working code is pointless. And if it is not
 28  * working, your test must not assume it is wo     28  * working, your test must not assume it is working. You won't catch any bugs
 29  * by such tests. What you can do is to genera     29  * by such tests. What you can do is to generate a huge amount of tests.
 30  * Especially if you were are asked to proivde     30  * Especially if you were are asked to proivde 100% line-coverage x_x. So what
 31  * does these tests - which are not finding an     31  * does these tests - which are not finding any bugs now - do?
 32  *                                                 32  *
 33  * They add inertia to every future developmen     33  * They add inertia to every future development. I think it was Terry Pratchet
 34  * who wrote someone having same impact as thi     34  * who wrote someone having same impact as thick syrup has to chronometre.
 35  * Excessive amount of unit-tests have this ef     35  * Excessive amount of unit-tests have this effect to development. If you do
 36  * actually find _any_ bug from code in such e     36  * actually find _any_ bug from code in such environment and try fixing it...
 37  * ...chances are you also need to fix the tes     37  * ...chances are you also need to fix the test cases. In sunny day you fix one
 38  * test. But I've done refactoring which resul     38  * test. But I've done refactoring which resulted 500+ broken tests (which had
 39  * really zero value other than proving to man     39  * really zero value other than proving to managers that we do do "quality")...
 40  *                                                 40  *
 41  * After this being said - there are situation     41  * After this being said - there are situations where UTs can be handy. If you
 42  * have algorithms which take some input and s     42  * have algorithms which take some input and should produce output - then you
 43  * can implement few, carefully selected simpl     43  * can implement few, carefully selected simple UT-cases which test this. I've
 44  * previously used this for example for netlin     44  * previously used this for example for netlink and device-tree data parsing
 45  * functions. Feed some data examples to funct     45  * functions. Feed some data examples to functions and verify the output is as
 46  * expected. I am not covering all the cases b     46  * expected. I am not covering all the cases but I will see the logic should be
 47  * working.                                        47  * working.
 48  *                                                 48  *
 49  * Here we also do some minor testing. I don't     49  * Here we also do some minor testing. I don't want to go through all branches
 50  * or test more or less obvious things - but I     50  * or test more or less obvious things - but I want to see the main logic is
 51  * working. And I definitely don't want to add     51  * working. And I definitely don't want to add 500+ test cases that break when
 52  * some simple fix is done x_x. So - let's onl     52  * some simple fix is done x_x. So - let's only add few, well selected tests
 53  * which ensure as much logic is good as possi     53  * which ensure as much logic is good as possible.
 54  */                                                54  */
 55                                                    55 
 56 /*                                                 56 /*
 57  * Test Range 1:                                   57  * Test Range 1:
 58  * selectors:   2       3       4       5          58  * selectors:   2       3       4       5       6
 59  * values (5):  10      20      30      40         59  * values (5):  10      20      30      40      50
 60  *                                                 60  *
 61  * Test Range 2:                                   61  * Test Range 2:
 62  * selectors:   7       8       9       10         62  * selectors:   7       8       9       10
 63  * values (4):  100     150     200     250        63  * values (4):  100     150     200     250
 64  */                                                64  */
 65                                                    65 
 66 #define RANGE1_MIN 10                              66 #define RANGE1_MIN 10
 67 #define RANGE1_MIN_SEL 2                           67 #define RANGE1_MIN_SEL 2
 68 #define RANGE1_STEP 10                             68 #define RANGE1_STEP 10
 69                                                    69 
 70 /* 2, 3, 4, 5, 6 */                                70 /* 2, 3, 4, 5, 6 */
 71 static const unsigned int range1_sels[] = { RA     71 static const unsigned int range1_sels[] = { RANGE1_MIN_SEL, RANGE1_MIN_SEL + 1,
 72                                             RA     72                                             RANGE1_MIN_SEL + 2,
 73                                             RA     73                                             RANGE1_MIN_SEL + 3,
 74                                             RA     74                                             RANGE1_MIN_SEL + 4 };
 75 /* 10, 20, 30, 40, 50 */                           75 /* 10, 20, 30, 40, 50 */
 76 static const unsigned int range1_vals[] = { RA     76 static const unsigned int range1_vals[] = { RANGE1_MIN, RANGE1_MIN +
 77                                             RA     77                                             RANGE1_STEP,
 78                                             RA     78                                             RANGE1_MIN + RANGE1_STEP * 2,
 79                                             RA     79                                             RANGE1_MIN + RANGE1_STEP * 3,
 80                                             RA     80                                             RANGE1_MIN + RANGE1_STEP * 4 };
 81                                                    81 
 82 #define RANGE2_MIN 100                             82 #define RANGE2_MIN 100
 83 #define RANGE2_MIN_SEL 7                           83 #define RANGE2_MIN_SEL 7
 84 #define RANGE2_STEP 50                             84 #define RANGE2_STEP 50
 85                                                    85 
 86 /*  7, 8, 9, 10 */                                 86 /*  7, 8, 9, 10 */
 87 static const unsigned int range2_sels[] = { RA     87 static const unsigned int range2_sels[] = { RANGE2_MIN_SEL, RANGE2_MIN_SEL + 1,
 88                                             RA     88                                             RANGE2_MIN_SEL + 2,
 89                                             RA     89                                             RANGE2_MIN_SEL + 3 };
 90 /* 100, 150, 200, 250 */                           90 /* 100, 150, 200, 250 */
 91 static const unsigned int range2_vals[] = { RA     91 static const unsigned int range2_vals[] = { RANGE2_MIN, RANGE2_MIN +
 92                                             RA     92                                             RANGE2_STEP,
 93                                             RA     93                                             RANGE2_MIN + RANGE2_STEP * 2,
 94                                             RA     94                                             RANGE2_MIN + RANGE2_STEP * 3 };
 95                                                    95 
 96 #define RANGE1_NUM_VALS (ARRAY_SIZE(range1_val     96 #define RANGE1_NUM_VALS (ARRAY_SIZE(range1_vals))
 97 #define RANGE2_NUM_VALS (ARRAY_SIZE(range2_val     97 #define RANGE2_NUM_VALS (ARRAY_SIZE(range2_vals))
 98 #define RANGE_NUM_VALS (RANGE1_NUM_VALS + RANG     98 #define RANGE_NUM_VALS (RANGE1_NUM_VALS + RANGE2_NUM_VALS)
 99                                                    99 
100 #define RANGE1_MAX_SEL (RANGE1_MIN_SEL + RANGE    100 #define RANGE1_MAX_SEL (RANGE1_MIN_SEL + RANGE1_NUM_VALS - 1)
101 #define RANGE1_MAX_VAL (range1_vals[RANGE1_NUM    101 #define RANGE1_MAX_VAL (range1_vals[RANGE1_NUM_VALS - 1])
102                                                   102 
103 #define RANGE2_MAX_SEL (RANGE2_MIN_SEL + RANGE    103 #define RANGE2_MAX_SEL (RANGE2_MIN_SEL + RANGE2_NUM_VALS - 1)
104 #define RANGE2_MAX_VAL (range2_vals[RANGE2_NUM    104 #define RANGE2_MAX_VAL (range2_vals[RANGE2_NUM_VALS - 1])
105                                                   105 
106 #define SMALLEST_SEL RANGE1_MIN_SEL               106 #define SMALLEST_SEL RANGE1_MIN_SEL
107 #define SMALLEST_VAL RANGE1_MIN                   107 #define SMALLEST_VAL RANGE1_MIN
108                                                   108 
109 static struct linear_range testr[] = {            109 static struct linear_range testr[] = {
110         LINEAR_RANGE(RANGE1_MIN, RANGE1_MIN_SE    110         LINEAR_RANGE(RANGE1_MIN, RANGE1_MIN_SEL, RANGE1_MAX_SEL, RANGE1_STEP),
111         LINEAR_RANGE(RANGE2_MIN, RANGE2_MIN_SE    111         LINEAR_RANGE(RANGE2_MIN, RANGE2_MIN_SEL, RANGE2_MAX_SEL, RANGE2_STEP),
112 };                                                112 };
113                                                   113 
114 static void range_test_get_value(struct kunit     114 static void range_test_get_value(struct kunit *test)
115 {                                                 115 {
116         int ret, i;                               116         int ret, i;
117         unsigned int sel, val;                    117         unsigned int sel, val;
118                                                   118 
119         for (i = 0; i < RANGE1_NUM_VALS; i++)     119         for (i = 0; i < RANGE1_NUM_VALS; i++) {
120                 sel = range1_sels[i];             120                 sel = range1_sels[i];
121                 ret = linear_range_get_value_a    121                 ret = linear_range_get_value_array(&testr[0], 2, sel, &val);
122                 KUNIT_EXPECT_EQ(test, 0, ret);    122                 KUNIT_EXPECT_EQ(test, 0, ret);
123                 KUNIT_EXPECT_EQ(test, val, ran    123                 KUNIT_EXPECT_EQ(test, val, range1_vals[i]);
124         }                                         124         }
125         for (i = 0; i < RANGE2_NUM_VALS; i++)     125         for (i = 0; i < RANGE2_NUM_VALS; i++) {
126                 sel = range2_sels[i];             126                 sel = range2_sels[i];
127                 ret = linear_range_get_value_a    127                 ret = linear_range_get_value_array(&testr[0], 2, sel, &val);
128                 KUNIT_EXPECT_EQ(test, 0, ret);    128                 KUNIT_EXPECT_EQ(test, 0, ret);
129                 KUNIT_EXPECT_EQ(test, val, ran    129                 KUNIT_EXPECT_EQ(test, val, range2_vals[i]);
130         }                                         130         }
131         ret = linear_range_get_value_array(&te    131         ret = linear_range_get_value_array(&testr[0], 2, sel + 1, &val);
132         KUNIT_EXPECT_NE(test, 0, ret);            132         KUNIT_EXPECT_NE(test, 0, ret);
133 }                                                 133 }
134                                                   134 
135 static void range_test_get_selector_high(struc    135 static void range_test_get_selector_high(struct kunit *test)
136 {                                                 136 {
137         int ret, i;                               137         int ret, i;
138         unsigned int sel;                         138         unsigned int sel;
139         bool found;                               139         bool found;
140                                                   140 
141         for (i = 0; i < RANGE1_NUM_VALS; i++)     141         for (i = 0; i < RANGE1_NUM_VALS; i++) {
142                 ret = linear_range_get_selecto    142                 ret = linear_range_get_selector_high(&testr[0], range1_vals[i],
143                                                   143                                                      &sel, &found);
144                 KUNIT_EXPECT_EQ(test, 0, ret);    144                 KUNIT_EXPECT_EQ(test, 0, ret);
145                 KUNIT_EXPECT_EQ(test, sel, ran    145                 KUNIT_EXPECT_EQ(test, sel, range1_sels[i]);
146                 KUNIT_EXPECT_TRUE(test, found)    146                 KUNIT_EXPECT_TRUE(test, found);
147         }                                         147         }
148                                                   148 
149         ret = linear_range_get_selector_high(&    149         ret = linear_range_get_selector_high(&testr[0], RANGE1_MAX_VAL + 1,
150                                              &    150                                              &sel, &found);
151         KUNIT_EXPECT_LE(test, ret, 0);            151         KUNIT_EXPECT_LE(test, ret, 0);
152                                                   152 
153         ret = linear_range_get_selector_high(&    153         ret = linear_range_get_selector_high(&testr[0], RANGE1_MIN - 1,
154                                              &    154                                              &sel, &found);
155         KUNIT_EXPECT_EQ(test, 0, ret);            155         KUNIT_EXPECT_EQ(test, 0, ret);
156         KUNIT_EXPECT_FALSE(test, found);          156         KUNIT_EXPECT_FALSE(test, found);
157         KUNIT_EXPECT_EQ(test, sel, range1_sels    157         KUNIT_EXPECT_EQ(test, sel, range1_sels[0]);
158 }                                                 158 }
159                                                   159 
160 static void range_test_get_value_amount(struct    160 static void range_test_get_value_amount(struct kunit *test)
161 {                                                 161 {
162         int ret;                                  162         int ret;
163                                                   163 
164         ret = linear_range_values_in_range_arr    164         ret = linear_range_values_in_range_array(&testr[0], 2);
165         KUNIT_EXPECT_EQ(test, (int)RANGE_NUM_V    165         KUNIT_EXPECT_EQ(test, (int)RANGE_NUM_VALS, ret);
166 }                                                 166 }
167                                                   167 
168 static void range_test_get_selector_low(struct    168 static void range_test_get_selector_low(struct kunit *test)
169 {                                                 169 {
170         int i, ret;                               170         int i, ret;
171         unsigned int sel;                         171         unsigned int sel;
172         bool found;                               172         bool found;
173                                                   173 
174         for (i = 0; i < RANGE1_NUM_VALS; i++)     174         for (i = 0; i < RANGE1_NUM_VALS; i++) {
175                 ret = linear_range_get_selecto    175                 ret = linear_range_get_selector_low_array(&testr[0], 2,
176                                                   176                                                           range1_vals[i], &sel,
177                                                   177                                                           &found);
178                 KUNIT_EXPECT_EQ(test, 0, ret);    178                 KUNIT_EXPECT_EQ(test, 0, ret);
179                 KUNIT_EXPECT_EQ(test, sel, ran    179                 KUNIT_EXPECT_EQ(test, sel, range1_sels[i]);
180                 KUNIT_EXPECT_TRUE(test, found)    180                 KUNIT_EXPECT_TRUE(test, found);
181         }                                         181         }
182         for (i = 0; i < RANGE2_NUM_VALS; i++)     182         for (i = 0; i < RANGE2_NUM_VALS; i++) {
183                 ret = linear_range_get_selecto    183                 ret = linear_range_get_selector_low_array(&testr[0], 2,
184                                                   184                                                           range2_vals[i], &sel,
185                                                   185                                                           &found);
186                 KUNIT_EXPECT_EQ(test, 0, ret);    186                 KUNIT_EXPECT_EQ(test, 0, ret);
187                 KUNIT_EXPECT_EQ(test, sel, ran    187                 KUNIT_EXPECT_EQ(test, sel, range2_sels[i]);
188                 KUNIT_EXPECT_TRUE(test, found)    188                 KUNIT_EXPECT_TRUE(test, found);
189         }                                         189         }
190                                                   190 
191         /*                                        191         /*
192          * Seek value greater than range max =    192          * Seek value greater than range max => get_selector_*_low should
193          * return Ok - but set found to false     193          * return Ok - but set found to false as value is not in range
194          */                                       194          */
195         ret = linear_range_get_selector_low_ar    195         ret = linear_range_get_selector_low_array(&testr[0], 2,
196                                         range2    196                                         range2_vals[RANGE2_NUM_VALS - 1] + 1,
197                                         &sel,     197                                         &sel, &found);
198                                                   198 
199         KUNIT_EXPECT_EQ(test, 0, ret);            199         KUNIT_EXPECT_EQ(test, 0, ret);
200         KUNIT_EXPECT_EQ(test, sel, range2_sels    200         KUNIT_EXPECT_EQ(test, sel, range2_sels[RANGE2_NUM_VALS - 1]);
201         KUNIT_EXPECT_FALSE(test, found);          201         KUNIT_EXPECT_FALSE(test, found);
202 }                                                 202 }
203                                                   203 
204 static struct kunit_case range_test_cases[] =     204 static struct kunit_case range_test_cases[] = {
205         KUNIT_CASE(range_test_get_value_amount    205         KUNIT_CASE(range_test_get_value_amount),
206         KUNIT_CASE(range_test_get_selector_hig    206         KUNIT_CASE(range_test_get_selector_high),
207         KUNIT_CASE(range_test_get_selector_low    207         KUNIT_CASE(range_test_get_selector_low),
208         KUNIT_CASE(range_test_get_value),         208         KUNIT_CASE(range_test_get_value),
209         {},                                       209         {},
210 };                                                210 };
211                                                   211 
212 static struct kunit_suite range_test_module =     212 static struct kunit_suite range_test_module = {
213         .name = "linear-ranges-test",             213         .name = "linear-ranges-test",
214         .test_cases = range_test_cases,           214         .test_cases = range_test_cases,
215 };                                                215 };
216                                                   216 
217 kunit_test_suites(&range_test_module);            217 kunit_test_suites(&range_test_module);
218                                                   218 
219 MODULE_DESCRIPTION("KUnit test for the linear_    219 MODULE_DESCRIPTION("KUnit test for the linear_ranges helper");
220 MODULE_LICENSE("GPL");                            220 MODULE_LICENSE("GPL");
221                                                   221 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php