2019-06-26 15:14:52 +00:00
|
|
|
package stanza_test
|
2018-01-25 10:00:20 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/google/go-cmp/cmp"
|
2019-06-26 15:28:54 +00:00
|
|
|
"gosrc.io/xmpp/stanza"
|
2018-01-25 10:00:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestGeneratePresence(t *testing.T) {
|
2019-06-26 15:28:54 +00:00
|
|
|
presence := stanza.NewPresence(stanza.Attrs{From: "admin@localhost", To: "test@localhost", Id: "1"})
|
|
|
|
presence.Show = stanza.PresenceShowChat
|
2018-01-25 10:00:20 +00:00
|
|
|
|
|
|
|
data, err := xml.Marshal(presence)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("cannot marshal xml structure")
|
|
|
|
}
|
|
|
|
|
2019-06-26 15:28:54 +00:00
|
|
|
var parsedPresence stanza.Presence
|
2018-01-25 10:00:20 +00:00
|
|
|
if err = xml.Unmarshal(data, &parsedPresence); err != nil {
|
|
|
|
t.Errorf("Unmarshal(%s) returned error", data)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !xmlEqual(parsedPresence, presence) {
|
|
|
|
t.Errorf("non matching items\n%s", cmp.Diff(parsedPresence, presence))
|
|
|
|
}
|
|
|
|
}
|
2019-02-10 16:53:18 +00:00
|
|
|
|
|
|
|
func TestPresenceSubElt(t *testing.T) {
|
|
|
|
// Test structure to ensure that show, status and priority are correctly defined as presence
|
|
|
|
// package sub-elements
|
|
|
|
type pres struct {
|
2019-06-26 15:28:54 +00:00
|
|
|
Show stanza.PresenceShow `xml:"show"`
|
|
|
|
Status string `xml:"status"`
|
|
|
|
Priority int8 `xml:"priority"`
|
2019-02-10 16:53:18 +00:00
|
|
|
}
|
|
|
|
|
2019-06-26 15:28:54 +00:00
|
|
|
presence := stanza.NewPresence(stanza.Attrs{From: "admin@localhost", To: "test@localhost", Id: "1"})
|
|
|
|
presence.Show = stanza.PresenceShowXA
|
2019-02-10 16:53:18 +00:00
|
|
|
presence.Status = "Coding"
|
2019-06-20 16:36:57 +00:00
|
|
|
presence.Priority = 10
|
2019-02-10 16:53:18 +00:00
|
|
|
|
|
|
|
data, err := xml.Marshal(presence)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("cannot marshal xml structure")
|
|
|
|
}
|
|
|
|
|
|
|
|
var parsedPresence pres
|
|
|
|
if err = xml.Unmarshal(data, &parsedPresence); err != nil {
|
|
|
|
t.Errorf("Unmarshal(%s) returned error", data)
|
|
|
|
}
|
|
|
|
|
|
|
|
if parsedPresence.Show != presence.Show {
|
|
|
|
t.Errorf("cannot read 'show' as presence subelement (%s)", parsedPresence.Show)
|
|
|
|
}
|
|
|
|
if parsedPresence.Status != presence.Status {
|
|
|
|
t.Errorf("cannot read 'status' as presence subelement (%s)", parsedPresence.Status)
|
|
|
|
}
|
|
|
|
if parsedPresence.Priority != presence.Priority {
|
2019-06-20 16:36:57 +00:00
|
|
|
t.Errorf("cannot read 'priority' as presence subelement (%d)", parsedPresence.Priority)
|
2019-02-10 16:53:18 +00:00
|
|
|
}
|
|
|
|
}
|