mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 5th and last set of files. R=rsc CC=golang-dev https://golang.org/cl/180050
61 lines
1.3 KiB
Go
61 lines
1.3 KiB
Go
// Copyright 2009 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.
|
|
|
|
package websocket
|
|
|
|
import (
|
|
"bytes"
|
|
"http"
|
|
"io"
|
|
"log"
|
|
"net"
|
|
"once"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
var serverAddr string
|
|
|
|
func echoServer(ws *Conn) { io.Copy(ws, ws) }
|
|
|
|
func startServer() {
|
|
l, e := net.Listen("tcp", ":0") // any available address
|
|
if e != nil {
|
|
log.Exitf("net.Listen tcp :0 %v", e)
|
|
}
|
|
serverAddr = l.Addr().String()
|
|
log.Stderr("Test WebSocket server listening on ", serverAddr)
|
|
http.Handle("/echo", Handler(echoServer))
|
|
go http.Serve(l, nil)
|
|
}
|
|
|
|
func TestEcho(t *testing.T) {
|
|
once.Do(startServer)
|
|
|
|
client, err := net.Dial("tcp", "", serverAddr)
|
|
if err != nil {
|
|
t.Fatal("dialing", err)
|
|
}
|
|
|
|
ws, err := newClient("/echo", "localhost", "http://localhost",
|
|
"ws://localhost/echo", "", client)
|
|
if err != nil {
|
|
t.Errorf("WebSocket handshake error", err)
|
|
return
|
|
}
|
|
msg := strings.Bytes("hello, world\n")
|
|
if _, err := ws.Write(msg); err != nil {
|
|
t.Errorf("Write: error %v", err)
|
|
}
|
|
var actual_msg = make([]byte, 512)
|
|
n, err := ws.Read(actual_msg)
|
|
if err != nil {
|
|
t.Errorf("Read: error %v", err)
|
|
}
|
|
actual_msg = actual_msg[0:n]
|
|
if !bytes.Equal(msg, actual_msg) {
|
|
t.Errorf("Echo: expected %q got %q", msg, actual_msg)
|
|
}
|
|
ws.Close()
|
|
}
|