-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
starttls_test.go
187 lines (176 loc) · 5.64 KB
/
starttls_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
// 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 xmpp_test
import (
"bytes"
"context"
"crypto/tls"
"encoding/xml"
"fmt"
"io"
"strings"
"testing"
"mellium.im/xmpp"
"mellium.im/xmpp/internal/ns"
"mellium.im/xmpp/internal/xmpptest"
)
// There is no room for variation on the starttls feature negotiation, so step
// through the list process token for token.
func TestStartTLSList(t *testing.T) {
stls := xmpp.StartTLS(nil)
var b bytes.Buffer
e := xml.NewEncoder(&b)
start := xml.StartElement{Name: xml.Name{Space: ns.StartTLS, Local: "starttls"}}
r, err := stls.List(context.Background(), e, start)
switch {
case err != nil:
t.Fatal(err)
case !r:
t.Error("Expected StartTLS listing to be required")
}
if err = e.Flush(); err != nil {
t.Fatal(err)
}
d := xml.NewDecoder(&b)
tok, err := d.Token()
if err != nil {
t.Fatal(err)
}
se := tok.(xml.StartElement)
switch {
case se.Name != xml.Name{Space: ns.StartTLS, Local: "starttls"}:
t.Errorf("Expected starttls to start with %+v token but got %+v", ns.StartTLS, se.Name)
case len(se.Attr) != 1:
t.Errorf("Expected starttls start element to have 1 attribute (xmlns), but got %+v", se.Attr)
}
tok, err = d.Token()
if err != nil {
t.Fatal(err)
}
reqStart := tok.(xml.StartElement)
switch {
case reqStart.Name != xml.Name{Space: ns.StartTLS, Local: "required"}:
t.Errorf("Expected required start element but got %+v", se)
case len(reqStart.Attr) > 0:
t.Errorf("Expected starttls required to have no attributes but got %d", len(reqStart.Attr))
}
tok, err = d.Token()
if err != nil {
t.Fatal(err)
}
ee := tok.(xml.EndElement)
switch {
case reqStart.Name != xml.Name{Space: ns.StartTLS, Local: "required"}:
t.Errorf("Expected required end element but got %+v", ee)
}
tok, err = d.Token()
if err != nil {
t.Fatal(err)
}
ee = tok.(xml.EndElement)
switch {
case se.Name != xml.Name{Space: ns.StartTLS, Local: "starttls"}:
t.Errorf("Expected starttls end element but got %+v", ee)
}
}
func TestStartTLSParse(t *testing.T) {
stls := xmpp.StartTLS(nil)
for i, test := range [...]struct {
msg string
req bool
err bool
}{
0: {`<starttls xmlns="urn:ietf:params:xml:ns:xmpp-tls"/>`, false, false},
1: {`<starttls xmlns="urn:ietf:params:xml:ns:xmpp-tls"></starttls>`, false, false},
2: {`<starttls xmlns="urn:ietf:params:xml:ns:xmpp-tls"><required/></starttls>`, true, false},
3: {`<starttls xmlns="urn:ietf:params:xml:ns:xmpp-tls"><required></required></starttls>`, true, false},
4: {`<endtls xmlns="urn:ietf:params:xml:ns:xmpp-tls"/>`, false, true},
5: {`<starttls xmlns="badurn"/>`, false, true},
} {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
d := xml.NewDecoder(bytes.NewBufferString(test.msg))
tok, _ := d.Token()
se := tok.(xml.StartElement)
req, _, err := stls.Parse(context.Background(), d, &se)
switch {
case test.err && (err == nil):
t.Error("Expected starttls.Parse to error")
case !test.err && (err != nil):
t.Error(err)
case req != test.req:
t.Errorf("STARTTLS required was wrong; expected %v but got %v", test.req, req)
}
})
}
}
type nopRWC struct {
io.Reader
io.Writer
}
func (nopRWC) Close() error {
return nil
}
func TestNegotiateServer(t *testing.T) {
stls := xmpp.StartTLS(&tls.Config{})
var b bytes.Buffer
c := xmpptest.NewClientSession(xmpp.Received, nopRWC{&b, &b})
_, rw, err := stls.Negotiate(context.Background(), c, nil)
switch {
case err != nil:
t.Fatal(err)
case rw == nil:
t.Fatal("Expected a new ReadWriter when negotiating STARTTLS as a server")
}
// The server should send a proceed element.
proceed := struct {
XMLName xml.Name `xml:"urn:ietf:params:xml:ns:xmpp-tls proceed"`
}{}
d := xml.NewDecoder(&b)
if err = d.Decode(&proceed); err != nil {
t.Error(err)
}
}
func TestNegotiateClient(t *testing.T) {
for i, test := range [...]struct {
responses []string
err bool
rw bool
state xmpp.SessionState
}{
0: {[]string{`<proceed xmlns="badns"/>`}, true, false, xmpp.Secure},
1: {[]string{`<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>`}, false, true, xmpp.Secure},
2: {[]string{`<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'></bad>`}, true, false, 0},
3: {[]string{`<failure xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>`}, true, false, 0},
4: {[]string{`<failure xmlns='urn:ietf:params:xml:ns:xmpp-tls'></bad>`}, true, false, 0},
5: {[]string{`</somethingbadhappened>`}, true, false, 0},
6: {[]string{`<notproceedorfailure xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>`}, true, false, 0},
7: {[]string{`chardata not start element`}, true, false, 0},
} {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
stls := xmpp.StartTLS(&tls.Config{})
r := strings.NewReader(strings.Join(test.responses, "\n"))
var b bytes.Buffer
c := xmpptest.NewClientSession(0, nopRWC{r, &b})
mask, rw, err := stls.Negotiate(context.Background(), c, nil)
switch {
case test.err && err == nil:
t.Error("Expected an error from starttls client negotiation")
return
case !test.err && err != nil:
t.Error(err)
return
case test.err && err != nil:
return
case b.String() != `<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>`:
t.Errorf("Expected client to send starttls element but got `%s`", b.String())
case test.state != mask:
t.Errorf("Expected session state mask %v but got %v", test.state, mask)
case test.rw && rw == nil:
t.Error("Expected a new ReadWriter when negotiating STARTTLS as a client")
case !test.rw && rw != nil:
t.Error("Did not expect a new ReadWriter when negotiating STARTTLS as a client")
}
})
}
}