]> sigrok.org Git - libsigrok.git/blob - tests/strutil.c
Rework sr_period_string
[libsigrok.git] / tests / strutil.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <config.h>
21 #include <check.h>
22 #include <libsigrok/libsigrok.h>
23 #include "lib.h"
24
25 static void test_samplerate(uint64_t samplerate, const char *expected)
26 {
27         char *s;
28
29         s = sr_samplerate_string(samplerate);
30         fail_unless(s != NULL);
31         fail_unless(!strcmp(s, expected),
32                     "Invalid result for '%s': %s.", expected, s);
33         g_free(s);
34 }
35
36 static void test_period(uint64_t v_p, uint64_t v_q, const char *expected)
37 {
38         char *s;
39
40         s = sr_period_string(v_p, v_q);
41         fail_unless(s != NULL);
42         fail_unless(!strcmp(s, expected),
43                     "Invalid result for '%s': %s.", expected, s);
44         g_free(s);
45 }
46
47 static void test_rational(const char *input, struct sr_rational expected)
48 {
49         int ret;
50         struct sr_rational rational;
51
52         ret = sr_parse_rational(input, &rational);
53         fail_unless(ret == SR_OK);
54         fail_unless((expected.p == rational.p) && (expected.q == rational.q),
55                     "Invalid result for '%s': %ld/%ld'.",
56                     input, rational.p, rational.q);
57 }
58
59 /*
60  * Check various inputs for sr_samplerate_string():
61  *
62  *  - One, two, or three digit results (e.g. 5/55/555 MHz).
63  *  - Results which contain commas (e.g. 1.234 / 12.34 / 123.4 kHz).
64  *  - Results with zeroes right after the comma (e.g. 1.034 Hz).
65  *    See also: http://sigrok.org/bugzilla/show_bug.cgi?id=73
66  *  - Results with zeroes in the middle (e.g. 1.204 kHz).
67  *  - All of the above, but using SR_MHZ() and friends.
68  *    See also: http://sigrok.org/bugzilla/show_bug.cgi?id=72
69  *
70  * All of the above tests are done for the Hz/kHz/MHz/GHz ranges.
71  */
72
73 START_TEST(test_hz)
74 {
75         test_samplerate(0, "0 Hz");
76         test_samplerate(1, "1 Hz");
77         test_samplerate(23, "23 Hz");
78         test_samplerate(644, "644 Hz");
79         test_samplerate(604, "604 Hz");
80         test_samplerate(550, "550 Hz");
81
82         /* Again, but now using SR_HZ(). */
83         test_samplerate(SR_HZ(0), "0 Hz");
84         test_samplerate(SR_HZ(1), "1 Hz");
85         test_samplerate(SR_HZ(23), "23 Hz");
86         test_samplerate(SR_HZ(644), "644 Hz");
87         test_samplerate(SR_HZ(604), "604 Hz");
88         test_samplerate(SR_HZ(550), "550 Hz");
89 }
90 END_TEST
91
92 START_TEST(test_khz)
93 {
94         test_samplerate(1000, "1 kHz");
95         test_samplerate(99000, "99 kHz");
96         test_samplerate(225000, "225 kHz");
97         test_samplerate(1234, "1.234 kHz");
98         test_samplerate(12345, "12.345 kHz");
99         test_samplerate(123456, "123.456 kHz");
100         test_samplerate(1034, "1.034 kHz");
101         test_samplerate(1004, "1.004 kHz");
102         test_samplerate(1230, "1.23 kHz");
103
104         /* Again, but now using SR_KHZ(). */
105         test_samplerate(SR_KHZ(1), "1 kHz");
106         test_samplerate(SR_KHZ(99), "99 kHz");
107         test_samplerate(SR_KHZ(225), "225 kHz");
108         test_samplerate(SR_KHZ(1.234), "1.234 kHz");
109         test_samplerate(SR_KHZ(12.345), "12.345 kHz");
110         test_samplerate(SR_KHZ(123.456), "123.456 kHz");
111         test_samplerate(SR_KHZ(1.204), "1.204 kHz");
112         test_samplerate(SR_KHZ(1.034), "1.034 kHz");
113         test_samplerate(SR_KHZ(1.004), "1.004 kHz");
114         test_samplerate(SR_KHZ(1.230), "1.23 kHz");
115 }
116 END_TEST
117
118 START_TEST(test_mhz)
119 {
120         test_samplerate(1000000, "1 MHz");
121         test_samplerate(28000000, "28 MHz");
122         test_samplerate(775000000, "775 MHz");
123         test_samplerate(1234567, "1.234567 MHz");
124         test_samplerate(12345678, "12.345678 MHz");
125         test_samplerate(123456789, "123.456789 MHz");
126         test_samplerate(1230007, "1.230007 MHz");
127         test_samplerate(1034567, "1.034567 MHz");
128         test_samplerate(1000007, "1.000007 MHz");
129         test_samplerate(1234000, "1.234 MHz");
130
131         /* Again, but now using SR_MHZ(). */
132         test_samplerate(SR_MHZ(1), "1 MHz");
133         test_samplerate(SR_MHZ(28), "28 MHz");
134         test_samplerate(SR_MHZ(775), "775 MHz");
135         test_samplerate(SR_MHZ(1.234567), "1.234567 MHz");
136         test_samplerate(SR_MHZ(12.345678), "12.345678 MHz");
137         test_samplerate(SR_MHZ(123.456789), "123.456789 MHz");
138         test_samplerate(SR_MHZ(1.230007), "1.230007 MHz");
139         test_samplerate(SR_MHZ(1.034567), "1.034567 MHz");
140         test_samplerate(SR_MHZ(1.000007), "1.000007 MHz");
141         test_samplerate(SR_MHZ(1.234000), "1.234 MHz");
142 }
143 END_TEST
144
145 START_TEST(test_ghz)
146 {
147         /* Note: Numbers > 2^32 need a ULL suffix. */
148
149         test_samplerate(1000000000, "1 GHz");
150         test_samplerate(5000000000ULL, "5 GHz");
151         test_samplerate(72000000000ULL, "72 GHz");
152         test_samplerate(388000000000ULL, "388 GHz");
153         test_samplerate(4417594444ULL, "4.417594444 GHz");
154         test_samplerate(44175944444ULL, "44.175944444 GHz");
155         test_samplerate(441759444441ULL, "441.759444441 GHz");
156         test_samplerate(441759000001ULL, "441.759000001 GHz");
157         test_samplerate(441050000000ULL, "441.05 GHz");
158         test_samplerate(441000000005ULL, "441.000000005 GHz");
159         test_samplerate(441500000000ULL, "441.5 GHz");
160
161         /* Again, but now using SR_GHZ(). */
162         test_samplerate(SR_GHZ(1), "1 GHz");
163         test_samplerate(SR_GHZ(5), "5 GHz");
164         test_samplerate(SR_GHZ(72), "72 GHz");
165         test_samplerate(SR_GHZ(388), "388 GHz");
166         test_samplerate(SR_GHZ(4.417594444), "4.417594444 GHz");
167         test_samplerate(SR_GHZ(44.175944444), "44.175944444 GHz");
168         test_samplerate(SR_GHZ(441.759444441), "441.759444441 GHz");
169         test_samplerate(SR_GHZ(441.759000001), "441.759000001 GHz");
170         test_samplerate(SR_GHZ(441.050000000), "441.05 GHz");
171         test_samplerate(SR_GHZ(441.000000005), "441.000000005 GHz");
172         test_samplerate(SR_GHZ(441.500000000), "441.5 GHz");
173
174         /* Now check the biggest-possible samplerate (2^64 Hz). */
175         // test_samplerate(18446744073709551615ULL, "18446744073.709551615 GHz");
176         // test_samplerate(SR_GHZ(18446744073ULL), "18446744073 GHz");
177 }
178 END_TEST
179
180 START_TEST(test_hz_period)
181 {
182         test_period(1, 1, "1 s");
183         test_period(1, 5, "200 ms");
184         test_period(1, 72, "13.889 ms");
185         test_period(1, 388, "2.577 ms");
186         test_period(10, 1000, "10 ms");
187
188         /* Again, but now using SR_HZ(). */
189         test_period(1, SR_HZ(1), "1 s");
190         test_period(1, SR_HZ(5), "200 ms");
191         test_period(1, SR_HZ(72), "13.889 ms");
192         test_period(1, SR_HZ(388), "2.577 ms");
193         test_period(10, SR_HZ(100), "100 ms");
194 }
195 END_TEST
196
197 START_TEST(test_ghz_period)
198 {
199         /* Note: Numbers > 2^32 need a ULL suffix. */
200         test_period(1, 1000000000, "1 ns");
201         test_period(1, 5000000000ULL, "200 ps");
202         test_period(1, 72000000000ULL, "13.889 ps");
203         test_period(1, 388000000000ULL, "2.577 ps");
204         test_period(10, 1000000000000, "10 ps");
205         test_period(200, 1000000000000ULL, "200 ps");
206
207         /* Again, but now using SR_GHZ(). */
208         test_period(1, SR_GHZ(1), "1 ns");
209         test_period(1, SR_GHZ(5), "200 ps");
210         test_period(1, SR_GHZ(72), "13.889 ps");
211         test_period(1, SR_GHZ(388), "2.577 ps");
212         test_period(10, SR_GHZ(1), "10 ns");
213         test_period(200, SR_GHZ(1000), "200 ps");
214 }
215 END_TEST
216
217 START_TEST(test_integral)
218 {
219         test_rational("1", (struct sr_rational){1, 1});
220         test_rational("2", (struct sr_rational){2, 1});
221         test_rational("10", (struct sr_rational){10, 1});
222         test_rational("-255", (struct sr_rational){-255, 1});
223 }
224 END_TEST
225
226 START_TEST(test_fractional)
227 {
228         test_rational("0.1", (struct sr_rational){1, 10});
229         test_rational("1.0", (struct sr_rational){10, 10});
230         test_rational("1.2", (struct sr_rational){12, 10});
231         test_rational("12.34", (struct sr_rational){1234, 100});
232         test_rational("-12.34", (struct sr_rational){-1234, 100});
233         test_rational("10.00", (struct sr_rational){1000, 100});
234 }
235 END_TEST
236
237 START_TEST(test_exponent)
238 {
239         test_rational("1e0", (struct sr_rational){1, 1});
240         test_rational("1E0", (struct sr_rational){1, 1});
241         test_rational("1E1", (struct sr_rational){10, 1});
242         test_rational("1e-1", (struct sr_rational){1, 10});
243         test_rational("-1.234e-0", (struct sr_rational){-1234, 1000});
244         test_rational("-1.234e3", (struct sr_rational){-1234, 1});
245         test_rational("-1.234e-3", (struct sr_rational){-1234, 1000000});
246         test_rational("0.001e3", (struct sr_rational){1, 1});
247         test_rational("0.001e0", (struct sr_rational){1, 1000});
248         test_rational("0.001e-3", (struct sr_rational){1, 1000000});
249 }
250 END_TEST
251
252 Suite *suite_strutil(void)
253 {
254         Suite *s;
255         TCase *tc;
256
257         s = suite_create("strutil");
258
259         tc = tcase_create("sr_samplerate_string");
260         tcase_add_checked_fixture(tc, srtest_setup, srtest_teardown);
261         tcase_add_test(tc, test_hz);
262         tcase_add_test(tc, test_khz);
263         tcase_add_test(tc, test_mhz);
264         tcase_add_test(tc, test_ghz);
265         tcase_add_test(tc, test_hz_period);
266         tcase_add_test(tc, test_ghz_period);
267         tcase_add_test(tc, test_integral);
268         tcase_add_test(tc, test_fractional);
269         tcase_add_test(tc, test_exponent);
270         suite_add_tcase(s, tc);
271
272         return s;
273 }