summaryrefslogtreecommitdiffstats
path: root/ctdb/tests/UNIT/tool/ctdb.ptrans.001.sh
blob: 40ef1a2d2d421ed62d0426fc817f3148e922b4e2 (plain)
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
#!/bin/sh

. "${TEST_SCRIPTS_DIR}/unit.sh"

define_test "persistent transactions"

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_other attach "persistent.tdb" persistent

ok_null
simple_test_other pstore "persistent.tdb" "key0" "value0"

ok_null
simple_test "persistent.tdb" <<EOF
"key1" "value1"
"key2" "value2"
"key1" ""
"key2" "value3"
EOF

ok "value0"
simple_test_other pfetch "persistent.tdb" "key0"

ok_null
simple_test_other pfetch "persistent.tdb" "key1"

ok "value3"
simple_test_other pfetch "persistent.tdb" "key2"

ok "0x2"
simple_test_other getdbseqnum "persistent.tdb"

ok_null
simple_test "persistent.tdb" <<EOF
"key0" "value0"
EOF

ok "value0"
simple_test_other pfetch "persistent.tdb" "key0"

ok "0x2"
simple_test_other getdbseqnum "persistent.tdb"