1
0
mirror of https://github.com/golang/go synced 2024-10-03 00:21:22 -06:00

rpc: use httptest.Server for tests

R=golang-dev, rsc1, rsc
CC=golang-dev
https://golang.org/cl/4253060
This commit is contained in:
Robert Hencke 2011-03-07 10:37:10 -05:00 committed by Russ Cox
parent c6093e6b82
commit c7ef0fd26b

View File

@ -6,7 +6,7 @@ package rpc
import ( import (
"fmt" "fmt"
"http" "http/httptest"
"log" "log"
"net" "net"
"os" "os"
@ -103,11 +103,9 @@ func startNewServer() {
} }
func startHttpServer() { func startHttpServer() {
var l net.Listener server := httptest.NewServer(nil)
l, httpServerAddr = listenTCP() httpServerAddr = server.Listener.Addr().String()
httpServerAddr = l.Addr().String()
log.Println("Test HTTP RPC server listening on", httpServerAddr) log.Println("Test HTTP RPC server listening on", httpServerAddr)
go http.Serve(l, nil)
} }
func TestRPC(t *testing.T) { func TestRPC(t *testing.T) {