forked from hashicorp/go-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_test.go
208 lines (178 loc) · 4.59 KB
/
server_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
package plugin
import (
"bytes"
"context"
"io/ioutil"
"log"
"net"
"os"
"strings"
"testing"
"time"
hclog "github.com/hashicorp/go-hclog"
)
func TestServer_testMode(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
ch := make(chan *ReattachConfig, 1)
closeCh := make(chan struct{})
go Serve(&ServeConfig{
HandshakeConfig: testHandshake,
Plugins: testGRPCPluginMap,
GRPCServer: DefaultGRPCServer,
Test: &ServeTestConfig{
Context: ctx,
ReattachConfigCh: ch,
CloseCh: closeCh,
},
})
// We should get a config
var config *ReattachConfig
select {
case config = <-ch:
case <-time.After(2000 * time.Millisecond):
t.Fatal("should've received reattach")
}
if config == nil {
t.Fatal("config should not be nil")
}
// Check that the reattach config includes the negotiated protocol version
if config.ProtocolVersion != int(testHandshake.ProtocolVersion) {
t.Fatalf("wrong protocol version in reattach config. got %d, expected %d", config.ProtocolVersion, testHandshake.ProtocolVersion)
}
// Connect!
c := NewClient(&ClientConfig{
Cmd: nil,
HandshakeConfig: testHandshake,
Plugins: testGRPCPluginMap,
Reattach: config,
AllowedProtocols: []Protocol{ProtocolGRPC},
})
client, err := c.Client()
if err != nil {
t.Fatalf("err: %s", err)
}
// Pinging should work
if err := client.Ping(); err != nil {
t.Fatalf("should not err: %s", err)
}
// Kill which should do nothing
c.Kill()
if err := client.Ping(); err != nil {
t.Fatalf("should not err: %s", err)
}
// Canceling should cause an exit
cancel()
<-closeCh
if err := client.Ping(); err == nil {
t.Fatal("should error")
}
// Try logging, this should show out in tests. We have to manually verify.
t.Logf("HELLO")
}
func TestRmListener_impl(t *testing.T) {
var _ net.Listener = new(rmListener)
}
func TestRmListener(t *testing.T) {
l, err := net.Listen("tcp", "127.0.0.1:0")
if err != nil {
t.Fatalf("err: %s", err)
}
tf, err := ioutil.TempFile("", "plugin")
if err != nil {
t.Fatalf("err: %s", err)
}
path := tf.Name()
// Close the file
if err := tf.Close(); err != nil {
t.Fatalf("err: %s", err)
}
// Create the listener and test close
rmL := &rmListener{
Listener: l,
Path: path,
}
if err := rmL.Close(); err != nil {
t.Fatalf("err: %s", err)
}
// File should be goe
if _, err := os.Stat(path); err == nil || !os.IsNotExist(err) {
t.Fatalf("err: %s", err)
}
}
func TestProtocolSelection_no_server(t *testing.T) {
conf := &ServeConfig{
HandshakeConfig: testVersionedHandshake,
VersionedPlugins: map[int]PluginSet{
2: testGRPCPluginMap,
},
GRPCServer: DefaultGRPCServer,
TLSProvider: helperTLSProvider,
}
_, protocol, _ := protocolVersion(conf)
if protocol != ProtocolGRPC {
t.Fatalf("bad protocol %s", protocol)
}
conf = &ServeConfig{
HandshakeConfig: testVersionedHandshake,
VersionedPlugins: map[int]PluginSet{
2: testGRPCPluginMap,
},
TLSProvider: helperTLSProvider,
}
_, protocol, _ = protocolVersion(conf)
if protocol != ProtocolNetRPC {
t.Fatalf("bad protocol %s", protocol)
}
}
func TestServer_testStdLogger(t *testing.T) {
closeCh := make(chan struct{})
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
var logOut bytes.Buffer
hclogger := hclog.New(&hclog.LoggerOptions{
Name: "test",
Level: hclog.Trace,
Output: &logOut,
JSONFormat: true,
})
// Wrap the hclog.Logger to use it from the default std library logger
// (and restore the original logger)
defer func() {
log.SetOutput(os.Stderr)
log.SetFlags(log.LstdFlags)
log.SetPrefix(log.Prefix())
}()
log.SetOutput(hclogger.StandardWriter(&hclog.StandardLoggerOptions{InferLevels: true}))
log.SetFlags(0)
log.SetPrefix("")
// make a server, but we don't need to attach to it
ch := make(chan *ReattachConfig, 1)
go Serve(&ServeConfig{
HandshakeConfig: testHandshake,
Plugins: testGRPCPluginMap,
GRPCServer: DefaultGRPCServer,
Logger: hclog.NewNullLogger(),
Test: &ServeTestConfig{
Context: ctx,
CloseCh: closeCh,
ReattachConfigCh: ch,
},
})
// Wait for the server
select {
case cfg := <-ch:
if cfg == nil {
t.Fatal("attach config should not be nil")
}
case <-time.After(2000 * time.Millisecond):
t.Fatal("should've received reattach")
}
log.Println("[DEBUG] test log")
// shut down the server so there's no race on the buffer
cancel()
<-closeCh
if !strings.Contains(logOut.String(), "test log") {
t.Fatalf("expected: %q\ngot: %q", "test log", logOut.String())
}
}