-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpresence_test.go
237 lines (222 loc) · 6.9 KB
/
presence_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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// Copyright 2016 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"
"strconv"
"testing"
"mellium.im/xmlstream"
"mellium.im/xmpp/internal/attr"
"mellium.im/xmpp/internal/ns"
"mellium.im/xmpp/jid"
"mellium.im/xmpp/stanza"
)
var exampleJID = jid.MustParse("example.net")
var wrapPresenceTests = [...]struct {
to jid.JID
typ stanza.PresenceType
payload xml.TokenReader
out string
}{
0: {out: "<presence></presence>"},
1: {
to: exampleJID,
out: `<presence to="example.net"></presence>`,
},
2: {
typ: stanza.SubscribedPresence,
out: `<presence type="subscribed"></presence>`,
},
3: {
to: exampleJID,
typ: stanza.SubscribedPresence,
out: `<presence type="subscribed" to="example.net"></presence>`,
},
4: {
payload: &testReader{},
out: `<presence></presence>`,
},
5: {
payload: &testReader{start, start.End()},
out: `<presence><ping></ping></presence>`,
},
}
func TestWrapPresence(t *testing.T) {
for i, tc := range wrapPresenceTests {
t.Run(strconv.Itoa(i), func(t *testing.T) {
buf := &bytes.Buffer{}
e := xml.NewEncoder(buf)
presence := stanza.Presence{To: tc.to, Type: tc.typ}.Wrap(tc.payload)
_, err := xmlstream.Copy(e, presence)
if err != nil {
t.Fatalf("Error encoding stream: %q", err)
}
if err := e.Flush(); err != nil {
t.Fatalf("Error flushing stream: %q", err)
}
if s := buf.String(); s != tc.out {
t.Fatalf("Wrong encoding:\nwant=\n%q,\ngot=\n%q", tc.out, s)
}
})
}
}
func TestMarshalPresenceTypeAttr(t *testing.T) {
for i, tc := range [...]struct {
presencetype stanza.PresenceType
value string
}{
0: {stanza.PresenceType(""), ""},
1: {stanza.ErrorPresence, "error"},
} {
t.Run(strconv.Itoa(i), func(t *testing.T) {
b, err := xml.Marshal(stanza.Presence{Type: tc.presencetype})
if err != nil {
t.Fatal("Unexpected error while marshaling:", err)
}
// Special case empty presence to make sure its omitted.
if string(tc.presencetype) == "" {
if bytes.Contains(b, []byte("type=")) {
t.Fatalf(`Expected empty presence type to be omitted, found: %s`, b)
}
return
}
if !bytes.Contains(b, []byte(fmt.Sprintf(`type="%s"`, tc.value))) {
t.Errorf(`Expected output to contain type="%s", found: %s`, tc.value, b)
}
})
}
}
func TestUnmarshalPresenceTypeAttr(t *testing.T) {
for i, tc := range [...]struct {
presence string
presencetype stanza.PresenceType
}{
0: {`<presence/>`, stanza.PresenceType("")},
1: {`<presence type=""/>`, stanza.PresenceType("")},
2: {`<presence type="probe"/>`, stanza.ProbePresence},
} {
t.Run(strconv.Itoa(i), func(t *testing.T) {
presence := stanza.Presence{}
switch err := xml.Unmarshal([]byte(tc.presence), &presence); {
case err != nil:
t.Error("Got unexpected error while unmarshaling Presence:", err)
case tc.presencetype != presence.Type:
t.Errorf("Wrong type when unmarshaling Presence: want=%s, got=%s", tc.presencetype, presence.Type)
}
})
}
}
func TestPresenceStartElement(t *testing.T) {
to := jid.MustParse("[email protected]")
from := jid.MustParse("[email protected]")
msg := stanza.Presence{
XMLName: xml.Name{Space: "ns", Local: "badname"},
ID: "123",
To: to,
From: from,
Lang: "te",
Type: stanza.SubscribedPresence,
}
start := msg.StartElement()
if start.Name.Local != "presence" || start.Name.Space != testNS {
t.Errorf("wrong value for name: want=%v, got=%v", xml.Name{Space: testNS, Local: "presence"}, 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 TestPresenceFromStartElement(t *testing.T) {
for i, tc := range [...]xml.StartElement{
0: {
// Make sure that we're not validating the name.
Name: xml.Name{Local: "message", 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.NewPresence(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)
}
if _, v := attr.Get(tc.Attr, "type"); v != string(msg.Type) {
t.Errorf("wrong value for type: want=%q, got=%q", v, msg.Type)
}
})
}
}
func TestPresenceError(t *testing.T) {
pres := stanza.Presence{
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, pres)
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 = `<presence type="error" to="from" from="to"><error><bad-request xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"></bad-request></error></presence>`
if out := buf.String(); expected != out {
t.Errorf("unexpected output:\nwant=%s,\n got=%s", expected, out)
}
}