forked from hashicorp/go-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_test.go
139 lines (119 loc) · 2.79 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
package plugin
import (
"context"
"io/ioutil"
"net"
"os"
"testing"
"time"
)
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")
}
// 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)
}
}