-
Notifications
You must be signed in to change notification settings - Fork 2
/
ui_test.go
250 lines (211 loc) · 5.57 KB
/
ui_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
238
239
240
241
242
243
244
245
246
247
248
249
250
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
package sand
import (
"bytes"
"context"
"github.com/golang/mock/gomock"
"io"
"io/ioutil"
"os"
"reflect"
"syscall"
"testing"
"time"
)
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/Zaba505/sand (interfaces: Engine)
// MockEngine is a mock of Engine interface
type MockEngine struct {
ctrl *gomock.Controller
recorder *MockEngineMockRecorder
}
// MockEngineMockRecorder is the mock recorder for MockEngine
type MockEngineMockRecorder struct {
mock *MockEngine
}
// NewMockEngine creates a new mock instance
func NewMockEngine(ctrl *gomock.Controller) *MockEngine {
mock := &MockEngine{ctrl: ctrl}
mock.recorder = &MockEngineMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use
func (m *MockEngine) EXPECT() *MockEngineMockRecorder {
return m.recorder
}
// Exec mocks base method
func (m *MockEngine) Exec(arg0 context.Context, arg1 string, arg2 io.ReadWriter) int {
ret := m.ctrl.Call(m, "Exec", arg0, arg1, arg2)
ret0, _ := ret[0].(int)
return ret0
}
// Exec indicates an expected call of Exec
func (mr *MockEngineMockRecorder) Exec(arg0, arg1, arg2 interface{}) *gomock.Call {
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Exec", reflect.TypeOf((*MockEngine)(nil).Exec), arg0, arg1, arg2)
}
// This is the same as TestRun but just assures test coverage
func TestUI_Run(t *testing.T) {
// Set engine
ctrl := gomock.NewController(t)
defer ctrl.Finish()
eng := NewMockEngine(ctrl)
eng.EXPECT().Exec(gomock.Any(), gomock.Eq("hello, world!"), gomock.Any()).Return(0).MinTimes(1)
// Set IO
in := bytes.NewReader([]byte("hello, world!"))
var out bytes.Buffer
// Run UI
ui := new(UI)
ui.SetPrefix(">")
ui.SetIO(in, &out)
err := ui.Run(nil, eng)
var ok bool
if err, ok = IsRecoverable(err); !ok {
t.Error(err)
}
if err != nil && err != io.EOF {
t.Error(err)
}
// Verify the output length
// - First prefix write
// - Second prefix write
// - EndLine from defer.
if out.Len() != 3 {
t.Fail()
}
// Verify the output: ">>\n"
if out.String() != ">>\n" {
t.Fail()
}
}
func TestRun(t *testing.T) {
// Set engine
ctrl := gomock.NewController(t)
defer ctrl.Finish()
eng := NewMockEngine(ctrl)
eng.EXPECT().Exec(gomock.Any(), gomock.Eq("hello, world!"), gomock.Any()).Return(0).MinTimes(1)
// Set IO
in := bytes.NewReader([]byte("hello, world!"))
var out bytes.Buffer
// Run UI
err := Run(nil, eng, WithPrefix(">"), WithIO(in, &out))
var ok bool
if err, ok = IsRecoverable(err); !ok {
t.Error(err)
}
if err != nil && err != io.EOF {
t.Error(err)
}
// Verify the output length
// - First prefix write
// - Second prefix write
// - EndLine from defer.
if out.Len() != 3 {
t.Fail()
}
// Verify the output: ">>\n"
if out.String() != ">>\n" {
t.Fail()
}
}
func TestRunWithContext(t *testing.T) {
// Imagine using sand to create an SSH client like PuTTY and you allow
// for login sessions that expire after a certain amount of time.
sessionLife := 3 * time.Second
ctx, cancel := context.WithTimeout(context.Background(), sessionLife)
defer cancel()
pr, pw := io.Pipe() // This allows Read to be blocking
ctrl := gomock.NewController(t)
defer ctrl.Finish()
eng := NewMockEngine(ctrl)
err := Run(ctx, eng, WithIO(pr, ioutil.Discard))
var ok bool
if err, ok = IsRecoverable(err); !ok {
t.Error(err)
}
if err != context.DeadlineExceeded {
t.Errorf("expected context.DeadlineExceeded but instead received: %s", err)
}
pr.Close()
pw.Close()
}
// testLongEngine represents an Exec call that takes a long time.
type testLongEngine struct {
timeout time.Duration
}
func (eng testLongEngine) Exec(ctx context.Context, _ string, _ io.ReadWriter) int {
select {
case <-ctx.Done():
case <-time.After(eng.timeout):
}
return 0
}
func TestRunWithLongExec(t *testing.T) {
sessionLife := 3 * time.Second
ctx, cancel := context.WithTimeout(context.Background(), sessionLife)
defer cancel()
pr, pw := io.Pipe() // This allows Read to be blocking
// Set IO
in := bytes.NewReader([]byte("test line to start Engine.Exec call"))
eng := testLongEngine{timeout: 1 * time.Minute}
err := Run(ctx, eng, WithIO(in, ioutil.Discard))
var ok bool
if err, ok = IsRecoverable(err); !ok {
t.Error(err)
}
if err != context.DeadlineExceeded {
t.Error(err)
}
pr.Close()
pw.Close()
}
func TestRunWithNoEngine(t *testing.T) {
defer func() {
if r := recover(); r != nil {
err, ok := r.(error)
if !ok {
t.Errorf("expected erroNoEngine error from recover but instead received: %v", r)
}
if err != errNoEngine {
t.Fail()
}
}
}()
ui := new(UI)
ui.Run(nil, nil)
}
func TestRunWithSignalInterrupt(t *testing.T) {
go func() {
<-time.After(time.Second) // Give the UI a little time to start up
// Send this process a SIGHUP
syscall.Kill(syscall.Getpid(), syscall.SIGHUP)
}()
// Set up UI, IO and Engine
ui := new(UI)
pr, pw := io.Pipe()
eng := testLongEngine{timeout: 1 * time.Minute}
// Re-route SIGHUP to os.Interrupt so when sending a signal
// we don't mess with any other tests
opts := []Option{
WithIO(pr, pw),
WithSignalHandlers(map[os.Signal]SignalHandler{
syscall.SIGHUP: func(signal os.Signal) os.Signal {
return os.Interrupt
},
}),
}
// Run UI
ctx, cancel := context.WithCancel(context.Background())
err := ui.Run(ctx, eng, opts...)
cancel()
// Clean up
pr.Close()
pw.Close()
// Check error
var ok bool
if err, ok = IsRecoverable(err); !ok {
t.Error(err)
}
if err != context.Canceled {
t.Errorf("expected context.Canceled but instead received: %s", err)
}
}