mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
e738f15f0f
* add retry + timeout + intercept grpc logs * LogStateChanges inside grplog pkg * remove retry and tj/assert * rename nit * Update debugd/internal/cdbg/cmd/deploy.go Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> * Update debugd/internal/cdbg/cmd/deploy.go Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> * paul feedback * return waitFn instead of WaitGroup * Revert "return waitFn instead of WaitGroup" This reverts commit 45700f30e341ce3af509b687febbc0125f7ddb38. * log routine inside debugd constructor * test doubles names * Update debugd/internal/cdbg/cmd/deploy.go Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com> * fix newDebugClient closeFn --------- Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
116 lines
2.9 KiB
Go
116 lines
2.9 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
// grpclog provides a logging utilities for gRPC.
|
|
package grpclog
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"google.golang.org/grpc/connectivity"
|
|
)
|
|
|
|
func TestLogStateChanges(t *testing.T) {
|
|
testCases := map[string]struct {
|
|
name string
|
|
conn getStater
|
|
assert func(t *testing.T, lg *spyLog, isReadyCallbackCalled bool)
|
|
}{
|
|
"state: connecting, ready": {
|
|
conn: &stubConn{
|
|
states: []connectivity.State{
|
|
connectivity.Connecting,
|
|
connectivity.Ready,
|
|
connectivity.Ready,
|
|
},
|
|
},
|
|
assert: func(t *testing.T, lg *spyLog, isReadyCallbackCalled bool) {
|
|
require.Len(t, lg.msgs, 3)
|
|
assert.Equal(t, "Connection state started as CONNECTING", lg.msgs[0])
|
|
assert.Equal(t, "Connection state changed to CONNECTING", lg.msgs[1])
|
|
assert.Equal(t, "Connection ready", lg.msgs[2])
|
|
assert.True(t, isReadyCallbackCalled)
|
|
},
|
|
},
|
|
"state: ready": {
|
|
conn: &stubConn{
|
|
states: []connectivity.State{
|
|
connectivity.Ready,
|
|
connectivity.Idle,
|
|
},
|
|
stopWaitForChange: false,
|
|
},
|
|
assert: func(t *testing.T, lg *spyLog, isReadyCallbackCalled bool) {
|
|
require.Len(t, lg.msgs, 2)
|
|
assert.Equal(t, "Connection state started as READY", lg.msgs[0])
|
|
assert.Equal(t, "Connection ready", lg.msgs[1])
|
|
assert.True(t, isReadyCallbackCalled)
|
|
},
|
|
},
|
|
"no WaitForStateChange (e.g. when context is canceled)": {
|
|
conn: &stubConn{
|
|
states: []connectivity.State{
|
|
connectivity.Connecting,
|
|
connectivity.Idle,
|
|
},
|
|
stopWaitForChange: true,
|
|
},
|
|
assert: func(t *testing.T, lg *spyLog, isReadyCallbackCalled bool) {
|
|
require.Len(t, lg.msgs, 2)
|
|
assert.Equal(t, "Connection state started as CONNECTING", lg.msgs[0])
|
|
assert.Equal(t, "Connection state ended with CONNECTING", lg.msgs[1])
|
|
assert.False(t, isReadyCallbackCalled)
|
|
},
|
|
},
|
|
}
|
|
for name, tc := range testCases {
|
|
t.Run(name, func(t *testing.T) {
|
|
logger := &spyLog{}
|
|
|
|
var wg sync.WaitGroup
|
|
isReadyCallbackCalled := false
|
|
LogStateChangesUntilReady(context.Background(), tc.conn, logger, &wg, func() { isReadyCallbackCalled = true })
|
|
wg.Wait()
|
|
tc.assert(t, logger, isReadyCallbackCalled)
|
|
})
|
|
}
|
|
}
|
|
|
|
type spyLog struct {
|
|
msgs []string
|
|
}
|
|
|
|
func (f *spyLog) Debugf(format string, args ...any) {
|
|
f.msgs = append(f.msgs, fmt.Sprintf(format, args...))
|
|
}
|
|
|
|
type stubConn struct {
|
|
states []connectivity.State
|
|
idx int
|
|
stopWaitForChange bool
|
|
}
|
|
|
|
func (f *stubConn) GetState() connectivity.State {
|
|
if f.idx > len(f.states)-1 {
|
|
return f.states[len(f.states)-1]
|
|
}
|
|
res := f.states[f.idx]
|
|
f.idx++
|
|
return res
|
|
}
|
|
|
|
func (f *stubConn) WaitForStateChange(context.Context, connectivity.State) bool {
|
|
if f.stopWaitForChange {
|
|
return false
|
|
}
|
|
return f.idx < len(f.states)
|
|
}
|