Skip to content

Commit 64c6ddb

Browse files
vvatanabelhchavez
authored andcommitted
Add support for git_blob_is_binary (#625)
This adds IsBinary() func to Blob struct, which simply returns the result of git_blob_is_binary function. Refs: https://libgit2.org/libgit2/#HEAD/group/blob/git_blob_is_binary Issue: Add support for git_blob_is_binary #426 Fixes: #426 (cherry picked from commit 462ebd8)
1 parent 6c1af41 commit 64c6ddb

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

blob.go

+6
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ func (v *Blob) Contents() []byte {
4040
return goBytes
4141
}
4242

43+
func (v *Blob) IsBinary() bool {
44+
ret := C.git_blob_is_binary(v.cast_ptr) == 1
45+
runtime.KeepAlive(v)
46+
return ret
47+
}
48+
4349
func (repo *Repository) CreateBlobFromBuffer(data []byte) (*Oid, error) {
4450
runtime.LockOSThread()
4551
defer runtime.UnlockOSThread()

blob_test.go

+19-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,21 @@ func TestCreateBlobFromBuffer(t *testing.T) {
2828
t.Fatal("Empty buffer did not deliver empty blob id")
2929
}
3030

31-
for _, data := range []([]byte){[]byte("hello there"), doublePointerBytes()} {
31+
tests := []struct {
32+
data []byte
33+
isBinary bool
34+
}{
35+
{
36+
data: []byte("hello there"),
37+
isBinary: false,
38+
},
39+
{
40+
data: doublePointerBytes(),
41+
isBinary: true,
42+
},
43+
}
44+
for _, tt := range tests {
45+
data := tt.data
3246
id, err = repo.CreateBlobFromBuffer(data)
3347
checkFatal(t, err)
3448

@@ -38,5 +52,9 @@ func TestCreateBlobFromBuffer(t *testing.T) {
3852
t.Fatal("Loaded bytes don't match original bytes:",
3953
blob.Contents(), "!=", data)
4054
}
55+
want := tt.isBinary
56+
if got := blob.IsBinary(); got != want {
57+
t.Fatalf("IsBinary() = %v, want %v", got, want)
58+
}
4159
}
4260
}

0 commit comments

Comments
 (0)