mirror of
https://github.com/golang/go
synced 2024-11-05 11:36:10 -07:00
837e80568c
ReverseProxy doesn't re-set the Request's Host field, only Request.URL.Host. The HTTP/2 client prefers Request.Host over Request.URL.Host, so this results in the request being sent back to the host that originally accepted the request. This results in an infinite redirect (and consumption of many connections to itself). See Issue golang/go#28168 for details. Replace it with a simple proxy that drops all the headers (except Content-Type). I tried setting the proxy.Director, but it still didn't work. Could do with some more investigation. Fixes golang/go#28134. Change-Id: I5051ce72a379dcacfbe8484f58f8cf7d9385024d Reviewed-on: https://go-review.googlesource.com/c/141718 Run-TryBot: Chris Broadfoot <cbro@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
172 lines
4.4 KiB
Go
172 lines
4.4 KiB
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Regression tests to run against a production instance of godoc.
|
|
|
|
package main_test
|
|
|
|
import (
|
|
"bytes"
|
|
"flag"
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http"
|
|
"net/url"
|
|
"regexp"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
var host = flag.String("regtest.host", "", "host to run regression test against")
|
|
|
|
func init() {
|
|
flag.Parse()
|
|
*host = strings.TrimSuffix(*host, "/")
|
|
}
|
|
|
|
func TestLiveServer(t *testing.T) {
|
|
if *host == "" {
|
|
t.Skip("regtest.host flag missing.")
|
|
}
|
|
substringTests := []struct {
|
|
Message string
|
|
Path string
|
|
Substring string
|
|
Regexp string
|
|
NoAnalytics bool // expect the response to not contain GA.
|
|
PostBody string
|
|
StatusCode int // if 0, expect 2xx status code.
|
|
}{
|
|
{
|
|
Path: "/doc/faq",
|
|
Substring: "What is the purpose of the project",
|
|
},
|
|
{
|
|
Path: "/pkg/",
|
|
Substring: "Package tar",
|
|
},
|
|
{
|
|
Path: "/pkg/os/",
|
|
Substring: "func Open",
|
|
},
|
|
{
|
|
Path: "/pkg/net/http/",
|
|
Substring: `title="Added in Go 1.11"`,
|
|
Message: "version information not present - failed InitVersionInfo?",
|
|
},
|
|
{
|
|
Path: "/robots.txt",
|
|
Substring: "Disallow: /search",
|
|
Message: "robots not present - not deployed from Dockerfile?",
|
|
NoAnalytics: true,
|
|
},
|
|
{
|
|
Path: "/change/75944e2e3a63",
|
|
Substring: "bdb10cf",
|
|
Message: "no change redirect - hg to git mapping not registered?",
|
|
NoAnalytics: true,
|
|
StatusCode: 302,
|
|
},
|
|
{
|
|
Path: "/dl/",
|
|
Substring: "go1.11.windows-amd64.msi",
|
|
Message: "missing data on dl page - misconfiguration of datastore?",
|
|
},
|
|
{
|
|
Path: "/dl/?mode=json",
|
|
Substring: ".windows-amd64.msi",
|
|
NoAnalytics: true,
|
|
},
|
|
{
|
|
Message: "broken shortlinks - misconfiguration of datastore or memcache?",
|
|
Path: "/s/go2design",
|
|
Regexp: "proposal.*Found",
|
|
NoAnalytics: true,
|
|
StatusCode: 302,
|
|
},
|
|
{
|
|
Message: "incorrect search result - broken index?",
|
|
Path: "/search?q=IsDir",
|
|
Substring: "src/os/types.go",
|
|
},
|
|
{
|
|
Path: "/compile",
|
|
PostBody: "body=" + url.QueryEscape("package main; func main() { print(6*7); }"),
|
|
Regexp: `^{"compile_errors":"","output":"42"}$`,
|
|
NoAnalytics: true,
|
|
},
|
|
{
|
|
Path: "/compile",
|
|
PostBody: "body=" + url.QueryEscape("//empty"),
|
|
Substring: "expected 'package', found 'EOF'",
|
|
NoAnalytics: true,
|
|
},
|
|
{
|
|
Path: "/compile",
|
|
PostBody: "version=2&body=package+main%3Bimport+(%22fmt%22%3B%22time%22)%3Bfunc+main()%7Bfmt.Print(%22A%22)%3Btime.Sleep(time.Second)%3Bfmt.Print(%22B%22)%7D",
|
|
Regexp: `^{"Errors":"","Events":\[{"Message":"A","Kind":"stdout","Delay":0},{"Message":"B","Kind":"stdout","Delay":1000000000}\]}$`,
|
|
NoAnalytics: true,
|
|
},
|
|
{
|
|
Path: "/share",
|
|
PostBody: "package main",
|
|
Substring: "", // just check it is a 2xx.
|
|
NoAnalytics: true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range substringTests {
|
|
t.Run(tc.Path, func(t *testing.T) {
|
|
method := "GET"
|
|
var reqBody io.Reader
|
|
if tc.PostBody != "" {
|
|
method = "POST"
|
|
reqBody = strings.NewReader(tc.PostBody)
|
|
}
|
|
req, err := http.NewRequest(method, *host+tc.Path, reqBody)
|
|
if err != nil {
|
|
t.Fatalf("NewRequest: %v", err)
|
|
}
|
|
if reqBody != nil {
|
|
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
|
|
}
|
|
resp, err := http.DefaultTransport.RoundTrip(req)
|
|
if err != nil {
|
|
t.Fatalf("RoundTrip: %v", err)
|
|
}
|
|
if tc.StatusCode == 0 {
|
|
if resp.StatusCode > 299 {
|
|
t.Errorf("Non-OK status code: %v", resp.StatusCode)
|
|
}
|
|
} else if tc.StatusCode != resp.StatusCode {
|
|
t.Errorf("StatusCode; got %v, want %v", resp.StatusCode, tc.StatusCode)
|
|
}
|
|
body, err := ioutil.ReadAll(resp.Body)
|
|
if err != nil {
|
|
t.Fatalf("ReadAll: %v", err)
|
|
}
|
|
|
|
const googleAnalyticsID = "UA-11222381-2" // golang.org analytics ID
|
|
if !tc.NoAnalytics && !bytes.Contains(body, []byte(googleAnalyticsID)) {
|
|
t.Errorf("want response to contain analytics tracking ID")
|
|
}
|
|
|
|
if tc.Substring != "" {
|
|
tc.Regexp = regexp.QuoteMeta(tc.Substring)
|
|
}
|
|
re := regexp.MustCompile(tc.Regexp)
|
|
|
|
if !re.Match(body) {
|
|
t.Log("------ actual output -------")
|
|
t.Log(string(body))
|
|
t.Log("----------------------------")
|
|
if tc.Message != "" {
|
|
t.Log(tc.Message)
|
|
}
|
|
t.Fatalf("wanted response to match %s", tc.Regexp)
|
|
}
|
|
})
|
|
}
|
|
}
|