-
Notifications
You must be signed in to change notification settings - Fork 0
/
scanner_test.go
74 lines (64 loc) · 1.19 KB
/
scanner_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
package xml
import (
"bufio"
"os"
"testing"
)
func TestScannerShort(t *testing.T) {
fd, err := os.Open("ex/weird.xml")
if err != nil {
t.Fatal(err)
}
scanner := bufio.NewScanner(fd)
scanner.Split(split)
i := 0
for scanner.Scan() {
if scanner.Err() != nil {
t.Fatal(scanner.Err())
}
i++
}
if i != 20 {
t.Error("Failed to parse all tags (or too many)")
}
t.Logf("found %v/20 tags", i)
}
// TODO: break out scanner-test into helper func
func TestScannerLong(t *testing.T) {
fd, err := os.Open("ex/bing_xsd1.fmt.xsd")
if err != nil {
t.Fatal(err)
}
scanner := bufio.NewScanner(fd)
scanner.Split(split)
i := 0
for scanner.Scan() {
if scanner.Err() != nil {
t.Fatal(scanner.Err())
}
i++
}
if i != 3008 {
t.Error("Failed to parse all tags (or too many)")
}
t.Logf("found %v/3008 tags", i)
}
func TestScannerWsdl(t *testing.T) {
fd, err := os.Open("ex/CampaignService.wsdl")
if err != nil {
t.Fatal(err)
}
scanner := bufio.NewScanner(fd)
scanner.Split(split)
i := 0
for scanner.Scan() {
if scanner.Err() != nil {
t.Fatal(scanner.Err())
}
i++
}
if i != 6614 {
t.Error("Failed to parse all tags (or too many)")
}
t.Logf("found %v/6614 tags", i)
}