mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
22 lines
588 B
Go
22 lines
588 B
Go
package server
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func TestNormalizeQueryValues(t *testing.T) {
|
|
input := make(map[string][]string)
|
|
input["key"] = []string{"value1", "value2,value3,value4", "value5"}
|
|
|
|
NormalizeQueryValues(input)
|
|
require.Equal(t, 5, len(input["key"]))
|
|
assert.Equal(t, "value1", input["key"][0])
|
|
assert.Equal(t, "value2", input["key"][1])
|
|
assert.Equal(t, "value3", input["key"][2])
|
|
assert.Equal(t, "value4", input["key"][3])
|
|
assert.Equal(t, "value5", input["key"][4])
|
|
}
|