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
// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
package shed
import (
"bytes"
"testing"
)
// TestDB_schemaFieldKey validates correctness of schemaFieldKey.
func TestDB_schemaFieldKey(t *testing.T) {
db := newTestDB(t)
t.Run("empty name or type", func(t *testing.T) {
_, err := db.schemaFieldKey("", "")
if err == nil {
t.Error("error not returned, but expected")
}
_, err = db.schemaFieldKey("", "type")
if err == nil {
t.Error("error not returned, but expected")
}
_, err = db.schemaFieldKey("test", "")
if err == nil {
t.Error("error not returned, but expected")
}
})
t.Run("same field", func(t *testing.T) {
key1, err := db.schemaFieldKey("test", "undefined")
if err != nil {
t.Fatal(err)
}
key2, err := db.schemaFieldKey("test", "undefined")
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(key1, key2) {
t.Errorf("schema keys for the same field name are not the same: %q, %q", string(key1), string(key2))
}
})
t.Run("different fields", func(t *testing.T) {
key1, err := db.schemaFieldKey("test1", "undefined")
if err != nil {
t.Fatal(err)
}
key2, err := db.schemaFieldKey("test2", "undefined")
if err != nil {
t.Fatal(err)
}
if bytes.Equal(key1, key2) {
t.Error("schema keys for the same field name are the same, but must not be")
}
})
t.Run("same field name different types", func(t *testing.T) {
_, err := db.schemaFieldKey("the-field", "one-type")
if err != nil {
t.Fatal(err)
}
_, err = db.schemaFieldKey("the-field", "another-type")
if err == nil {
t.Error("error not returned, but expected")
}
})
}
// TestDB_schemaIndexPrefix validates correctness of schemaIndexPrefix.
func TestDB_schemaIndexPrefix(t *testing.T) {
db := newTestDB(t)
t.Run("same name", func(t *testing.T) {
id1, err := db.schemaIndexPrefix("test")
if err != nil {
t.Fatal(err)
}
id2, err := db.schemaIndexPrefix("test")
if err != nil {
t.Fatal(err)
}
if id1 != id2 {
t.Errorf("schema keys for the same field name are not the same: %v, %v", id1, id2)
}
})
t.Run("different names", func(t *testing.T) {
id1, err := db.schemaIndexPrefix("test1")
if err != nil {
t.Fatal(err)
}
id2, err := db.schemaIndexPrefix("test2")
if err != nil {
t.Fatal(err)
}
if id1 == id2 {
t.Error("schema ids for the same index name are the same, but must not be")
}
})
}
// TestDB_RenameIndex checks if index name is correctly changed.
func TestDB_RenameIndex(t *testing.T) {
t.Run("empty names", func(t *testing.T) {
db := newTestDB(t)
// empty names
renamed, err := db.RenameIndex("", "")
if err == nil {
t.Error("error not returned, but expected")
}
if renamed {
t.Fatal("index should not be renamed")
}
// empty index name
renamed, err = db.RenameIndex("", "new")
if err == nil {
t.Error("error not returned, but expected")
}
if renamed {
t.Fatal("index should not be renamed")
}
// empty new index name
renamed, err = db.RenameIndex("current", "")
if err == nil {
t.Error("error not returned, but expected")
}
if renamed {
t.Fatal("index should not be renamed")
}
})
t.Run("same names", func(t *testing.T) {
db := newTestDB(t)
renamed, err := db.RenameIndex("index1", "index1")
if err != nil {
t.Error(err)
}
if renamed {
t.Fatal("index should not be renamed")
}
})
t.Run("unknown name", func(t *testing.T) {
db := newTestDB(t)
renamed, err := db.RenameIndex("index1", "index1new")
if err != nil {
t.Error(err)
}
if renamed {
t.Fatal("index should not be renamed")
}
})
t.Run("valid names", func(t *testing.T) {
db := newTestDB(t)
// initial indexes
key1, err := db.schemaIndexPrefix("index1")
if err != nil {
t.Fatal(err)
}
key2, err := db.schemaIndexPrefix("index2")
if err != nil {
t.Fatal(err)
}
// name the first one
renamed, err := db.RenameIndex("index1", "index1new")
if err != nil {
t.Fatal(err)
}
if !renamed {
t.Fatal("index not renamed")
}
// validate that the index key stays the same
key1same, err := db.schemaIndexPrefix("index1new")
if err != nil {
t.Fatal(err)
}
if key1 != key1same {
t.Fatal("indexes renamed, but keys are not the same")
}
// validate that the independent index is not changed
key2same, err := db.schemaIndexPrefix("index2")
if err != nil {
t.Fatal(err)
}
if key2 != key2same {
t.Fatal("independent index key has changed")
}
// validate that it is safe to create a new index with previous name
key1renew, err := db.schemaIndexPrefix("index1")
if err != nil {
t.Fatal(err)
}
if key1 == key1renew {
t.Fatal("renewed index and the original one have the same key")
}
if key2 == key1renew {
t.Fatal("renewed index and the independent one have the same key")
}
})
}