a42a906c42
From-SVN: r194460
94 lines
2.1 KiB
Go
94 lines
2.1 KiB
Go
// Copyright 2011 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.
|
|
|
|
// This code is duplicated in httputil/chunked_test.go.
|
|
// Please make any changes in both files.
|
|
|
|
package http
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
func TestChunk(t *testing.T) {
|
|
var b bytes.Buffer
|
|
|
|
w := newChunkedWriter(&b)
|
|
const chunk1 = "hello, "
|
|
const chunk2 = "world! 0123456789abcdef"
|
|
w.Write([]byte(chunk1))
|
|
w.Write([]byte(chunk2))
|
|
w.Close()
|
|
|
|
if g, e := b.String(), "7\r\nhello, \r\n17\r\nworld! 0123456789abcdef\r\n0\r\n"; g != e {
|
|
t.Fatalf("chunk writer wrote %q; want %q", g, e)
|
|
}
|
|
|
|
r := newChunkedReader(&b)
|
|
data, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
t.Logf(`data: "%s"`, data)
|
|
t.Fatalf("ReadAll from reader: %v", err)
|
|
}
|
|
if g, e := string(data), chunk1+chunk2; g != e {
|
|
t.Errorf("chunk reader read %q; want %q", g, e)
|
|
}
|
|
}
|
|
|
|
func TestChunkReaderAllocs(t *testing.T) {
|
|
// temporarily set GOMAXPROCS to 1 as we are testing memory allocations
|
|
defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
|
|
var buf bytes.Buffer
|
|
w := newChunkedWriter(&buf)
|
|
a, b, c := []byte("aaaaaa"), []byte("bbbbbbbbbbbb"), []byte("cccccccccccccccccccccccc")
|
|
w.Write(a)
|
|
w.Write(b)
|
|
w.Write(c)
|
|
w.Close()
|
|
|
|
r := newChunkedReader(&buf)
|
|
readBuf := make([]byte, len(a)+len(b)+len(c)+1)
|
|
|
|
var ms runtime.MemStats
|
|
runtime.ReadMemStats(&ms)
|
|
m0 := ms.Mallocs
|
|
|
|
n, err := io.ReadFull(r, readBuf)
|
|
|
|
runtime.ReadMemStats(&ms)
|
|
mallocs := ms.Mallocs - m0
|
|
if mallocs > 1 {
|
|
t.Errorf("%d mallocs; want <= 1", mallocs)
|
|
}
|
|
|
|
if n != len(readBuf)-1 {
|
|
t.Errorf("read %d bytes; want %d", n, len(readBuf)-1)
|
|
}
|
|
if err != io.ErrUnexpectedEOF {
|
|
t.Errorf("read error = %v; want ErrUnexpectedEOF", err)
|
|
}
|
|
}
|
|
|
|
func TestParseHexUint(t *testing.T) {
|
|
for i := uint64(0); i <= 1234; i++ {
|
|
line := []byte(fmt.Sprintf("%x", i))
|
|
got, err := parseHexUint(line)
|
|
if err != nil {
|
|
t.Fatalf("on %d: %v", i, err)
|
|
}
|
|
if got != i {
|
|
t.Errorf("for input %q = %d; want %d", line, got, i)
|
|
}
|
|
}
|
|
_, err := parseHexUint([]byte("bogus"))
|
|
if err == nil {
|
|
t.Error("expected error on bogus input")
|
|
}
|
|
}
|