mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-11 02:59:34 -06:00
41 lines
907 B
Go
41 lines
907 B
Go
package chunks
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestChunkWriteAfterCloseFails(t *testing.T) {
|
|
assert := assert.New(t)
|
|
input := "abc"
|
|
w := NewChunkWriter()
|
|
_, err := w.Write([]byte(input))
|
|
assert.NoError(err)
|
|
|
|
assert.NoError(w.Close())
|
|
assert.Panics(func() { w.Write([]byte(input)) }, "Write() after Close() should barf!")
|
|
}
|
|
|
|
func TestChunkWriteAfterChunkFails(t *testing.T) {
|
|
assert := assert.New(t)
|
|
input := "abc"
|
|
w := NewChunkWriter()
|
|
_, err := w.Write([]byte(input))
|
|
assert.NoError(err)
|
|
|
|
_ = w.Chunk()
|
|
assert.Panics(func() { w.Write([]byte(input)) }, "Write() after Chunk() should barf!")
|
|
}
|
|
|
|
func TestChunkChunkCloses(t *testing.T) {
|
|
assert := assert.New(t)
|
|
input := "abc"
|
|
w := NewChunkWriter()
|
|
_, err := w.Write([]byte(input))
|
|
assert.NoError(err)
|
|
|
|
w.Chunk()
|
|
assert.Panics(func() { w.Write([]byte(input)) }, "Write() after Close() should barf!")
|
|
}
|