47 lines
957 B
Go
47 lines
957 B
Go
// Copyright 2012 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.
|
|
|
|
// +build !windows
|
|
|
|
package test
|
|
|
|
// direct-tcpip functional tests
|
|
|
|
import (
|
|
"net"
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestTCPIPHTTP(t *testing.T) {
|
|
// google.com will generate at least one redirect, possibly three
|
|
// depending on your location.
|
|
doTest(t, "http://google.com")
|
|
}
|
|
|
|
func TestTCPIPHTTPS(t *testing.T) {
|
|
doTest(t, "https://encrypted.google.com/")
|
|
}
|
|
|
|
func doTest(t *testing.T, url string) {
|
|
server := newServer(t)
|
|
defer server.Shutdown()
|
|
conn := server.Dial(clientConfig())
|
|
defer conn.Close()
|
|
|
|
tr := &http.Transport{
|
|
Dial: func(n, addr string) (net.Conn, error) {
|
|
return conn.Dial(n, addr)
|
|
},
|
|
}
|
|
client := &http.Client{
|
|
Transport: tr,
|
|
}
|
|
resp, err := client.Get(url)
|
|
if err != nil {
|
|
t.Fatalf("unable to proxy: %s", err)
|
|
}
|
|
// got a body without error
|
|
t.Log(resp)
|
|
}
|