forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testmod_rename.c
454 lines (379 loc) · 16.3 KB
/
testmod_rename.c
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
/**
* @file
*
* @brief A plugin for renaming
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*
*/
#ifdef HAVE_KDBCONFIG_H
#include "kdbconfig.h"
#endif
/* used for asprintf */
#define _GNU_SOURCE
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include "rename.h"
#include <tests_plugin.h>
static KeySet * createSimpleTestKeys (void)
{
return ksNew (20, keyNew ("user:/tests/rename/will/be/stripped/key1", KEY_VALUE, "value1", KEY_END),
keyNew ("user:/tests/rename/will/be/stripped/key2", KEY_VALUE, "value2", KEY_END),
keyNew ("user:/tests/rename/will/be/stripped", KEY_VALUE, "value3", KEY_END),
keyNew ("user:/tests/rename/will/not/be/stripped/key4", KEY_VALUE, "value4", KEY_END), KS_END);
}
static KeySet * createSimpleMetaTestKeys (void)
{
// clang-format off
return ksNew (20,
keyNew("user:/tests/rename/will/be/stripped/key1",
KEY_VALUE, "value1",
KEY_META, "rename/cut", "will/be/stripped",
KEY_END),
keyNew("user:/tests/rename/will/be/stripped/key2",
KEY_VALUE, "value2",
KEY_META, "rename/cut", "will/be/stripped",
KEY_END),
keyNew("user:/tests/rename/will/be/stripped",
KEY_VALUE, "value3",
KEY_END),
keyNew("user:/tests/rename/will/not/be/stripped/key4",
KEY_VALUE, "value4",
KEY_END),
KS_END);
// clang-format on
}
static void checkSimpleTestKeys (KeySet * ks)
{
/* the first two keys should have been renamed */
Key * key = ksLookupByName (ks, "user:/tests/rename/key1", KDB_O_NONE);
succeed_if (key, "key1 was not correctly renamed");
key = ksLookupByName (ks, "user:/tests/rename/key2", KDB_O_NONE);
succeed_if (key, "key2 was not correctly renamed");
/* the fourth key was not renamed because the prefix did not match */
key = ksLookupByName (ks, "user:/tests/rename/will/not/be/stripped/key4", KDB_O_NONE);
succeed_if (key, "key4 was renamed although its prefix did not match");
}
static void compareKeySets (KeySet * ks, KeySet * expected)
{
succeed_if (ksGetSize (expected) == ksGetSize (ks), "KeySet on set does not contain the same amount of keys");
for (elektraCursor it = 0; it < ksGetSize (expected); ++it)
{
Key * current = ksAtCursor (expected, it);
Key * key = ksLookup (ks, current, KDB_O_NONE);
succeed_if (key, "Expected key was not found in KeySet");
succeed_if (!strcmp (keyString (key), keyString (current)), "Value of key was modified");
}
}
static void test_simpleCutOnGet (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/cut", KEY_VALUE, "will/be/stripped", KEY_END), KS_END);
PLUGIN_OPEN ("rename");
KeySet * ks = createSimpleTestKeys ();
ksAppendKey (ks, parentKey);
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
succeed_if (output_error (parentKey), "error in kdbGet");
succeed_if (output_warnings (parentKey), "warnings in kdbGet");
checkSimpleTestKeys (ks);
ksDel (ks);
/*
* this has to be done because the parentKey is not
* part of ks anymore due to renaming
*/
keyDel (parentKey);
PLUGIN_CLOSE ();
}
static void test_metaCutOnGet (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (0, KS_END);
PLUGIN_OPEN ("rename");
KeySet * ks = createSimpleMetaTestKeys ();
ksAppendKey (ks, parentKey);
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
succeed_if (output_error (parentKey), "error in kdbGet");
succeed_if (output_warnings (parentKey), "warnings in kdbGet");
checkSimpleTestKeys (ks);
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_simpleCutRestoreOnSet (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
Key * parentKeyCopy = keyDup (parentKey, KEY_CP_ALL);
KeySet * conf = ksNew (20, keyNew ("system:/cut", KEY_VALUE, "will/be/stripped", KEY_END), KS_END);
PLUGIN_OPEN ("rename");
KeySet * ks = createSimpleTestKeys ();
ksAppendKey (ks, parentKey);
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
succeed_if (output_error (parentKey), "error in kdbGet");
succeed_if (output_warnings (parentKey), "warnings in kdbGet");
succeed_if (plugin->kdbSet (plugin, ks, parentKey) >= 1, "call to kdbSet was not successful");
succeed_if (output_error (parentKey), "error in kdbSet");
succeed_if (output_warnings (parentKey), "warnings in kdbSet");
/* test that the keys have been correctly restored */
KeySet * expected = createSimpleTestKeys ();
/* the parent key is restored from user:/tests/rename/will/be/stripped
* and therefore will have its key value
*/
keySetString (parentKeyCopy, "value3");
ksAppendKey (expected, parentKeyCopy);
compareKeySets (ks, expected);
ksDel (expected);
ksDel (ks);
/*
* this has to be done because the parentKey is not
* part of ks anymore due to renaming
*/
keyDel (parentKey);
PLUGIN_CLOSE ();
}
static void test_withoutConfig (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
Key * parentKeyCopy = keyDup (parentKey, KEY_CP_ALL);
KeySet * conf = ksNew (0, KS_END);
PLUGIN_OPEN ("rename");
KeySet * ks = createSimpleTestKeys ();
ksAppendKey (ks, parentKey);
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
succeed_if (output_error (parentKey), "error in kdbGet");
succeed_if (output_warnings (parentKey), "warnings in kdbGet");
KeySet * expected = createSimpleTestKeys ();
ksAppendKey (expected, parentKeyCopy);
compareKeySets (ks, expected);
ksDel (expected);
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_metaConfigTakesPrecedence (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/cut", KEY_VALUE, "will/be", KEY_END), KS_END);
PLUGIN_OPEN ("rename");
KeySet * ks = createSimpleMetaTestKeys ();
ksAppendKey (ks, parentKey);
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
succeed_if (output_error (parentKey), "error in kdbGet");
succeed_if (output_warnings (parentKey), "warnings in kdbGet");
/* the first two keys should have been renamed by their metadata */
Key * key = ksLookupByName (ks, "user:/tests/rename/key1", KDB_O_NONE);
succeed_if (key, "key1 was not correctly renamed");
key = ksLookupByName (ks, "user:/tests/rename/key2", KDB_O_NONE);
succeed_if (key, "key2 was not correctly renamed");
/* the third key should have been renamed by the global config */
key = ksLookupByName (ks, "user:/tests/rename/stripped", KDB_O_NONE);
succeed_if (key, "key3 was renamed but would replace the parent key");
/* the fourth key was not renamed because the prefix did not match */
key = ksLookupByName (ks, "user:/tests/rename/will/not/be/stripped/key4", KDB_O_NONE);
succeed_if (key, "key4 was renamed although its prefix did not match");
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_keyCutNamePart (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
Key * result = elektraKeyCreateNewName (parentKey, parentKey, "wont/cut/this", NULL, NULL, NULL, 0);
succeed_if (!result, "parentKey was modified although it should have been ignored");
/* cutting works correctly without trailing slash */
Key * testKey = keyNew ("user:/tests/rename/will/cut/this/key1", KEY_END);
result = elektraKeyCreateNewName (testKey, parentKey, "will/cut/this", NULL, NULL, NULL, 0);
succeed_if (result, "key1 was not cut")
succeed_if (!strcmp (keyName (result), "user:/tests/rename/key1"), "cutting key1 did not yield the expected result");
keyDel (testKey);
keyDel (result);
/* cutting works correctly with trailing slash */
testKey = keyNew ("user:/tests/rename/will/cut/this/key1", KEY_END);
result = elektraKeyCreateNewName (testKey, parentKey, "will/cut/this/", NULL, NULL, NULL, 0);
succeed_if (result, "key1 was not cut")
succeed_if (!strcmp (keyName (result), "user:/tests/rename/key1"), "cutting key1 did not yield the expected result");
keyDel (testKey);
keyDel (result);
/* disallow leading slashes */
testKey = keyNew ("user:/tests/rename/wont/cut/this/key1", KEY_END);
result = elektraKeyCreateNewName (testKey, parentKey, "/wont/cut/this", NULL, NULL, NULL, 0);
succeed_if (!result, "key was cut although it the cutpath contained a leading slash");
keyDel (testKey);
keyDel (parentKey);
}
static void test_rebaseOfNewKeys (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/cut", KEY_VALUE, "new/base", KEY_END), KS_END);
PLUGIN_OPEN ("rename");
// clang-format off
KeySet *ks = ksNew(20,
/* this key was seen by rename before and wont be changed */
keyNew("user:/tests/rename/key1",
KEY_VALUE, "value1",
KEY_META, ELEKTRA_ORIGINAL_NAME_META, "user:/tests/rename/key1",
KEY_END),
/* this key was not seen by rename before and will be renamed */
keyNew("user:/tests/rename/key2",
KEY_VALUE, "value2",
KEY_END),
KS_END);
// clang-format on
succeed_if (plugin->kdbSet (plugin, ks, parentKey) >= 1, "call to kdbSet was not successful");
succeed_if (output_error (parentKey), "error in kdbSet");
succeed_if (output_warnings (parentKey), "warnings in kdbSet");
Key * key = ksLookupByName (ks, "user:/tests/rename/key1", KDB_O_NONE);
succeed_if (key, "key1 was not found anymore, but it should not have been renamed");
key = ksLookupByName (ks, "user:/tests/rename/new/base/key2", KDB_O_NONE);
succeed_if (key, "key2 was not correctly renamed");
keyDel (parentKey);
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_addNewBaseToParentKey (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/cut", KEY_VALUE, "new/base", KEY_END), KS_END);
PLUGIN_OPEN ("rename");
KeySet * ks = ksNew (0, KS_END);
keyIncRef (parentKey);
ksAppendKey (ks, parentKey);
succeed_if (plugin->kdbSet (plugin, ks, parentKey) >= 1, "call to kdbSet was not successful");
succeed_if (output_error (parentKey), "error in kdbSet");
succeed_if (output_warnings (parentKey), "warnings in kdbSet");
Key * key = ksLookupByName (ks, "user:/tests/rename/new/base", 0);
succeed_if (key, "new base was not correctly appended to parent key");
ksDel (ks);
keyDecRef (parentKey);
keyDel (parentKey);
PLUGIN_CLOSE ();
}
static void test_replaceString (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/cut", KEY_VALUE, "will/be/stripped", KEY_END),
keyNew ("system:/replacewith", KEY_VALUE, "stripped/it/is", KEY_END), KS_END);
KeySet * ks = createSimpleTestKeys ();
ksAppendKey (ks, parentKey);
PLUGIN_OPEN ("rename");
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
Key * key = ksLookupByName (ks, "user:/tests/rename/stripped/it/is/key1", KDB_O_NONE);
succeed_if (key, "key1 was not correctly rename");
key = ksLookupByName (ks, "user:/tests/rename/stripped/it/is/key2", KDB_O_NONE);
succeed_if (key, "key2 was not correctly rename");
key = ksLookupByName (ks, "user:/tests/rename/will/not/be/stripped/key4", KDB_O_NONE);
succeed_if (key, "key4 was not correctly rename");
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_toUpper (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/toupper", KEY_VALUE, "0", KEY_END), KS_END);
KeySet * ks = createSimpleTestKeys ();
ksAppendKey (ks, parentKey);
PLUGIN_OPEN ("rename");
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
Key * key = ksLookupByName (ks, "user:/tests/rename/WILL/BE/STRIPPED/KEY1", KDB_O_NONE);
succeed_if (key, "key1 was not correctly rename");
key = ksLookupByName (ks, "user:/tests/rename/WILL/BE/STRIPPED/KEY2", KDB_O_NONE);
succeed_if (key, "key2 was not correctly rename");
key = ksLookupByName (ks, "user:/tests/rename/WILL/NOT/BE/STRIPPED/KEY4", KDB_O_NONE);
succeed_if (key, "key4 was not correctly rename");
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_toLower (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/tolower", KEY_VALUE, "0", KEY_END), KS_END);
KeySet * ks = ksNew (20, keyNew ("user:/tests/rename/AM/I/LOWERCASE", KEY_VALUE, "val1", KEY_END),
keyNew ("user:/tests/rename/I/HOPE/IM/LOWERCASE/TOO", KEY_VALUE, "val2", KEY_END), KS_END);
ksAppendKey (ks, parentKey);
PLUGIN_OPEN ("rename");
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
Key * key = ksLookupByName (ks, "user:/tests/rename/am/i/lowercase", KDB_O_NONE);
succeed_if (key, "key1 was not correctly rename");
key = ksLookupByName (ks, "user:/tests/rename/i/hope/im/lowercase/too", KDB_O_NONE);
succeed_if (key, "key2 was not correctly rename");
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_mixCase (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf = ksNew (20, keyNew ("system:/tolower", KEY_VALUE, "1", KEY_END), keyNew ("system:/toupper", KEY_VALUE, "4", KEY_END),
KS_END);
KeySet * ks =
ksNew (20, keyNew ("user:/tests/rename/am/i/LOWERCASE", KEY_VALUE, "val1", KEY_END),
keyNew ("user:/tests/rename/hopefullystilllower/upper/upper/upper/LOWERCASE", KEY_VALUE, "val2", KEY_END), KS_END);
ksAppendKey (ks, parentKey);
PLUGIN_OPEN ("rename");
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
Key * key = ksLookupByName (ks, "user:/tests/rename/AM/I/lowercase", KDB_O_NONE);
succeed_if (key, "key1 was not correctly rename");
key = ksLookupByName (ks, "user:/tests/rename/hopefullystilllower/UPPER/UPPER/UPPER/lowercase", KDB_O_NONE);
succeed_if (key, "key2 was not correctly rename");
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_write (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf =
ksNew (20, keyNew ("system:/tolower", KEY_VALUE, "1", KEY_END), keyNew ("system:/get/case", KEY_VALUE, "toupper", KEY_END),
keyNew ("system:/set/case", KEY_VALUE, "keyname", KEY_END), KS_END);
KeySet * ks = ksNew (20, keyNew ("user:/tests/rename/uppercase/uppercase/uppercase/LOWERCASE", KEY_VALUE, "test", KEY_END), KS_END);
ksAppendKey (ks, parentKey);
PLUGIN_OPEN ("rename");
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
Key * key = ksLookupByName (ks, "user:/tests/rename/UPPERCASE/UPPERCASE/UPPERCASE/lowercase", KDB_O_NONE);
succeed_if (key, "key1 was not correctly rename");
succeed_if (plugin->kdbSet (plugin, ks, parentKey) == 1, "call to kdbSet was not successful");
key = ksLookupByName (ks, "user:/tests/rename/UPPERCASE/UPPERCASE/UPPERCASE/lowercase", KDB_O_NONE);
succeed_if (key, "key1s name was not correctly saved");
keyDel (parentKey);
ksDel (ks);
PLUGIN_CLOSE ();
}
static void test_write2 (void)
{
Key * parentKey = keyNew ("user:/tests/rename", KEY_END);
KeySet * conf =
ksNew (20, keyNew ("system:/tolower", KEY_VALUE, "1", KEY_END), keyNew ("system:/get/case", KEY_VALUE, "tolower", KEY_END),
keyNew ("system:/set/case", KEY_VALUE, "toupper", KEY_END), KS_END);
KeySet * ks = ksNew (20, keyNew ("user:/tests/rename/UPPERCASE/UPPERCASE/UPPERCASE/LOWERCASE", KEY_VALUE, "test", KEY_END), KS_END);
ksAppendKey (ks, parentKey);
PLUGIN_OPEN ("rename");
succeed_if (plugin->kdbGet (plugin, ks, parentKey) >= 1, "call to kdbGet was not successful");
Key * key = ksLookupByName (ks, "user:/tests/rename/uppercase/uppercase/uppercase/lowercase", KDB_O_NONE);
succeed_if (key, "key1 was not correctly rename");
succeed_if (plugin->kdbSet (plugin, ks, parentKey) == 1, "call to kdbSet was not successful");
key = ksLookupByName (ks, "user:/tests/rename/UPPERCASE/UPPERCASE/UPPERCASE/LOWERCASE", KDB_O_NONE);
succeed_if (key, "key1s name was not correctly saved");
keyDel (parentKey);
ksDel (ks);
PLUGIN_CLOSE ();
}
int main (int argc, char ** argv)
{
printf ("RENAME TESTS\n");
printf ("==================\n\n");
init (argc, argv);
test_withoutConfig ();
test_simpleCutOnGet ();
test_simpleCutRestoreOnSet ();
test_metaCutOnGet ();
test_metaConfigTakesPrecedence ();
test_rebaseOfNewKeys ();
test_addNewBaseToParentKey ();
test_keyCutNamePart ();
test_toUpper ();
test_toLower ();
test_mixCase ();
test_replaceString ();
test_write ();
test_write2 ();
print_result ("test_rename");
return nbError;
}