chiark / gitweb /
Switch to GPL v3
[disorder] / libtests / t-vector.c
1 /*
2  * This file is part of DisOrder.
3  * Copyright (C) 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_vector(void) {
21   struct vector v[1];
22   static const char *s[10] = { "three", "four", "five", "six", "seven",
23                                "eight", "nine", "ten", "eleven", "twelve" };
24   int n;
25   
26   vector_init(v);
27   insist(v->nvec == 0);
28
29   vector_append(v, (char *)"one");
30   insist(v->nvec == 1);
31   insist(!strcmp(v->vec[0], "one"));
32
33   vector_append(v, (char *)"two");
34   insist(v->nvec == 2);
35   insist(!strcmp(v->vec[0], "one"));
36   insist(!strcmp(v->vec[1], "two"));
37
38   vector_terminate(v);
39   insist(v->nvec == 2);
40   insist(!strcmp(v->vec[0], "one"));
41   insist(!strcmp(v->vec[1], "two"));
42   insist(v->vec[2] == 0);
43
44   vector_append_many(v, (char **)s, 10);
45   insist(v->nvec == 12);
46   insist(!strcmp(v->vec[0], "one"));
47   insist(!strcmp(v->vec[1], "two"));
48   for(n = 0; n < 10; ++n)
49     insist(!strcmp(v->vec[n+2], s[n]));
50   vector_terminate(v);
51   insist(v->nvec == 12);
52   insist(v->vec[12] == 0);
53 }
54
55 TEST(vector);
56
57 /*
58 Local Variables:
59 c-basic-offset:2
60 comment-column:40
61 fill-column:79
62 indent-tabs-mode:nil
63 End:
64 */