forked from ydb-platform/ariga-atlas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff_test.go
More file actions
573 lines (552 loc) · 16.6 KB
/
diff_test.go
File metadata and controls
573 lines (552 loc) · 16.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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
// Copyright 2021-present The Atlas Authors. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
//go:build !ent
package ydb
import (
"testing"
"ariga.io/atlas/sql/schema"
"github.com/stretchr/testify/require"
)
func TestDiff_TableDiff(t *testing.T) {
type testcase struct {
name string
from, to *schema.Table
wantChanges []schema.Change
wantErr bool
}
tests := []testcase{
{
name: "no changes",
from: &schema.Table{Name: "users", Schema: &schema.Schema{Name: "local"}},
to: &schema.Table{Name: "users"},
},
{
name: "add column",
from: &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
},
to: &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
{Name: "name", Type: &schema.ColumnType{Type: &schema.StringType{T: TypeUtf8}}},
},
},
wantChanges: []schema.Change{
&schema.AddColumn{C: &schema.Column{Name: "name", Type: &schema.ColumnType{Type: &schema.StringType{T: TypeUtf8}}}},
},
},
{
name: "drop column",
from: &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
{Name: "name", Type: &schema.ColumnType{Type: &schema.StringType{T: TypeUtf8}}},
},
},
to: &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
},
wantChanges: []schema.Change{
&schema.DropColumn{C: &schema.Column{Name: "name", Type: &schema.ColumnType{Type: &schema.StringType{T: TypeUtf8}}}},
},
},
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt64}}},
},
}
)
return testcase{
name: "modify column type",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.ModifyColumn{
From: from.Columns[0],
To: to.Columns[0],
Change: schema.ChangeType,
},
},
}
}(),
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}, Null: false}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}, Null: true}},
},
}
)
return testcase{
name: "modify column null",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.ModifyColumn{
From: from.Columns[0],
To: to.Columns[0],
Change: schema.ChangeNull,
},
},
}
}(),
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}, Default: &schema.RawExpr{X: "1"}},
},
}
)
return testcase{
name: "modify column default",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.ModifyColumn{
From: from.Columns[0],
To: to.Columns[0],
Change: schema.ChangeDefault,
},
},
}
}(),
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
)
from.Indexes = []*schema.Index{
{Name: "idx_id", Table: from, Parts: []*schema.IndexPart{{SeqNo: 1, C: from.Columns[0]}}},
}
return testcase{
name: "drop index",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.DropIndex{I: from.Indexes[0]},
},
}
}(),
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
)
to.Indexes = []*schema.Index{
{Name: "idx_id", Table: to, Parts: []*schema.IndexPart{{SeqNo: 1, C: to.Columns[0]}}},
}
return testcase{
name: "add index",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.AddIndex{I: to.Indexes[0]},
},
}
}(),
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
)
from.Indexes = []*schema.Index{
{Name: "idx_id", Unique: false, Table: from, Parts: []*schema.IndexPart{{SeqNo: 1, C: from.Columns[0]}}},
}
to.Indexes = []*schema.Index{
{Name: "idx_id", Unique: true, Table: to, Parts: []*schema.IndexPart{{SeqNo: 1, C: to.Columns[0]}}},
}
return testcase{
name: "modify index unique",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.ModifyIndex{From: from.Indexes[0], To: to.Indexes[0], Change: schema.ChangeUnique},
},
}
}(),
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
}
)
from.Indexes = []*schema.Index{
{Name: "idx_id", Table: from, Parts: []*schema.IndexPart{{SeqNo: 1, C: from.Columns[0]}}, Attrs: []schema.Attr{&IndexAttributes{Async: false}}},
}
to.Indexes = []*schema.Index{
{Name: "idx_id", Table: to, Parts: []*schema.IndexPart{{SeqNo: 1, C: to.Columns[0]}}, Attrs: []schema.Attr{&IndexAttributes{Async: true}}},
}
return testcase{
name: "modify index async",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.ModifyIndex{From: from.Indexes[0], To: to.Indexes[0], Change: schema.ChangeAttr},
},
}
}(),
func() testcase {
var (
from = &schema.Table{
Name: "users",
Schema: &schema.Schema{Name: "local"},
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
{Name: "name", Type: &schema.ColumnType{Type: &schema.StringType{T: TypeUtf8}}},
},
}
to = &schema.Table{
Name: "users",
Columns: []*schema.Column{
{Name: "id", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
{Name: "name", Type: &schema.ColumnType{Type: &schema.StringType{T: TypeUtf8}}},
},
}
)
from.Indexes = []*schema.Index{
{Name: "idx_id", Table: from, Parts: []*schema.IndexPart{{SeqNo: 1, C: from.Columns[0]}}},
}
to.Indexes = []*schema.Index{
{Name: "idx_id", Table: to, Parts: []*schema.IndexPart{{SeqNo: 1, C: to.Columns[0]}}, Attrs: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{to.Columns[1]}}}},
}
return testcase{
name: "modify index add cover columns",
from: from,
to: to,
wantChanges: []schema.Change{
&schema.ModifyIndex{From: from.Indexes[0], To: to.Indexes[0], Change: schema.ChangeAttr},
},
}
}(),
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
changes, err := DefaultDiff.TableDiff(tt.from, tt.to)
require.Equalf(t, tt.wantErr, err != nil, "error: %v", err)
require.EqualValues(t, tt.wantChanges, changes)
})
}
}
func TestDiff_SchemaDiff(t *testing.T) {
from := schema.New("local").
AddTables(schema.NewTable("users"), schema.NewTable("pets"))
to := schema.New("local").
AddTables(
schema.NewTable("users").AddColumns(schema.NewIntColumn("id", TypeInt32)),
schema.NewTable("groups"),
)
changes, err := DefaultDiff.SchemaDiff(from, to)
require.NoError(t, err)
require.EqualValues(t, []schema.Change{
&schema.ModifyTable{
T: to.Tables[0],
Changes: []schema.Change{
&schema.AddColumn{C: to.Tables[0].Columns[0]},
},
},
&schema.DropTable{T: from.Tables[1]},
&schema.AddTable{T: to.Tables[1]},
}, changes)
}
func TestDiff_RealmDiff(t *testing.T) {
to := schema.New("local").
AddTables(
schema.NewTable("users").AddColumns(schema.NewIntColumn("id", TypeInt32)),
)
changes, err := DefaultDiff.RealmDiff(schema.NewRealm(), schema.NewRealm(to))
require.NoError(t, err)
require.EqualValues(t, []schema.Change{
&schema.AddSchema{S: to},
&schema.AddTable{T: to.Tables[0]},
}, changes)
}
func TestDiff_TypeChanged(t *testing.T) {
d := &diff{conn: &conn{}}
tests := []struct {
name string
from *schema.Column
to *schema.Column
changed bool
wantErr bool
}{
{
name: "same type",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
},
{
name: "different integer types",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt64}}},
changed: true,
},
{
name: "different type kinds",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.StringType{T: TypeUtf8}}},
changed: true,
},
{
name: "decimal precision changed",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.DecimalType{T: TypeDecimal, Precision: 10, Scale: 2}}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.DecimalType{T: TypeDecimal, Precision: 20, Scale: 2}}},
changed: true,
},
{
name: "decimal scale changed",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.DecimalType{T: TypeDecimal, Precision: 10, Scale: 2}}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.DecimalType{T: TypeDecimal, Precision: 10, Scale: 5}}},
changed: true,
},
{
name: "decimal same",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.DecimalType{T: TypeDecimal, Precision: 10, Scale: 2}}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.DecimalType{T: TypeDecimal, Precision: 10, Scale: 2}}},
},
{
name: "nil from type",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: nil}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
wantErr: true,
},
{
name: "nil to type",
from: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: &schema.IntegerType{T: TypeInt32}}},
to: &schema.Column{Name: "c", Type: &schema.ColumnType{Type: nil}},
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
changed, err := d.typeChanged(tt.from, tt.to)
if tt.wantErr {
require.Error(t, err)
} else {
require.NoError(t, err)
require.Equal(t, tt.changed, changed)
}
})
}
}
func TestDiff_DefaultChanged(t *testing.T) {
d := &diff{conn: &conn{}}
tests := []struct {
name string
from *schema.Column
to *schema.Column
changed bool
}{
{
name: "no default to no default",
from: &schema.Column{Name: "c"},
to: &schema.Column{Name: "c"},
},
{
name: "no default to default",
from: &schema.Column{Name: "c"},
to: &schema.Column{Name: "c", Default: &schema.RawExpr{X: "1"}},
changed: true,
},
{
name: "default to no default",
from: &schema.Column{Name: "c", Default: &schema.RawExpr{X: "1"}},
to: &schema.Column{Name: "c"},
changed: true,
},
{
name: "same default",
from: &schema.Column{Name: "c", Default: &schema.RawExpr{X: "1"}},
to: &schema.Column{Name: "c", Default: &schema.RawExpr{X: "1"}},
},
{
name: "different default",
from: &schema.Column{Name: "c", Default: &schema.RawExpr{X: "1"}},
to: &schema.Column{Name: "c", Default: &schema.RawExpr{X: "2"}},
changed: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
changed := d.defaultChanged(tt.from, tt.to)
require.Equal(t, tt.changed, changed)
})
}
}
func TestDiff_IndexAttrChanged(t *testing.T) {
d := &diff{conn: &conn{}}
col1 := &schema.Column{Name: "name"}
col2 := &schema.Column{Name: "email"}
tests := []struct {
name string
from []schema.Attr
to []schema.Attr
changed bool
}{
{
name: "no attributes",
from: nil,
to: nil,
},
{
name: "add async attribute",
from: nil,
to: []schema.Attr{&IndexAttributes{Async: true}},
changed: true,
},
{
name: "remove async attribute",
from: []schema.Attr{&IndexAttributes{Async: true}},
to: nil,
changed: true,
},
{
name: "same async false",
from: []schema.Attr{&IndexAttributes{Async: false}},
to: []schema.Attr{&IndexAttributes{Async: false}},
},
{
name: "same async true",
from: []schema.Attr{&IndexAttributes{Async: true}},
to: []schema.Attr{&IndexAttributes{Async: true}},
},
{
name: "change async false to true",
from: []schema.Attr{&IndexAttributes{Async: false}},
to: []schema.Attr{&IndexAttributes{Async: true}},
changed: true,
},
{
name: "change async true to false",
from: []schema.Attr{&IndexAttributes{Async: true}},
to: []schema.Attr{&IndexAttributes{Async: false}},
changed: true,
},
{
name: "same cover columns",
from: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col1}}},
to: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col1}}},
},
{
name: "add cover columns",
from: []schema.Attr{&IndexAttributes{}},
to: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col1}}},
changed: true,
},
{
name: "remove cover columns",
from: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col1}}},
to: []schema.Attr{&IndexAttributes{}},
changed: true,
},
{
name: "different cover columns count",
from: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col1}}},
to: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col1, col2}}},
changed: true,
},
{
name: "different cover column names",
from: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col1}}},
to: []schema.Attr{&IndexAttributes{CoverColumns: []*schema.Column{col2}}},
changed: true,
},
{
name: "same async and cover columns",
from: []schema.Attr{&IndexAttributes{Async: true, CoverColumns: []*schema.Column{col1, col2}}},
to: []schema.Attr{&IndexAttributes{Async: true, CoverColumns: []*schema.Column{col1, col2}}},
},
{
name: "same cover columns different async",
from: []schema.Attr{&IndexAttributes{Async: false, CoverColumns: []*schema.Column{col1}}},
to: []schema.Attr{&IndexAttributes{Async: true, CoverColumns: []*schema.Column{col1}}},
changed: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
changed := d.IndexAttrChanged(tt.from, tt.to)
require.Equal(t, tt.changed, changed)
})
}
}