mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-11-04 03:27:23 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			136 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			136 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package fastcgi
 | 
						|
 | 
						|
import (
 | 
						|
	"net"
 | 
						|
	"net/http"
 | 
						|
	"net/http/fcgi"
 | 
						|
	"net/http/httptest"
 | 
						|
	"net/url"
 | 
						|
	"strconv"
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestServeHTTPContentLength(t *testing.T) {
 | 
						|
	testWithBackend := func(body string, setContentLength bool) {
 | 
						|
		bodyLenStr := strconv.Itoa(len(body))
 | 
						|
		listener, err := net.Listen("tcp", "127.0.0.1:0")
 | 
						|
		if err != nil {
 | 
						|
			t.Fatalf("BackendSetsContentLength=%v: Unable to create listener for test: %v", setContentLength, err)
 | 
						|
		}
 | 
						|
		defer listener.Close()
 | 
						|
		go fcgi.Serve(listener, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
 | 
						|
			if setContentLength {
 | 
						|
				w.Header().Set("Content-Length", bodyLenStr)
 | 
						|
			}
 | 
						|
			w.Write([]byte(body))
 | 
						|
		}))
 | 
						|
 | 
						|
		handler := Handler{
 | 
						|
			Next:  nil,
 | 
						|
			Rules: []Rule{{Path: "/", Address: listener.Addr().String()}},
 | 
						|
		}
 | 
						|
		r, err := http.NewRequest("GET", "/", nil)
 | 
						|
		if err != nil {
 | 
						|
			t.Fatalf("BackendSetsContentLength=%v: Unable to create request: %v", setContentLength, err)
 | 
						|
		}
 | 
						|
		w := httptest.NewRecorder()
 | 
						|
 | 
						|
		status, err := handler.ServeHTTP(w, r)
 | 
						|
 | 
						|
		if got, want := status, http.StatusOK; got != want {
 | 
						|
			t.Errorf("BackendSetsContentLength=%v: Expected returned status code to be %d, got %d", setContentLength, want, got)
 | 
						|
		}
 | 
						|
		if err != nil {
 | 
						|
			t.Errorf("BackendSetsContentLength=%v: Expected nil error, got: %v", setContentLength, err)
 | 
						|
		}
 | 
						|
		if got, want := w.Header().Get("Content-Length"), bodyLenStr; got != want {
 | 
						|
			t.Errorf("BackendSetsContentLength=%v: Expected Content-Length to be '%s', got: '%s'", setContentLength, want, got)
 | 
						|
		}
 | 
						|
		if got, want := w.Body.String(), body; got != want {
 | 
						|
			t.Errorf("BackendSetsContentLength=%v: Expected response body to be '%s', got: '%s'", setContentLength, want, got)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	testWithBackend("Backend does NOT set Content-Length", false)
 | 
						|
	testWithBackend("Backend sets Content-Length", true)
 | 
						|
}
 | 
						|
 | 
						|
func TestRuleParseAddress(t *testing.T) {
 | 
						|
	getClientTestTable := []struct {
 | 
						|
		rule            *Rule
 | 
						|
		expectednetwork string
 | 
						|
		expectedaddress string
 | 
						|
	}{
 | 
						|
		{&Rule{Address: "tcp://172.17.0.1:9000"}, "tcp", "172.17.0.1:9000"},
 | 
						|
		{&Rule{Address: "fastcgi://localhost:9000"}, "tcp", "localhost:9000"},
 | 
						|
		{&Rule{Address: "172.17.0.15"}, "tcp", "172.17.0.15"},
 | 
						|
		{&Rule{Address: "/my/unix/socket"}, "unix", "/my/unix/socket"},
 | 
						|
		{&Rule{Address: "unix:/second/unix/socket"}, "unix", "/second/unix/socket"},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, entry := range getClientTestTable {
 | 
						|
		if actualnetwork, _ := entry.rule.parseAddress(); actualnetwork != entry.expectednetwork {
 | 
						|
			t.Errorf("Unexpected network for address string %v. Got %v, expected %v", entry.rule.Address, actualnetwork, entry.expectednetwork)
 | 
						|
		}
 | 
						|
		if _, actualaddress := entry.rule.parseAddress(); actualaddress != entry.expectedaddress {
 | 
						|
			t.Errorf("Unexpected parsed address for address string %v. Got %v, expected %v", entry.rule.Address, actualaddress, entry.expectedaddress)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestBuildEnv(t *testing.T) {
 | 
						|
	testBuildEnv := func(r *http.Request, rule Rule, fpath string, envExpected map[string]string) {
 | 
						|
		var h Handler
 | 
						|
		env, err := h.buildEnv(r, rule, fpath)
 | 
						|
		if err != nil {
 | 
						|
			t.Error("Unexpected error:", err.Error())
 | 
						|
		}
 | 
						|
		for k, v := range envExpected {
 | 
						|
			if env[k] != v {
 | 
						|
				t.Errorf("Unexpected %v. Got %v, expected %v", k, env[k], v)
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	rule := Rule{}
 | 
						|
	url, err := url.Parse("http://localhost:2015/fgci_test.php?test=blabla")
 | 
						|
	if err != nil {
 | 
						|
		t.Error("Unexpected error:", err.Error())
 | 
						|
	}
 | 
						|
 | 
						|
	r := http.Request{
 | 
						|
		Method:     "GET",
 | 
						|
		URL:        url,
 | 
						|
		Proto:      "HTTP/1.1",
 | 
						|
		ProtoMajor: 1,
 | 
						|
		ProtoMinor: 1,
 | 
						|
		Host:       "localhost:2015",
 | 
						|
		RemoteAddr: "[2b02:1810:4f2d:9400:70ab:f822:be8a:9093]:51688",
 | 
						|
		RequestURI: "/fgci_test.php",
 | 
						|
	}
 | 
						|
 | 
						|
	fpath := "/fgci_test.php"
 | 
						|
 | 
						|
	var envExpected = map[string]string{
 | 
						|
		"REMOTE_ADDR":     "[2b02:1810:4f2d:9400:70ab:f822:be8a:9093]",
 | 
						|
		"REMOTE_PORT":     "51688",
 | 
						|
		"SERVER_PROTOCOL": "HTTP/1.1",
 | 
						|
		"QUERY_STRING":    "test=blabla",
 | 
						|
		"REQUEST_METHOD":  "GET",
 | 
						|
		"HTTP_HOST":       "localhost:2015",
 | 
						|
	}
 | 
						|
 | 
						|
	// 1. Test for full canonical IPv6 address
 | 
						|
	testBuildEnv(&r, rule, fpath, envExpected)
 | 
						|
 | 
						|
	// 2. Test for shorthand notation of IPv6 address
 | 
						|
	r.RemoteAddr = "[::1]:51688"
 | 
						|
	envExpected["REMOTE_ADDR"] = "[::1]"
 | 
						|
	testBuildEnv(&r, rule, fpath, envExpected)
 | 
						|
 | 
						|
	// 3. Test for IPv4 address
 | 
						|
	r.RemoteAddr = "192.168.0.10:51688"
 | 
						|
	envExpected["REMOTE_ADDR"] = "192.168.0.10"
 | 
						|
	testBuildEnv(&r, rule, fpath, envExpected)
 | 
						|
}
 |