2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-29 09:13:08 +00:00
2018-10-29 01:55:45 -04:00

38 lines
698 B
Plaintext

start:tabrestore_null
description:tabrestore without any flag
label:mn_only,ci_test,db
cmd:tabrestore
check:rc!=0
check:output=~Usage
end
start:tabrestore_table
label:mn_only,ci_test,db
cmd:tabdump site > /tmp/site.csv
check:rc==0
cmd:chtab key=db2installloc site.value=/test
check:rc==0
cmd:tabrestore /tmp/site.csv
check:rc==0
cmd:tabdump site > /tmp/site1.csv
check:rc==0
cmd:diff /tmp/site1.csv /tmp/site.csv
check:rc==0
cmd:rm -f /tmp/site.csv /tmp/site1.csv
end
start:tabrestore_h
label:mn_only,ci_test,db
cmd:tabrestore -h
check:output=~Usage
end
start:tabrestore_err
description:tabrestore wrong.csv
label:mn_only,ci_test,db
cmd:tabrestore wrong.csv
check:rc!=0
check:output=~Error
end