blob: 56c6769a9eb598cc8e1671c88848eb5eb2f85245 [file] [log] [blame]
Rob Pike3f5966d2010-08-03 08:04:33 +10001// Copyright 2010 The Go Authors. All rights reserved.
Brad Fitzpatrick719cde22010-07-28 11:30:00 -07002// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package io_test
6
7import (
Rob Pike3f5966d2010-08-03 08:04:33 +10008 "bytes"
9 "crypto/sha1"
10 "fmt"
Russ Cox965845a2011-11-02 15:54:16 -040011 . "io"
Russ Cox211618c2014-05-12 23:38:35 -040012 "io/ioutil"
Brad Fitzpatrick719cde22010-07-28 11:30:00 -070013 "strings"
14 "testing"
15)
16
17func TestMultiReader(t *testing.T) {
18 var mr Reader
19 var buf []byte
20 nread := 0
21 withFooBar := func(tests func()) {
22 r1 := strings.NewReader("foo ")
Brad Fitzpatrickca83cd22011-05-11 12:11:32 -070023 r2 := strings.NewReader("")
24 r3 := strings.NewReader("bar")
25 mr = MultiReader(r1, r2, r3)
Brad Fitzpatrick719cde22010-07-28 11:30:00 -070026 buf = make([]byte, 20)
27 tests()
28 }
Russ Coxc06cf032011-11-01 21:48:52 -040029 expectRead := func(size int, expected string, eerr error) {
Brad Fitzpatrick719cde22010-07-28 11:30:00 -070030 nread++
31 n, gerr := mr.Read(buf[0:size])
32 if n != len(expected) {
33 t.Errorf("#%d, expected %d bytes; got %d",
34 nread, len(expected), n)
35 }
36 got := string(buf[0:n])
37 if got != expected {
38 t.Errorf("#%d, expected %q; got %q",
39 nread, expected, got)
40 }
41 if gerr != eerr {
42 t.Errorf("#%d, expected error %v; got %v",
43 nread, eerr, gerr)
44 }
45 buf = buf[n:]
46 }
47 withFooBar(func() {
48 expectRead(2, "fo", nil)
49 expectRead(5, "o ", nil)
50 expectRead(5, "bar", nil)
Russ Coxc06cf032011-11-01 21:48:52 -040051 expectRead(5, "", EOF)
Brad Fitzpatrick719cde22010-07-28 11:30:00 -070052 })
53 withFooBar(func() {
54 expectRead(4, "foo ", nil)
55 expectRead(1, "b", nil)
56 expectRead(3, "ar", nil)
Russ Coxc06cf032011-11-01 21:48:52 -040057 expectRead(1, "", EOF)
Brad Fitzpatrick719cde22010-07-28 11:30:00 -070058 })
59 withFooBar(func() {
60 expectRead(5, "foo ", nil)
61 })
62}
Rob Pike3f5966d2010-08-03 08:04:33 +100063
64func TestMultiWriter(t *testing.T) {
65 sha1 := sha1.New()
66 sink := new(bytes.Buffer)
67 mw := MultiWriter(sha1, sink)
68
69 sourceString := "My input text."
70 source := strings.NewReader(sourceString)
71 written, err := Copy(mw, source)
72
73 if written != int64(len(sourceString)) {
74 t.Errorf("short write of %d, not %d", written, len(sourceString))
75 }
76
77 if err != nil {
78 t.Errorf("unexpected error: %v", err)
79 }
80
Adam Langleybac7bc52011-12-01 12:35:37 -050081 sha1hex := fmt.Sprintf("%x", sha1.Sum(nil))
Rob Pike3f5966d2010-08-03 08:04:33 +100082 if sha1hex != "01cb303fa8c30a64123067c5aa6284ba7ec2d31b" {
83 t.Error("incorrect sha1 value")
84 }
85
86 if sink.String() != sourceString {
Rob Pike1959c3a2010-09-23 13:48:56 +100087 t.Errorf("expected %q; got %q", sourceString, sink.String())
Rob Pike3f5966d2010-08-03 08:04:33 +100088 }
89}
Russ Cox211618c2014-05-12 23:38:35 -040090
91// Test that MultiReader copies the input slice and is insulated from future modification.
92func TestMultiReaderCopy(t *testing.T) {
93 slice := []Reader{strings.NewReader("hello world")}
94 r := MultiReader(slice...)
95 slice[0] = nil
96 data, err := ioutil.ReadAll(r)
97 if err != nil || string(data) != "hello world" {
98 t.Errorf("ReadAll() = %q, %v, want %q, nil", data, err, "hello world")
99 }
100}
101
102// Test that MultiWriter copies the input slice and is insulated from future modification.
103func TestMultiWriterCopy(t *testing.T) {
104 var buf bytes.Buffer
105 slice := []Writer{&buf}
106 w := MultiWriter(slice...)
107 slice[0] = nil
108 n, err := w.Write([]byte("hello world"))
109 if err != nil || n != 11 {
110 t.Errorf("Write(`hello world`) = %d, %v, want 11, nil", n, err)
111 }
112 if buf.String() != "hello world" {
113 t.Errorf("buf.String() = %q, want %q", buf.String(), "hello world")
114 }
115}