mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
89 lines
2.6 KiB
Go
89 lines
2.6 KiB
Go
package mxj
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"testing"
|
|
)
|
|
|
|
func TestXmlSeqHeader(t *testing.T) {
|
|
fmt.Println("\n---------------- xmlseq_test.go ...")
|
|
}
|
|
|
|
func TestNewMapXmlSeq(t *testing.T) {
|
|
x := []byte(`<doc>
|
|
<books>
|
|
<book seq="1">
|
|
<author>William T. Gaddis</author>
|
|
<review>Gaddis is one of the most influential but little know authors in America.</review>
|
|
<title>The Recognitions</title>
|
|
<!-- here's the rest of the review -->
|
|
<review>One of the great seminal American novels of the 20th century.</review>
|
|
<review>Without it Thomas Pynchon probably wouldn't have written Gravity's Rainbow.</review>
|
|
</book>
|
|
<book seq="2">
|
|
<author>Austin Tappan Wright</author>
|
|
<title>Islandia</title>
|
|
<review>An example of earlier 20th century American utopian fiction.</review>
|
|
</book>
|
|
<book>
|
|
<author>John Hawkes</author>
|
|
<title>The Beetle Leg</title>
|
|
<!throw in a directive here>
|
|
<review>A lyrical novel about the construction of Ft. Peck Dam in Montana.</review>
|
|
</book>
|
|
<book>
|
|
<author>
|
|
<?cat first_name last_name?>
|
|
<first_name>T.E.</first_name>
|
|
<last_name>Porter</last_name>
|
|
</author>
|
|
<title>King's Day</title>
|
|
<review>A magical novella.</review>
|
|
</book>
|
|
</books>
|
|
</doc>`)
|
|
|
|
m, err := NewMapXmlSeq(x)
|
|
if err != nil && err != io.EOF {
|
|
t.Fatal("err:", err.Error())
|
|
}
|
|
fmt.Println("NewMapXmlSeq, x:\n", string(x))
|
|
// fmt.Println("NewMapXmlSeq, m:\n", m)
|
|
fmt.Println("NewMapXmlSeq, s:\n", m.StringIndent())
|
|
|
|
b, err := m.XmlIndent("", " ")
|
|
if err == nil {
|
|
fmt.Println("NewMapXmlSeq, mv.XmlIndent():\n", string(b))
|
|
t.Fatal("didn't catch invalid key: #text")
|
|
}
|
|
fmt.Println("err ok:", err)
|
|
|
|
b, err = m.XmlSeqIndent("", " ")
|
|
if err != nil {
|
|
t.Fatal("err:", err)
|
|
}
|
|
fmt.Println("NewMapXmlSeq, mv.XmlSeqIndent():\n", string(b))
|
|
}
|
|
|
|
func TestXmlSeqDecodeError(t *testing.T) {
|
|
fmt.Println("------------ TestXmlSeqDecodeError ...")
|
|
x := []byte(`<doc>
|
|
<books>
|
|
<book seq="1">
|
|
<author>William T. Gaddis</author>
|
|
<review>Gaddis is one of the most influential but little know authors in America.</review>
|
|
<title>The Recognitions</title>
|
|
<!-- here's the rest of the review -->
|
|
<review>One of the great seminal American novels of the 20th century.</review>
|
|
<review>Without it Thomas Pynchon probably wouldn't have written Gravity's Rainbow.</review>
|
|
</books>
|
|
</doc>`)
|
|
|
|
_, err := NewMapXmlSeq(x)
|
|
if err == nil {
|
|
t.Fatal("didn't catch EndElement error")
|
|
}
|
|
fmt.Println("err ok:", err)
|
|
}
|