forked from digisan/json-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scan_test.go
125 lines (102 loc) · 2.18 KB
/
scan_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
package jsontool
import (
"context"
"fmt"
"os"
"testing"
"time"
fd "github.com/digisan/gotk/file-dir"
)
func TestScanObjectInArray(t *testing.T) {
// set up a context to manage ingest pipeline
ctx, cancelFunc := context.WithCancel(context.Background())
defer cancelFunc()
// file, err := os.OpenFile("/home/qmiao/Desktop/rrd.json", os.O_RDONLY, os.ModePerm)
file, err := os.Open("./data/mixed.json")
if err != nil {
fPln(err)
}
cOut, cErr, err := ScanObjectInArray(ctx, file, true)
if err != nil {
fmt.Println("Not Valid Array")
return
}
go func() {
I := 1
for out := range cOut {
// if I == 3 {
// cancelFunc()
// }
if I > 0 {
fPln(I, "cOut")
fd.MustWriteFile(fSf("dump%02d.json", I), []byte(out))
}
I++
}
}()
go func() {
I := 1
for e := range cErr {
if e != nil {
panic("channel error")
}
fPln(I, "cErr")
I++
}
}()
time.Sleep(1 * time.Second)
}
func TestScanObject(t *testing.T) {
// set up a context to manage ingest pipeline
ctx, cancelFunc := context.WithCancel(context.Background())
defer cancelFunc()
// file, err := os.OpenFile("/home/qmiao/Desktop/rrd.json", os.O_RDONLY, os.ModePerm)
file, err := os.Open("./data/mixed.json")
if err != nil {
fPln(err)
}
mustarray := false
if cOut, ja := ScanObject(ctx, file, mustarray, true, OUT_FMT); !ja && mustarray {
fPln("NOT JSON array")
} else {
I := 1
for rst := range cOut {
if rst.Err != nil {
panic("Not Valid@" + rst.Err.Error())
}
if I == 3 {
cancelFunc()
}
if I > 0 {
fPln(I)
// fPln(rst.Obj)
fd.MustWriteFile(fSf("dump%02d.json", I), []byte(rst.Obj))
}
I++
}
// for {
// if rst, more := <-chRst; more {
// fPln(I)
// fPln(rst.Obj)
// fPln(rst.Err)
// I++
// } else {
// break
// }
// }
}
}
func TestAnalyse(t *testing.T) {
l1 := `[ {`
l2 := `"Id": 1,`
l3 := ` "Name": "Ahmad,Ahmad",`
l4 := `"Age": "21"`
l5 := ` }, {"Id": 2, "Name": "","Age": "50"},{"Id": 3,"Name": "Test1","Age": ""}, {`
l6 := `"Id": 4 } ]`
fPln(analyseJL(l1, 0))
fPln(analyseJL(l2, 1))
fPln(analyseJL(l3, 1))
fPln(analyseJL(l4, 1))
fPln(analyseJL(l5, 1))
fPln(analyseJL(l6, 1))
}