go-xmpp/iq_test.go

84 lines
2.4 KiB
Go
Raw Normal View History

2018-01-01 17:12:33 +00:00
package xmpp // import "fluux.io/xmpp"
2016-02-15 17:33:51 +00:00
import (
"encoding/xml"
"reflect"
"testing"
2018-01-17 17:47:34 +00:00
"github.com/google/go-cmp/cmp"
2016-02-15 17:33:51 +00:00
)
func TestUnmarshalIqs(t *testing.T) {
2017-10-04 20:51:28 +00:00
//var cs1 = new(iot.ControlSet)
2016-02-15 17:33:51 +00:00
var tests = []struct {
iqString string
2018-01-13 17:50:17 +00:00
parsedIQ IQ
2016-02-15 17:33:51 +00:00
}{
2018-01-13 17:50:17 +00:00
{"<iq id=\"1\" type=\"set\" to=\"test@localhost\"/>", IQ{XMLName: xml.Name{Space: "", Local: "iq"}, PacketAttrs: PacketAttrs{To: "test@localhost", Type: "set", Id: "1"}}},
//{"<iq xmlns=\"jabber:client\" id=\"2\" type=\"set\" to=\"test@localhost\" from=\"server\"><set xmlns=\"urn:xmpp:iot:control\"/></iq>", IQ{XMLName: xml.Name{Space: "jabber:client", Local: "iq"}, PacketAttrs: PacketAttrs{To: "test@localhost", From: "server", Type: "set", Id: "2"}, Payload: cs1}},
2016-02-15 17:33:51 +00:00
}
for _, test := range tests {
2018-01-13 17:50:17 +00:00
var parsedIQ = new(IQ)
2016-02-15 17:33:51 +00:00
err := xml.Unmarshal([]byte(test.iqString), parsedIQ)
if err != nil {
t.Errorf("Unmarshal(%s) returned error", test.iqString)
}
if !reflect.DeepEqual(parsedIQ, &test.parsedIQ) {
t.Errorf("Unmarshal(%s) expecting result %+v = %+v", test.iqString, parsedIQ, &test.parsedIQ)
}
}
}
2018-01-15 11:28:34 +00:00
func TestGenerateIq(t *testing.T) {
2018-01-17 17:47:34 +00:00
iq := NewIQ("result", "admin@localhost", "test@localhost", "1", "en")
2018-01-16 21:33:21 +00:00
payload := DiscoInfo{
Identity: Identity{
Name: "Test Gateway",
Category: "gateway",
Type: "mqtt",
},
2018-01-17 17:47:34 +00:00
Features: []Feature{
{Var: "http://jabber.org/protocol/disco#info"},
{Var: "http://jabber.org/protocol/disco#item"},
},
2018-01-16 21:33:21 +00:00
}
iq.AddPayload(&payload)
2018-01-17 17:47:34 +00:00
2018-01-16 21:33:21 +00:00
data, err := xml.Marshal(iq)
if err != nil {
t.Errorf("cannot marshal xml structure")
}
2018-01-15 11:28:34 +00:00
var parsedIQ = new(IQ)
if err = xml.Unmarshal(data, parsedIQ); err != nil {
t.Errorf("Unmarshal(%s) returned error", data)
}
2018-01-17 17:47:34 +00:00
if !xmlEqual(parsedIQ.Payload, iq.Payload) {
t.Errorf("non matching items\n%s", cmp.Diff(parsedIQ.Payload, iq.Payload))
}
}
// Compare iq structure but ignore empty namespace as they are set properly on
// marshal / unmarshal. There is no need to manage them on the manually
// crafted structure.
func xmlEqual(x, y interface{}) bool {
alwaysEqual := cmp.Comparer(func(_, _ interface{}) bool { return true })
opts := cmp.Options{
cmp.FilterValues(func(x, y interface{}) bool {
xx, xok := x.(xml.Name)
yy, yok := y.(xml.Name)
if xok && yok {
zero := xml.Name{}
if xx == zero || yy == zero {
return true
}
}
return false
}, alwaysEqual),
2018-01-15 11:28:34 +00:00
}
2018-01-17 17:47:34 +00:00
return cmp.Equal(x, y, opts)
2018-01-15 11:28:34 +00:00
}