-
Notifications
You must be signed in to change notification settings - Fork 14
/
send_test.go
160 lines (125 loc) · 3.71 KB
/
send_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
package otr3
import (
"bytes"
"testing"
)
func Test_sendDHCommit_resetsAKEKeyContext(t *testing.T) {
c := newConversation(otrV3{}, fixtureRand())
_, err := c.sendDHCommit()
assertNil(t, err)
assertDeepEquals(t, c.ake.keys, keyManagementContext{})
}
func Test_Send_signalsMessageEventIfTryingToSendWithoutEncryptedChannel(t *testing.T) {
m := []byte("hello")
c := bobContextAfterAKE()
c.msgState = plainText
c.Policies = policies(allowV3 | requireEncryption)
c.expectMessageEvent(t, func() {
_, _ = c.Send(m)
}, MessageEventEncryptionRequired, nil, nil)
}
func Test_Send_signalsMessageEventIfTryingToSendOnAFinishedChannel(t *testing.T) {
m := []byte("hello")
c := bobContextAfterAKE()
c.msgState = finished
c.Policies = policies(allowV3 | requireEncryption)
c.expectMessageEvent(t, func() {
_, _ = c.Send(m)
}, MessageEventConnectionEnded, nil, nil)
}
func Test_Send_signalsEncryptionErrorMessageEventIfSomethingWentWrong(t *testing.T) {
msg := []byte("hello")
c := bobContextAfterAKE()
c.msgState = encrypted
c.Policies = policies(allowV3)
c.keys.theirKeyID = 0
c.expectMessageEvent(t, func() {
_, _ = c.Send(msg)
}, MessageEventEncryptionError, nil, nil)
}
func Test_Send_callsErrorMessageHandlerAndReturnsTheResultAsAnOTRErrorMessage(t *testing.T) {
msg := []byte("hello")
c := bobContextAfterAKE()
c.msgState = encrypted
c.Policies = policies(allowV3)
c.keys.theirKeyID = 0
c.errorMessageHandler = dynamicErrorMessageHandler{
func(error ErrorCode) []byte {
if error == ErrorCodeEncryptionError {
return []byte("snowflake happened")
}
return []byte("nova happened")
}}
msgs, _ := c.Send(msg)
assertDeepEquals(t, msgs[0], ValidMessage("?OTR Error: snowflake happened"))
}
func Test_Send_saveLastMessageWhenMsgIsPlainTextAndEncryptedIsExpected(t *testing.T) {
m := []byte("hello")
c := bobContextAfterAKE()
c.msgState = plainText
c.Policies = policies(allowV3 | requireEncryption)
_, _ = c.Send(m)
assertDeepEquals(t, c.resend.pending(),
[]messageToResend{
{MessagePlaintext(m), nil},
})
}
func Test_Send_saveLastMessageWhenMsgIsPlainTextAndEncryptedIsExpected_AndAddsAnOpaqueValueForEachMessage(t *testing.T) {
m := []byte("hello")
m2 := []byte("hello again?")
c := bobContextAfterAKE()
c.msgState = plainText
c.Policies = policies(allowV3 | requireEncryption)
_, _ = c.Send(m, 42, "hello")
_, _ = c.Send(m2, 15, "something")
assertDeepEquals(t, c.resend.pending(),
[]messageToResend{
{MessagePlaintext(m), []interface{}{42, "hello"}},
{MessagePlaintext(m2), []interface{}{15, "something"}},
})
}
func Test_Send_setsMayRetransmitFlagToExpectExactResending(t *testing.T) {
m := []byte("hello")
c := bobContextAfterAKE()
c.msgState = plainText
c.Policies = policies(allowV3 | requireEncryption)
_, _ = c.Send(m)
assertEquals(t, c.resend.mayRetransmit, retransmitExact)
}
func captureStderr(f func()) string {
originalStdErr := standardErrorOutput
bt := bytes.NewBuffer(make([]byte, 0, 200))
standardErrorOutput = bt
f()
defer func() {
standardErrorOutput = originalStdErr
}()
return bt.String()
}
func Test_Send_printsDebugStatementToStderrIfGivenMagicString(t *testing.T) {
m := []byte("hel?OTR!lo")
c := bobContextAfterAKE()
c.theirKey = alicePrivateKey.PublicKey()
c.debug = true
var ret []ValidMessage
ss := captureStderr(func() {
ret, _ = c.Send(m)
})
assertNil(t, ret)
assertDeepEquals(t, ss, `Context:
Our instance: 00000101
Their instance: 00000101
Msgstate: 0 (PLAINTEXT)
Protocol version: 3
OTR offer: NOT
Auth info:
State: 0 (NONE)
Our keyid: 2
Their keyid: 1
Their fingerprint: 0BB01C360424522E94EE9C346CE877A1A4288B2F
Proto version = 3
SM state:
Next expected: 0 (EXPECT1)
Received_Q: 0
`)
}