This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 123
/
testdata.h
67 lines (52 loc) · 2.42 KB
/
testdata.h
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
#ifndef ELEKTRA_DUMP_TESTDATA
#define ELEKTRA_DUMP_TESTDATA
#include <kdb.h>
static inline KeySet * testdata_oneValue (void)
{
return ksNew (1, keyNew ("user:/tests/script", KEY_VALUE, "root", KEY_END), KS_END);
}
static inline KeySet * testdata_twoValue (void)
{
return ksNew (2, keyNew ("user:/tests/script", KEY_VALUE, "root", KEY_END),
keyNew ("user:/tests/script/key", KEY_VALUE, "value", KEY_END), KS_END);
}
static inline KeySet * testdata_threeValue (void)
{
return ksNew (3, keyNew ("user:/tests/script", KEY_VALUE, "root", KEY_END),
keyNew ("user:/tests/script/key", KEY_VALUE, "value", KEY_END),
keyNew ("user:/tests/script/key/subkey", KEY_VALUE, "another value", KEY_END), KS_END);
}
static inline KeySet * testdata_againTwoValue (void)
{
return ksNew (2, keyNew ("user:/tests/script", KEY_VALUE, "root", KEY_END),
keyNew ("user:/tests/script/key/subkey", KEY_VALUE, "another value", KEY_END), KS_END);
}
static inline KeySet * testdata_metaData (void)
{
Key * k1 = keyNew ("user:/tests/script", KEY_VALUE, "root", KEY_META, "meta", "metavalue", KEY_END);
Key * k2 = keyNew ("user:/tests/script/key", KEY_VALUE, "", KEY_END);
keyCopyMeta (k2, k1, "meta");
return ksNew (2, k1, k2, KS_END);
}
static inline KeySet * testdata_demo (void)
{
Key * k1 = keyNew ("system:/elektra/mountpoints", KEY_BINARY, KEY_SIZE, 0, KEY_META, "comment", "Below are the mount points.",
KEY_END);
Key * k2 = keyNew ("system:/elektra/mountpoints/dbus", KEY_VALUE, "serialized Backend", KEY_END);
Key * k3 = keyNew ("system:/elektra/mountpoints/dbus/config", KEY_VALUE, "", KEY_META, "comment",
"This is a configuration for a backend,\nsee subkeys for more information", KEY_END);
Key * k4 = keyNew ("system:/elektra/mountpoints/fstab/config", KEY_END);
keyCopyMeta (k4, k3, "comment");
return ksNew (4, k1, k2, k3, k4, KS_END);
}
static inline KeySet * testdata_demo_root (void)
{
Key * k1 = keyNew ("system:/", KEY_BINARY, KEY_SIZE, 0, KEY_META, "comment", "Below are the mount points.", KEY_END);
Key * k2 = keyNew ("system:/dbus", KEY_VALUE, "serialized Backend", KEY_END);
Key * k3 = keyNew ("system:/dbus/config", KEY_VALUE, "", KEY_META, "comment",
"This is a configuration for a backend,\nsee subkeys for more information", KEY_END);
Key * k4 = keyNew ("system:/fstab/config", KEY_END);
keyCopyMeta (k4, k3, "comment");
return ksNew (4, k1, k2, k3, k4, KS_END);
}
#endif // ELEKTRA_DUMP_TESTDATA