mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 01:46:55 +00:00
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
|
/*
|
||
|
Copyright 2018 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 audit
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
|
||
|
auditinternal "k8s.io/apiserver/pkg/apis/audit"
|
||
|
)
|
||
|
|
||
|
func TestLogAnnotation(t *testing.T) {
|
||
|
ev := &auditinternal.Event{
|
||
|
Level: auditinternal.LevelMetadata,
|
||
|
AuditID: "fake id",
|
||
|
}
|
||
|
LogAnnotation(ev, "foo", "bar")
|
||
|
LogAnnotation(ev, "foo", "baz")
|
||
|
assert.Equal(t, "bar", ev.Annotations["foo"], "audit annotation should not be overwritten.")
|
||
|
|
||
|
LogAnnotation(ev, "qux", "")
|
||
|
LogAnnotation(ev, "qux", "baz")
|
||
|
assert.Equal(t, "", ev.Annotations["qux"], "audit annotation should not be overwritten.")
|
||
|
}
|
||
|
|
||
|
func TestMaybeTruncateUserAgent(t *testing.T) {
|
||
|
req := &http.Request{}
|
||
|
req.Header = http.Header{}
|
||
|
|
||
|
ua := "short-agent"
|
||
|
req.Header.Set("User-Agent", ua)
|
||
|
assert.Equal(t, ua, maybeTruncateUserAgent(req))
|
||
|
|
||
|
ua = ""
|
||
|
for i := 0; i < maxUserAgentLength*2; i++ {
|
||
|
ua = ua + "a"
|
||
|
}
|
||
|
req.Header.Set("User-Agent", ua)
|
||
|
assert.NotEqual(t, ua, maybeTruncateUserAgent(req))
|
||
|
}
|