summaryrefslogtreecommitdiff
path: root/src/irmd/reg/tests/name_test.c
blob: 48f132e9d20d9e4d7d9d02f71895efa8805cdb9d (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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*
 * Ouroboros - Copyright (C) 2016 - 2024
 *
 * The IPC Resource Manager - Registry - Names - Unit Tests
 *
 *    Dimitri Staessens <dimitri@ouroboros.rocks>
 *    Sander Vrijders   <sander@ouroboros.rocks>
 *
 * 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/.
 */

#include "../name.c"

#define TEST_PID  65534
#define TEST_PROG "/usr/bin/testprog"
#define TEST_NAME "testservicename"

static int test_reg_name_create(void)
{
        struct reg_name * n;
        struct name_info  info = {
                .name   = TEST_NAME,
                .pol_lb = LB_RR,
        };

        n = reg_name_create(&info);
        if (n == NULL) {
                printf("Failed to create name %s.\n", info.name);
                goto fail;
        }

        reg_name_destroy(n);

        return 0;
 fail:
        return -1;
}

static int test_reg_name_add_proc(void)
{
        struct reg_name * n;
        struct name_info  info = {
                .name   = TEST_NAME,
                .pol_lb = LB_RR,
        };

        n = reg_name_create(&info);
        if (n == NULL) {
                printf("Failed to create name %s.\n", info.name);
                goto fail;
        }

        if (reg_name_add_proc(n, TEST_PID) < 0) {
                printf("Failed to add proc.\n");
                goto fail;
        }

        if (n->n_procs != 1) {
                printf("n_procs not updated.\n");
                goto fail;
        }

        if (!reg_name_has_proc(n, TEST_PID)) {
                printf("Proc not found.\n");
                goto fail;
        }

        reg_name_del_proc(n, TEST_PID);

        if (n->n_procs != 0) {
                printf("n_procs not updated.\n");
                goto fail;
        }

        reg_name_destroy(n);

        return 0;
 fail:
        return -1;
}

static int test_reg_name_add_prog(void)
{
        struct reg_name * n;
        struct name_info  info = {
                .name   = TEST_NAME,
                .pol_lb = LB_RR,
        };

        char * exec[] = { TEST_PROG, "--argswitch", "argvalue", NULL};

        n = reg_name_create(&info);
        if (n == NULL) {
                printf("Failed to create name %s.\n", info.name);
                goto fail;
        }

        if (reg_name_add_prog(n, exec) < 0) {
                printf("Failed to add prog.\n");
                goto fail;
        }

        if (n->n_progs != 1) {
                printf("n_progs not updated.\n");
                goto fail;
        }

        if (!reg_name_has_prog(n, TEST_PROG)) {
                printf("Prog not found.\n");
                goto fail;
        }

        reg_name_del_prog(n, TEST_PROG);

        if (n->n_progs != 0) {
                printf("n_progs not updated.\n");
                goto fail;
        }

        reg_name_destroy(n);

        return 0;
 fail:
        return -1;
}

static int test_reg_name_add_active(enum pol_balance lb)
{
        struct reg_name * n;
        pid_t             pid;
        struct name_info  info = {
                .name   = TEST_NAME,
                .pol_lb = lb,
        };

        n = reg_name_create(&info);
        if (n == NULL) {
                printf("Failed to create name %s.\n", info.name);
                goto fail;
        }

        if (reg_name_get_active(n) != -1) {
                printf("Got active from empty actives.\n");
                goto fail;
        }

        if (reg_name_add_proc(n, TEST_PID) < 0) {
                printf("Failed to add proc 0.\n");
                goto fail;
        }

        if (reg_name_add_proc(n, TEST_PID + 1) < 0) {
                printf("Failed to add proc 1.\n");
                goto fail;
        }

        if (reg_name_add_proc(n, TEST_PID + 2) < 0) {
                printf("Failed to add proc 2.\n");
                goto fail;
        }

        if (reg_name_add_active(n, TEST_PID) < 0) {
                printf("Failed to add active.\n");
                goto fail;
        }

        if (n->n_active != 1) {
                printf("n_active not updated.\n");
                goto fail;
        }

        if (reg_name_get_active(n) != TEST_PID) {
                printf("Failed to get active.\n");
                goto fail;
        }

        if (reg_name_get_active(n) != TEST_PID) {
                printf("Failed to get active.\n");
                goto fail;
        }

        if (reg_name_add_active(n, TEST_PID + 1) < 0) {
                printf("Failed to add active 3.\n");
                goto fail;
        }

        if (reg_name_add_active(n, TEST_PID + 1) < 0) {
                printf("Failed to add active 3.\n");
                goto fail;
        }


        if (reg_name_add_active(n, TEST_PID + 2) < 0) {
                printf("Failed to add active 4.\n");
                goto fail;
        }

        if (n->n_procs != 3) {
                printf("n_procs not updated.\n");
                goto fail;
        }

        if (n->n_active != 4) {
                printf("n_active not updated.\n");
                goto fail;
        }

        pid = info.pol_lb == LB_RR ? TEST_PID : TEST_PID + 2;

        if (reg_name_get_active(n) != pid) {
                printf("Got wrong active pid 1.\n");
                goto fail;
        }

        reg_name_del_active(n, pid);

        if (reg_name_add_active(n, pid) < 0) {
                printf("Failed to add active 4.\n");
                goto fail;
        }

        pid = info.pol_lb == LB_RR ? TEST_PID + 1 : TEST_PID + 2;

        if (reg_name_get_active(n) != pid) {
                printf("Got wrong active pid 2 %d.\n", pid);
                goto fail;
        }

        reg_name_del_proc(n, TEST_PID + 2);

        reg_name_del_proc(n, TEST_PID + 1);

        reg_name_del_proc(n, TEST_PID);

        if (n->n_procs != 0) {
                printf("n_procs not updated.\n");
                goto fail;
        }

        if (n->n_active != 0) {
                printf("n_active not updated.\n");
                goto fail;
        }

        reg_name_destroy(n);

        return 0;
 fail:
        return -1;
}


int name_test(int     argc,
              char ** argv)
{
        int res = 0;

        (void) argc;
        (void) argv;

        res |= test_reg_name_create();

        res |= test_reg_name_add_proc();

        res |= test_reg_name_add_prog();

        res |= test_reg_name_add_active(LB_RR);

        res |= test_reg_name_add_active(LB_SPILL);

        return res;
}