-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype_resolver_test.go
85 lines (71 loc) · 2.07 KB
/
type_resolver_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
package golymorph
import (
"encoding/json"
"github.com/SoulKa/golymorph/objectpath"
"github.com/mitchellh/mapstructure"
"reflect"
"testing"
)
type Animal struct {
Name string
Specifics any
}
type Horse struct {
Shoes int
}
type Duck struct {
Feathers int
}
var animalTypeMap = TypeMap{
"horse": reflect.TypeOf(Horse{}),
"duck": reflect.TypeOf(Duck{}),
}
type TestCase struct {
inputJson string
output Animal
}
var testCases = []TestCase{
{`{ "name": "horsey", "specifics": { "type": "horse", "shoes": 4 } }`, Animal{"horsey", Horse{4}}},
{`{ "name": "ducky", "specifics": { "type": "duck", "feathers": 1000 } }`, Animal{"ducky", Duck{1000}}},
}
func TestPolymorphism_AssignTargetType(t *testing.T) {
// Arrange
err, targetPath := objectpath.NewObjectPathFromString("/specifics")
if err != nil {
t.Fatalf("error creating target path: %s", err)
}
err, discriminatorPath := objectpath.NewObjectPathFromString("/specifics/type")
if err != nil {
t.Fatalf("error creating discriminator path: %s", err)
}
polymorphism := &TypeMapPolymorphism{
Polymorphism: Polymorphism{
TargetPath: *targetPath},
DiscriminatorPath: *discriminatorPath,
TypeMap: animalTypeMap,
}
t.Logf("polymorphism: %+v\n", polymorphism)
for _, tc := range testCases {
// parse JSON
var actualAnimalJson any
if err := json.Unmarshal([]byte(tc.inputJson), &actualAnimalJson); err != nil {
t.Fatalf("error unmarshalling horse: %s", err)
}
t.Logf("actualAnimalJson: %+v\n", actualAnimalJson)
// Act
var actualAnimal Animal
if err := polymorphism.AssignTargetType(&actualAnimalJson, &actualAnimal); err != nil {
t.Fatalf("error assigning target type to horse: %s", err)
}
t.Logf("actualAnimal: %+v\n", actualAnimal)
// map map to struct
if err := mapstructure.Decode(actualAnimalJson, &actualAnimal); err != nil {
t.Fatalf("error decoding animal: %s\n", err)
}
t.Logf("actualAnimal: %+v\n", actualAnimal)
// Assert
if !reflect.DeepEqual(actualAnimal, tc.output) {
t.Fatalf("expected horse to be %+v, but got %+v", tc.output, actualAnimal)
}
}
}