forked from scionproto/scion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io_test.go
168 lines (152 loc) · 4.97 KB
/
io_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
// Copyright 2019 Anapaya Systems
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"errors"
"net"
"os"
"syscall"
"testing"
"github.com/golang/mock/gomock"
"github.com/stretchr/testify/require"
"github.com/scionproto/scion/go/border/rctx"
"github.com/scionproto/scion/go/border/rpkt"
"github.com/scionproto/scion/go/lib/addr"
"github.com/scionproto/scion/go/lib/log"
"github.com/scionproto/scion/go/lib/overlay"
"github.com/scionproto/scion/go/lib/overlay/conn"
"github.com/scionproto/scion/go/lib/overlay/conn/mock_conn"
"github.com/scionproto/scion/go/lib/ringbuf"
)
func TestPosixOutputNoLeakNoErrors(t *testing.T) {
mctrl := gomock.NewController(t)
defer mctrl.Finish()
r := initTestRouter(1)
pkts, checkAllReturned := newTestPktList(t, 2*outputBatchCnt)
defer checkAllReturned(len(pkts))
// Wait for both batches to be written.
done := make(chan struct{}, 1)
mconn := newTestConn(mctrl)
mconn.EXPECT().WriteBatch(gomock.Any()).Times(2).DoAndReturn(testSuccessfulWrite(done))
sock := newTestSock(r, len(pkts), mconn)
sock.Start()
sock.Ring.Write(pkts, true)
<-done
<-done
sock.Stop()
}
func TestPosixOutputNoLeakTemporaryErrors(t *testing.T) {
mctrl := gomock.NewController(t)
defer mctrl.Finish()
r := initTestRouter(1)
pkts, checkAllReturned := newTestPktList(t, 2*outputBatchCnt)
defer checkAllReturned(len(pkts))
// Wait for both batches to be written.
done := make(chan struct{}, 1)
mconn := newTestConn(mctrl)
mconn.EXPECT().WriteBatch(gomock.Any()).Return(0, tempTestErr{})
mconn.EXPECT().WriteBatch(gomock.Any()).Times(2).DoAndReturn(testSuccessfulWrite(done))
sock := newTestSock(r, len(pkts), mconn)
sock.Start()
sock.Ring.Write(pkts, true)
<-done
<-done
sock.Stop()
}
func TestPosixOutputNoLeakRecoverableErrors(t *testing.T) {
mctrl := gomock.NewController(t)
defer mctrl.Finish()
r := initTestRouter(1)
pkts, checkAllReturned := newTestPktList(t, 2*outputBatchCnt)
defer checkAllReturned(len(pkts))
// Wait for both batches to be written.
done := make(chan struct{}, 1)
mconn := newTestConn(mctrl)
err := &net.OpError{Err: &os.SyscallError{Err: syscall.ECONNREFUSED}}
mconn.EXPECT().WriteBatch(gomock.Any()).Return(0, err)
mconn.EXPECT().WriteBatch(gomock.Any()).DoAndReturn(testSuccessfulWrite(done))
sock := newTestSock(r, len(pkts), mconn)
sock.Start()
sock.Ring.Write(pkts, true)
<-done
sock.Stop()
}
func TestPosixOutputNoLeakUnrecoverableErrors(t *testing.T) {
mctrl := gomock.NewController(t)
defer mctrl.Finish()
r := initTestRouter(1)
pkts, checkAllReturned := newTestPktList(t, 2*outputBatchCnt)
defer checkAllReturned(len(pkts))
// Wait for both batches to be written.
done := make(chan struct{}, 1)
mconn := newTestConn(mctrl)
mconn.EXPECT().WriteBatch(gomock.Any()).DoAndReturn(
func(_ conn.Messages) (int, error) {
done <- struct{}{}
return 0, errors.New("unrecoverable")
},
)
sock := newTestSock(r, len(pkts), mconn)
sock.Start()
sock.Ring.Write(pkts, true)
<-done
sock.Stop()
}
func testSuccessfulWrite(done chan<- struct{}) func(conn.Messages) (int, error) {
return func(msgs conn.Messages) (int, error) {
for i, msg := range msgs {
msgs[i].N = len(msg.Buffers[0])
}
done <- struct{}{}
return outputBatchCnt, nil
}
}
func newTestConn(mctrl *gomock.Controller) *mock_conn.MockConn {
mconn := mock_conn.NewMockConn(mctrl)
mconn.EXPECT().LocalAddr().AnyTimes().Return(nil)
mconn.EXPECT().RemoteAddr().AnyTimes().Return(nil)
mconn.EXPECT().SetReadDeadline(gomock.Any())
mconn.EXPECT().Close()
return mconn
}
func newTestPktList(t *testing.T, length int) (ringbuf.EntryList, func(expected int)) {
var freeCtr int
entries := make(ringbuf.EntryList, length)
for i := range entries {
rp := rpkt.NewRtrPkt()
rp.Logger = log.Root()
rp.Free = func(rp *rpkt.RtrPkt) {
freeCtr++
}
entries[i] = &rpkt.EgressRtrPkt{Rp: rp, Dst: newTestDst(t)}
}
return entries, func(expected int) {
require.Equal(t, expected, freeCtr, "Invalid number of freed packets")
}
}
func newTestDst(t *testing.T) *overlay.OverlayAddr {
dst, err := overlay.NewOverlayAddr(
addr.HostFromIP(net.IP{127, 0, 0, 1}),
addr.NewL4UDPInfo(overlay.EndhostPort),
)
require.NoError(t, err)
return dst
}
func newTestSock(r *Router, ringSize int, mconn conn.Conn) *rctx.Sock {
return rctx.NewSock(ringbuf.New(ringSize, nil, "loc_out"), mconn, 0, 12, "neigh_ia",
nil, r.posixOutput, PosixSock)
}
type tempTestErr struct{}
func (tempTestErr) Error() string { return "temporary" }
func (tempTestErr) Temporary() bool { return true }