-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathTestSQLite.fs
138 lines (126 loc) · 4.46 KB
/
TestSQLite.fs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
module Rezoom.SQL.Test.TestSQLite
open NUnit.Framework
open Rezoom.SQL.Compiler
[<Test>]
let ``sqlite non-idempotent random`` () =
{ sqliteTest with
Command = "select random() as r;"
Expect =
{ expect with
Idempotent = Some false
ResultSets = Some [ [ "r", { Type = IntegerType Integer64; Nullable = false } ] ]
} |> Good
} |> assertSimple
[<Test>]
let ``sqlite non-idempotent randomblob`` () =
{ sqliteTest with
Command = "select randomblob(4) as r;"
Expect =
{ expect with
Idempotent = Some false
ResultSets = Some [ [ "r", { Type = BinaryType; Nullable = false } ] ]
} |> Good
} |> assertSimple
[<Test>]
let ``sqlite non-idempotent random in subquery`` () =
{ sqliteTest with
Command = "select * from (select random() r) q;"
Expect =
{ expect with
Idempotent = Some false
ResultSets = Some [ [ "r", { Type = IntegerType Integer64; Nullable = false } ] ]
} |> Good
} |> assertSimple
[<Test>]
let ``sqlite custom constraint name`` () =
{ sqliteTest with
Command = "create table X(a int constraint myname unique)"
Expect =
{ expect with
OutputCommand =
"""
CREATE TABLE "X" ( "a" INT NOT NULL CONSTRAINT "myname" UNIQUE );
""".Trim() |> Some
} |> Good
} |> assertSimple
[<Test>]
let ``sqlite custom table constraint name`` () =
{ sqliteTest with
Command = "create table X(a int, constraint myname unique (a))"
Expect =
{ expect with
OutputCommand =
"""
CREATE TABLE "X" ( "a" INT NOT NULL , CONSTRAINT "myname" UNIQUE("a" ASC) );
""".Trim() |> Some
} |> Good
} |> assertSimple
[<Test>]
let ``sqlite example migration script`` () =
{ sqliteTest with
Command =
"""
create table Pictures
( SHA256 binary(32) primary key
, PNGData binary(4096)
);
create table Users
( Id int64 primary key autoincrement
, Name string(80)
, Email string(254)
, ProfilePictureSHA256 binary(32) null references Pictures(SHA256)
, Created datetime
, RandomId guid default(cast(randomblob(16) as guid))
);
create table Articles
( Id int64 primary key autoincrement
, AuthorId int64 references Users(Id)
, ArticleTitle string(80)
, ArticleText string(4096)
);
create index IX_Articles_AuthorId on Articles(AuthorId);
create table ArticleComments
( Id int64 primary key autoincrement
, ArticleId int64 references Articles(Id)
, AuthorId int64 references Users(Id)
, CommentText string(512)
);
create index IX_ArticleComments_AuthorId on ArticleComments(AuthorId);
"""
Expect =
{ expect with
OutputCommand =
"""
CREATE TABLE "Pictures"
( "SHA256" BLOB NOT NULL CONSTRAINT "Pictures_SHA256_PK" PRIMARY KEY ASC
, "PNGData" BLOB NOT NULL
);
CREATE TABLE "Users"
( "Id" INTEGER NOT NULL CONSTRAINT "Users_Id_PK" PRIMARY KEY ASC AUTOINCREMENT
, "Name" VARCHAR NOT NULL , "Email" VARCHAR NOT NULL
, "ProfilePictureSHA256" BLOB CONSTRAINT "Users_ProfilePictureSHA256_FK_Pictures_SHA256" REFERENCES "Pictures" ("SHA256")
, "Created" VARCHAR NOT NULL
, "RandomId" BLOB NOT NULL DEFAULT (CAST(randomblob(16) AS BLOB))
);
CREATE TABLE "Articles"
( "Id" INTEGER NOT NULL CONSTRAINT "Articles_Id_PK" PRIMARY KEY ASC AUTOINCREMENT
, "AuthorId" INT NOT NULL CONSTRAINT "Articles_AuthorId_FK_Users_Id" REFERENCES "Users" ("Id")
, "ArticleTitle" VARCHAR NOT NULL
, "ArticleText" VARCHAR NOT NULL
);
CREATE INDEX "IX_Articles_AuthorId" ON "Articles" ( "AuthorId" ASC );
CREATE TABLE "ArticleComments"
( "Id" INTEGER NOT NULL CONSTRAINT "ArticleComments_Id_PK" PRIMARY KEY ASC AUTOINCREMENT
, "ArticleId" INT NOT NULL CONSTRAINT "ArticleComments_ArticleId_FK_Articles_Id" REFERENCES "Articles" ("Id")
, "AuthorId" INT NOT NULL CONSTRAINT "ArticleComments_AuthorId_FK_Users_Id" REFERENCES "Users" ("Id")
, "CommentText" VARCHAR NOT NULL
);
CREATE INDEX "IX_ArticleComments_AuthorId" ON "ArticleComments" ( "AuthorId" ASC );
""".SmushWhitespace() |> Some
} |> Good
} |> assertSimple
[<Test>]
let ``sqlite dump function signatures`` () =
for KeyValue(_, func) in sqliteTest.TestBackend.InitialModel.Builtin.Functions do
printfn "%s" (dumpSignature func)
printfn ""