-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBasic_test.go
97 lines (83 loc) · 2.3 KB
/
Basic_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
package jsonschematics
import (
"encoding/json"
v2 "github.com/ashbeelghouri/jsonschematics/data/v2"
"github.com/ashbeelghouri/jsonschematics/utils"
"log"
"os"
"regexp"
"strings"
"testing"
)
func flatTheMap(data map[string]interface{}) *map[string]interface{} {
var dataMap utils.DataMap
dataMap.FlattenTheMap(data, "", ".")
return &dataMap.Data
}
func FindMatchingKeys(data map[string]interface{}, keyPattern string, separator string) map[string]interface{} {
matchingKeys := make(map[string]interface{})
nestedKeys := make(map[string]interface{})
re := regexp.MustCompile(utils.ConvertKeyToRegex(keyPattern))
log.Println("regex?", re)
// Collect all matching keys
for key, value := range data {
if strings.HasPrefix(key, keyPattern+separator) {
log.Println("has prefix?")
nestedKeys[key] = value
} else if re.MatchString(key) {
log.Println("is matching string?", key)
matchingKeys[key] = value
}
}
if len(nestedKeys) > 0 {
nest := make(map[string]interface{})
for key, value := range nestedKeys {
trimmedKey := strings.TrimPrefix(key, keyPattern+separator)
nest[trimmedKey] = value
}
matchingKeys[keyPattern] = nest
}
return matchingKeys
}
func test1() {
data := map[string]interface{}{
"name": map[string]interface{}{
"first": "ashbeel",
"last": "ghouri",
},
}
flat := flatTheMap(data)
log.Println("flat map", flat)
matchingKeys := FindMatchingKeys(*flat, "name.*", ".")
log.Println("matching keys: ", matchingKeys)
}
func schemaTest() {
log.Println("we are inside schema test")
schematics, err := v2.LoadJsonSchemaFile("test-data/schema/direct/v2/example-1.json")
if err != nil {
log.Println("schematics load error ==> ", err)
}
schematics.Logging.PrintDebugLogs = true
schematics.Logging.PrintErrorLogs = true
content, err := os.ReadFile("test-data/data/direct/example.json")
if err != nil {
log.Println(err)
}
var data map[string]interface{}
err = json.Unmarshal(content, &data)
if err != nil {
log.Println(err)
}
//err = schematics.AssignData(data)
//if err != nil {
// log.Println(err)
//}
//
//log.Println("assigned data", utils.InterfaceToJsonString(schematics.Schema.Fields))
errs := schematics.Validate(data)
log.Println("ERRORS: ", errs.GetStrings("en", "%message\n"))
}
func TestV2Validate(t *testing.T) {
//test1()
schemaTest()
}