mirror of
https://github.com/FluuxIO/go-xmpp.git
synced 2025-04-04 05:59:02 -07:00
21 lines
426 B
Go
21 lines
426 B
Go
package stanza
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/xml"
|
|
"testing"
|
|
)
|
|
|
|
const expectedMarshal = `<stanza-id xmlns="urn:xmpp:sid:0" by="jid" id="unique-id"></stanza-id>`
|
|
|
|
func TestMarshal(t *testing.T) {
|
|
d := StanzaId{
|
|
By: "jid",
|
|
Id: "unique-id",
|
|
}
|
|
data, e := xml.Marshal(d)
|
|
if e != nil || !bytes.Equal(data, []byte(expectedMarshal)) {
|
|
t.Fatalf("Marshal failed. Expected: %v, Actual: %v", expectedMarshal, string(data))
|
|
}
|
|
}
|