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
|
package treeprint
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
type nameStruct struct {
One string `json:"one" tree:"one"`
Two int `tree:"two"`
Three struct {
SubOne []string
SubTwo []interface{}
SubThree struct {
InnerOne *float64 `tree:"inner_one,omitempty"`
InnerTwo *struct{} `tree:",omitempty"`
InnerThree *float64 `tree:"inner_three"`
}
}
}
func TestFromStructName(t *testing.T) {
assert := assert.New(t)
tree, err := FromStruct(nameStruct{}, StructNameTree)
assert.NoError(err)
actual := tree.String()
expected := `.
├── one
├── two
└── Three
├── SubOne
├── SubTwo
└── SubThree
└── inner_three
`
assert.Equal(expected, actual)
}
func TestFromStructTags(t *testing.T) {
assert := assert.New(t)
tree, err := FromStruct(nameStruct{}, StructTagTree)
assert.NoError(err)
actual := tree.String()
expected := `.
├── [json:"one"] one
├── [] two
└── [] Three
├── [] SubOne
├── [] SubTwo
└── [] SubThree
└── [] inner_three
`
assert.Equal(expected, actual)
}
type typeStruct struct {
One string `json:"one" tree:"one"`
Two int `tree:"two"`
Three subtypeStruct
}
type subtypeStruct struct {
SubOne []string
SubTwo []interface{}
SubThree subsubTypeStruct
}
type subsubTypeStruct struct {
InnerOne *float64 `tree:"inner_one,omitempty"`
InnerTwo *struct{} `tree:",omitempty"`
InnerThree *float64 `tree:"inner_three"`
}
func TestFromStructType(t *testing.T) {
assert := assert.New(t)
tree, err := FromStruct(typeStruct{}, StructTypeTree)
assert.NoError(err)
actual := tree.String()
expected := `.
├── [string] one
├── [int] two
└── [treeprint.subtypeStruct] Three
├── [[]string] SubOne
├── [[]interface {}] SubTwo
└── [treeprint.subsubTypeStruct] SubThree
└── [*float64] inner_three
`
assert.Equal(expected, actual)
}
func TestFromStructTypeSize(t *testing.T) {
assert := assert.New(t)
tree, err := FromStruct(typeStruct{}, StructTypeSizeTree)
assert.NoError(err)
actual := tree.String()
expected := `.
├── [16] one
├── [8] two
└── [72] Three
├── [24] SubOne
├── [24] SubTwo
└── [24] SubThree
└── [8] inner_three
`
assert.Equal(expected, actual)
}
type valueStruct struct {
Name string
Bio struct {
Age int
City string
Meta interface{}
}
}
func TestFromStructValue(t *testing.T) {
assert := assert.New(t)
val := valueStruct{
Name: "Max",
}
val.Bio.Age = 100
val.Bio.City = "NYC"
val.Bio.Meta = []byte("hello")
tree, err := FromStruct(val, StructValueTree)
assert.NoError(err)
actual := tree.String()
expected := `.
├── [Max] Name
└── Bio
├── [100] Age
├── [NYC] City
└── [[104 101 108 108 111]] Meta
`
assert.Equal(expected, actual)
}
func TestFromStructWithMeta(t *testing.T) {
assert := assert.New(t)
val := valueStruct{
Name: "Max",
}
val.Bio.Age = 100
val.Bio.City = "NYC"
val.Bio.Meta = []byte("hello")
tree, err := FromStructWithMeta(val, func(_ string, v interface{}) (string, bool) {
return fmt.Sprintf("lol %T", v), true
})
assert.NoError(err)
actual := tree.String()
expected := `.
├── [lol string] Name
└── [lol struct { Age int; City string; Meta interface {} }] Bio
├── [lol int] Age
├── [lol string] City
└── [lol []uint8] Meta
`
assert.Equal(expected, actual)
}
|