Merge branch 'prerelease'
[sqlcipher.git] / test / sqlcipher.test
blob845bc23f240394297ea93f39cdbcd121b5ce071c
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
40 source $testdir/permutations.test
42 set pretests ""
44 test_suite "sqlcipher" -prefix "" -description {
45   Runs SQLCipher tests
46 } -files [
47   test_set $pretests \
48            sqlcipher-core.test \
49            sqlcipher-compatibility.test \
50            sqlcipher-rekey.test \
51            sqlcipher-plaintext-header.test \
52            sqlcipher-pragmas.test \
53            sqlcipher-integrity.test \
54            sqlcipher-codecerror.test \
55            sqlcipher-backup.test
57 run_test_suite sqlcipher
58 finish_test