summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/pol/tests/graph_test.c
blob: 87574187500c4a454e48b665810ac31951535c34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
/*
 * Ouroboros - Copyright (C) 2016 - 2017
 *
 * Test of the graph structure
 *
 *    Dimitri Staessens <dimitri.staessens@ugent.be>
 *    Sander Vrijders   <sander.vrijders@ugent.be>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., http://www.fsf.org/about/contact/.
 */

#define _POSIX_C_SOURCE 200112L

#include <ouroboros/utils.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "graph.c"

struct graph *          graph;
struct routing_table ** table;
ssize_t                 n_table;
qosspec_t               qs;

int graph_test_entries(int entries)
{
        n_table = graph_routing_table(graph, 1, &table);

        if (n_table != entries) {
                printf("Wrong number of entries.\n");
                freepp(struct routing_table, table, n_table);
                return -1;
        }

        freepp(struct routing_table, table, n_table);

        return 0;
}

int graph_test_double_link(void)
{
        n_table = graph_routing_table(graph, 1, &table);
        if (n_table < 0 || table == NULL) {
                printf("Failed to get routing table.\n");
                return -1;
        }

        if (n_table != 2) {
                printf("Wrong number of entries.\n");
                freepp(struct routing_table, table, n_table);
                return -1;
        }

        if ((table[0]->dst != 2 && table[0]->nhop != 2) ||
            (table[0]->dst != 3 && table[0]->nhop != 2)) {
                printf("Wrong routing entry.\n");
                freepp(struct routing_table, table, n_table);
                return -1;
        }

        if ((table[1]->dst != 2 && table[1]->nhop != 2) ||
            (table[0]->dst != 3 && table[0]->nhop != 2)) {
                printf("Wrong routing entry.\n");
                freepp(struct routing_table, table, n_table);
                return -1;
        }

        freepp(struct routing_table, table, n_table);

        return 0;
}

int graph_test_single_link(void)
{
        n_table = graph_routing_table(graph, 1, &table);
        if (n_table < 0 || table == NULL) {
                printf("Failed to get routing table.\n");
                return -1;
        }

        if (n_table != 1) {
                printf("Wrong number of entries.\n");
                freepp(struct routing_table, table, n_table);
                return -1;
        }

        if (table[0]->dst != 2 && table[0]->nhop != 2) {
                printf("Wrong routing entry.\n");
                freepp(struct routing_table, table, n_table);
                return -1;
        }

        freepp(struct routing_table, table, n_table);

        return 0;
}

int graph_test(int     argc,
               char ** argv)
{
        int i;
        int nhop;
        int dst;

        (void) argc;
        (void) argv;

        memset(&qs, 0, sizeof(qs));

        graph = graph_create();
        if (graph == NULL) {
                printf("Failed to create graph.\n");
                return -1;
        }

        graph_destroy(graph);

        graph = graph_create();
        if (graph == NULL) {
                printf("Failed to create graph.\n");
                return -1;
        }

        if (graph_update_edge(graph, 1, 2, qs)) {
                printf("Failed to add edge.\n");
                graph_destroy(graph);
                return -1;
        }

        if (graph_test_single_link()) {
                graph_destroy(graph);
                return -1;
        }

        if (graph_update_edge(graph, 2, 3, qs)) {
                printf("Failed to add edge.\n");
                graph_destroy(graph);
                return -1;
        }

        if (graph_test_double_link()) {
                graph_destroy(graph);
                return -1;
        }

        if (graph_del_edge(graph, 2, 3)) {
                printf("Failed to delete edge.\n");
                graph_destroy(graph);
                return -1;
        }

        if (graph_test_single_link()) {
                graph_destroy(graph);
                return -1;
        }

        graph_update_edge(graph, 2, 3, qs);
        graph_update_edge(graph, 1, 3, qs);

        if (graph_test_entries(2)) {
                graph_destroy(graph);
                return -1;
        }

        graph_update_edge(graph, 3, 4, qs);
        graph_update_edge(graph, 4, 5, qs);

        if (graph_test_entries(4)) {
                graph_destroy(graph);
                return -1;
        }

        graph_update_edge(graph, 2, 6, qs);
        graph_update_edge(graph, 6, 7, qs);
        graph_update_edge(graph, 3, 7, qs);

        if (graph_test_entries(6)) {
                graph_destroy(graph);
                return -1;
        }

        n_table = graph_routing_table(graph, 1, &table);

        for (i = 0; i < 6; i++) {
                nhop = table[i]->nhop;
                dst = table[i]->dst;

                if (dst == 3 && nhop != 3) {
                        printf("Wrong entry.");
                        freepp(struct routing_table, table, n_table);
                        return -1;
                }

                if (dst == 2 && nhop != 2) {
                        printf("Wrong entry.");
                        freepp(struct routing_table, table, n_table);
                        return -1;
                }

                if (dst == 6 && nhop != 2) {
                        printf("Wrong entry.");
                        freepp(struct routing_table, table, n_table);
                        return -1;
                }

                if (dst == 4 && nhop != 3) {
                        printf("Wrong entry.");
                        freepp(struct routing_table, table, n_table);
                        return -1;
                }

                if (dst == 5 && nhop != 3) {
                        printf("Wrong entry.");
                        freepp(struct routing_table, table, n_table);
                        return -1;
                }

                if (dst == 7 && nhop != 3) {
                        printf("Wrong entry.");
                        freepp(struct routing_table, table, n_table);
                        return -1;
                }
        }

        freepp(struct routing_table, table, n_table);

        return 0;
}