-
Notifications
You must be signed in to change notification settings - Fork 10
/
blob_test.go
122 lines (90 loc) · 2.43 KB
/
blob_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
package gitobj
import (
"bytes"
"crypto/sha1"
"errors"
"io/ioutil"
"strings"
"sync/atomic"
"testing"
"github.com/stretchr/testify/assert"
)
func TestBlobReturnsCorrectObjectType(t *testing.T) {
assert.Equal(t, BlobObjectType, new(Blob).Type())
}
func TestBlobFromString(t *testing.T) {
given := []byte("example")
glen := len(given)
b := NewBlobFromBytes(given)
assert.EqualValues(t, glen, b.Size)
contents, err := ioutil.ReadAll(b.Contents)
assert.NoError(t, err)
assert.Equal(t, given, contents)
}
func TestBlobEncoding(t *testing.T) {
const contents = "Hello, world!\n"
b := &Blob{
Size: int64(len(contents)),
Contents: strings.NewReader(contents),
}
var buf bytes.Buffer
if _, err := b.Encode(&buf); err != nil {
t.Fatal(err.Error())
}
assert.Equal(t, contents, (&buf).String())
}
func TestBlobDecoding(t *testing.T) {
const contents = "Hello, world!\n"
from := strings.NewReader(contents)
b := new(Blob)
n, err := b.Decode(sha1.New(), from, int64(len(contents)))
assert.Equal(t, 0, n)
assert.Nil(t, err)
assert.EqualValues(t, len(contents), b.Size)
got, err := ioutil.ReadAll(b.Contents)
assert.Nil(t, err)
assert.Equal(t, []byte(contents), got)
}
func TestBlobCallCloseFn(t *testing.T) {
var calls uint32
expected := errors.New("some close error")
b := &Blob{
closeFn: func() error {
atomic.AddUint32(&calls, 1)
return expected
},
}
got := b.Close()
assert.Equal(t, expected, got)
assert.EqualValues(t, 1, calls)
}
func TestBlobCanCloseWithoutCloseFn(t *testing.T) {
b := &Blob{
closeFn: nil,
}
assert.Nil(t, b.Close())
}
func TestBlobEqualReturnsTrueWithUnchangedContents(t *testing.T) {
c := strings.NewReader("Hello, world!")
b1 := &Blob{Size: int64(c.Len()), Contents: c}
b2 := &Blob{Size: int64(c.Len()), Contents: c}
assert.True(t, b1.Equal(b2))
}
func TestBlobEqualReturnsFalseWithChangedContents(t *testing.T) {
c1 := strings.NewReader("Hello, world!")
c2 := strings.NewReader("Goodbye, world!")
b1 := &Blob{Size: int64(c1.Len()), Contents: c1}
b2 := &Blob{Size: int64(c2.Len()), Contents: c2}
assert.False(t, b1.Equal(b2))
}
func TestBlobEqualReturnsTrueWhenOneBlobIsNil(t *testing.T) {
b1 := &Blob{Size: 1, Contents: bytes.NewReader([]byte{0xa})}
b2 := (*Blob)(nil)
assert.False(t, b1.Equal(b2))
assert.False(t, b2.Equal(b1))
}
func TestBlobEqualReturnsTrueWhenBothBlobsAreNil(t *testing.T) {
b1 := (*Blob)(nil)
b2 := (*Blob)(nil)
assert.True(t, b1.Equal(b2))
}