update tests to expect "ok" from PRAGMA key
[sqlcipher.git] / test / sqlcipher.test
blobeed7365be0e1e451687ecbb72a75c77733c808f6
1 # codec.test developed by Stephen Lombardo (Zetetic LLC) 
2 # sjlombardo at zetetic dot net
3 # http://zetetic.net
4
5 # Copyright (c) 2018, ZETETIC LLC
6 # Redistribution and use in source and binary forms, with or without
7 # modification, are permitted provided that the following conditions are met:
8 #     * Redistributions of source code must retain the above copyright
9 #       notice, this list of conditions and the following disclaimer.
10 #     * Redistributions in binary form must reproduce the above copyright
11 #       notice, this list of conditions and the following disclaimer in the
12 #       documentation and/or other materials provided with the distribution.
13 #     * Neither the name of the ZETETIC LLC nor the
14 #       names of its contributors may be used to endorse or promote products
15 #       derived from this software without specific prior written permission.
16
17 # THIS SOFTWARE IS PROVIDED BY ZETETIC LLC ''AS IS'' AND ANY
18 # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20 # DISCLAIMED. IN NO EVENT SHALL ZETETIC LLC BE LIABLE FOR ANY
21 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 # This file implements regression tests for SQLite library.  The
29 # focus of this script is testing code cipher features.
31 # NOTE: tester.tcl has overridden the definition of sqlite3 to 
32 # automatically pass in a key value. Thus tests in this file
33 # should explicitly close and open db with sqlite_orig in order
34 # to bypass default key assignment.
37 set testdir [file dirname $argv0]
38 source $testdir/tester.tcl
39 source $testdir/sqlcipher.tcl
41 if {[file exist "$testdir/sqlcipher-license.test"]} {
42   slave_test_file $testdir/sqlcipher-license.test
45 slave_test_file $testdir/sqlcipher-core.test
46 slave_test_file $testdir/sqlcipher-compatibility.test
47 slave_test_file $testdir/sqlcipher-rekey.test
48 slave_test_file $testdir/sqlcipher-plaintext-header.test
49 slave_test_file $testdir/sqlcipher-pragmas.test
50 slave_test_file $testdir/sqlcipher-integrity.test
52 finish_test