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