You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
559 B
Go
23 lines
559 B
Go
package internal
|
|
|
|
import (
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestBuildHeadersNoValue(t *testing.T) {
|
|
req := httptest.NewRequest("GET", "/", http.NoBody)
|
|
req.Header.Add("a", "b")
|
|
assert.Nil(t, ProcessHeaders(req.Header))
|
|
}
|
|
|
|
func TestBuildHeadersWithValues(t *testing.T) {
|
|
req := httptest.NewRequest("GET", "/", http.NoBody)
|
|
req.Header.Add("grpc-metadata-a", "b")
|
|
req.Header.Add("grpc-metadata-b", "b")
|
|
assert.ElementsMatch(t, []string{"gateway-A:b", "gateway-B:b"}, ProcessHeaders(req.Header))
|
|
}
|