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"
|
|
|
|
)
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|