mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
d9c451d547
* implement helper * use helper function everywhere * add unit tests * small cleanup of the helper * small fixes * gazellelelele * fix helper tests
23 lines
606 B
Go
23 lines
606 B
Go
package slashingprotection
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
|
"google.golang.org/grpc/metadata"
|
|
)
|
|
|
|
func TestGrpcHeaders(t *testing.T) {
|
|
s := &Service{
|
|
ctx: context.Background(),
|
|
grpcHeaders: []string{"first=value1", "second=value2"},
|
|
}
|
|
s.startSlasherClient()
|
|
md, _ := metadata.FromOutgoingContext(s.ctx)
|
|
require.Equal(t, 2, md.Len(), "Metadata contains wrong number of values")
|
|
assert.Equal(t, "value1", md.Get("first")[0])
|
|
assert.Equal(t, "value2", md.Get("second")[0])
|
|
}
|