chiark / gitweb /
disorderfm preserves permissions now
[disorder] / libtests / t-basen.c
CommitLineData
b90f122b
RK
1/*
2 * This file is part of DisOrder.
3 * Copyright (C) 2005, 2007, 2008 Richard Kettlewell
4 *
e7eb3a27 5 * This program is free software: you can redistribute it and/or modify
b90f122b 6 * it under the terms of the GNU General Public License as published by
e7eb3a27 7 * the Free Software Foundation, either version 3 of the License, or
b90f122b 8 * (at your option) any later version.
e7eb3a27
RK
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
b90f122b 15 * You should have received a copy of the GNU General Public License
e7eb3a27 16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
b90f122b
RK
17 */
18#include "test.h"
19
c68d8eba 20static void test_basen(void) {
b90f122b
RK
21 unsigned long v[64];
22 char buffer[1024];
23
b90f122b
RK
24 v[0] = 999;
25 insist(basen(v, 1, buffer, sizeof buffer, 10) == 0);
26 check_string(buffer, "999");
27
28 v[0] = 1+2*7+3*7*7+4*7*7*7;
29 insist(basen(v, 1, buffer, sizeof buffer, 7) == 0);
30 check_string(buffer, "4321");
31
32 v[0] = 0x00010203;
33 v[1] = 0x04050607;
34 v[2] = 0x08090A0B;
35 v[3] = 0x0C0D0E0F;
36 insist(basen(v, 4, buffer, sizeof buffer, 256) == 0);
37 check_string(buffer, "123456789abcdef");
38
39 v[0] = 0x00010203;
40 v[1] = 0x04050607;
41 v[2] = 0x08090A0B;
42 v[3] = 0x0C0D0E0F;
43 insist(basen(v, 4, buffer, sizeof buffer, 16) == 0);
44 check_string(buffer, "102030405060708090a0b0c0d0e0f");
45
46 v[0] = 0x00010203;
47 v[1] = 0x04050607;
48 v[2] = 0x08090A0B;
49 v[3] = 0x0C0D0E0F;
50 insist(basen(v, 4, buffer, 10, 16) == -1);
51}
52
c68d8eba
RK
53TEST(basen);
54
b90f122b
RK
55/*
56Local Variables:
57c-basic-offset:2
58comment-column:40
59fill-column:79
60indent-tabs-mode:nil
61End:
62*/