mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
24 lines
618 B
Go
24 lines
618 B
Go
package slashingprotection
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/testing/require"
|
|
"google.golang.org/grpc/metadata"
|
|
)
|
|
|
|
func TestGrpcHeaders(t *testing.T) {
|
|
s := &Service{
|
|
cfg: &Config{},
|
|
ctx: context.Background(),
|
|
grpcHeaders: []string{"first=value1", "second=value2"},
|
|
}
|
|
s.startSlasherClient()
|
|
md, _ := metadata.FromOutgoingContext(s.ctx)
|
|
require.Equal(t, 2, md.Len(), "MetadataV0 contains wrong number of values")
|
|
assert.Equal(t, "value1", md.Get("first")[0])
|
|
assert.Equal(t, "value2", md.Get("second")[0])
|
|
}
|