mirror of
https://github.com/kubernetes/client-go.git
synced 2026-02-21 23:53:16 +00:00
The revised logging emits one log entry at the start of
round-tripping ("Request") and another at the end ("Response"). This avoids the
risk that related output gets interleaved by other output.
No API changes are necessary. A contextual logger is picked up from the context
of the request that is being handled. The verbosity level of that logger is
checked to determine what is supposed to be logged. This enables reducing log
details on a by-request basis by storing a `logger.V(1)` in the context of the
request.
As before, logging only gets injected into request processing at -v6 or higher,
so normally there is no additional overhead.
Kubernetes-commit: a85f489b28d3b0ef82dffb267b6145c73c2d0e33
689 lines
19 KiB
Go
689 lines
19 KiB
Go
/*
|
|
Copyright 2014 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 transport
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"reflect"
|
|
"regexp"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/go-logr/logr/funcr"
|
|
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
type testRoundTripper struct {
|
|
Request *http.Request
|
|
Response *http.Response
|
|
Err error
|
|
}
|
|
|
|
func (rt *testRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
rt.Request = req
|
|
return rt.Response, rt.Err
|
|
}
|
|
|
|
func TestMaskValue(t *testing.T) {
|
|
tcs := []struct {
|
|
key string
|
|
value string
|
|
expected string
|
|
}{
|
|
{
|
|
key: "Authorization",
|
|
value: "Basic YWxhZGRpbjpvcGVuc2VzYW1l",
|
|
expected: "Basic <masked>",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "basic",
|
|
expected: "basic",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "Basic",
|
|
expected: "Basic",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "Bearer cn389ncoiwuencr",
|
|
expected: "Bearer <masked>",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "Bearer",
|
|
expected: "Bearer",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "bearer",
|
|
expected: "bearer",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "bearer ",
|
|
expected: "bearer",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "Negotiate cn389ncoiwuencr",
|
|
expected: "Negotiate <masked>",
|
|
},
|
|
{
|
|
key: "ABC",
|
|
value: "Negotiate cn389ncoiwuencr",
|
|
expected: "Negotiate cn389ncoiwuencr",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "Negotiate",
|
|
expected: "Negotiate",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "Negotiate ",
|
|
expected: "Negotiate",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "negotiate",
|
|
expected: "negotiate",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "abc cn389ncoiwuencr",
|
|
expected: "<masked>",
|
|
},
|
|
{
|
|
key: "Authorization",
|
|
value: "",
|
|
expected: "",
|
|
},
|
|
}
|
|
for _, tc := range tcs {
|
|
maskedValue := maskValue(tc.key, tc.value)
|
|
if tc.expected != maskedValue {
|
|
t.Errorf("unexpected value %s, given %s.", maskedValue, tc.value)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestBearerAuthRoundTripper(t *testing.T) {
|
|
rt := &testRoundTripper{}
|
|
req := &http.Request{}
|
|
NewBearerAuthRoundTripper("test", rt).RoundTrip(req)
|
|
if rt.Request == nil {
|
|
t.Fatalf("unexpected nil request: %v", rt)
|
|
}
|
|
if rt.Request == req {
|
|
t.Fatalf("round tripper should have copied request object: %#v", rt.Request)
|
|
}
|
|
if rt.Request.Header.Get("Authorization") != "Bearer test" {
|
|
t.Errorf("unexpected authorization header: %#v", rt.Request)
|
|
}
|
|
}
|
|
|
|
func TestBasicAuthRoundTripper(t *testing.T) {
|
|
for n, tc := range map[string]struct {
|
|
user string
|
|
pass string
|
|
}{
|
|
"basic": {user: "user", pass: "pass"},
|
|
"no pass": {user: "user"},
|
|
} {
|
|
rt := &testRoundTripper{}
|
|
req := &http.Request{}
|
|
NewBasicAuthRoundTripper(tc.user, tc.pass, rt).RoundTrip(req)
|
|
if rt.Request == nil {
|
|
t.Fatalf("%s: unexpected nil request: %v", n, rt)
|
|
}
|
|
if rt.Request == req {
|
|
t.Fatalf("%s: round tripper should have copied request object: %#v", n, rt.Request)
|
|
}
|
|
if user, pass, found := rt.Request.BasicAuth(); !found || user != tc.user || pass != tc.pass {
|
|
t.Errorf("%s: unexpected authorization header: %#v", n, rt.Request)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestUserAgentRoundTripper(t *testing.T) {
|
|
rt := &testRoundTripper{}
|
|
req := &http.Request{
|
|
Header: make(http.Header),
|
|
}
|
|
req.Header.Set("User-Agent", "other")
|
|
NewUserAgentRoundTripper("test", rt).RoundTrip(req)
|
|
if rt.Request == nil {
|
|
t.Fatalf("unexpected nil request: %v", rt)
|
|
}
|
|
if rt.Request != req {
|
|
t.Fatalf("round tripper should not have copied request object: %#v", rt.Request)
|
|
}
|
|
if rt.Request.Header.Get("User-Agent") != "other" {
|
|
t.Errorf("unexpected user agent header: %#v", rt.Request)
|
|
}
|
|
|
|
req = &http.Request{}
|
|
NewUserAgentRoundTripper("test", rt).RoundTrip(req)
|
|
if rt.Request == nil {
|
|
t.Fatalf("unexpected nil request: %v", rt)
|
|
}
|
|
if rt.Request == req {
|
|
t.Fatalf("round tripper should have copied request object: %#v", rt.Request)
|
|
}
|
|
if rt.Request.Header.Get("User-Agent") != "test" {
|
|
t.Errorf("unexpected user agent header: %#v", rt.Request)
|
|
}
|
|
}
|
|
|
|
func TestImpersonationRoundTripper(t *testing.T) {
|
|
tcs := []struct {
|
|
name string
|
|
impersonationConfig ImpersonationConfig
|
|
expected map[string][]string
|
|
}{
|
|
{
|
|
name: "all",
|
|
impersonationConfig: ImpersonationConfig{
|
|
UserName: "user",
|
|
UID: "uid-a",
|
|
Groups: []string{"one", "two"},
|
|
Extra: map[string][]string{
|
|
"first": {"A", "a"},
|
|
"second": {"B", "b"},
|
|
},
|
|
},
|
|
expected: map[string][]string{
|
|
ImpersonateUserHeader: {"user"},
|
|
ImpersonateUIDHeader: {"uid-a"},
|
|
ImpersonateGroupHeader: {"one", "two"},
|
|
ImpersonateUserExtraHeaderPrefix + "First": {"A", "a"},
|
|
ImpersonateUserExtraHeaderPrefix + "Second": {"B", "b"},
|
|
},
|
|
},
|
|
{
|
|
name: "username, groups and extra",
|
|
impersonationConfig: ImpersonationConfig{
|
|
UserName: "user",
|
|
Groups: []string{"one", "two"},
|
|
Extra: map[string][]string{
|
|
"first": {"A", "a"},
|
|
"second": {"B", "b"},
|
|
},
|
|
},
|
|
expected: map[string][]string{
|
|
ImpersonateUserHeader: {"user"},
|
|
ImpersonateGroupHeader: {"one", "two"},
|
|
ImpersonateUserExtraHeaderPrefix + "First": {"A", "a"},
|
|
ImpersonateUserExtraHeaderPrefix + "Second": {"B", "b"},
|
|
},
|
|
},
|
|
{
|
|
name: "username and uid",
|
|
impersonationConfig: ImpersonationConfig{
|
|
UserName: "user",
|
|
UID: "uid-a",
|
|
},
|
|
expected: map[string][]string{
|
|
ImpersonateUserHeader: {"user"},
|
|
ImpersonateUIDHeader: {"uid-a"},
|
|
},
|
|
},
|
|
{
|
|
name: "escape handling",
|
|
impersonationConfig: ImpersonationConfig{
|
|
UserName: "user",
|
|
Extra: map[string][]string{
|
|
"test.example.com/thing.thing": {"A", "a"},
|
|
},
|
|
},
|
|
expected: map[string][]string{
|
|
ImpersonateUserHeader: {"user"},
|
|
ImpersonateUserExtraHeaderPrefix + `Test.example.com%2fthing.thing`: {"A", "a"},
|
|
},
|
|
},
|
|
{
|
|
name: "double escape handling",
|
|
impersonationConfig: ImpersonationConfig{
|
|
UserName: "user",
|
|
Extra: map[string][]string{
|
|
"test.example.com/thing.thing%20another.thing": {"A", "a"},
|
|
},
|
|
},
|
|
expected: map[string][]string{
|
|
ImpersonateUserHeader: {"user"},
|
|
ImpersonateUserExtraHeaderPrefix + `Test.example.com%2fthing.thing%2520another.thing`: {"A", "a"},
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, tc := range tcs {
|
|
rt := &testRoundTripper{}
|
|
req := &http.Request{
|
|
Header: make(http.Header),
|
|
}
|
|
NewImpersonatingRoundTripper(tc.impersonationConfig, rt).RoundTrip(req)
|
|
|
|
for k, v := range rt.Request.Header {
|
|
expected, ok := tc.expected[k]
|
|
if !ok {
|
|
t.Errorf("%v missing %v=%v", tc.name, k, v)
|
|
continue
|
|
}
|
|
if !reflect.DeepEqual(expected, v) {
|
|
t.Errorf("%v expected %v: %v, got %v", tc.name, k, expected, v)
|
|
}
|
|
}
|
|
for k, v := range tc.expected {
|
|
expected, ok := rt.Request.Header[k]
|
|
if !ok {
|
|
t.Errorf("%v missing %v=%v", tc.name, k, v)
|
|
continue
|
|
}
|
|
if !reflect.DeepEqual(expected, v) {
|
|
t.Errorf("%v expected %v: %v, got %v", tc.name, k, expected, v)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestAuthProxyRoundTripper(t *testing.T) {
|
|
for n, tc := range map[string]struct {
|
|
username string
|
|
uid string
|
|
groups []string
|
|
extra map[string][]string
|
|
expectedExtra map[string][]string
|
|
}{
|
|
"allfields": {
|
|
username: "user",
|
|
uid: "7db46926-e803-4337-9a29-f9c1fab7d34a",
|
|
groups: []string{"groupA", "groupB"},
|
|
extra: map[string][]string{
|
|
"one": {"alpha", "bravo"},
|
|
"two": {"charlie", "delta"},
|
|
},
|
|
expectedExtra: map[string][]string{
|
|
"one": {"alpha", "bravo"},
|
|
"two": {"charlie", "delta"},
|
|
},
|
|
},
|
|
"escaped extra": {
|
|
username: "user",
|
|
uid: "7db46926-e803-4337-9a29-f9c1fab7d34a",
|
|
groups: []string{"groupA", "groupB"},
|
|
extra: map[string][]string{
|
|
"one": {"alpha", "bravo"},
|
|
"example.com/two": {"charlie", "delta"},
|
|
},
|
|
expectedExtra: map[string][]string{
|
|
"one": {"alpha", "bravo"},
|
|
"example.com%2ftwo": {"charlie", "delta"},
|
|
},
|
|
},
|
|
"double escaped extra": {
|
|
username: "user",
|
|
uid: "7db46926-e803-4337-9a29-f9c1fab7d34a",
|
|
groups: []string{"groupA", "groupB"},
|
|
extra: map[string][]string{
|
|
"one": {"alpha", "bravo"},
|
|
"example.com/two%20three": {"charlie", "delta"},
|
|
},
|
|
expectedExtra: map[string][]string{
|
|
"one": {"alpha", "bravo"},
|
|
"example.com%2ftwo%2520three": {"charlie", "delta"},
|
|
},
|
|
},
|
|
} {
|
|
rt := &testRoundTripper{}
|
|
req := &http.Request{}
|
|
_, _ = NewAuthProxyRoundTripper(tc.username, tc.uid, tc.groups, tc.extra, rt).RoundTrip(req)
|
|
if rt.Request == nil {
|
|
t.Errorf("%s: unexpected nil request: %v", n, rt)
|
|
continue
|
|
}
|
|
if rt.Request == req {
|
|
t.Errorf("%s: round tripper should have copied request object: %#v", n, rt.Request)
|
|
continue
|
|
}
|
|
|
|
actualUsernames, ok := rt.Request.Header["X-Remote-User"]
|
|
if !ok {
|
|
t.Errorf("%s missing value", n)
|
|
continue
|
|
}
|
|
if e, a := []string{tc.username}, actualUsernames; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("%s expected %v, got %v", n, e, a)
|
|
continue
|
|
}
|
|
actualUID, ok := rt.Request.Header["X-Remote-Uid"]
|
|
if !ok {
|
|
t.Errorf("%s missing value", n)
|
|
continue
|
|
}
|
|
if e, a := []string{tc.uid}, actualUID; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("%s expected %v, got %v", n, e, a)
|
|
continue
|
|
}
|
|
actualGroups, ok := rt.Request.Header["X-Remote-Group"]
|
|
if !ok {
|
|
t.Errorf("%s missing value", n)
|
|
continue
|
|
}
|
|
if e, a := tc.groups, actualGroups; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("%s expected %v, got %v", n, e, a)
|
|
continue
|
|
}
|
|
|
|
actualExtra := map[string][]string{}
|
|
for key, values := range rt.Request.Header {
|
|
if strings.HasPrefix(strings.ToLower(key), strings.ToLower("X-Remote-Extra-")) {
|
|
extraKey := strings.ToLower(key[len("X-Remote-Extra-"):])
|
|
actualExtra[extraKey] = append(actualExtra[key], values...)
|
|
}
|
|
}
|
|
if e, a := tc.expectedExtra, actualExtra; !reflect.DeepEqual(e, a) {
|
|
t.Errorf("%s expected %v, got %v", n, e, a)
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// TestHeaderEscapeRoundTrip tests to see if foo == url.PathUnescape(headerEscape(foo))
|
|
// This behavior is important for client -> API server transmission of extra values.
|
|
func TestHeaderEscapeRoundTrip(t *testing.T) {
|
|
t.Parallel()
|
|
testCases := []struct {
|
|
name string
|
|
key string
|
|
}{
|
|
{
|
|
name: "alpha",
|
|
key: "alphabetical",
|
|
},
|
|
{
|
|
name: "alphanumeric",
|
|
key: "alph4num3r1c",
|
|
},
|
|
{
|
|
name: "percent encoded",
|
|
key: "percent%20encoded",
|
|
},
|
|
{
|
|
name: "almost percent encoded",
|
|
key: "almost%zzpercent%xxencoded",
|
|
},
|
|
{
|
|
name: "illegal char & percent encoding",
|
|
key: "example.com/percent%20encoded",
|
|
},
|
|
{
|
|
name: "weird unicode stuff",
|
|
key: "example.com/ᛒᚥᛏᛖᚥᚢとロビン",
|
|
},
|
|
{
|
|
name: "header legal chars",
|
|
key: "abc123!#$+.-_*\\^`~|'",
|
|
},
|
|
{
|
|
name: "legal path, illegal header",
|
|
key: "@=:",
|
|
},
|
|
}
|
|
for _, tc := range testCases {
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
escaped := headerKeyEscape(tc.key)
|
|
unescaped, err := url.PathUnescape(escaped)
|
|
if err != nil {
|
|
t.Fatalf("url.PathUnescape(%q) returned error: %v", escaped, err)
|
|
}
|
|
if tc.key != unescaped {
|
|
t.Errorf("url.PathUnescape(headerKeyEscape(%q)) returned %q, wanted %q", tc.key, unescaped, tc.key)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
//nolint:logcheck // Intentionally tests with global logging.
|
|
func TestDebuggingRoundTripper(t *testing.T) {
|
|
rawURL := "https://127.0.0.1:12345/api/v1/pods?limit=500"
|
|
parsedURL, err := url.Parse(rawURL)
|
|
if err != nil {
|
|
t.Fatalf("url.Parse(%q) returned error: %v", rawURL, err)
|
|
}
|
|
method := http.MethodGet
|
|
header := map[string][]string{
|
|
"Authorization": {"bearer secretauthtoken"},
|
|
"X-Test-Request": {"test"},
|
|
}
|
|
reqHeaderText := `headers=<
|
|
Authorization: bearer <masked>
|
|
X-Test-Request: test
|
|
>`
|
|
// Both can be written by funcr.
|
|
reqHeaderJSON := `"headers":{"Authorization":["bearer <masked>"],"X-Test-Request":["test"]}`
|
|
reqHeaderJSONReversed := `"headers":{"X-Test-Request":["test"],"Authorization":["bearer <masked>"]}`
|
|
|
|
res := &http.Response{
|
|
Status: "OK",
|
|
StatusCode: http.StatusOK,
|
|
Header: map[string][]string{
|
|
"X-Test-Response": {"a", "b"},
|
|
},
|
|
}
|
|
|
|
resHeaderText := `headers=<
|
|
X-Test-Response: a
|
|
X-Test-Response: b
|
|
>`
|
|
resHeaderJSON := `"headers":{"X-Test-Response":["a","b"]}`
|
|
|
|
tcs := []struct {
|
|
levels []DebugLevel
|
|
v int
|
|
expectedTextLines []string
|
|
expectedJSONLines []string
|
|
}{
|
|
{
|
|
levels: []DebugLevel{DebugJustURL},
|
|
expectedTextLines: []string{fmt.Sprintf(`"Request" verb=%q url=%q`, method, rawURL)},
|
|
expectedJSONLines: []string{fmt.Sprintf(`"msg":"Request","verb":%q,"url":%q`, method, rawURL)},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugRequestHeaders},
|
|
expectedTextLines: []string{`"Request" ` + reqHeaderText},
|
|
expectedJSONLines: []string{`"msg":"Request",` + reqHeaderJSON},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugResponseHeaders},
|
|
expectedTextLines: []string{`"Response" ` + resHeaderText},
|
|
expectedJSONLines: []string{`"msg":"Response",` + resHeaderJSON},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugURLTiming},
|
|
expectedTextLines: []string{fmt.Sprintf(`"Response" verb=%q url=%q status=%q`, method, rawURL, res.Status)},
|
|
expectedJSONLines: []string{fmt.Sprintf(`"msg":"Response","verb":%q,"url":%q,"status":%q`, method, rawURL, res.Status)},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugResponseStatus},
|
|
expectedTextLines: []string{fmt.Sprintf(`"Response" status=%q`, res.Status)},
|
|
expectedJSONLines: []string{fmt.Sprintf(`"msg":"Response","status":%q`, res.Status)},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugCurlCommand},
|
|
expectedTextLines: []string{`curlCommand=<
|
|
curl -v -X`},
|
|
expectedJSONLines: []string{`"curlCommand":"curl -v -X`},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugURLTiming, DebugResponseStatus},
|
|
expectedTextLines: []string{fmt.Sprintf(`"Response" verb=%q url=%q status=%q milliseconds=`, method, rawURL, res.Status)},
|
|
expectedJSONLines: []string{fmt.Sprintf(`"msg":"Response","verb":%q,"url":%q,"status":%q,"milliseconds":`, method, rawURL, res.Status)},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugByContext},
|
|
v: 5,
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugByContext, DebugURLTiming},
|
|
v: 5,
|
|
expectedTextLines: []string{
|
|
fmt.Sprintf(`"Response" verb=%q url=%q status=%q milliseconds=`, method, rawURL, res.Status),
|
|
},
|
|
expectedJSONLines: []string{
|
|
fmt.Sprintf(`"msg":"Response","verb":%q,"url":%q,"status":%q,"milliseconds":`, method, rawURL, res.Status),
|
|
},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugByContext},
|
|
v: 6,
|
|
expectedTextLines: []string{
|
|
fmt.Sprintf(`"Response" verb=%q url=%q status=%q milliseconds=`, method, rawURL, res.Status),
|
|
},
|
|
expectedJSONLines: []string{
|
|
fmt.Sprintf(`"msg":"Response","verb":%q,"url":%q,"status":%q,"milliseconds":`, method, rawURL, res.Status),
|
|
},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugByContext},
|
|
v: 7,
|
|
expectedTextLines: []string{
|
|
fmt.Sprintf(`"Request" verb=%q url=%q %s
|
|
`, method, rawURL, reqHeaderText),
|
|
fmt.Sprintf(`"Response" status=%q milliseconds=`, res.Status),
|
|
},
|
|
expectedJSONLines: []string{
|
|
fmt.Sprintf(`"msg":"Request","verb":%q,"url":%q,%s`, method, rawURL, reqHeaderJSON),
|
|
fmt.Sprintf(`"msg":"Response","status":%q,"milliseconds":`, res.Status),
|
|
},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugByContext},
|
|
v: 8,
|
|
expectedTextLines: []string{
|
|
fmt.Sprintf(`"Request" verb=%q url=%q %s
|
|
`, method, rawURL, reqHeaderText),
|
|
fmt.Sprintf(`"Response" status=%q %s milliseconds=`, res.Status, resHeaderText),
|
|
},
|
|
expectedJSONLines: []string{
|
|
fmt.Sprintf(`"msg":"Request","verb":%q,"url":%q,%s`, method, rawURL, reqHeaderJSON),
|
|
fmt.Sprintf(`"msg":"Response","status":%q,%s,"milliseconds":`, res.Status, resHeaderJSON),
|
|
},
|
|
},
|
|
{
|
|
levels: []DebugLevel{DebugByContext},
|
|
v: 9,
|
|
expectedTextLines: []string{
|
|
fmt.Sprintf(`"Request" curlCommand=<
|
|
curl -v -X%s`, method),
|
|
fmt.Sprintf(`"Response" verb=%q url=%q status=%q %s milliseconds=`, method, rawURL, res.Status, resHeaderText),
|
|
},
|
|
expectedJSONLines: []string{
|
|
fmt.Sprintf(`"msg":"Request","curlCommand":"curl -v -X%s`, method),
|
|
fmt.Sprintf(`"msg":"Response","verb":%q,"url":%q,"status":%q,%s,"milliseconds":`, method, rawURL, res.Status, resHeaderJSON),
|
|
},
|
|
},
|
|
}
|
|
|
|
for i, tc := range tcs {
|
|
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
|
|
for _, format := range []string{"text", "JSON"} {
|
|
t.Run(format, func(t *testing.T) {
|
|
// hijack the klog output
|
|
state := klog.CaptureState()
|
|
tmpWriteBuffer := bytes.NewBuffer(nil)
|
|
klog.SetOutput(tmpWriteBuffer)
|
|
klog.LogToStderr(false)
|
|
var fs flag.FlagSet
|
|
klog.InitFlags(&fs)
|
|
if err := fs.Set("one_output", "true"); err != nil {
|
|
t.Errorf("unexpected error setting -one_output: %v", err)
|
|
}
|
|
if err := fs.Set("v", fmt.Sprintf("%d", tc.v)); err != nil {
|
|
t.Errorf("unexpected error setting -v: %v", err)
|
|
}
|
|
|
|
expectOutput := tc.expectedTextLines
|
|
var req *http.Request
|
|
if format == "JSON" {
|
|
// Logger will be picked up through the context.
|
|
logger := funcr.NewJSON(func(obj string) {
|
|
_, _ = tmpWriteBuffer.Write([]byte(obj))
|
|
_, _ = tmpWriteBuffer.Write([]byte("\n"))
|
|
}, funcr.Options{Verbosity: tc.v})
|
|
ctx := klog.NewContext(context.Background(), logger)
|
|
expectOutput = tc.expectedJSONLines
|
|
r, err := http.NewRequestWithContext(ctx, method, rawURL, nil)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error constructing the HTTP request: %v", err)
|
|
}
|
|
req = r
|
|
} else {
|
|
// Intentionally no context, as before.
|
|
req = &http.Request{
|
|
Method: method,
|
|
URL: parsedURL,
|
|
}
|
|
}
|
|
req.Header = header
|
|
|
|
// execute the round tripper
|
|
rt := &testRoundTripper{
|
|
Response: res,
|
|
}
|
|
if len(tc.levels) == 1 && tc.levels[0] == DebugByContext {
|
|
DebugWrappers(rt).RoundTrip(req)
|
|
} else {
|
|
NewDebuggingRoundTripper(rt, tc.levels...).RoundTrip(req)
|
|
}
|
|
|
|
// call Flush to ensure the text isn't still buffered
|
|
klog.Flush()
|
|
|
|
// check if klog's output contains the expected lines
|
|
actual := tmpWriteBuffer.String()
|
|
|
|
// funcr writes a map in non-deterministic order.
|
|
// Fix that up before comparison.
|
|
actual = strings.ReplaceAll(actual, reqHeaderJSONReversed, reqHeaderJSON)
|
|
|
|
for _, expected := range expectOutput {
|
|
if !strings.Contains(actual, expected) {
|
|
t.Errorf("verbosity %d: expected this substring:\n%s\n\ngot:\n%s", tc.v, expected, actual)
|
|
}
|
|
}
|
|
// These test cases describe all expected lines. Split the log output
|
|
// into log entries and compare their number.
|
|
entries := regexp.MustCompile(`(?m)^[I{]`).FindAllStringIndex(actual, -1)
|
|
if tc.v > 0 && len(entries) != len(expectOutput) {
|
|
t.Errorf("expected %d output lines, got %d:\n%s", len(expectOutput), len(entries), actual)
|
|
}
|
|
|
|
state.Restore()
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|