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
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2004-2006
# Oracle Corporation. All rights reserved.
#
# $Id: rep033.tcl,v 12.11 2006/08/24 14:46:37 bostic Exp $
#
# TEST rep033
# TEST Test of internal initialization with rename and remove of dbs.
# TEST
# TEST One master, one client.
# TEST Generate several databases. Replicate to client.
# TEST Do some renames and removes, both before and after
# TEST closing the client.
#
proc rep033 { method { niter 200 } { tnum "033" } args } {
source ./include.tcl
if { $is_windows9x_test == 1 } {
puts "Skipping replication test on Win 9x platform."
return
}
# Valid for all access methods.
if { $checking_valid_methods } {
return "ALL"
}
set args [convert_args $method $args]
set omethod [convert_method $method]
# Run the body of the test with and without recovery,
# and with and without cleaning.
set envargs ""
set cleanopts { noclean clean }
set when { before after }
foreach r $test_recopts {
foreach c $cleanopts {
foreach w $when {
puts "Rep$tnum ($method $envargs $c $r $w $args):\
Test of internal initialization."
rep033_sub $omethod $niter $tnum $envargs \
$r $c $w $args
}
}
}
}
proc rep033_sub { method niter tnum envargs recargs clean when largs } {
global testdir
global util_path
env_cleanup $testdir
replsetup $testdir/MSGQUEUEDIR
set masterdir $testdir/MASTERDIR
set clientdir $testdir/CLIENTDIR
file mkdir $masterdir
file mkdir $clientdir
# Log size is small so we quickly create more than one.
# The documentation says that the log file must be at least
# four times the size of the in-memory log buffer.
set pagesize 4096
append largs " -pagesize $pagesize "
set log_buf [expr $pagesize * 2]
set log_max [expr $log_buf * 4]
# Open a master.
repladd 1
set ma_envcmd "berkdb_env_noerr -create -txn nosync \
-log_buffer $log_buf -log_max $log_max $envargs \
-home $masterdir -rep_transport \[list 1 replsend\]"
# set ma_envcmd "berkdb_env_noerr -create -txn nosync \
# -log_buffer $log_buf -log_max $log_max $envargs \
# -verbose {rep on} -errpfx MASTER \
# -home $masterdir -rep_transport \[list 1 replsend\]"
set masterenv [eval $ma_envcmd $recargs -rep_master]
error_check_good master_env [is_valid_env $masterenv] TRUE
# Open a client
repladd 2
set cl_envcmd "berkdb_env_noerr -create -txn nosync \
-log_buffer $log_buf -log_max $log_max $envargs \
-home $clientdir -rep_transport \[list 2 replsend\]"
# set cl_envcmd "berkdb_env_noerr -create -txn nosync \
# -log_buffer $log_buf -log_max $log_max $envargs \
# -verbose {rep on} -errpfx CLIENT \
# -home $clientdir -rep_transport \[list 2 replsend\]"
set clientenv [eval $cl_envcmd $recargs -rep_client]
error_check_good client_env [is_valid_env $clientenv] TRUE
# Bring the clients online by processing the startup messages.
set envlist "{$masterenv 1} {$clientenv 2}"
process_msgs $envlist
puts "\tRep$tnum.a: Create several databases on master."
set oflags " -env $masterenv $method -create -auto_commit "
set dbw [eval {berkdb_open} $oflags $largs w.db]
set dbx [eval {berkdb_open} $oflags $largs x.db]
set dby [eval {berkdb_open} $oflags $largs y.db]
set dbz [eval {berkdb_open} $oflags $largs z.db]
error_check_good dbw_close [$dbw close] 0
error_check_good dbx_close [$dbx close] 0
error_check_good dby_close [$dby close] 0
error_check_good dbz_close [$dbz close] 0
# Update client, then close.
process_msgs $envlist
puts "\tRep$tnum.b: Close client."
error_check_good client_close [$clientenv close] 0
# If we're doing the rename/remove operations before adding
# databases A and B, manipulate only the existing files.
if { $when == "before" } {
rep033_rename_remove $masterenv
}
# Run rep_test in the master (don't update client).
#
# We'd like to control the names of these dbs, so give
# rep_test an existing handle.
#
puts "\tRep$tnum.c: Create new databases. Populate with rep_test."
set dba [eval {berkdb_open} $oflags $largs a.db]
set dbb [eval {berkdb_open} $oflags $largs b.db]
eval rep_test $method $masterenv $dba $niter 0 0 0 0 $largs
eval rep_test $method $masterenv $dbb $niter 0 0 0 0 $largs
error_check_good dba_close [$dba close] 0
error_check_good dbb_close [$dbb close] 0
# Throw away messages for client.
replclear 2
# If we're doing the rename/remove afterwards, manipulate
# all the files including A and B.
if { $when == "after" } {
rep033_rename_remove $masterenv
}
error_check_good rename_b [$masterenv dbrename b.db x.db] 0
error_check_good remove_a [$masterenv dbremove a.db] 0
puts "\tRep$tnum.d: Run db_archive on master."
set res [eval exec $util_path/db_archive -l -h $masterdir]
error_check_bad log.1.present [lsearch -exact $res log.0000000001] -1
set res [eval exec $util_path/db_archive -d -h $masterdir]
set res [eval exec $util_path/db_archive -l -h $masterdir]
error_check_good log.1.gone [lsearch -exact $res log.0000000001] -1
puts "\tRep$tnum.e: Reopen client ($clean)."
if { $clean == "clean" } {
env_cleanup $clientdir
}
set clientenv [eval $cl_envcmd $recargs -rep_client]
error_check_good client_env [is_valid_env $clientenv] TRUE
set envlist "{$masterenv 1} {$clientenv 2}"
process_msgs $envlist 0 NONE err
if { $clean == "noclean" } {
puts "\tRep$tnum.e.1: Trigger log request"
#
# When we don't clean, starting the client doesn't
# trigger any events. We need to generate some log
# records so that the client requests the missing
# logs and that will trigger it.
#
set entries 10
eval rep_test $method $masterenv NULL $entries $niter 0 0 0 $largs
process_msgs $envlist 0 NONE err
}
puts "\tRep$tnum.f: Verify logs and databases"
#
# By sending in a NULL for dbname, we only compare logs.
#
rep_verify $masterdir $masterenv $clientdir $clientenv 1 1 1 NULL
#
# ... now the databases, manually. X, Y, and C should exist.
#
set dbnames "x.db w.db c.db"
foreach db $dbnames {
set db1 [eval {berkdb_open -env $masterenv} $largs {-rdonly $db}]
set db2 [eval {berkdb_open -env $clientenv} $largs {-rdonly $db}]
error_check_good compare:$db [db_compare \
$db1 $db2 $masterdir/$db $clientdir/$db] 0
error_check_good db1_close [$db1 close] 0
error_check_good db2_close [$db2 close] 0
}
# A, B, and Z should be gone on client.
error_check_good dba_gone [file exists $clientdir/a.db] 0
error_check_good dbb_gone [file exists $clientdir/b.db] 0
#
# Currently we cannot remove z.db on the client because
# we don't own the file namespace. So, we cannot do
# the check below. If that changes, we want the test below.
# error_check_good dbz_gone [file exists $clientdir/z.db] 0
# Clean up.
error_check_good masterenv_close [$masterenv close] 0
error_check_good clientenv_close [$clientenv close] 0
replclose $testdir/MSGQUEUEDIR
}
proc rep033_rename_remove { env } {
# Here we manipulate databases W, X, Y, and Z.
# Remove W.
error_check_good remove_w [$env dbremove w.db] 0
# Rename X to W, Y to C (an entirely new name).
error_check_good rename_x [$env dbrename x.db w.db] 0
error_check_good rename_y [$env dbrename y.db c.db] 0
# Remove Z.
error_check_good remove_z [$env dbremove z.db] 0
}
|