Skip to content

Commit

Permalink
plugins: don't panic on Close if PluginServer nil
Browse files Browse the repository at this point in the history
Signed-off-by: Laura Brehm <[email protected]>
(cherry picked from commit 9c44806)
Signed-off-by: Paweł Gronowski <[email protected]>
  • Loading branch information
laurazard authored and vvoland committed Aug 9, 2024
1 parent 30c7951 commit 984ef90
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cli-plugins/socket/socket.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ func (pl *PluginServer) Addr() net.Addr {
//
// The error value is that of the underlying [net.Listner.Close] call.
func (pl *PluginServer) Close() error {
if pl == nil {
return nil
}
logrus.Trace("Closing plugin server")
// Close connections first to ensure the connections get io.EOF instead
// of a connection reset.
Expand Down
12 changes: 12 additions & 0 deletions cli-plugins/socket/socket_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,18 @@ func TestPluginServer(t *testing.T) {
assert.NilError(t, err, "failed to dial returned server")
checkDirNoNewPluginServer(t)
})

t.Run("does not panic on Close if server is nil", func(t *testing.T) {
var srv *PluginServer
defer func() {
if r := recover(); r != nil {
t.Errorf("panicked on Close")
}
}()

err := srv.Close()
assert.NilError(t, err)
})
}

func checkDirNoNewPluginServer(t *testing.T) {
Expand Down

0 comments on commit 984ef90

Please sign in to comment.