60 lines
1.6 KiB
Go
60 lines
1.6 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/stretchr/testify/assert"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestLazyTruncatedUserAgent(t *testing.T) {
|
|
req := &http.Request{}
|
|
req.Header = http.Header{}
|
|
|
|
ua := "short-agent"
|
|
req.Header.Set("User-Agent", ua)
|
|
uaNotTruncated := &lazyTruncatedUserAgent{req}
|
|
assert.Equal(t, ua, fmt.Sprintf("%v", uaNotTruncated))
|
|
|
|
ua = ""
|
|
for i := 0; i < maxUserAgentLength*2; i++ {
|
|
ua = ua + "a"
|
|
}
|
|
req.Header.Set("User-Agent", ua)
|
|
uaTruncated := &lazyTruncatedUserAgent{req}
|
|
assert.NotEqual(t, ua, fmt.Sprintf("%v", uaTruncated))
|
|
|
|
usUnknown := &lazyTruncatedUserAgent{}
|
|
assert.Equal(t, "unknown", fmt.Sprintf("%v", usUnknown))
|
|
}
|
|
|
|
func TestLazyClientIP(t *testing.T) {
|
|
req := &http.Request{}
|
|
req.Header = http.Header{}
|
|
|
|
ip := "127.0.0.1"
|
|
req.Header.Set("X-Forwarded-For", ip)
|
|
|
|
clientIPWithReq := &lazyClientIP{req}
|
|
assert.Equal(t, ip, fmt.Sprintf("%v", clientIPWithReq))
|
|
|
|
clientIPWithoutReq := &lazyClientIP{}
|
|
assert.Equal(t, "unknown", fmt.Sprintf("%v", clientIPWithoutReq))
|
|
}
|