blob: 60c392059324d6b276c1f9d38018016f45833344 [file] [log] [blame]
Russ Cox1d18e892010-04-26 10:36:05 -07001// Copyright 2010 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package net
6
7import (
8 "bytes"
9 "io"
Russ Cox1d18e892010-04-26 10:36:05 -070010 "testing"
11)
12
Mikio Haraf77e10f2015-05-01 12:38:42 +090013func checkPipeWrite(t *testing.T, w io.Writer, data []byte, c chan int) {
Russ Cox1d18e892010-04-26 10:36:05 -070014 n, err := w.Write(data)
15 if err != nil {
Mikio Haraf77e10f2015-05-01 12:38:42 +090016 t.Error(err)
Russ Cox1d18e892010-04-26 10:36:05 -070017 }
18 if n != len(data) {
19 t.Errorf("short write: %d != %d", n, len(data))
20 }
21 c <- 0
22}
23
Mikio Haraf77e10f2015-05-01 12:38:42 +090024func checkPipeRead(t *testing.T, r io.Reader, data []byte, wantErr error) {
Russ Cox1d18e892010-04-26 10:36:05 -070025 buf := make([]byte, len(data)+10)
26 n, err := r.Read(buf)
27 if err != wantErr {
Mikio Haraf77e10f2015-05-01 12:38:42 +090028 t.Error(err)
Russ Cox1d18e892010-04-26 10:36:05 -070029 return
30 }
31 if n != len(data) || !bytes.Equal(buf[0:n], data) {
32 t.Errorf("bad read: got %q", buf[0:n])
33 return
34 }
35}
36
Mikio Haraf77e10f2015-05-01 12:38:42 +090037// TestPipe tests a simple read/write/close sequence.
Russ Cox1d18e892010-04-26 10:36:05 -070038// Assumes that the underlying io.Pipe implementation
39// is solid and we're just testing the net wrapping.
Russ Cox1d18e892010-04-26 10:36:05 -070040func TestPipe(t *testing.T) {
41 c := make(chan int)
42 cli, srv := Pipe()
Mikio Haraf77e10f2015-05-01 12:38:42 +090043 go checkPipeWrite(t, cli, []byte("hello, world"), c)
44 checkPipeRead(t, srv, []byte("hello, world"), nil)
Russ Cox1d18e892010-04-26 10:36:05 -070045 <-c
Mikio Haraf77e10f2015-05-01 12:38:42 +090046 go checkPipeWrite(t, srv, []byte("line 2"), c)
47 checkPipeRead(t, cli, []byte("line 2"), nil)
Russ Cox1d18e892010-04-26 10:36:05 -070048 <-c
Mikio Haraf77e10f2015-05-01 12:38:42 +090049 go checkPipeWrite(t, cli, []byte("a third line"), c)
50 checkPipeRead(t, srv, []byte("a third line"), nil)
Russ Cox1d18e892010-04-26 10:36:05 -070051 <-c
52 go srv.Close()
Mikio Haraf77e10f2015-05-01 12:38:42 +090053 checkPipeRead(t, cli, nil, io.EOF)
Russ Cox1d18e892010-04-26 10:36:05 -070054 cli.Close()
55}