-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathmigration_test.exs
More file actions
552 lines (458 loc) · 18.6 KB
/
migration_test.exs
File metadata and controls
552 lines (458 loc) · 18.6 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
defmodule Ecto.Adapters.SQLite3.Connection.MigrationTest do
use ExUnit.Case, async: true
import Ecto.Adapters.SQLite3.TestHelpers
import Ecto.Migration, only: [table: 1, table: 2, index: 2, index: 3, constraint: 3]
alias Ecto.Migration.Reference
test "executing a string during migration" do
assert execute_ddl("example") == ["example"]
end
test "create table" do
create =
{:create, table(:posts),
[
{:add, :name, :string, [default: "Untitled", size: 20, null: false]},
{:add, :price, :numeric,
[precision: 8, scale: 2, default: {:fragment, "expr"}]},
{:add, :on_hand, :integer, [default: 0, null: true]},
{:add, :is_active, :boolean, [default: true]},
{:add, :tags, {:array, :string}, [default: []]},
{:add, :languages, {:array, :string}, [default: ["pt", "es"]]},
{:add, :limits, {:array, :integer}, [default: [100, 30_000]]}
]}
assert execute_ddl(create) == [
"""
CREATE TABLE "posts" ("name" TEXT DEFAULT 'Untitled' NOT NULL,
"price" NUMERIC DEFAULT expr,
"on_hand" INTEGER DEFAULT 0 NULL,
"is_active" INTEGER DEFAULT true,
"tags" TEXT DEFAULT ('[]'),
"languages" TEXT DEFAULT ('["pt","es"]'),
"limits" TEXT DEFAULT ('[100,30000]'))
"""
|> remove_newlines
]
end
test "create table with prefix" do
create =
{:create, table(:posts, prefix: :foo),
[{:add, :category_0, %Reference{table: :categories}, []}]}
assert execute_ddl(create) == [
"""
CREATE TABLE foo.posts ("category_0" INTEGER CONSTRAINT "posts_category_0_fkey" REFERENCES foo.categories("id"))
"""
|> remove_newlines
]
end
test "create table with references" do
create =
{:create, table(:posts),
[
{:add, :id, :serial, [primary_key: true]},
{:add, :category_0, %Reference{table: :categories}, []},
{:add, :category_1, %Reference{table: :categories, name: :foo_bar}, []},
{:add, :category_2, %Reference{table: :categories, on_delete: :nothing}, []},
{:add, :category_3, %Reference{table: :categories, on_delete: :delete_all},
[null: false]},
{:add, :category_4, %Reference{table: :categories, on_delete: :nilify_all},
[]},
{:add, :category_5, %Reference{table: :categories, on_update: :nothing}, []},
{:add, :category_6, %Reference{table: :categories, on_update: :update_all},
[null: false]},
{:add, :category_7, %Reference{table: :categories, on_update: :nilify_all},
[]},
{:add, :category_8,
%Reference{
table: :categories,
on_delete: :nilify_all,
on_update: :update_all
}, [null: false]},
{:add, :category_9, %Reference{table: :categories, on_delete: :restrict}, []},
{:add, :category_10, %Reference{table: :categories, on_update: :restrict}, []}
]}
assert execute_ddl(create) == [
"""
CREATE TABLE "posts" (\
"id" INTEGER PRIMARY KEY AUTOINCREMENT, \
"category_0" INTEGER CONSTRAINT "posts_category_0_fkey" REFERENCES "categories"("id"), \
"category_1" INTEGER CONSTRAINT "foo_bar" REFERENCES "categories"("id"), \
"category_2" INTEGER CONSTRAINT "posts_category_2_fkey" REFERENCES "categories"("id"), \
"category_3" INTEGER NOT NULL CONSTRAINT "posts_category_3_fkey" REFERENCES "categories"("id") ON DELETE CASCADE, \
"category_4" INTEGER CONSTRAINT "posts_category_4_fkey" REFERENCES "categories"("id") ON DELETE SET NULL, \
"category_5" INTEGER CONSTRAINT "posts_category_5_fkey" REFERENCES "categories"("id"), \
"category_6" INTEGER NOT NULL CONSTRAINT "posts_category_6_fkey" REFERENCES "categories"("id") ON UPDATE CASCADE, \
"category_7" INTEGER CONSTRAINT "posts_category_7_fkey" REFERENCES "categories"("id") ON UPDATE SET NULL, \
"category_8" INTEGER NOT NULL CONSTRAINT "posts_category_8_fkey" REFERENCES "categories"("id") ON DELETE SET NULL ON UPDATE CASCADE, \
"category_9" INTEGER CONSTRAINT "posts_category_9_fkey" REFERENCES "categories"("id") ON DELETE RESTRICT, \
"category_10" INTEGER CONSTRAINT "posts_category_10_fkey" REFERENCES "categories"("id") ON UPDATE RESTRICT\
)\
"""
]
end
test "create table with options" do
create =
{:create, table(:posts, options: "WITH FOO=BAR"),
[
{:add, :id, :serial, [primary_key: true]},
{:add, :created_at, :naive_datetime, []}
]}
assert execute_ddl(create) ==
[
~s|CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT, "created_at" TEXT) WITH FOO=BAR|
]
end
test "create table with composite key" do
create =
{:create, table(:posts),
[
{:add, :a, :integer, [primary_key: true]},
{:add, :b, :integer, [primary_key: true]},
{:add, :name, :string, []}
]}
assert execute_ddl(create) == [
"""
CREATE TABLE "posts" ("a" INTEGER, "b" INTEGER, "name" TEXT, PRIMARY KEY ("a","b"))
"""
|> remove_newlines
]
end
test "create table with binary column and UTF-8 default" do
create = {:create, table(:blobs), [{:add, :blob, :binary, [default: "foo"]}]}
assert execute_ddl(create) == [
"""
CREATE TABLE "blobs" ("blob" BLOB DEFAULT 'foo')
"""
|> remove_newlines
]
end
test "create table with binary column and hex blob literal default" do
create = {:create, table(:blobs), [{:add, :blob, :binary, [default: "\\x666F6F"]}]}
assert execute_ddl(create) == [
"""
CREATE TABLE "blobs" ("blob" BLOB DEFAULT '\\\\x666F6F')
"""
|> remove_newlines
]
end
test "create table with binary column and hex blob literal null-byte" do
create = {:create, table(:blobs), [{:add, :blob, :binary, [default: "\\\x00"]}]}
assert execute_ddl(create) == [
"""
CREATE TABLE "blobs" ("blob" BLOB DEFAULT '\\\\\x00')
"""
|> remove_newlines
]
end
test "create table with a map column, and an empty map default" do
create =
{:create, table(:posts),
[
{:add, :a, :map, [default: %{}]}
]}
assert execute_ddl(create) == [~s|CREATE TABLE "posts" ("a" TEXT DEFAULT ('{}'))|]
end
test "create table with a map column, and a map default with values" do
create =
{:create, table(:posts),
[
{:add, :a, :map, [default: %{foo: "bar", baz: "boom"}]}
]}
assert [statement] = execute_ddl(create)
# CREATE TABLE "posts" ("a" TEXT DEFAULT ('{"foo":"bar","baz":"boom"}'))
assert statement =~ ~r|CREATE TABLE "posts" \("a" TEXT DEFAULT \(.*\)\)|
assert statement =~ ~s("foo":"bar")
assert statement =~ ~s("baz":"boom")
end
test "create table with a map column, and a string default" do
create =
{:create, table(:posts),
[
{:add, :a, :map, [default: ~s|{"foo":"bar","baz":"boom"}|]}
]}
assert [statement] = execute_ddl(create)
# CREATE TABLE "posts" ("a" TEXT DEFAULT '{"foo":"bar","baz":"boom"}')
assert statement =~ ~r|CREATE TABLE "posts" \("a" TEXT DEFAULT '\{.*\}'\)|
assert statement =~ ~s("foo":"bar")
assert statement =~ ~s("baz":"boom")
end
test "create table with time columns" do
create =
{:create, table(:posts),
[{:add, :published_at, :time, [precision: 3]}, {:add, :submitted_at, :time, []}]}
assert execute_ddl(create) == [
~s|CREATE TABLE "posts" ("published_at" TEXT, "submitted_at" TEXT)|
]
end
test "create table with time_usec columns" do
create =
{:create, table(:posts),
[
{:add, :published_at, :time_usec, [precision: 3]},
{:add, :submitted_at, :time_usec, []}
]}
assert execute_ddl(create) == [
~s|CREATE TABLE "posts" ("published_at" TEXT, "submitted_at" TEXT)|
]
end
test "create table with utc_datetime columns" do
create =
{:create, table(:posts),
[
{:add, :published_at, :utc_datetime, [precision: 3]},
{:add, :submitted_at, :utc_datetime, []}
]}
assert execute_ddl(create) == [
~s|CREATE TABLE "posts" ("published_at" TEXT, "submitted_at" TEXT)|
]
end
test "create table with utc_datetime_usec columns" do
create =
{:create, table(:posts),
[
{:add, :published_at, :utc_datetime_usec, [precision: 3]},
{:add, :submitted_at, :utc_datetime_usec, []}
]}
assert execute_ddl(create) == [
~s|CREATE TABLE "posts" ("published_at" TEXT, "submitted_at" TEXT)|
]
end
test "create table with naive_datetime columns" do
create =
{:create, table(:posts),
[
{:add, :published_at, :naive_datetime, [precision: 3]},
{:add, :submitted_at, :naive_datetime, []}
]}
assert execute_ddl(create) == [
~s|CREATE TABLE "posts" ("published_at" TEXT, "submitted_at" TEXT)|
]
end
test "create table with naive_datetime_usec columns" do
create =
{:create, table(:posts),
[
{:add, :published_at, :naive_datetime_usec, [precision: 3]},
{:add, :submitted_at, :naive_datetime_usec, []}
]}
assert execute_ddl(create) == [
~s|CREATE TABLE "posts" ("published_at" TEXT, "submitted_at" TEXT)|
]
end
test "create table with an unsupported type" do
create =
{:create, table(:posts),
[
{:add, :a, {:a, :b, :c}, [default: %{}]}
]}
assert_raise ArgumentError,
"unsupported type `{:a, :b, :c}`. " <>
"The type can either be an atom, a string or a tuple of the form " <>
"`{:map, t}` or `{:array, t}` where `t` itself follows the same conditions.",
fn -> execute_ddl(create) end
end
test "drop table" do
drop = {:drop, table(:posts)}
assert execute_ddl(drop) == [~s|DROP TABLE "posts"|]
end
test "drop table with prefix" do
drop = {:drop, table(:posts, prefix: :foo)}
assert execute_ddl(drop) == [~s|DROP TABLE foo.posts|]
end
test "alter table" do
alter =
{:alter, table(:posts),
[
{:add, :title, :string, [default: "Untitled", size: 100, null: false]},
{:add, :author_id, %Reference{table: :author}, []},
{:add, :category_id, %Reference{table: :categories, validate: false}, []},
{:remove, :summary},
{:remove, :body, :text, []},
{:remove, :space_id, %Reference{table: :author}, []}
]}
assert execute_ddl(alter) == [
~s|ALTER TABLE "posts" ADD COLUMN "title" TEXT DEFAULT 'Untitled' NOT NULL|,
~s|ALTER TABLE "posts" ADD COLUMN "author_id" INTEGER CONSTRAINT "posts_author_id_fkey" REFERENCES "author"("id")|,
~s|ALTER TABLE "posts" ADD COLUMN "category_id" INTEGER CONSTRAINT "posts_category_id_fkey" REFERENCES "categories"("id")|,
~s|ALTER TABLE "posts" DROP COLUMN "summary"|,
~s|ALTER TABLE "posts" DROP COLUMN "body"|,
~s|ALTER TABLE "posts" DROP COLUMN "space_id"|
]
end
test "alter table with prefix" do
alter =
{:alter, table(:posts, prefix: :foo),
[{:add, :author_id, %Reference{table: :author}, []}]}
assert execute_ddl(alter) == [
~s|ALTER TABLE foo.posts ADD COLUMN "author_id" INTEGER CONSTRAINT "posts_author_id_fkey" REFERENCES foo.author("id")|
]
end
test "alter table with serial primary key" do
alter = {:alter, table(:posts), [{:add, :my_pk, :serial, [primary_key: true]}]}
assert execute_ddl(alter) == [
"""
ALTER TABLE "posts"
ADD COLUMN "my_pk" INTEGER PRIMARY KEY AUTOINCREMENT
"""
|> remove_newlines
]
end
test "alter table with bigserial primary key" do
alter = {:alter, table(:posts), [{:add, :my_pk, :bigserial, [primary_key: true]}]}
assert execute_ddl(alter) == [
"""
ALTER TABLE "posts"
ADD COLUMN "my_pk" INTEGER PRIMARY KEY AUTOINCREMENT
"""
|> remove_newlines
]
end
test "create index" do
create = {:create, index(:posts, [:category_id, :permalink])}
assert execute_ddl(create) ==
[
~s|CREATE INDEX "posts_category_id_permalink_index" ON "posts" ("category_id", "permalink")|
]
create = {:create, index(:posts, ["lower(permalink)"], name: "posts$main")}
assert execute_ddl(create) ==
[~s|CREATE INDEX "posts$main" ON "posts" (lower(permalink))|]
end
test "create index with prefix" do
create = {:create, index(:posts, [:category_id, :permalink], prefix: :foo)}
assert execute_ddl(create) == [
~s|CREATE INDEX "posts_category_id_permalink_index" ON foo.posts ("category_id", "permalink")|
]
create =
{:create, index(:posts, ["lower(permalink)"], name: "posts$main", prefix: :foo)}
assert execute_ddl(create) == [
~s|CREATE INDEX "posts$main" ON foo.posts (lower(permalink))|
]
end
test "create index with comment" do
create = {:create, index(:posts, [:category_id, :permalink], comment: "comment")}
assert execute_ddl(create) == [
"""
CREATE INDEX "posts_category_id_permalink_index" \
ON "posts" ("category_id", "permalink")\
"""
]
# NOTE: Comments are not supported by SQLite. DDL query generator will ignore them.
end
test "create unique index" do
create = {:create, index(:posts, [:permalink], unique: true)}
assert execute_ddl(create) ==
[~s|CREATE UNIQUE INDEX "posts_permalink_index" ON "posts" ("permalink")|]
end
test "create unique index with condition" do
create = {:create, index(:posts, [:permalink], unique: true, where: "public IS 1")}
assert execute_ddl(create) ==
[
~s|CREATE UNIQUE INDEX "posts_permalink_index" ON "posts" ("permalink") WHERE public IS 1|
]
create = {:create, index(:posts, [:permalink], unique: true, where: :public)}
assert execute_ddl(create) ==
[
~s|CREATE UNIQUE INDEX "posts_permalink_index" ON "posts" ("permalink") WHERE public|
]
end
test "create index with include fields" do
create = {:create, index(:posts, [:permalink], unique: true, include: [:public])}
assert_raise ArgumentError, fn ->
execute_ddl(create)
end
end
test "create unique index with nulls_distinct option" do
create = {:create, index(:posts, [:permalink], unique: true, nulls_distinct: true)}
assert_raise ArgumentError, fn ->
execute_ddl(create)
end
end
test "create index concurrently not supported" do
index = index(:posts, [:permalink])
create = {:create, %{index | concurrently: true}}
assert_raise ArgumentError, fn ->
execute_ddl(create)
end
end
test "create an index using a different type" do
create = {:create, index(:posts, [:permalink], using: :hash)}
assert_raise ArgumentError, fn ->
execute_ddl(create)
end
end
test "create an index without recursively creating indexes on partitions" do
create = {:create, index(:posts, [:permalink], only: true)}
assert_raise ArgumentError, fn ->
execute_ddl(create)
end
end
test "drop index" do
drop = {:drop, index(:posts, [:id], name: "posts$main")}
assert execute_ddl(drop) == [~s|DROP INDEX "posts$main"|]
end
test "drop index with prefix" do
drop = {:drop, index(:posts, [:id], name: "posts$main", prefix: :foo), :restrict}
assert execute_ddl(drop) == [~s|DROP INDEX foo.posts$main|]
end
test "drop index concurrently not supported" do
index = index(:posts, [:id], name: "posts$main")
assert_raise ArgumentError, fn ->
drop = {:drop, %{index | concurrently: true}}
execute_ddl(drop)
end
end
test "drop constraint" do
assert_raise ArgumentError,
~r/SQLite3 does not support ALTER TABLE DROP CONSTRAINT./,
fn ->
execute_ddl(
{:drop,
constraint(:products, "price_must_be_positive", prefix: :foo),
:restrict}
)
end
end
test "drop_if_exists constraint" do
assert_raise ArgumentError,
~r/SQLite3 does not support ALTER TABLE DROP CONSTRAINT./,
fn ->
execute_ddl(
{:drop_if_exists,
constraint(:products, "price_must_be_positive", prefix: :foo),
:restrict}
)
end
end
test "rename table" do
rename = {:rename, table(:posts), table(:new_posts)}
assert execute_ddl(rename) == [~s|ALTER TABLE "posts" RENAME TO "new_posts"|]
end
test "rename table with prefix" do
rename = {:rename, table(:posts, prefix: :foo), table(:new_posts, prefix: :foo)}
assert execute_ddl(rename) == [~s|ALTER TABLE foo.posts RENAME TO "new_posts"|]
end
test "rename column" do
rename = {:rename, table(:posts), :given_name, :first_name}
assert execute_ddl(rename) == [
~s|ALTER TABLE "posts" RENAME COLUMN "given_name" TO "first_name"|
]
end
test "rename column in prefixed table" do
rename = {:rename, table(:posts, prefix: :foo), :given_name, :first_name}
assert execute_ddl(rename) == [
~s|ALTER TABLE foo.posts RENAME COLUMN "given_name" TO "first_name"|
]
end
test "autoincrement support" do
serial = {:create, table(:posts), [{:add, :id, :serial, [primary_key: true]}]}
bigserial = {:create, table(:posts), [{:add, :id, :bigserial, [primary_key: true]}]}
id = {:create, table(:posts), [{:add, :id, :id, [primary_key: true]}]}
integer = {:create, table(:posts), [{:add, :id, :integer, [primary_key: true]}]}
assert execute_ddl(serial) == [
~s/CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT)/
]
assert execute_ddl(bigserial) == [
~s/CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT)/
]
assert execute_ddl(id) == [~s/CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY)/]
assert execute_ddl(integer) == [~s/CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY)/]
end
end