-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_test.go
333 lines (320 loc) · 9.21 KB
/
model_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
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
// model_test.go is part of the Go models package.
//
// @author R. S. Doiel, <[email protected]>
//
// Copyright (c) 2024, Caltech
// All rights not granted herein are expressly reserved by Caltech.
//
// Redistribution and use in source and binary forms, with or without modification, are permitted provided
// that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and
// the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
// and the following disclaimer in the documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or
// promote products derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package models
import (
"bytes"
"testing"
// 3rd Party packages
"github.com/google/uuid"
"gopkg.in/yaml.v3"
)
func inList(l []string, s string) bool {
for _, val := range l {
if val == s {
return true
}
}
return false
}
// TestModel test a model's methods
func TestModel(t *testing.T) {
m := new(Model)
if m.HasChanges() {
t.Errorf("A new empty model should not have changed yet")
}
if m.HasElement("id") {
t.Errorf("A new empty model should not have an id yet")
}
if elem, ok := m.GetModelIdentifier(); ok || elem != nil {
t.Errorf("A new model should not have a identifier assigned yet, got %+v, %t", elem, ok)
}
if attrIds := m.GetAttributeIds(); len(attrIds) > 0 {
t.Errorf("A new model should not have attributes yet, got %+v", attrIds)
}
if elemIds := m.GetElementIds(); len(elemIds) > 0 {
t.Errorf("A new model should not have element ids yet, got %+v", elemIds)
}
if elem, ok := m.GetElementById("name"); ok || elem != nil {
t.Errorf("A new model should not have an element called 'name', got %+v, %t", elem, ok)
}
txt := `id: test_model
attributes:
method: GET
action: ./
elements:
- id: id
type: text
attributes:
required: true
name: id
is_primary_id: true
- id: name
type: text
attributes:
name: name
required: "true"
- id: msg
type: textarea
attributes:
name: msg
- id: updated
type: text
attributes:
name: updated
generator: current_timestamp
- id: created
type: text
atteributes:
name: created
generator: created_timestamp
`
if err := yaml.Unmarshal([]byte(txt), m); err != nil {
t.Errorf("expected to be able to unmarshal yaml into model, %s", err)
t.FailNow()
}
buf := bytes.NewBuffer([]byte{})
if !m.Check(buf) {
t.Errorf("expected valid model, got %s", buf.Bytes())
t.FailNow()
}
expectedAttr := []string{"method", "action", "elements"}
for _, attr := range m.GetAttributeIds() {
if !inList(expectedAttr, attr) {
t.Errorf("expected %q to be in attribute list %+v", attr, expectedAttr)
}
}
expectedElemIds := []string{"id", "name", "msg", "updated"}
elemIds := m.GetElementIds()
for _, elemId := range expectedElemIds {
if !inList(elemIds, elemId) {
t.Errorf("expected element id %q to be in list %+v", elemId, elemIds)
}
}
primaryId := m.GetPrimaryId()
if primaryId == "" {
t.Errorf("expected %q, got %q", "id", primaryId)
}
generatedTypes := m.GetGeneratedTypes()
if len(generatedTypes) != 2 {
t.Errorf("expected 2 generator type elements, got %d", len(generatedTypes))
}
if val, ok := generatedTypes["updated"]; !ok {
t.Errorf("expected updated to be %t, got %t in generator type", true, ok)
} else if val != "current_timestamp" {
t.Errorf("expected %q, got %q", "current_timestamp", val)
}
if val, ok := generatedTypes["created"]; !ok {
t.Errorf("expected created to be %t, got %t in generator type", true, ok)
} else if val != "created_timestamp" {
t.Errorf("expected created %q, got %q", "created_timestamp", val)
}
}
// TestModelBuilding tests creating a newmodel programatticly
func TestModelBuilding(t *testing.T) {
modelId := "test_model"
m, err := NewModel(modelId)
if err != nil {
t.Errorf("failed to create new model %q, %s", modelId, err)
}
m.isChanged = false
if m.HasChanges() {
t.Errorf("%s should not have changes yet", modelId)
}
// Example YAML expression of a model
buf := bytes.NewBuffer([]byte{})
if !m.Check(buf) {
t.Errorf("expected a valid model, got %s", buf.Bytes())
t.FailNow()
}
/*
func (e *Element) Check(buf io.Writer) bool {
func IsValidVarname(s string) bool {
func NewElement(elementId string) (*Element, error) {
func (model *Model) InsertElement(pos int, element *Element) error {
func (model *Model) UpdateElement(elementId string, element *Element) error {
func (model *Model) RemoveElement(elementId string) error {
*/
}
// TestHelperFuncs test the funcs from util.go
func TestHelperFuncs(t *testing.T) {
m := map[string]string{
"one": "1",
"two": "2",
"three": "3",
}
attrNames := []string{"one", "two", "three"}
got := getAttributeIds(m)
if len(got) != 3 {
t.Errorf("expected 3 attribute ids, got %d %+v", len(got), got)
t.FailNow()
}
for _, expected := range attrNames {
if !inList(got, expected) {
t.Errorf("expected %q in %+v, missing", expected, got)
}
}
}
// TestValidateModel tests the model validation based on YAML input.
func TestValidateModel(t *testing.T) {
src := []byte(`id: test_validator
description: This is a test of the validation code
elements:
- id: pid
type: text
attributes:
name: pid
required: true
is_primary_id: true
label: Personal Identifier
- id: lived
type: text
attributes:
name: lived
required: true
label: Lived Name
- id: family
type: text
attributes:
name: family
required: true
label: Family Name
- id: orcid
type: text
pattern: "[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9A-Z]"
attributes:
name: orcid
required: true
label: ORCID
`)
model, err := NewModel("test_model")
if err != nil {
t.Error(err)
t.FailNow()
}
if err := yaml.Unmarshal(src, &model); err != nil {
t.Error(err)
t.FailNow()
}
SetDefaultTypes(model)
formData := map[string]string{
"pid": "jane-doe",
"lived": "Jane",
"family": "Doe",
"orcid": "0000-1111-2222-3333",
}
if ok := model.Validate(formData); !ok {
t.Errorf("%+v failed to validate", formData)
}
}
// TestValidateMapInterface tests the YAML model mapping
// for decoding and encoding models.
func TestValidateMapInterface(t *testing.T) {
src := []byte(`id: test_validate_map_inteface
description: This is a test of the validation code
elements:
- id: pid
type: text
attributes:
name: pid
required: true
is_primary_id: true
label: Personal Identifier
generator: uuid
- id: lived
type: text
attributes:
name: lived
required: true
label: Lived Name
- id: family
type: text
attributes:
name: family
required: true
label: Family Name
- id: orcid
type: text
pattern: "[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0-9A-Z]"
attributes:
name: orcid
required: true
label: ORCID
- id: created
type: datetime-local
attributes:
required: true
label: created
generator: created_timestmap
- id: updated
type: datetime-local
attributes:
required: true
generator: current_timestamp
`)
model, err := NewModel("test_model")
if err != nil {
t.Error(err)
t.FailNow()
}
if err := yaml.Unmarshal(src, &model); err != nil {
t.Error(err)
t.FailNow()
}
//Debug = true
SetDefaultTypes(model)
pid := uuid.New()
formData := map[string]interface{}{
"pid": pid,
"lived": "Jane",
"family": "Doe",
"orcid": "0000-1111-2222-3333",
"created": "2024-10-03T12:40:00",
"updated": "2024-10-03 12:41:32",
}
if ok := model.ValidateMapInterface(formData); !ok {
t.Errorf("%+v failed to validate", formData)
}
formData = map[string]interface{}{
"created": "2024-10-03T13:25:24-07:00",
"family": "Jetson",
"lived": "George",
"orcid": "1234-4321-1234-4321",
"pid": "0192540f-0806-7631-b08f-4ae5c4d37cca",
"updated": "2024-10-03T13:25:24-07:00",
}
if ok := model.ValidateMapInterface(formData); !ok {
t.Errorf("%+v failed to validate", formData)
}
}
// TestModelElements tests the GetGeneratedTypes func for Models.
func TestModelElements(t *testing.T) {
m := new(Model)
modelTypes := m.GetGeneratedTypes()
if len(modelTypes) != 0 {
t.Errorf("expected zero model types, got %+v", modelTypes)
}
}