mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-10 18:48:44 +00:00
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
package expression
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/google/cel-go/common/types"
|
|
)
|
|
|
|
func TestHTTPHeaders(t *testing.T) {
|
|
headers := HTTPHeaders{
|
|
Header: http.Header{
|
|
"Content-Type": {"application/json"},
|
|
"Cf-Worker": {"true"},
|
|
"User-Agent": {"Go-http-client/2"},
|
|
},
|
|
}
|
|
|
|
t.Run("contains-existing-header", func(t *testing.T) {
|
|
resp := headers.Contains(types.String("User-Agent"))
|
|
if !resp.(types.Bool) {
|
|
t.Fatal("headers does not contain User-Agent")
|
|
}
|
|
})
|
|
|
|
t.Run("not-contains-missing-header", func(t *testing.T) {
|
|
resp := headers.Contains(types.String("Xxx-Random-Header"))
|
|
if resp.(types.Bool) {
|
|
t.Fatal("headers does not contain User-Agent")
|
|
}
|
|
})
|
|
|
|
t.Run("get-existing-header", func(t *testing.T) {
|
|
val := headers.Get(types.String("User-Agent"))
|
|
switch val.(type) {
|
|
case types.String:
|
|
// ok
|
|
default:
|
|
t.Fatalf("result was wrong type %T", val)
|
|
}
|
|
})
|
|
|
|
t.Run("not-get-missing-header", func(t *testing.T) {
|
|
val := headers.Get(types.String("Xxx-Random-Header"))
|
|
switch val.(type) {
|
|
case *types.Err:
|
|
// ok
|
|
default:
|
|
t.Fatalf("result was wrong type %T", val)
|
|
}
|
|
})
|
|
}
|