-
Notifications
You must be signed in to change notification settings - Fork 31
/
xmlx_test.go
105 lines (84 loc) · 1.92 KB
/
xmlx_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
// This work is subject to the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
// license. Its contents can be found at:
// http://creativecommons.org/publicdomain/zero/1.0/
package xmlx
import "testing"
func TestLoadLocal(t *testing.T) {
doc := New()
if err := doc.LoadFile("test.xml"); err != nil {
t.Error(err.String())
return
}
if len(doc.Root.Children) == 0 {
t.Errorf("Root node has no children.")
return
}
}
func TestLoadRemote(t *testing.T) {
doc := New()
if err := doc.LoadUri("http://blog.golang.org/feeds/posts/default"); err != nil {
t.Error(err.String())
return
}
if len(doc.Root.Children) == 0 {
t.Errorf("Root node has no children.")
return
}
}
func TestSave(t *testing.T) {
doc := New()
if err := doc.LoadFile("test.xml"); err != nil {
t.Errorf("LoadFile(): %s", err)
return
}
if err := doc.SaveFile("test1.xml"); err != nil {
t.Errorf("SaveFile(): %s", err)
return
}
}
func TestNodeSearch(t *testing.T) {
doc := New()
if err := doc.LoadFile("test.xml"); err != nil {
t.Errorf("LoadFile(): %s", err)
return
}
if node := doc.SelectNode("", "item"); node == nil {
t.Errorf("SelectNode(): No node found.")
return
}
nodes := doc.SelectNodes("", "item")
if len(nodes) == 0 {
t.Errorf("SelectNodes(): no nodes found.")
return
}
}
type Image struct {
Title string
Url string
Link string
Width string
Height string
Description string
}
func TestUnmarshal(t *testing.T) {
doc := New()
err := doc.LoadFile("test.xml")
if err != nil {
t.Errorf("LoadFile(): %s", err)
return
}
node := doc.SelectNode("", "image")
if node == nil {
t.Errorf("SelectNode(): No node found.")
return
}
img := Image{}
if err = node.Unmarshal(&img); err != nil {
t.Errorf("Unmarshal(): %s", err)
return
}
if img.Title != "WriteTheWeb" {
t.Errorf("Image.Title has incorrect value. Got '%s', expected 'WriteTheWeb'.", img.Title)
return
}
}