本文整理汇总了Golang中net/http/httptest.Server.Config方法的典型用法代码示例。如果您正苦于以下问题:Golang Server.Config方法的具体用法?Golang Server.Config怎么用?Golang Server.Config使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net/http/httptest.Server
的用法示例。
在下文中一共展示了Server.Config方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: testUpgradeWithCurl
func testUpgradeWithCurl(t *testing.T, mode testUpgradeMode, lenient bool) {
if runtime.GOOS != "linux" {
t.Skip("skipping Docker test when not on Linux; requires --net which won't work with boot2docker anyway")
}
requireCurl(t)
const msg = "Hello from curl!\n"
var ts2 *httptest.Server
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Foo", "Bar")
w.Header().Set("Client-Proto", r.Proto)
io.WriteString(w, msg)
})
ts := httptest.NewUnstartedServer(handler)
switch mode {
case testUpgradeNoTLS:
ts.TLS = nil
default:
ts2 = httptest.NewUnstartedServer(handler)
ts2.TLS = nil
}
wrapped := UpgradeServer(ts.Config, &Server{
PermitProhibitedCipherSuites: lenient,
})
modes := make([]testUpgradeMode, 0, 2)
switch mode {
case testUpgradeNoTLS:
modes = append(modes, mode)
ts.Config = wrapped
ts.Start()
t.Logf("Running test server for curl to hit at: %s", ts.URL)
case testUpgradeDualTLS:
modes = append(modes, testUpgradeNoTLS)
fallthrough
default:
modes = append(modes, testUpgradeTLSOnly)
ts2.Config = wrapped
ts.TLS = ts.Config.TLSConfig // the httptest.Server has its own copy of this TLS config
ts.StartTLS()
ts2.Start()
defer ts2.Close()
t.Logf("Running test server for curl to hit at: %s and %s", ts.URL, ts2.URL)
}
defer ts.Close()
defer func() { testHookOnConn = nil }()
for _, mode := range modes {
var gotConn int32
testHookOnConn = func() { atomic.StoreInt32(&gotConn, 1) }
T := ts
if mode == testUpgradeNoTLS && ts2 != nil {
T = ts2
}
container := curl(t, "-D-", "--silent", "--http2", "--insecure", T.URL)
defer kill(container)
resc := make(chan interface{}, 1)
go func() {
res, err := dockerLogs(container)
if err != nil {
resc <- err
} else {
resc <- res
}
}()
select {
case res := <-resc:
if err, ok := res.(error); ok {
t.Fatal(err)
}
testDualUpgradeOutput(t, string(res.([]byte)), (T.TLS == nil),
"HTTP/2.0 200",
"foo:Bar",
"client-proto:HTTP/2",
msg)
case <-time.After(3 * time.Second):
t.Errorf("timeout waiting for curl")
}
if atomic.LoadInt32(&gotConn) == 0 {
t.Error("never saw an http2 connection")
}
}
}