[go: up one dir, main page]

Menu

[r93]: / rhm_test.ksh  Maximize  Restore  History

Download this file

436 lines (393 with data), 13.2 kB

  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
#!/bin/ksh
#
# Script utilizing shUnit to do automated RHM code testing
#
# shUnit can be found at http://shunit.sourceforge.net/
#
# $Id$
#
Suite() {
#rhmhostlist tests
shuRegTest rhmhostlist_SingleEntry
shuRegTest rhmhostlist_MultipleEntry
shuRegTest rhmhostlist_ExtendedSingleEntry
shuRegTest rhmhostlist_ExtendedMultipleEntry
shuRegTest rhmhostlist_NoArgsError
shuRegTest rhmhostlist_HostNotInRHMError
shuRegTest rhmhostlist_Help
#rhmhostadd tests
shuRegTest rhmhostadd_SingleEntry
shuRegTest rhmhostadd_SingleEntryAvailabilityYes
shuRegTest rhmhostadd_SingleEntryAvailabilityNo
shuRegTest rhmhostadd_ShortNameError
shuRegTest rhmhostadd_Help
#rhmhostdel tests
shuRegTest rhmhostdel_SingleEntry
shuRegTest rhmhostdel_SingleEntryForced
shuRegTest rhmhostdel_HostNotInRHMError
shuRegTest rhmhostdel_Error
shuRegTest rhmhostdel_Help
#rhmhostclone tests
shuRegTest rhmhostclone_2ValidHosts
shuRegTest rhmhostclone_2ValidHostsForced
shuRegTest rhmhostclone_Host1HostNotInRHMError
shuRegTest rhmhostclone_Host2HostNotInRHMError
shuRegTest rhmhostclone_Error
shuRegTest rhmhostclone_Help
}
#Expected output:
#www.example.com
rhmhostlist_SingleEntry() {
stdout=$(${RHM_BIN_DIR}/rhmhostlist www.example.com)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostlist" $?
assertContains '^www.example.com$' "$stdout"
}
#Expected output:
#example.com
#www.example.com
rhmhostlist_MultipleEntry() {
stdout=$(${RHM_BIN_DIR}/rhmhostlist example.com)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostlist" $?
assertContains '^www.example.com$' "$stdout"
assertContains '^example.com$' "$stdout"
}
#Expected output:
#www.example.com cerberus 2010-04-05 21:51:41
rhmhostlist_ExtendedSingleEntry() {
stdout=$(${RHM_BIN_DIR}/rhmhostlist -e www.example.com)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostlist" $?
assertContains '^www.example.com' "$stdout"
assertContains 'cerberus' "$stdout"
assertContains '2010-04-05' "$stdout"
assertContains '21:51:41' "$stdout"
}
#Expected output:
#example.com cerberus 2010-03-04 20:26:50
#www.example.com cerberus 2010-04-05 21:51:41
rhmhostlist_ExtendedMultipleEntry() {
stdout=$(${RHM_BIN_DIR}/rhmhostlist -e example.com)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostlist" $?
assertContains '^www.example.com' "$stdout"
assertContains 'cerberus' "$stdout"
assertContains '2010-04-05' "$stdout"
assertContains '21:51:41' "$stdout"
assertContains '^example.com' "$stdout"
assertContains '2010-03-04' "$stdout"
assertContains '20:26:50' "$stdout"
}
#Expected output:
#ERROR: Incorrect number of arguments
#Usage: /Users/cerberus/rhm/bin/rhmhostlist [-e] [-h] <host regex>
#
# -e Extended listing. Include who added the host and when.
# -h This help.
# host regex POSIX compliant host regex.
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostlist_NoArgsError() {
stdout=$(${RHM_BIN_DIR}/rhmhostlist)
[ $? -eq 1 ]
shuAssert "Expected exit code 1 with rhmhostlist" $?
assertContains '^ERROR: Incorrect number of arguments$' "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#No hosts matching rhm1.ginch.org in RHMDB.
#Usage: /Users/cerberus/rhm/bin/rhmhostlist [-e] [-h] <host regex>
#
# -e Extended listing. Include who added the host and when.
# -h This help.
# host regex POSIX compliant host regex.
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostlist_HostNotInRHMError() {
stdout=$(${RHM_BIN_DIR}/rhmhostlist rhm1.ginch.org)
[ $? -eq 5 ]
shuAssert "Expected exit code 5 with rhmhostlist" $?
assertContains '^No hosts matching rhm1.ginch.org in' "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#Usage: /Users/cerberus/rhm/bin/rhmhostlist [-e] [-h] <host regex>
#Expected output:
#Usage: /Users/cerberus/rhm/bin/rhmhostlist [-e] [-h] <host regex>
#
# -e Extended listing. Include who added the host and when.
# -h This help.
# host regex POSIX compliant host regex.
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostlist_Help() {
stdout=$(${RHM_BIN_DIR}/rhmhostlist -h)
[ $? -eq 2 ]
shuAssert "Expected exit code 2 with rhmhostlist" $?
assertContains '^Usage:' "$stdout"
}
#Expected output:
#rhm1.ginch.org successfully added to rhmdb.
rhmhostadd_SingleEntry() {
stdout=$(${RHM_BIN_DIR}/rhmhostadd rhm1.ginch.org)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostadd" $?
assertContains '^rhm1.ginch.org successfully added to' "$stdout"
${RHM_BIN_DIR}/rhmhostdel -f rhm1.ginch.org
}
#Expected output:
#rhm1.ginch.org successfully added to rhmdb.
rhmhostadd_SingleEntryAvailabilityYes() {
stdout=$(${RHM_BIN_DIR}/rhmhostadd -a yes rhm1.ginch.org)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostadd" $?
assertContains '^rhm1.ginch.org successfully added to' "$stdout"
${RHM_BIN_DIR}/rhmhostdel -f rhm1.ginch.org
}
#Expected output:
#rhm1.ginch.org successfully added to rhmdb.
rhmhostadd_SingleEntryAvailabilityNo() {
stdout=$(${RHM_BIN_DIR}/rhmhostadd -a no rhm1.ginch.org)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostadd" $?
assertContains '^rhm1.ginch.org successfully added to' "$stdout"
${RHM_BIN_DIR}/rhmhostdel -f rhm1.ginch.org
}
#Expected output:
#ERROR: FQDN not given. Short name detected.
#Usage: /Users/cerberus/rhm/bin/rhmhostadd [-a yes|no] [-h] FQDN
#
# -a yes|no Set availability flag. Default is yes.
# -h This help.
# FQDN Fully Qualified Domain Name, IE: the full hostname.
#
#Note: FQDN must resolve to an IP address
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostadd_ShortNameError() {
stdout=$(${RHM_BIN_DIR}/rhmhostadd rhm1)
[ $? -eq 5 ]
shuAssert "Expected exit code 5 with rhmhostadd" $?
assertContains '^ERROR: FQDN not given. Short name detected.$' "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#Usage: /Users/cerberus/rhm/bin/rhmhostadd [-a yes|no] [-h] FQDN
#
# -a yes|no Set availability flag. Default is yes.
# -h This help.
# FQDN Fully Qualified Domain Name, IE: the full hostname.
#
#Note: FQDN must resolve to an IP address
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostadd_Help() {
stdout=$(${RHM_BIN_DIR}/rhmhostadd -h)
[ $? -eq 3 ]
shuAssert "Expected exit code 3 with rhmhostadd" $?
assertContains '^Usage:' "$stdout"
}
#Expected output:
#rhm1.ginch.org is to be deleted. Continue? (y/N)
rhmhostdel_SingleEntry() {
${RHM_BIN_DIR}/rhmhostadd rhm1.ginch.org > /dev/null
stdout=$(echo y | ${RHM_BIN_DIR}/rhmhostdel rhm1.ginch.org)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostadd" $?
assertContains 'rhm1.ginch.org is to be deleted. Continue? (y/N)' "$stdout"
}
#Expected output:
#[None, blank output]
rhmhostdel_SingleEntryForced() {
${RHM_BIN_DIR}/rhmhostadd rhm1.ginch.org > /dev/null
stdout=$(${RHM_BIN_DIR}/rhmhostdel -f rhm1.ginch.org)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostdel" $?
}
#Expected output:
#ERROR: rhm1.ginch.org is not in RHMDB. Can't remove what isn't there.
#Usage: /Users/cerberus/rhm/bin/rhmhostdel [-f] [-h] FQDN
#
# -f Force. Do not prompt for confirmation.
# -h This help.
# FQDN Fully Qualified Domain Name, IE: the full hostname.
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostdel_HostNotInRHMError() {
stdout=$(${RHM_BIN_DIR}/rhmhostdel rhm1.ginch.org)
[ $? -eq 6 ]
shuAssert "Expected exit code 6 with rhmhostdel" $?
assertContains "ERROR: rhm1.ginch.org is not in RHMDB. Can't remove what isn't there." "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#ERROR: Incorrect number of arguments
#Usage: /Users/cerberus/rhm/bin/rhmhostdel [-f] [-h] FQDN
#
# -f Force. Do not prompt for confirmation.
# -h This help.
# FQDN Fully Qualified Domain Name, IE: the full hostname.
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostdel_Error() {
stdout=$(${RHM_BIN_DIR}/rhmhostdel)
[ $? -eq 1 ]
shuAssert "Expected exit code 1 with rhmhostdel" $?
assertContains "ERROR: Incorrect number of arguments" "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#Usage: /Users/cerberus/rhm/bin/rhmhostdel [-f] [-h] FQDN
#
# -f Force. Do not prompt for confirmation.
# -h This help.
# FQDN Fully Qualified Domain Name, IE: the full hostname.
#
#RHM (Remote Host Manager)
#Version 0.2-beta11 9/4/11
rhmhostdel_Help() {
stdout=$(${RHM_BIN_DIR}/rhmhostdel -h)
[ $? -eq 2 ]
shuAssert "Expected exit code 2 with rhmhostdel" $?
assertContains '^Usage:' "$stdout"
}
#Expected output:
#
#rhm1.ginch.org is about to be cloned onto rhm2.ginch.org.
#
#Continue? (y/N) Adding test/tree/2#2 to rhm2.ginch.org...
#
#test/tree/2#2 successfully added to rhm2.ginch.org by cerberus on 2011-09-22 22:27:15.
#
#Adding test_tree_1#1 to rhm2.ginch.org...
#
#test_tree_1#1 successfully added to rhm2.ginch.org by cerberus on 2011-09-22 22:27:15.
#
#rhm2.ginch.org:
# test/tree/2#2
# test_tree_1#1
rhmhostclone_2ValidHosts() {
#Setup 2 hosts and 2 trees on 1 host.
${RHM_BIN_DIR}/rhmhostdel -f rhm1.ginch.org > /dev/null
${RHM_BIN_DIR}/rhmhostdel -f rhm2.ginch.org > /dev/null
${RHM_BIN_DIR}/rhmhostadd rhm1.ginch.org > /dev/null || exit 1
${RHM_BIN_DIR}/rhmhostadd rhm2.ginch.org > /dev/null || exit 1
${RHM_BIN_DIR}/rhmtreeadd -t test_tree_1 -v 1 rhm1.ginch.org > /dev/null || exit 1
${RHM_BIN_DIR}/rhmtreeadd -t test/tree/2 -v 2 rhm1.ginch.org > /dev/null || exit 1
stdout=$(echo y | ${RHM_BIN_DIR}/rhmhostclone rhm1.ginch.org rhm2.ginch.org)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostclone" $?
assertContains '^rhm1.ginch.org is about to be cloned onto rhm2.ginch.org.' "$stdout"
assertContains 'Continue? (y/N)' "$stdout"
assertContains 'Adding test_tree_1#1 to rhm2.ginch.org' "$stdout"
assertContains 'test_tree_1#1 successfully added to rhm2.ginch.org by' "$stdout"
assertContains 'Adding test/tree/2#2 to rhm2.ginch.org' "$stdout"
assertContains 'test/tree/2#2 successfully added to rhm2.ginch.org by' "$stdout"
#Clean up the target host
${RHM_BIN_DIR}/rhmtreedel -t all -y rhm2.ginch.org > /dev/null || exit 1
}
#Expected output:
#Adding test/tree/2#2 to rhm2.ginch.org...
#
#test/tree/2#2 successfully added to rhm2.ginch.org by cerberus on 2011-09-22 22:28:20.
#
#Adding test_tree_1#1 to rhm2.ginch.org...
#
#test_tree_1#1 successfully added to rhm2.ginch.org by cerberus on 2011-09-22 22:28:20.
#
#rhm2.ginch.org:
# test/tree/2#2
# test_tree_1#1
rhmhostclone_2ValidHostsForced() {
stdout=$(${RHM_BIN_DIR}/rhmhostclone -f rhm1.ginch.org rhm2.ginch.org)
[ $? -eq 0 ]
shuAssert "Expected exit code 0 with rhmhostclone" $?
assertContains 'Adding test_tree_1#1 to rhm2.ginch.org' "$stdout"
assertContains 'test_tree_1#1 successfully added to rhm2.ginch.org by' "$stdout"
assertContains 'Adding test/tree/2#2 to rhm2.ginch.org' "$stdout"
assertContains 'test/tree/2#2 successfully added to rhm2.ginch.org by' "$stdout"
#Clean up the target host
${RHM_BIN_DIR}/rhmtreedel -t all -y rhm2.ginch.org > /dev/null || exit 1
}
#Expected output:
#Both SRC and DST hosts must be in RHMDB.
#Usage: bin/rhmhostclone [-f] [-h] <SRC FQDN> <DST FQDN>
#...
rhmhostclone_Host1HostNotInRHMError() {
stdout=$(${RHM_BIN_DIR}/rhmhostclone rhm.ginch.org rhm2.ginch.org)
[ $? -eq 4 ]
shuAssert "Expected exit code 4 with rhmhostclone" $?
assertContains 'Both SRC and DST hosts must be in' "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#Both SRC and DST hosts must be in RHMDB.
#Usage: bin/rhmhostclone [-f] [-h] <SRC FQDN> <DST FQDN>
#...
rhmhostclone_Host2HostNotInRHMError() {
stdout=$(${RHM_BIN_DIR}/rhmhostclone rhm1.ginch.org rhm.ginch.org)
[ $? -eq 4 ]
shuAssert "Expected exit code 4 with rhmhostclone" $?
assertContains 'Both SRC and DST hosts must be in' "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#ERROR: Incorrect number of arguments
#Usage: ./rhmhostclone [-f] [-h] <SRC FQDN> <DST FQDN>
#
# -f Force. Bypass confirmation prompt.
# -h This help.
# SRC FQDN FQDN of the source host.
# DST FQDN FQDN of the target host.
#
#RHM (Remote Host Manager)
#Version 0.2-beta12 9/14/11
rhmhostclone_Error() {
stdout=$(${RHM_BIN_DIR}/rhmhostclone)
[ $? -eq 2 ]
shuAssert "Expected exit code 2 with rhmhostclone" $?
assertContains 'ERROR: Incorrect number of arguments' "$stdout"
assertContains '^Usage:' "$stdout"
}
#Expected output:
#Usage: ./rhmhostclone [-f] [-h] <SRC FQDN> <DST FQDN>
#
# -f Force. Bypass confirmation prompt.
# -h This help.
# SRC FQDN FQDN of the source host.
# DST FQDN FQDN of the target host.
#
#RHM (Remote Host Manager)
#Version 0.2-beta12 9/14/11
rhmhostclone_Help() {
stdout=$(${RHM_BIN_DIR}/rhmhostclone -h)
[ $? -eq 1 ]
shuAssert "Expected exit code 1 with rhmhostclone" $?
assertContains '^Usage:' "$stdout"
${RHM_BIN_DIR}/rhmhostdel -f rhm1.ginch.org > /dev/null
${RHM_BIN_DIR}/rhmhostdel -f rhm2.ginch.org > /dev/null
}
###
# Support functions, not part of specific testing
###
assertContains() {
expected_substring="$1"
actual_string="$2"
echo "$actual_string" | grep -q "$expected_substring"
shuAssert "Expected '$expected_substring'" $?
}
###
# main
###
RHM_BIN_DIR=~/rhmtest/bin
#Testing stuff shUnit
. ~/rhmtest/ShUnit/shUnit
shuStart Suite