53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
package main
 | 
						|
 | 
						|
import (
 | 
						|
	"bytes"
 | 
						|
	"fmt"
 | 
						|
	"net/http"
 | 
						|
	"net/http/httptest"
 | 
						|
	"strings"
 | 
						|
	"testing"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/pusher/oauth2_proxy/pkg/logger"
 | 
						|
)
 | 
						|
 | 
						|
func TestLoggingHandler_ServeHTTP(t *testing.T) {
 | 
						|
	ts := time.Now()
 | 
						|
 | 
						|
	tests := []struct {
 | 
						|
		Format,
 | 
						|
		ExpectedLogMessage string
 | 
						|
	}{
 | 
						|
		{logger.DefaultRequestLoggingFormat, fmt.Sprintf("127.0.0.1 - - [%s] test-server GET - \"/foo/bar\" HTTP/1.1 \"\" 200 4 0.000\n", logger.FormatTimestamp(ts))},
 | 
						|
		{"{{.RequestMethod}}", "GET\n"},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, test := range tests {
 | 
						|
		buf := bytes.NewBuffer(nil)
 | 
						|
		handler := func(w http.ResponseWriter, req *http.Request) {
 | 
						|
			_, ok := w.(http.Hijacker)
 | 
						|
			if !ok {
 | 
						|
				t.Error("http.Hijacker is not available")
 | 
						|
			}
 | 
						|
 | 
						|
			w.Write([]byte("test"))
 | 
						|
		}
 | 
						|
 | 
						|
		logger.SetOutput(buf)
 | 
						|
		logger.SetReqTemplate(test.Format)
 | 
						|
		h := LoggingHandler(http.HandlerFunc(handler))
 | 
						|
 | 
						|
		r, _ := http.NewRequest("GET", "/foo/bar", nil)
 | 
						|
		r.RemoteAddr = "127.0.0.1"
 | 
						|
		r.Host = "test-server"
 | 
						|
 | 
						|
		h.ServeHTTP(httptest.NewRecorder(), r)
 | 
						|
 | 
						|
		actual := buf.String()
 | 
						|
		if !strings.Contains(actual, test.ExpectedLogMessage) {
 | 
						|
			t.Errorf("Log message was\n%s\ninstead of matching \n%s", actual, test.ExpectedLogMessage)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |