]> sigrok.org Git - libsigrok.git/blame - tests/strutil.c
demo: Retain the default of 8 digital channels for now.
[libsigrok.git] / tests / strutil.c
CommitLineData
79bb0e97
UH
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
2ea1fdf1 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
79bb0e97
UH
18 */
19
6ec6c43b 20#include <config.h>
79bb0e97 21#include <check.h>
4960aeb0 22#include <libsigrok/libsigrok.h>
17794067 23#include "lib.h"
79bb0e97 24
79bb0e97
UH
25static 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
6984cfb2 36static void test_period(uint64_t v_p, uint64_t v_q, const char *expected)
5223412e
SB
37{
38 char *s;
39
6984cfb2 40 s = sr_period_string(v_p, v_q);
5223412e
SB
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
5ec172d7
SB
47static 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
79bb0e97
UH
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
79bb0e97
UH
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
73START_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}
90END_TEST
91
92START_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");
ba253f2b 102 test_samplerate(1230, "1.23 kHz");
79bb0e97
UH
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");
ba253f2b 114 test_samplerate(SR_KHZ(1.230), "1.23 kHz");
79bb0e97
UH
115}
116END_TEST
117
118START_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");
ba253f2b 129 test_samplerate(1234000, "1.234 MHz");
79bb0e97
UH
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");
ba253f2b 141 test_samplerate(SR_MHZ(1.234000), "1.234 MHz");
79bb0e97
UH
142}
143END_TEST
144
145START_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");
ba253f2b 159 test_samplerate(441500000000ULL, "441.5 GHz");
79bb0e97
UH
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");
ba253f2b 172 test_samplerate(SR_GHZ(441.500000000), "441.5 GHz");
79bb0e97
UH
173
174 /* Now check the biggest-possible samplerate (2^64 Hz). */
059f3632
UH
175 // test_samplerate(18446744073709551615ULL, "18446744073.709551615 GHz");
176 // test_samplerate(SR_GHZ(18446744073ULL), "18446744073 GHz");
79bb0e97
UH
177}
178END_TEST
179
5223412e
SB
180START_TEST(test_hz_period)
181{
6984cfb2
SA
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");
5223412e
SB
187
188 /* Again, but now using SR_HZ(). */
6984cfb2
SA
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");
5223412e
SB
194}
195END_TEST
196
197START_TEST(test_ghz_period)
198{
199 /* Note: Numbers > 2^32 need a ULL suffix. */
6984cfb2
SA
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");
5223412e
SB
206
207 /* Again, but now using SR_GHZ(). */
6984cfb2
SA
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");
5223412e
SB
214}
215END_TEST
216
5ec172d7
SB
217START_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}
224END_TEST
225
226START_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}
235END_TEST
236
237START_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}
250END_TEST
251
79bb0e97
UH
252Suite *suite_strutil(void)
253{
254 Suite *s;
255 TCase *tc;
256
257 s = suite_create("strutil");
258
259 tc = tcase_create("sr_samplerate_string");
98de0c78 260 tcase_add_checked_fixture(tc, srtest_setup, srtest_teardown);
79bb0e97
UH
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);
5223412e
SB
265 tcase_add_test(tc, test_hz_period);
266 tcase_add_test(tc, test_ghz_period);
5ec172d7
SB
267 tcase_add_test(tc, test_integral);
268 tcase_add_test(tc, test_fractional);
269 tcase_add_test(tc, test_exponent);
79bb0e97
UH
270 suite_add_tcase(s, tc);
271
272 return s;
273}