| OLD | NEW |
| 1 # 2008 September 15 | 1 # 2008 September 15 |
| 2 # | 2 # |
| 3 # The author disclaims copyright to this source code. In place of | 3 # The author disclaims copyright to this source code. In place of |
| 4 # a legal notice, here is a blessing: | 4 # a legal notice, here is a blessing: |
| 5 # | 5 # |
| 6 # May you do good and not evil. | 6 # May you do good and not evil. |
| 7 # May you find forgiveness for yourself and forgive others. | 7 # May you find forgiveness for yourself and forgive others. |
| 8 # May you share freely, never taking more than you give. | 8 # May you share freely, never taking more than you give. |
| 9 # | 9 # |
| 10 #*********************************************************************** | 10 #*********************************************************************** |
| 11 # | 11 # |
| 12 # This file is focused on testing the pcache module. | 12 # This file is focused on testing the pcache module. |
| 13 # | 13 # |
| 14 # $Id: pcache2.test,v 1.5 2009/07/18 14:36:24 danielk1977 Exp $ | 14 # $Id: pcache2.test,v 1.5 2009/07/18 14:36:24 danielk1977 Exp $ |
| 15 | 15 |
| 16 set testdir [file dirname $argv0] | 16 set testdir [file dirname $argv0] |
| 17 source $testdir/tester.tcl | 17 source $testdir/tester.tcl |
| 18 | 18 |
| 19 test_set_config_pagecache 0 0 |
| 20 |
| 19 # Set up a pcache memory pool so that we can easily track how many | 21 # Set up a pcache memory pool so that we can easily track how many |
| 20 # pages are being used for cache. | 22 # pages are being used for cache. |
| 21 # | 23 # |
| 22 do_test pcache2-1.1 { | 24 do_test pcache2-1.1 { |
| 23 db close | 25 db close |
| 24 sqlite3_reset_auto_extension | 26 sqlite3_reset_auto_extension |
| 25 sqlite3_shutdown | 27 sqlite3_shutdown |
| 26 sqlite3_config_pagecache 6000 100 | 28 sqlite3_config_pagecache 6000 100 |
| 29 sqlite3_config singlethread |
| 27 sqlite3_initialize | 30 sqlite3_initialize |
| 28 autoinstall_test_functions | 31 autoinstall_test_functions |
| 29 sqlite3_status SQLITE_STATUS_PAGECACHE_USED 1 | 32 sqlite3_status SQLITE_STATUS_PAGECACHE_USED 1 |
| 30 sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0 | 33 sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0 |
| 31 } {0 0 0} | 34 } {0 0 0} |
| 32 | 35 |
| 33 # Open up two database connections to separate files. | 36 # Open up two database connections to separate files. |
| 34 # | 37 # |
| 35 do_test pcache2-1.2 { | 38 do_test pcache2-1.2 { |
| 36 forcedelete test.db test.db-journal | 39 forcedelete test.db test.db-journal |
| 37 sqlite3 db test.db | 40 sqlite3 db test.db |
| 38 db eval {PRAGMA cache_size=10} | 41 db eval {PRAGMA cache_size=10; SELECT 1 FROM sqlite_master;} |
| 39 lindex [sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0] 1 | 42 lindex [sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0] 1 |
| 40 } {2} | 43 } {2} |
| 41 do_test pcache2-1.3 { | 44 do_test pcache2-1.3 { |
| 42 forcedelete test2.db test2.db-journal | 45 forcedelete test2.db test2.db-journal |
| 43 sqlite3 db2 test2.db | 46 sqlite3 db2 test2.db |
| 44 db2 eval {PRAGMA cache_size=50} | 47 db2 eval {PRAGMA cache_size=50; SELECT 1 FROM sqlite_master;} |
| 45 lindex [sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0] 1 | 48 lindex [sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0] 1 |
| 46 } {4} | 49 } {4} |
| 47 | 50 |
| 48 | 51 |
| 49 # Make lots of changes on the first connection. Verify that the | 52 # Make lots of changes on the first connection. Verify that the |
| 50 # page cache usage does not grow to consume the page space set aside | 53 # page cache usage does not grow to consume the page space set aside |
| 51 # for the second connection. | 54 # for the second connection. |
| 52 # | 55 # |
| 53 do_test pcache2-1.4 { | 56 do_test pcache2-1.4 { |
| 54 db eval { | 57 db eval { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 66 INSERT INTO t1 SELECT x+1000, y FROM t2; | 69 INSERT INTO t1 SELECT x+1000, y FROM t2; |
| 67 } | 70 } |
| 68 sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0 | 71 sqlite3_status SQLITE_STATUS_PAGECACHE_USED 0 |
| 69 } {0 13 13} | 72 } {0 13 13} |
| 70 | 73 |
| 71 db close | 74 db close |
| 72 catch {db2 close} | 75 catch {db2 close} |
| 73 sqlite3_reset_auto_extension | 76 sqlite3_reset_auto_extension |
| 74 sqlite3_shutdown | 77 sqlite3_shutdown |
| 75 sqlite3_config_pagecache 0 0 | 78 sqlite3_config_pagecache 0 0 |
| 79 sqlite3_config serialized |
| 76 sqlite3_initialize | 80 sqlite3_initialize |
| 77 autoinstall_test_functions | 81 autoinstall_test_functions |
| 78 | 82 |
| 83 test_restore_config_pagecache |
| 79 finish_test | 84 finish_test |
| OLD | NEW |