1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
// Copyright 2019 Google LLC All Rights Reserved.
//
// 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"
"errors"
"io"
"net/http"
"strings"
"testing"
"github.com/google/go-containerregistry/internal/redact"
"github.com/google/go-containerregistry/pkg/logs"
)
func TestLogger(t *testing.T) {
canary := "logs.Debug canary"
secret := "super secret do not log"
auth := "my token pls do not log"
reason := "should not log the secret"
ctx := redact.NewContext(context.Background(), reason)
req, err := http.NewRequestWithContext(ctx, "GET", "http://example.com", nil)
if err != nil {
t.Fatalf("Unexpected error during NewRequest: %v", err)
}
req.Header.Set("authorization", auth)
var b bytes.Buffer
logs.Debug.SetOutput(&b)
cannedResponse := http.Response{
Status: http.StatusText(http.StatusOK),
StatusCode: http.StatusOK,
Header: http.Header{
"Foo": []string{canary},
},
Body: io.NopCloser(strings.NewReader(secret)),
Request: req,
}
tr := NewLogger(newRecorder(&cannedResponse, nil))
if _, err := tr.RoundTrip(req); err != nil {
t.Fatalf("Unexpected error during RoundTrip: %v", err)
}
logged := b.String()
if !strings.Contains(logged, canary) {
t.Errorf("Expected logs to contain %s, got %s", canary, logged)
}
if !strings.Contains(logged, reason) {
t.Errorf("Expected logs to contain %s, got %s", canary, logged)
}
if strings.Contains(logged, secret) {
t.Errorf("Expected logs NOT to contain %s, got %s", secret, logged)
}
if strings.Contains(logged, auth) {
t.Errorf("Expected logs NOT to contain %s, got %s", auth, logged)
}
}
func TestLoggerError(t *testing.T) {
canary := "logs.Debug canary ERROR"
req, err := http.NewRequest("GET", "http://example.com", nil)
if err != nil {
t.Fatalf("Unexpected error during NewRequest: %v", err)
}
var b bytes.Buffer
logs.Debug.SetOutput(&b)
tr := NewLogger(newRecorder(nil, errors.New(canary)))
if _, err := tr.RoundTrip(req); err == nil {
t.Fatalf("Expected error during RoundTrip, got nil")
}
logged := b.String()
if !strings.Contains(logged, canary) {
t.Errorf("Expected logs to contain %s, got %s", canary, logged)
}
}
|