chiark / gitweb /
disorderfm preserves permissions now
[disorder] / libtests / t-basen.c
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 3 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,
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  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 #include "test.h"
19
20 static void test_basen(void) {
21   unsigned long v[64];
22   char buffer[1024];
23
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
53 TEST(basen);
54
55 /*
56 Local Variables:
57 c-basic-offset:2
58 comment-column:40
59 fill-column:79
60 indent-tabs-mode:nil
61 End:
62 */