forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_import.sh
executable file
·266 lines (188 loc) · 6.63 KB
/
check_import.sh
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
#!/bin/sh
@INCLUDE_COMMON@
echo
echo ELEKTRA IMPORT SCRIPTS TESTS
echo
check_version
ROOT=$USER_ROOT
FILE="$(mktempfile_elektra)"
SIDE=$ROOT/../side_val
RAN_ONCE=0
cleanup() {
rm -f "$FILE"
}
[ -e /dev/stdin ]
exit_if_fail "For export/import /dev must be mounted"
[ -e /dev/stdout ]
exit_if_fail "For export/import /dev must be mounted"
"$KDB" rm -r "$ROOT"
"$KDB" rm "$SIDE"
for PLUGIN in $PLUGINS; do
if is_not_rw_storage; then
echo "-- $PLUGIN not a read-write storage"
continue
fi
RAN_ONCE=1
echo -------- "$PLUGIN" -----------
echo "Import with existing root"
if [ "x$PLUGIN" != "xyajl" ]; then
"$KDB" set "$ROOT" "root" > /dev/null
else
"$KDB" set "$ROOT" "" > /dev/null
fi
exit_if_fail "could not set root"
test "x$("$KDB" ls "$ROOT")" = "x$ROOT"
succeed_if "Root key not found"
"$KDB" import "$ROOT" "$PLUGIN" "$DATADIR"/one_value."$PLUGIN"
succeed_if "Could not run kdb import"
test "x$("$KDB" ls "$ROOT")" = "xuser:/tests/script"
succeed_if "key name not correct one_value"
if [ "x$PLUGIN" != "xyajl" ]; then
test "$("$KDB" get "$ROOT")" = root
succeed_if "root value not correct"
fi
"$KDB" export "$ROOT" "$PLUGIN" > "$FILE"
succeed_if "Could not run kdb export"
diff "$DATADIR"/one_value."$PLUGIN" "$FILE"
succeed_if "Export file one_value.$PLUGIN was not equal"
"$KDB" rm -r "$ROOT"
succeed_if "Could not remove root"
echo "Import with empty root"
"$KDB" import "$ROOT" "$PLUGIN" "$DATADIR"/one_value."$PLUGIN"
succeed_if "Could not run kdb import"
test "x$("$KDB" ls "$ROOT")" = "xuser:/tests/script"
succeed_if "key name not correct one_value empty root"
if [ "x$PLUGIN" != "xyajl" ]; then
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$ROOT")" = root
succeed_if "root value not correct"
fi
"$KDB" export "$ROOT" "$PLUGIN" > "$FILE"
succeed_if "Could not run kdb export"
diff "$DATADIR"/one_value."$PLUGIN" "$FILE"
succeed_if "Export file one_value.$PLUGIN was not equal"
"$KDB" rm -r "$ROOT"
succeed_if "Could not remove root"
if [ "x$PLUGIN" != "xdini" ]; then
echo "Import as stream (using cat)"
cat "$DATADIR"/one_value."$PLUGIN" | "$KDB" import "$ROOT" "$PLUGIN"
succeed_if "Could not run kdb import"
test "x$("$KDB" ls "$ROOT")" = "xuser:/tests/script"
succeed_if "key name not correct one_value empty root"
if [ "x$PLUGIN" != "xyajl" ]; then
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$ROOT")" = root
succeed_if "root value not correct"
fi
"$KDB" export "$ROOT" "$PLUGIN" > "$FILE"
succeed_if "Could not run kdb export"
diff "$DATADIR"/one_value."$PLUGIN" "$FILE"
succeed_if "Export file one_value.$PLUGIN was not equal"
"$KDB" rm -r "$ROOT"
succeed_if "Could not remove root"
fi
echo "Import with wrong root (overwrite)"
"$KDB" set "$SIDE" val
succeed_if "Could not set $SIDE"
"$KDB" set "$ROOT" "wrong_root" > /dev/null
exit_if_fail "could not set wrong_root"
"$KDB" import -s "import" "$ROOT" "$PLUGIN" "$DATADIR"/one_value."$PLUGIN"
succeed_if "Could not run kdb import"
test "x$("$KDB" ls "$ROOT")" = "xuser:/tests/script"
succeed_if "key name not correct"
if [ "x$PLUGIN" != "xyajl" ]; then
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$ROOT")" = root
succeed_if "root value not correct"
fi
"$KDB" export "$ROOT" "$PLUGIN" > "$FILE"
succeed_if "Could not run kdb export"
diff "$DATADIR"/one_value."$PLUGIN" "$FILE"
succeed_if "Export file one_value.$PLUGIN was not equal"
"$KDB" rm -r "$ROOT"
succeed_if "Could not remove root"
if [ "x$PLUGIN" != "xyajl" ]; then
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$SIDE")" = val
succeed_if "root value not correct"
fi
"$KDB" rm "$SIDE"
succeed_if "Could not remove $SIDE"
echo "Import two values"
"$KDB" import "$ROOT" "$PLUGIN" < "$DATADIR"/two_value."$PLUGIN"
succeed_if "Could not run kdb import"
if [ "x$PLUGIN" != "xyajl" ]; then
test "x$("$KDB" ls "$ROOT")" = "xuser:/tests/script
user:/tests/script/key"
succeed_if "key name not correct"
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$ROOT")" = root
succeed_if "root value not correct"
fi
test "x$("$KDB" get "$ROOT"/key)" = "xvalue"
succeed_if "key value not correct"
"$KDB" export "$ROOT" "$PLUGIN" > "$FILE"
succeed_if "Could not run kdb export"
diff "$DATADIR"/two_value."$PLUGIN" "$FILE"
succeed_if "Export file two_value.$PLUGIN was not equal"
echo "Import one value (cut two values from previous test case)"
"$KDB" set "$SIDE" val
succeed_if "Could not set $SIDE"
"$KDB" import -s "cut" "$ROOT" "$PLUGIN" "$DATADIR"/one_value."$PLUGIN"
succeed_if "Could not run kdb import"
test "x$("$KDB" ls "$ROOT")" = "xuser:/tests/script"
succeed_if "key name not correct"
if [ "x$PLUGIN" != "xyajl" ]; then
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$ROOT")" = root
succeed_if "root value not correct"
fi
"$KDB" export "$ROOT" "$PLUGIN" > "$FILE"
succeed_if "Could not run kdb export"
diff "$DATADIR"/one_value."$PLUGIN" "$FILE"
succeed_if "Export file one_value.$PLUGIN was not equal"
test "x$("$KDB" get "$SIDE")" = "xval"
succeed_if "side value not correct"
"$KDB" rm "$SIDE"
succeed_if "Could not remove $SIDE"
echo "Import one value (cut previous value)"
"$KDB" set "$ROOT" wrong_root
succeed_if "Could not set $ROOT"
"$KDB" set "$ROOT"/val wrong_val
succeed_if "Could not set $ROOT/val"
"$KDB" set "$SIDE" val
succeed_if "Could not set $SIDE"
"$KDB" import -s "cut" "$ROOT" "$PLUGIN" "$DATADIR"/one_value."$PLUGIN"
succeed_if "Could not run kdb import"
test "x$("$KDB" ls "$ROOT")" = "xuser:/tests/script"
succeed_if "key name not correct"
if [ "x$PLUGIN" != "xyajl" ]; then
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$ROOT")" = root
succeed_if "root value not correct"
fi
"$KDB" export "$ROOT" "$PLUGIN" > "$FILE"
succeed_if "Could not run kdb export"
diff "$DATADIR"/one_value."$PLUGIN" "$FILE"
succeed_if "Export file one_value.$PLUGIN was not equal"
if [ "x$PLUGIN" != "xyajl" ]; then
#TODO: yajl currently cannot hold values within
#directories, do not hardcode that
test "$("$KDB" get "$SIDE")" = val
succeed_if "root value not correct"
fi
"$KDB" rm "$SIDE"
succeed_if "Could not remove $SIDE"
"$KDB" rm -r "$ROOT"
succeed_if "Could not remove $ROOT"
done
test $RAN_ONCE != 0
succeed_if "check_import should run for at least one plugin"
end_script