blob: 2d8cce426e1eb77ee32800af943dc2de14e79606 (
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
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
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2005-2009 Oracle. All rights reserved.
#
# $Id$
#
# TEST rep058
# TEST
# TEST Replication with early databases
# TEST
# TEST Mimic an application where they create a database before
# TEST calling rep_start, thus writing log records on a client
# TEST before it is a client. Verify we cannot join repl group.
proc rep058 { method { tnum "058" } args } {
source ./include.tcl
global repfiles_in_memory
if { $is_windows9x_test == 1 } {
puts "Skipping replication test on Win 9x platform."
return
}
# There should be no difference with methods. Just use btree.
if { $checking_valid_methods } {
set test_methods { btree }
return $test_methods
}
if { [is_btree $method] == 0 } {
puts "Rep058: Skipping for method $method."
return
}
set args [convert_args $method $args]
set logsets [create_logsets 2]
set msg2 "and on-disk replication files"
if { $repfiles_in_memory } {
set msg2 "and in-memory replication files"
}
foreach r $test_recopts {
foreach l $logsets {
set logindex [lsearch -exact $l "in-memory"]
if { $r == "-recover" && $logindex != -1 } {
puts "Skipping test with -recover for\
in-memory logs."
continue
}
puts "Rep$tnum ($method $r): Replication with \
pre-created databases $msg2."
puts "Rep$tnum: Master logs are [lindex $l 0]"
puts "Rep$tnum: Client logs are [lindex $l 1]"
rep058_sub $method $tnum $l $r $args
}
}
}
proc rep058_sub { method tnum logset recargs largs } {
source ./include.tcl
global repfiles_in_memory
global rep_verbose
global verbose_type
set verbargs ""
if { $rep_verbose == 1 } {
set verbargs " -verbose {$verbose_type on} "
}
set repmemargs ""
if { $repfiles_in_memory } {
set repmemargs "-rep_inmem_files "
}
set orig_tdir $testdir
set masterdir $testdir/MASTERDIR
set clientdir $testdir/CLIENTDIR
env_cleanup $testdir
replsetup $testdir/MSGQUEUEDIR
file mkdir $masterdir
file mkdir $clientdir
set m_logtype [lindex $logset 0]
set c_logtype [lindex $logset 1]
# In-memory logs require a large log buffer, and cannot
# be used with -txn nosync. Adjust the args for master
# and client.
set m_logargs [adjust_logargs $m_logtype]
set m_txnargs [adjust_txnargs $m_logtype]
set c_logargs [adjust_logargs $c_logtype]
set c_txnargs [adjust_txnargs $c_logtype]
set omethod [convert_method $method]
# Open a master.
repladd 1
set envcmd(M) "berkdb_env_noerr -create $m_txnargs \
$m_logargs -lock_detect default $verbargs $repmemargs \
-home $masterdir -rep_transport \[list 1 replsend\]"
set menv [eval $envcmd(M) $recargs]
# Open a client
repladd 2
set envcmd(C) "berkdb_env_noerr -create $c_txnargs \
$c_logargs -lock_detect default $verbargs $repmemargs \
-home $clientdir -rep_transport \[list 2 replsend\]"
set cenv [eval $envcmd(C) $recargs]
error_check_good client_env [is_valid_env $cenv] TRUE
puts "\tRep$tnum.a: Create same database in both envs."
set dbname "test.db"
set mdb [eval {berkdb_open_noerr -env $menv -create \
-auto_commit -mode 0644} -btree $dbname]
error_check_good open [is_valid_db $mdb] TRUE
set cdb [eval {berkdb_open_noerr -env $cenv -create \
-auto_commit -mode 0644} -btree $dbname]
error_check_good open [is_valid_db $cdb] TRUE
puts "\tRep$tnum.b: Start master and client now."
error_check_good master [$menv rep_start -master] 0
error_check_good client [$cenv rep_start -client] 0
#
# We'll only catch this error if we turn on no-autoinit.
# Otherwise, the system will throw away everything on the
# client and resync.
#
$cenv rep_config {noautoinit on}
set envlist "{$menv 1} {$cenv 2}"
process_msgs $envlist 0 NONE err
error_check_good msg_err [is_substr $err "REP_JOIN_FAILURE"] 1
puts "\tRep$tnum.c: Clean up."
error_check_good cdb_close [$cdb close] 0
error_check_good cdb_close [$mdb close] 0
error_check_good menv_close [$menv close] 0
error_check_good cenv_close [$cenv close] 0
replclose $testdir/MSGQUEUEDIR
set testdir $orig_tdir
return
}
|