mirror of
				https://github.com/edgelesssys/constellation.git
				synced 2025-11-03 20:24:16 -05:00 
			
		
		
		
	* Run goleak as part of all tests We are already using goleak in various tests. This commit adds a TestMain to all remaining tests and calls goleak.VerifyTestMain in them. * Add goleak to debugd/deploy package and fix bug. * Run go mod tidy * Fix integration tests * Move goleak invocation for mount integration test * Ignore leak in state integration tests Co-authored-by: Fabian Kammel <fk@edgelss.systems>
		
			
				
	
	
		
			66 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package kms
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"errors"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/edgelesssys/constellation/internal/logger"
 | 
						|
	"github.com/edgelesssys/constellation/kms/kmsproto"
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
	"go.uber.org/goleak"
 | 
						|
	"google.golang.org/grpc"
 | 
						|
	"google.golang.org/grpc/test/bufconn"
 | 
						|
)
 | 
						|
 | 
						|
type stubClient struct {
 | 
						|
	getDataKeyErr error
 | 
						|
	dataKey       []byte
 | 
						|
}
 | 
						|
 | 
						|
func (c *stubClient) GetDataKey(context.Context, *kmsproto.GetDataKeyRequest, *grpc.ClientConn) (*kmsproto.GetDataKeyResponse, error) {
 | 
						|
	return &kmsproto.GetDataKeyResponse{DataKey: c.dataKey}, c.getDataKeyErr
 | 
						|
}
 | 
						|
 | 
						|
func TestMain(m *testing.M) {
 | 
						|
	goleak.VerifyTestMain(m)
 | 
						|
}
 | 
						|
 | 
						|
func TestGetDataKey(t *testing.T) {
 | 
						|
	testCases := map[string]struct {
 | 
						|
		client  *stubClient
 | 
						|
		wantErr bool
 | 
						|
	}{
 | 
						|
		"GetDataKey success": {
 | 
						|
			client: &stubClient{dataKey: []byte{0x1, 0x2, 0x3}},
 | 
						|
		},
 | 
						|
		"GetDataKey error": {
 | 
						|
			client:  &stubClient{getDataKeyErr: errors.New("error")},
 | 
						|
			wantErr: true,
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	for name, tc := range testCases {
 | 
						|
		t.Run(name, func(t *testing.T) {
 | 
						|
			assert := assert.New(t)
 | 
						|
 | 
						|
			listener := bufconn.Listen(1)
 | 
						|
			defer listener.Close()
 | 
						|
 | 
						|
			client := New(
 | 
						|
				logger.NewTest(t),
 | 
						|
				listener.Addr().String(),
 | 
						|
			)
 | 
						|
 | 
						|
			client.grpc = tc.client
 | 
						|
 | 
						|
			res, err := client.GetDataKey(context.Background(), "disk-uuid", 32)
 | 
						|
			if tc.wantErr {
 | 
						|
				assert.Error(err)
 | 
						|
			} else {
 | 
						|
				assert.NoError(err)
 | 
						|
				assert.Equal(tc.client.dataKey, res)
 | 
						|
			}
 | 
						|
		})
 | 
						|
	}
 | 
						|
}
 |