mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
ctdb-tests: Add database attach tests
Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net>
This commit is contained in:
parent
50e25418e0
commit
14bdbef9c1
35
ctdb/tests/tool/ctdb.attach.001.sh
Executable file
35
ctdb/tests/tool/ctdb.attach.001.sh
Executable file
@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "attach volatile database"
|
||||
|
||||
setup_ctdbd <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x0 CURRENT RECMASTER
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0
|
||||
EOF
|
||||
|
||||
ok_null
|
||||
simple_test "volatile.tdb"
|
||||
|
||||
ok <<EOF
|
||||
Number of databases:1
|
||||
dbid:0x211bf47b name:volatile.tdb path:${ctdbd_dbdir}/volatile.tdb
|
||||
EOF
|
||||
|
||||
simple_test_other getdbmap
|
||||
|
||||
ok <<EOF
|
||||
dbid: 0x211bf47b
|
||||
name: volatile.tdb
|
||||
path: ${ctdbd_dbdir}/volatile.tdb
|
||||
PERSISTENT: no
|
||||
REPLICATED: no
|
||||
STICKY: no
|
||||
READONLY: no
|
||||
HEALTH: OK
|
||||
EOF
|
||||
|
||||
simple_test_other getdbstatus "volatile.tdb"
|
35
ctdb/tests/tool/ctdb.attach.002.sh
Executable file
35
ctdb/tests/tool/ctdb.attach.002.sh
Executable file
@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "attach persistent database"
|
||||
|
||||
setup_ctdbd <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x0 CURRENT RECMASTER
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0
|
||||
EOF
|
||||
|
||||
ok_null
|
||||
simple_test "persistent.tdb" persistent
|
||||
|
||||
ok <<EOF
|
||||
Number of databases:1
|
||||
dbid:0x54ef7d5e name:persistent.tdb path:${ctdbd_dbdir}/persistent.tdb PERSISTENT
|
||||
EOF
|
||||
|
||||
simple_test_other getdbmap
|
||||
|
||||
ok <<EOF
|
||||
dbid: 0x54ef7d5e
|
||||
name: persistent.tdb
|
||||
path: ${ctdbd_dbdir}/persistent.tdb
|
||||
PERSISTENT: yes
|
||||
REPLICATED: no
|
||||
STICKY: no
|
||||
READONLY: no
|
||||
HEALTH: OK
|
||||
EOF
|
||||
|
||||
simple_test_other getdbstatus "persistent.tdb"
|
35
ctdb/tests/tool/ctdb.attach.003.sh
Executable file
35
ctdb/tests/tool/ctdb.attach.003.sh
Executable file
@ -0,0 +1,35 @@
|
||||
#!/bin/sh
|
||||
|
||||
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
||||
|
||||
define_test "attach replicated database"
|
||||
|
||||
setup_ctdbd <<EOF
|
||||
NODEMAP
|
||||
0 192.168.20.41 0x0 CURRENT RECMASTER
|
||||
1 192.168.20.42 0x0
|
||||
2 192.168.20.43 0x0
|
||||
EOF
|
||||
|
||||
ok_null
|
||||
simple_test "replicated.tdb" replicated
|
||||
|
||||
ok <<EOF
|
||||
Number of databases:1
|
||||
dbid:0x84241f7c name:replicated.tdb path:${ctdbd_dbdir}/replicated.tdb REPLICATED
|
||||
EOF
|
||||
|
||||
simple_test_other getdbmap
|
||||
|
||||
ok <<EOF
|
||||
dbid: 0x84241f7c
|
||||
name: replicated.tdb
|
||||
path: ${ctdbd_dbdir}/replicated.tdb
|
||||
PERSISTENT: no
|
||||
REPLICATED: yes
|
||||
STICKY: no
|
||||
READONLY: no
|
||||
HEALTH: OK
|
||||
EOF
|
||||
|
||||
simple_test_other getdbstatus "replicated.tdb"
|
Loading…
Reference in New Issue
Block a user