-
Notifications
You must be signed in to change notification settings - Fork 19
/
migrations_test.go
68 lines (59 loc) · 1.42 KB
/
migrations_test.go
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
package arangomigo
import (
"sort"
"testing"
"github.com/stretchr/testify/assert"
)
func TestLoadFromPath(t *testing.T) {
assert.Panics(
t,
func() { loadFrom("testdata/simple_migrations") },
"Should have paniced")
}
func TestSimpleDataVersion(t *testing.T) {
var datebased = []string{
"2017.02.0.1.migration",
"2017.01.02.migration",
"2017.05.09.migration",
}
sort.Slice(datebased, nearlyLexical(datebased))
assert.Equal(t, []string{
"2017.01.02.migration",
"2017.02.0.1.migration",
"2017.05.09.migration",
}, datebased)
}
func TestDateAndDescription(t *testing.T) {
dateAndComments := []string{
"2.01_Add_a_new_collection.migration",
"1.02_Description_Here.migration",
"5.09_They_keep_pulling_me_in.migration",
}
sort.Slice(dateAndComments, nearlyLexical(dateAndComments))
assert.Equal(
t,
[]string{
"1.02_Description_Here.migration",
"2.01_Add_a_new_collection.migration",
"5.09_They_keep_pulling_me_in.migration"},
dateAndComments,
)
}
func TestNumericVersions(t *testing.T) {
v := []string{"1.migration", "12.migration", "2.migration"}
sort.Slice(v, nearlyLexical(v))
assert.Equal(
t,
[]string{"1.migration", "2.migration", "12.migration"},
v,
)
}
func TestDecNumericVersions(t *testing.T) {
v := []string{"1.0.migration", "12.migration", "1.2.migration"}
sort.Slice(v, nearlyLexical(v))
assert.Equal(
t,
[]string{"1.0.migration", "1.2.migration", "12.migration"},
v,
)
}