-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmessage_test.go
208 lines (194 loc) · 6.31 KB
/
message_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// Copyright 2015 The Mellium Contributors.
// Use of this source code is governed by the BSD 2-clause
// license that can be found in the LICENSE file.
package stanza_test
import (
"bytes"
"encoding/xml"
"fmt"
"testing"
"mellium.im/xmlstream"
"mellium.im/xmpp/internal/attr"
"mellium.im/xmpp/internal/ns"
"mellium.im/xmpp/jid"
"mellium.im/xmpp/stanza"
)
const testNS = "ns"
func TestMarshalMessageTypeAttr(t *testing.T) {
for i, tc := range [...]struct {
messagetype stanza.MessageType
value string
err error
}{
0: {stanza.MessageType(""), "normal", nil},
1: {stanza.NormalMessage, "normal", nil},
2: {stanza.ChatMessage, "chat", nil},
3: {stanza.HeadlineMessage, "headline", nil},
4: {stanza.ErrorMessage, "error", nil},
5: {stanza.MessageType("foo"), "normal", nil},
} {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
b, err := xml.Marshal(stanza.Message{Type: tc.messagetype})
if err != tc.err {
t.Fatalf("Got unexpected error while marshaling Message: want='%v', got='%v'", tc.err, err)
}
// Special case to check that empty values are omitted
if string(tc.messagetype) == "" {
if bytes.Contains(b, []byte("type")) {
t.Fatalf(`Didn't expect output to contain type attribute, found: %s`, b)
}
return
}
if err == nil && !bytes.Contains(b, []byte(fmt.Sprintf(`type="%s"`, tc.value))) {
t.Errorf(`Expected output to contain type="%s", found: %s`, tc.value, b)
}
})
}
}
func TestUnmarshalMessageTypeAttr(t *testing.T) {
for i, tc := range [...]struct {
message string
messagetype stanza.MessageType
}{
0: {`<message type="normal"/>`, stanza.NormalMessage},
1: {`<message type="error"/>`, stanza.ErrorMessage},
} {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
message := stanza.Message{}
switch err := xml.Unmarshal([]byte(tc.message), &message); {
case err != nil:
t.Errorf("Got unexpected error while unmarshaling Message: %v", err)
case tc.messagetype != message.Type:
t.Errorf("Wrong type when unmarshaling Message: want=%s, got=%s", tc.messagetype, message.Type)
}
})
}
}
func TestMessageStartElement(t *testing.T) {
to := jid.MustParse("[email protected]")
from := jid.MustParse("[email protected]")
msg := stanza.Message{
XMLName: xml.Name{Space: "ns", Local: "badname"},
ID: "123",
To: to,
From: from,
Lang: "te",
Type: stanza.ChatMessage,
}
start := msg.StartElement()
if start.Name.Local != "message" || start.Name.Space != testNS {
t.Errorf("wrong value for name: want=%v, got=%v", xml.Name{Space: testNS, Local: "message"}, start.Name)
}
if _, v := attr.Get(start.Attr, "id"); v != msg.ID {
t.Errorf("wrong value for id: want=%q, got=%q", msg.ID, v)
}
if _, v := attr.Get(start.Attr, "to"); v != msg.To.String() {
t.Errorf("wrong value for to: want=%q, got=%q", msg.To, v)
}
if _, v := attr.Get(start.Attr, "from"); v != msg.From.String() {
t.Errorf("wrong value for from: want=%q, got=%q", msg.From, v)
}
if i, v := attr.Get(start.Attr, "lang"); v != msg.Lang || start.Attr[i].Name.Space != ns.XML {
t.Errorf("wrong value for xml:lang: want=%q, got=%q", xml.Attr{
Name: xml.Name{Space: ns.XML, Local: "lang"},
Value: msg.Lang,
}, xml.Attr{
Name: start.Attr[i].Name,
Value: v,
})
}
if _, v := attr.Get(start.Attr, "type"); v != string(msg.Type) {
t.Errorf("wrong value for type: want=%q, got=%q", msg.Type, v)
}
}
func TestMessageFromStartElement(t *testing.T) {
for i, tc := range [...]xml.StartElement{
0: {
// Make sure that we're not validating the name.
// This is deliberate in case we want to eg. use this to generate a
// message in response to an IQ using the values from the IQ start
// element.
Name: xml.Name{Local: "iq", Space: testNS},
Attr: []xml.Attr{
{Name: xml.Name{Local: "id"}, Value: "123"},
{Name: xml.Name{Local: "to"}, Value: "[email protected]"},
{Name: xml.Name{Local: "from"}, Value: "[email protected]"},
{Name: xml.Name{Local: "lang"}, Value: "de"},
{Name: xml.Name{Space: ns.XML, Local: "lang"}, Value: "lo"},
{Name: xml.Name{Local: "type"}, Value: "chat"},
},
},
1: {
Name: xml.Name{Local: "msg", Space: testNS},
Attr: []xml.Attr{
{Name: xml.Name{Local: "to"}, Value: ""},
{Name: xml.Name{Local: "from"}, Value: ""},
},
},
} {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
msg, err := stanza.NewMessage(tc)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if msg.XMLName.Local != tc.Name.Local {
t.Errorf("wrong localname value: want=%q, got=%q", tc.Name.Local, msg.XMLName.Local)
}
if msg.XMLName.Space != testNS {
t.Errorf("wrong namespace value: want=%q, got=%q", testNS, msg.XMLName.Space)
}
if _, v := attr.Get(tc.Attr, "id"); v != msg.ID {
t.Errorf("wrong value for id: want=%q, got=%q", v, msg.ID)
}
if _, v := attr.Get(tc.Attr, "to"); v != msg.To.String() {
t.Errorf("wrong value for to: want=%q, got=%q", v, msg.To)
}
if _, v := attr.Get(tc.Attr, "from"); v != msg.From.String() {
t.Errorf("wrong value for from: want=%q, got=%q", v, msg.From)
}
langAttr := getLangAttr(tc)
if langAttr.Value != msg.Lang {
t.Errorf("wrong value for xml:lang: want=%q, got=%q", langAttr.Value, msg.Lang)
}
exists, typeAttr := attr.Get(tc.Attr, "type")
if exists == -1 {
typeAttr = "normal"
}
if typeAttr != string(msg.Type) {
t.Errorf("wrong value for type: want=%q, got=%q", typeAttr, msg.Type)
}
})
}
}
func getLangAttr(start xml.StartElement) xml.Attr {
var langAttr xml.Attr
for _, attr := range start.Attr {
if attr.Name.Local == "lang" && attr.Name.Space == ns.XML {
langAttr = attr
break
}
}
return langAttr
}
func TestMessageError(t *testing.T) {
msg := stanza.Message{
To: jid.MustParse("to"),
From: jid.MustParse("from"),
}.Error(stanza.Error{
Condition: stanza.BadRequest,
})
var buf bytes.Buffer
e := xml.NewEncoder(&buf)
_, err := xmlstream.Copy(e, msg)
if err != nil {
t.Fatalf("error encoding stream: %v", err)
}
err = e.Flush()
if err != nil {
t.Fatalf("error flushing stream: %v", err)
}
const expected = `<message type="error" to="from" from="to"><error><bad-request xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"></bad-request></error></message>`
if out := buf.String(); expected != out {
t.Errorf("unexpected output:\nwant=%s,\n got=%s", expected, out)
}
}