Cast: Stop logging kVideoFrameSentToEncoder and rename a couple events.
[chromium-blink-merge.git] / third_party / sqlite / src / test / fkey3.test
blob88b5aad370e225b42634e542f1107cb6c972fe7e
1 # 2009 September 15
3 # The author disclaims copyright to this source code.  In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library.
13 # This file implements tests for foreign keys.
16 set testdir [file dirname $argv0]
17 source $testdir/tester.tcl
19 ifcapable {!foreignkey||!trigger} {
20   finish_test
21   return
24 # Create a table and some data to work with.
26 do_test fkey3-1.1 {
27   execsql {
28     PRAGMA foreign_keys=ON;
29     CREATE TABLE t1(x INTEGER PRIMARY KEY);
30     INSERT INTO t1 VALUES(100);
31     INSERT INTO t1 VALUES(101);
32     CREATE TABLE t2(y INTEGER REFERENCES t1 (x));
33     INSERT INTO t2 VALUES(100);
34     INSERT INTO t2 VALUES(101);
35     SELECT 1, x FROM t1;
36     SELECT 2, y FROM t2;
37   }
38 } {1 100 1 101 2 100 2 101}
40 do_test fkey3-1.2 {
41   catchsql {
42     DELETE FROM t1 WHERE x=100;
43   }
44 } {1 {foreign key constraint failed}}
46 do_test fkey3-1.3 {
47   catchsql {
48     DROP TABLE t1;
49   }
50 } {1 {foreign key constraint failed}}
52 do_test fkey3-1.4 {
53   execsql {
54     DROP TABLE t2;
55   }
56 } {}
58 do_test fkey3-1.5 {
59   execsql {
60     DROP TABLE t1;
61   }
62 } {}
64 do_test fkey3-2.1 {
65   execsql {
66     PRAGMA foreign_keys=ON;
67     CREATE TABLE t1(x INTEGER PRIMARY KEY);
68     INSERT INTO t1 VALUES(100);
69     INSERT INTO t1 VALUES(101);
70     CREATE TABLE t2(y INTEGER PRIMARY KEY REFERENCES t1 (x) ON UPDATE SET NULL);
71   }
72   execsql {
73     INSERT INTO t2 VALUES(100);
74     INSERT INTO t2 VALUES(101);
75     SELECT 1, x FROM t1;
76     SELECT 2, y FROM t2;
77   }
78 } {1 100 1 101 2 100 2 101}
80 finish_test