AryaWu/sqlite
0
1# 2009 January 302#3# The author disclaims copyright to this source code. In place of4# a legal notice, here is a blessing:5#6# May you do good and not evil.7# May you find forgiveness for yourself and forgive others.8# May you share freely, never taking more than you give.9#10#***********************************************************************11# This file implements regression tests for SQLite library. The12# focus of this file is testing the sqlite3_backup_XXX API.13#14# $Id: backup.test,v 1.11 2009/06/05 17:09:12 drh Exp $15 16set testdir [file dirname $argv0]17source $testdir/tester.tcl18 19do_not_use_codec20 21#---------------------------------------------------------------------22# Test organization:23#24# backup-1.*: Warm-body tests.25#26# backup-2.*: Test backup under various conditions. To and from in-memory27# databases. To and from empty/populated databases. etc.28#29# backup-3.*: Verify that the locking-page (pending byte page) is handled.30#31# backup-4.*: Test various error conditions.32#33# backup-5.*: Test the source database being modified during a backup.34#35# backup-6.*: Test the backup_remaining() and backup_pagecount() APIs.36#37# backup-7.*: Test SQLITE_BUSY and SQLITE_LOCKED errors.38#39# backup-8.*: Test multiple simultaneous backup operations.40#41# backup-9.*: Test that passing a negative argument to backup_step() is42# interpreted as "copy the whole file".43# 44# backup-10.*: Test writing the source database mid backup.45#46 47proc data_checksum {db file} { $db one "SELECT md5sum(a, b) FROM ${file}.t1" }48proc test_contents {name db1 file1 db2 file2} {49 $db2 eval {select * from sqlite_master}50 $db1 eval {select * from sqlite_master}51 set checksum [data_checksum $db2 $file2]52 uplevel [list do_test $name [list data_checksum $db1 $file1] $checksum]53}54 55do_test backup-1.1 {56 execsql {57 BEGIN;58 CREATE TABLE t1(a, b);59 CREATE INDEX i1 ON t1(a, b);60 INSERT INTO t1 VALUES(1, randstr(1000,1000));61 INSERT INTO t1 VALUES(2, randstr(1000,1000));62 INSERT INTO t1 VALUES(3, randstr(1000,1000));63 INSERT INTO t1 VALUES(4, randstr(1000,1000));64 INSERT INTO t1 VALUES(5, randstr(1000,1000));65 COMMIT;66 }67} {}68 69# Sanity check to verify that the [test_contents] proc works.70#71test_contents backup-1.2 db main db main72 73# Check that it is possible to create and finish backup operations.74#75do_test backup-1.3.1 {76 delete_file test2.db77 sqlite3 db2 test2.db78 sqlite3_backup B db2 main db main79} {B}80do_test backup-1.3.2 {81 B finish82} {SQLITE_OK}83do_test backup-1.3.3 {84 info commands B85} {}86 87# Simplest backup operation. Backup test.db to test2.db. test2.db is 88# initially empty. test.db uses the default page size.89# 90do_test backup-1.4.1 {91 sqlite3_backup B db2 main db main92} {B}93do_test backup-1.4.2 {94 B step 20095} {SQLITE_DONE}96do_test backup-1.4.3 {97 B finish98} {SQLITE_OK}99do_test backup-1.4.4 {100 info commands B101} {}102test_contents backup-1.4.5 db2 main db main103db close104db2 close105#106# End of backup-1.* tests.107#---------------------------------------------------------------------108 109 110#---------------------------------------------------------------------111# The following tests, backup-2.*, are based on the following procedure:112#113# 1) Populate the source database.114# 2) Populate the destination database.115# 3) Run the backup to completion. (backup-2.*.1)116# 4) Integrity check the destination db. (backup-2.*.2)117# 5) Check that the contents of the destination db is the same as that118# of the source db. (backup-2.*.3)119# 120# The test is run with all possible combinations of the following121# input parameters, except that if the destination is an in-memory122# database, the only page size tested is 1024 bytes (the same as the123# source page-size).124#125# * Source database is an in-memory database, OR126# * Source database is a file-backed database.127#128# * Target database is an in-memory database, OR129# * Target database is a file-backed database.130#131# * Destination database is a main file, OR132# * Destination database is an attached file, OR133# * Destination database is a temp database.134#135# * Target database is empty (zero bytes), OR136# * Target database is larger than the source, OR137# * Target database is smaller than the source.138#139# * Target database page-size is the same as the source, OR140# * Target database page-size is larger than the source, OR141# * Target database page-size is smaller than the source.142#143# * Each call to step copies a single page, OR144# * A single call to step copies the entire source database.145#146set iTest 1147foreach zSrcFile {test.db :memory:} {148foreach zDestFile {test2.db :memory:} {149foreach zOpenScript [list {150 sqlite3 db $zSrcFile151 sqlite3 db2 $zSrcFile152 db2 eval "ATTACH '$zDestFile' AS bak"153 set db_dest db2154 set file_dest bak155} {156 sqlite3 db $zSrcFile157 sqlite3 db2 $zDestFile158 set db_dest db2159 set file_dest main160} {161 sqlite3 db $zSrcFile162 sqlite3 db2 $zDestFile163 set db_dest db2164 set file_dest temp165}] {166foreach rows_dest {0 3 10} {167foreach pgsz_dest {512 1024 2048 4096} {168foreach nPagePerStep {1 200} {169 170 # Open the databases.171 catch { delete_file test.db }172 catch { delete_file test2.db }173 eval $zOpenScript174 175 # Set to true if copying to an in-memory destination. Copying to an 176 # in-memory destination is only possible if the initial destination177 # page size is the same as the source page size (in this case 1024 bytes).178 #179 set isMemDest [expr { $zDestFile eq ":memory:" || $file_dest eq "temp" }]180 181 if 0 {182 puts -nonewline "Test $iTest: src=$zSrcFile dest=$zDestFile"183 puts -nonewline " (as $db_dest.$file_dest)"184 puts -nonewline " rows_dest=$rows_dest pgsz_dest=$pgsz_dest"185 puts ""186 }187 188 if { $isMemDest==0 || $pgsz_dest==1024 || $rows_dest==0 } {189 190 # Set up the content of the source database.191 execsql {192 PRAGMA page_size = 1024;193 BEGIN;194 CREATE TABLE t1(a, b);195 CREATE INDEX i1 ON t1(a, b);196 INSERT INTO t1 VALUES(1, randstr(1000,1000));197 INSERT INTO t1 VALUES(2, randstr(1000,1000));198 INSERT INTO t1 VALUES(3, randstr(1000,1000));199 INSERT INTO t1 VALUES(4, randstr(1000,1000));200 INSERT INTO t1 VALUES(5, randstr(1000,1000));201 COMMIT;202 }203 204 205 206 # Set up the content of the target database.207 execsql "PRAGMA ${file_dest}.page_size = ${pgsz_dest}" $db_dest208 if {$rows_dest != 0} {209 execsql "210 BEGIN; 211 CREATE TABLE ${file_dest}.t1(a, b);212 CREATE INDEX ${file_dest}.i1 ON t1(a, b);213 " $db_dest214 for {set ii 0} {$ii < $rows_dest} {incr ii} {215 execsql "216 INSERT INTO ${file_dest}.t1 VALUES(1, randstr(1000,1000))217 " $db_dest218 }219 execsql COMMIT $db_dest220 }221 222 # Backup the source database.223 do_test backup-2.$iTest.1 {224 sqlite3_backup B $db_dest $file_dest db main225 while {[B step $nPagePerStep]=="SQLITE_OK"} {}226 B finish227 } {SQLITE_OK}228 229 # Run integrity check on the backup.230 do_test backup-2.$iTest.2 {231 execsql "PRAGMA ${file_dest}.integrity_check" $db_dest232 } {ok}233 234 test_contents backup-2.$iTest.3 db main $db_dest $file_dest235 236 }237 238 db close239 catch {db2 close}240 incr iTest241 242} } } } } }243#244# End of backup-2.* tests.245#---------------------------------------------------------------------246 247#---------------------------------------------------------------------248# These tests, backup-3.*, ensure that nothing goes wrong if either 249# the source or destination database are large enough to include the250# the locking-page (the page that contains the range of bytes that251# the locks are applied to). These tests assume that the pending252# byte is at offset 0x00010000 (64KB offset), as set by tester.tcl, 253# not at the 1GB offset as it usually is.254#255# The test procedure is as follows (same procedure as used for 256# the backup-2.* tests):257#258# 1) Populate the source database.259# 2) Populate the destination database.260# 3) Run the backup to completion. (backup-3.*.1)261# 4) Integrity check the destination db. (backup-3.*.2)262# 5) Check that the contents of the destination db is the same as that263# of the source db. (backup-3.*.3)264#265# The test procedure is run with the following parameters varied: 266#267# * Source database includes pending-byte page.268# * Source database does not include pending-byte page.269#270# * Target database includes pending-byte page.271# * Target database does not include pending-byte page.272#273# * Target database page-size is the same as the source, OR274# * Target database page-size is larger than the source, OR275# * Target database page-size is smaller than the source.276#277set iTest 1278foreach nSrcPg {10 64 65 66 100} {279foreach nDestRow {10 100} {280foreach nDestPgsz {512 1024 2048 4096} {281 282 catch { delete_file test.db }283 catch { delete_file test2.db }284 sqlite3 db test.db285 sqlite3 db2 test2.db286 287 # Set up the content of the two databases.288 #289 execsql { PRAGMA page_size = 1024 }290 execsql "PRAGMA page_size = $nDestPgsz" db2291 foreach db {db db2} {292 execsql {293 BEGIN; 294 CREATE TABLE t1(a, b);295 CREATE INDEX i1 ON t1(a, b);296 COMMIT;297 } $db298 }299 while {[file size test.db]/1024 < $nSrcPg} {300 execsql { INSERT INTO t1 VALUES($ii, randstr(200,200)) }301 }302 303 for {set ii 0} {$ii < $nDestRow} {incr ii} {304 execsql { INSERT INTO t1 VALUES($ii, randstr(1000,1000)) } db2305 }306 307 # Backup the source database.308 do_test backup-3.$iTest.1 {309 sqlite3_backup B db main db2 main310 while {[B step 10]=="SQLITE_OK"} {}311 B finish312 } {SQLITE_OK}313 314 # Run integrity check on the backup.315 do_test backup-3.$iTest.2 {316 execsql "PRAGMA integrity_check" db2317 } {ok}318 319 test_contents backup-3.$iTest.3 db main db2 main320 321 db close322 db2 close323 incr iTest324}325}326}327 328#--------------------------------------------------------------------329do_test backup-3.$iTest.1 {330 catch { forcedelete test.db }331 catch { forcedelete test2.db }332 sqlite3 db test.db333 set iTab 1334 335 db eval { PRAGMA page_size = 512 }336 while {[file size test.db] <= $::sqlite_pending_byte} {337 db eval "CREATE TABLE t${iTab}(a, b, c)"338 incr iTab339 }340 341 sqlite3 db2 test2.db342 db2 eval { PRAGMA page_size = 4096 }343 while {[file size test2.db] < $::sqlite_pending_byte} {344 db2 eval "CREATE TABLE t${iTab}(a, b, c)"345 incr iTab346 }347 348 sqlite3_backup B db2 main db main349 B step -1350} {SQLITE_DONE}351 352do_test backup-3.$iTest.2 {353 B finish354} {SQLITE_OK}355 356#357# End of backup-3.* tests.358#---------------------------------------------------------------------359 360 361#---------------------------------------------------------------------362# The following tests, backup-4.*, test various error conditions:363# 364# backup-4.1.*: Test invalid database names.365#366# backup-4.2.*: Test that the source database cannot be detached while 367# a backup is in progress.368#369# backup-4.3.*: Test that the source database handle cannot be closed370# while a backup is in progress.371#372# backup-4.4.*: Test an attempt to specify the same handle for the373# source and destination databases.374#375# backup-4.5.*: Test that an in-memory destination with a different376# page-size to the source database is an error.377#378sqlite3 db test.db379sqlite3 db2 test2.db380 381do_test backup-4.1.1 {382 catch { sqlite3_backup B db aux db2 main }383} {1}384do_test backup-4.1.2 {385 sqlite3_errmsg db386} {unknown database aux}387do_test backup-4.1.3 {388 catch { sqlite3_backup B db main db2 aux }389} {1}390do_test backup-4.1.4 {391 sqlite3_errmsg db392} {unknown database aux}393 394do_test backup-4.2.1 {395 catch { forcedelete test3.db }396 catch { forcedelete test4.db }397 execsql { 398 ATTACH 'test3.db' AS aux1;399 CREATE TABLE aux1.t1(a, b);400 }401 execsql { 402 ATTACH 'test4.db' AS aux2;403 CREATE TABLE aux2.t2(a, b);404 } db2405 sqlite3_backup B db aux1 db2 aux2406} {B}407do_test backup-4.2.2 {408 catchsql { DETACH aux2 } db2409} {1 {database aux2 is locked}}410do_test backup-4.2.3 {411 B step 50412} {SQLITE_DONE}413do_test backup-4.2.4 {414 B finish415} {SQLITE_OK}416 417do_test backup-4.3.1 {418 sqlite3_backup B db aux1 db2 aux2419} {B}420do_test backup-4.3.2 {421 db2 cache flush422 sqlite3_close db2423} {SQLITE_BUSY}424do_test backup-4.3.3 {425 sqlite3_errmsg db2426} {unable to close due to unfinalized statements or unfinished backups}427do_test backup-4.3.4 {428 B step 50429} {SQLITE_DONE}430do_test backup-4.3.5 {431 B finish432} {SQLITE_OK}433 434do_test backup-4.4.1 {435 set rc [catch {sqlite3_backup B db main db aux1}]436 list $rc [sqlite3_errcode db] [sqlite3_errmsg db]437} {1 SQLITE_ERROR {source and destination must be distinct}}438db close439db2 close440 441do_test backup-4.5.1 {442 catch { forcedelete test.db }443 sqlite3 db test.db444 sqlite3 db2 :memory:445 execsql {446 CREATE TABLE t1(a, b);447 INSERT INTO t1 VALUES(1, 2);448 }449 execsql {450 PRAGMA page_size = 4096;451 CREATE TABLE t2(a, b);452 INSERT INTO t2 VALUES(3, 4);453 } db2454 sqlite3_backup B db2 main db main455} {B}456do_test backup-4.5.2 {457 B step 5000458} {SQLITE_READONLY}459do_test backup-4.5.3 {460 B finish461} {SQLITE_READONLY}462 463db close464db2 close465#466# End of backup-4.* tests.467#---------------------------------------------------------------------468 469#---------------------------------------------------------------------470# The following tests, backup-5.*, test that the backup works properly471# when the source database is modified during the backup. Test cases472# are organized as follows:473#474# backup-5.x.1.*: Nothing special. Modify the database mid-backup.475#476# backup-5.x.2.*: Modify the database mid-backup so that one or more477# pages are written out due to cache stress. Then 478# rollback the transaction.479#480# backup-5.x.3.*: Database is vacuumed.481#482# backup-5.x.4.*: Database is vacuumed and the page-size modified.483#484# backup-5.x.5.*: Database is shrunk via incr-vacuum.485#486# Each test is run three times, in the following configurations:487#488# 1) Backing up file-to-file. The writer writes via an external pager.489# 2) Backing up file-to-file. The writer writes via the same pager as490# is used by the backup operation.491# 3) Backing up memory-to-file. 492#493set iTest 0494forcedelete bak.db-wal495foreach {writer file} {db test.db db3 test.db db :memory:} {496 incr iTest497 catch { delete_file bak.db }498 sqlite3 db2 bak.db499 catch { delete_file $file }500 sqlite3 db $file501 sqlite3 db3 $file502 503 do_test backup-5.$iTest.1.1 {504 execsql {505 BEGIN;506 CREATE TABLE t1(a, b);507 CREATE INDEX i1 ON t1(a, b);508 INSERT INTO t1 VALUES(1, randstr(1000,1000));509 INSERT INTO t1 VALUES(2, randstr(1000,1000));510 INSERT INTO t1 VALUES(3, randstr(1000,1000));511 INSERT INTO t1 VALUES(4, randstr(1000,1000));512 INSERT INTO t1 VALUES(5, randstr(1000,1000));513 COMMIT;514 }515 expr {[execsql {PRAGMA page_count}] > 10}516 } {1}517 do_test backup-5.$iTest.1.2 {518 sqlite3_backup B db2 main db main519 B step 5520 } {SQLITE_OK}521 do_test backup-5.$iTest.1.3 {522 execsql { UPDATE t1 SET a = a + 1 } $writer523 B step 50524 } {SQLITE_DONE}525 do_test backup-5.$iTest.1.4 {526 B finish527 } {SQLITE_OK} 528 integrity_check backup-5.$iTest.1.5 db2529 test_contents backup-5.$iTest.1.6 db main db2 main530 531 do_test backup-5.$iTest.2.1 {532 execsql {533 PRAGMA cache_size = 10;534 BEGIN;535 INSERT INTO t1 SELECT '', randstr(1000,1000) FROM t1;536 INSERT INTO t1 SELECT '', randstr(1000,1000) FROM t1;537 INSERT INTO t1 SELECT '', randstr(1000,1000) FROM t1;538 INSERT INTO t1 SELECT '', randstr(1000,1000) FROM t1;539 COMMIT;540 }541 } {}542 do_test backup-5.$iTest.2.2 {543 sqlite3_backup B db2 main db main544 B step 50545 } {SQLITE_OK}546 do_test backup-5.$iTest.2.3 {547 execsql { 548 BEGIN;549 UPDATE t1 SET a = a + 1;550 ROLLBACK;551 } $writer552 B step 5000553 } {SQLITE_DONE}554 do_test backup-5.$iTest.2.4 {555 B finish556 } {SQLITE_OK} 557 integrity_check backup-5.$iTest.2.5 db2558 test_contents backup-5.$iTest.2.6 db main db2 main559 560 do_test backup-5.$iTest.3.1 {561 execsql { UPDATE t1 SET b = randstr(1000,1000) }562 } {}563 do_test backup-5.$iTest.3.2 {564 sqlite3_backup B db2 main db main565 B step 50566 } {SQLITE_OK}567 do_test backup-5.$iTest.3.3 {568 execsql { VACUUM } $writer569 B step 5000570 } {SQLITE_DONE}571 do_test backup-5.$iTest.3.4 {572 B finish573 } {SQLITE_OK} 574 integrity_check backup-5.$iTest.3.5 db2575 test_contents backup-5.$iTest.3.6 db main db2 main576 577 do_test backup-5.$iTest.4.1 {578 execsql { UPDATE t1 SET b = randstr(1000,1000) }579 } {}580 do_test backup-5.$iTest.4.2 {581 sqlite3_backup B db2 main db main582 B step 50583 } {SQLITE_OK}584 do_test backup-5.$iTest.4.3 {585 execsql { 586 PRAGMA page_size = 2048;587 VACUUM;588 } $writer589 B step 5000590 } {SQLITE_DONE}591 do_test backup-5.$iTest.4.4 {592 B finish593 } {SQLITE_OK} 594 integrity_check backup-5.$iTest.4.5 db2595 test_contents backup-5.$iTest.4.6 db main db2 main596 597 catch {db close}598 catch {db2 close}599 catch {db3 close}600 catch { delete_file bak.db }601 sqlite3 db2 bak.db602 catch { delete_file $file }603 sqlite3 db $file604 sqlite3 db3 $file605 do_test backup-5.$iTest.5.1 {606 execsql {607 PRAGMA auto_vacuum = incremental;608 BEGIN;609 CREATE TABLE t1(a, b);610 CREATE INDEX i1 ON t1(a, b);611 INSERT INTO t1 VALUES(1, randstr(1000,1000));612 INSERT INTO t1 VALUES(2, randstr(1000,1000));613 INSERT INTO t1 VALUES(3, randstr(1000,1000));614 INSERT INTO t1 VALUES(4, randstr(1000,1000));615 INSERT INTO t1 VALUES(5, randstr(1000,1000));616 COMMIT;617 }618 } {}619 do_test backup-5.$iTest.5.2 {620 sqlite3_backup B db2 main db main621 B step 8622 } {SQLITE_OK}623 do_test backup-5.$iTest.5.3 {624 execsql { 625 DELETE FROM t1;626 PRAGMA incremental_vacuum;627 } $writer628 B step 50629 } {SQLITE_DONE}630 do_test backup-5.$iTest.5.4 {631 B finish632 } {SQLITE_OK} 633 integrity_check backup-5.$iTest.5.5 db2634 test_contents backup-5.$iTest.5.6 db main db2 main635 catch {db close}636 catch {db2 close}637 catch {db3 close}638}639#640# End of backup-5.* tests.641#---------------------------------------------------------------------642 643#---------------------------------------------------------------------644# Test the sqlite3_backup_remaining() and backup_pagecount() APIs.645#646do_test backup-6.1 {647 catch { forcedelete test.db }648 catch { forcedelete test2.db }649 sqlite3 db test.db650 sqlite3 db2 test2.db651 execsql {652 BEGIN;653 CREATE TABLE t1(a, b);654 CREATE INDEX i1 ON t1(a, b);655 INSERT INTO t1 VALUES(1, randstr(1000,1000));656 INSERT INTO t1 VALUES(2, randstr(1000,1000));657 INSERT INTO t1 VALUES(3, randstr(1000,1000));658 INSERT INTO t1 VALUES(4, randstr(1000,1000));659 INSERT INTO t1 VALUES(5, randstr(1000,1000));660 COMMIT;661 }662} {}663do_test backup-6.2 {664 set nTotal [expr {[file size test.db]/1024}]665 sqlite3_backup B db2 main db main666 B step 1667} {SQLITE_OK}668do_test backup-6.3 {669 B pagecount670} $nTotal671do_test backup-6.4 {672 B remaining673} [expr $nTotal-1]674do_test backup-6.5 {675 B step 5676 list [B remaining] [B pagecount]677} [list [expr $nTotal-6] $nTotal]678do_test backup-6.6 {679 execsql { CREATE TABLE t2(a PRIMARY KEY, b) }680 B step 1681 list [B remaining] [B pagecount]682} [list [expr $nTotal-5] [expr $nTotal+2]]683 684do_test backup-6.X {685 B finish686} {SQLITE_OK}687 688catch {db close}689catch {db2 close}690 691#---------------------------------------------------------------------692# Test cases backup-7.* test that SQLITE_BUSY and SQLITE_LOCKED errors693# are returned correctly:694#695# backup-7.1.*: Source database is externally locked (return SQLITE_BUSY).696#697# backup-7.2.*: Attempt to step the backup process while a 698# write-transaction is underway on the source pager (return699# SQLITE_LOCKED).700#701# backup-7.3.*: Destination database is externally locked (return SQLITE_BUSY).702#703do_test backup-7.0 {704 catch { forcedelete test.db }705 catch { forcedelete test2.db }706 sqlite3 db2 test2.db707 sqlite3 db test.db708 execsql {709 CREATE TABLE t1(a, b);710 CREATE INDEX i1 ON t1(a, b);711 INSERT INTO t1 VALUES(1, randstr(1000,1000));712 INSERT INTO t1 SELECT a+ 1, randstr(1000,1000) FROM t1;713 INSERT INTO t1 SELECT a+ 2, randstr(1000,1000) FROM t1;714 INSERT INTO t1 SELECT a+ 4, randstr(1000,1000) FROM t1;715 INSERT INTO t1 SELECT a+ 8, randstr(1000,1000) FROM t1;716 INSERT INTO t1 SELECT a+16, randstr(1000,1000) FROM t1;717 INSERT INTO t1 SELECT a+32, randstr(1000,1000) FROM t1;718 INSERT INTO t1 SELECT a+64, randstr(1000,1000) FROM t1;719 }720} {}721 722do_test backup-7.1.1 {723 sqlite3_backup B db2 main db main724 B step 5725} {SQLITE_OK}726do_test backup-7.1.2 {727 sqlite3 db3 test.db728 execsql { BEGIN EXCLUSIVE } db3729 B step 5730} {SQLITE_BUSY}731do_test backup-7.1.3 {732 execsql { ROLLBACK } db3733 B step 5734} {SQLITE_OK}735do_test backup-7.2.1 {736 execsql { 737 BEGIN;738 INSERT INTO t1 VALUES(1, 4);739 }740} {}741do_test backup-7.2.2 {742 B step 5000743} {SQLITE_BUSY}744do_test backup-7.2.3 {745 execsql { ROLLBACK }746 B step 5000747} {SQLITE_DONE}748do_test backup-7.2.4 {749 B finish750} {SQLITE_OK}751test_contents backup-7.2.5 db main db2 main752integrity_check backup-7.3.6 db2753 754do_test backup-7.3.1 {755 db2 close756 db3 close757 forcedelete test2.db758 sqlite3 db2 test2.db759 sqlite3 db3 test2.db760 761 sqlite3_backup B db2 main db main762 execsql { BEGIN ; CREATE TABLE t2(a, b); } db3763 764 B step 5765} {SQLITE_BUSY}766do_test backup-7.3.2 {767 execsql { COMMIT } db3768 B step 5000769} {SQLITE_DONE}770do_test backup-7.3.3 {771 B finish772} {SQLITE_OK}773test_contents backup-7.3.4 db main db2 main774integrity_check backup-7.3.5 db2775catch { db2 close }776catch { db3 close }777 778#-----------------------------------------------------------------------779# The following tests, backup-8.*, test attaching multiple backup780# processes to the same source database. Also, reading from the source781# database while a read transaction is active.782#783# These tests reuse the database "test.db" left over from backup-7.*.784#785do_test backup-8.1 {786 catch { forcedelete test2.db }787 catch { forcedelete test3.db }788 sqlite3 db2 test2.db789 sqlite3 db3 test3.db790 791 sqlite3_backup B2 db2 main db main792 sqlite3_backup B3 db3 main db main793 list [B2 finish] [B3 finish]794} {SQLITE_OK SQLITE_OK}795do_test backup-8.2 {796 sqlite3_backup B3 db3 main db main797 sqlite3_backup B2 db2 main db main798 list [B2 finish] [B3 finish]799} {SQLITE_OK SQLITE_OK}800do_test backup-8.3 {801 sqlite3_backup B2 db2 main db main802 sqlite3_backup B3 db3 main db main803 B2 step 5804} {SQLITE_OK}805do_test backup-8.4 {806 execsql {807 BEGIN;808 SELECT * FROM sqlite_master;809 }810 B3 step 5811} {SQLITE_OK}812do_test backup-8.5 {813 list [B3 step 5000] [B3 finish]814} {SQLITE_DONE SQLITE_OK}815do_test backup-8.6 {816 list [B2 step 5000] [B2 finish]817} {SQLITE_DONE SQLITE_OK}818test_contents backup-8.7 db main db2 main819test_contents backup-8.8 db main db3 main820do_test backup-8.9 {821 execsql { PRAGMA lock_status }822} {main shared temp closed}823do_test backup-8.10 {824 execsql COMMIT825} {}826catch { db2 close }827catch { db3 close }828 829#-----------------------------------------------------------------------830# The following tests, backup-9.*, test that:831# 832# * Passing 0 as an argument to sqlite3_backup_step() means no pages833# are backed up (backup-9.1.*), and 834# * Passing a negative value as an argument to sqlite3_backup_step() means 835# all pages are backed up (backup-9.2.*).836#837# These tests reuse the database "test.db" left over from backup-7.*.838# 839do_test backup-9.1.1 {840 sqlite3 db2 test2.db841 sqlite3_backup B db2 main db main842 B step 1843} {SQLITE_OK}844do_test backup-9.1.2 {845 set nRemaining [B remaining]846 expr {$nRemaining>100}847} {1}848do_test backup-9.1.3 {849 B step 0850} {SQLITE_OK}851do_test backup-9.1.4 {852 B remaining853} $nRemaining854 855do_test backup-9.2.1 {856 B step -1857} {SQLITE_DONE}858do_test backup-9.2.2 {859 B remaining860} {0}861do_test backup-9.2.3 {862 B finish863} {SQLITE_OK}864catch {db2 close}865 866ifcapable memorymanage {867 db close868 forcedelete test.db869 forcedelete bak.db870 871 sqlite3 db test.db872 sqlite3 db2 test.db873 sqlite3 db3 bak.db874 875 do_test backup-10.1.1 {876 execsql {877 BEGIN;878 CREATE TABLE t1(a, b);879 INSERT INTO t1 VALUES(1, randstr(1000,1000));880 INSERT INTO t1 VALUES(2, randstr(1000,1000));881 INSERT INTO t1 VALUES(3, randstr(1000,1000));882 INSERT INTO t1 VALUES(4, randstr(1000,1000));883 INSERT INTO t1 VALUES(5, randstr(1000,1000));884 CREATE INDEX i1 ON t1(a, b);885 COMMIT;886 }887 } {}888 do_test backup-10.1.2 {889 sqlite3_backup B db3 main db2 main890 B step 5891 } {SQLITE_OK}892 do_test backup-10.1.3 {893 execsql {894 UPDATE t1 SET b = randstr(500,500);895 }896 } {}897 sqlite3_release_memory [expr 1024*1024]898 do_test backup-10.1.3 {899 B step 50900 } {SQLITE_DONE}901 do_test backup-10.1.4 {902 B finish903 } {SQLITE_OK}904 do_test backup-10.1.5 {905 execsql { PRAGMA integrity_check } db3906 } {ok}907 908 db2 close909 db3 close910}911 912 913#-----------------------------------------------------------------------914# Test that if the database is written to via the same database handle being915# used as the source by a backup operation:916#917# 10.1.*: If the db is in-memory, the backup is restarted.918# 10.2.*: If the db is a file, the backup is not restarted.919#920db close921forcedelete test.db test.db-journal922foreach {tn file rc} {923 1 test.db SQLITE_DONE924 2 :memory: SQLITE_OK925} {926 do_test backup-10.$tn.1 {927 sqlite3 db $file928 execsql { 929 CREATE TABLE t1(a INTEGER PRIMARY KEY, b BLOB);930 BEGIN;931 INSERT INTO t1 VALUES(NULL, randomblob(200));932 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;933 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;934 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;935 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;936 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;937 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;938 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;939 INSERT INTO t1 SELECT NULL, randomblob(200) FROM t1;940 COMMIT;941 SELECT count(*) FROM t1;942 }943 } {256}944 945 do_test backup-10.$tn.2 {946 set pgs [execsql {pragma page_count}]947 expr {$pgs > 50 && $pgs < 75}948 } {1}949 950 do_test backup-10.$tn.3 {951 forcedelete bak.db bak.db-journal952 sqlite3 db2 bak.db953 sqlite3_backup B db2 main db main954 B step 50955 } {SQLITE_OK}956 957 do_test backup-10.$tn.4 {958 execsql { UPDATE t1 SET b = randomblob(200) WHERE a IN (1, 250) }959 } {}960 961 do_test backup-10.$tn.5 {962 B step 50963 } $rc964 965 do_test backup-10.$tn.6 {966 B finish967 } {SQLITE_OK}968 969 db2 close970}971 972# 2021-01-31 https://sqlite.org/forum/forumpost/8b39fbf3e7973#974do_test backup-11.1 {975 sqlite3 db1 :memory:976 sqlite3 db2 :memory:977 sqlite3_backup B db1 main db2 temp978 B finish979} {SQLITE_OK}980db1 close981db2 close982 983#-------------------------------------------------------------------------984do_test backup-12.1 {985 sqlite3 db1 :memory:986 sqlite3 db2 :memory:987 db1 eval {988 PRAGMA page_size = 8192;989 CREATE TABLE t1(x);990 }991 db2 eval {992 PRAGMA page_size = 1024;993 CREATE TABLE t2(x);994 }995 996 sqlite3_backup B db1 main db2 temp997 B step 100998 B finish999} {SQLITE_READONLY}1000 1001 1002 1003 1004finish_test1005 