File tree 2 files changed +25
-1
lines changed
2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,12 @@ func (v *Blob) Contents() []byte {
40
40
return goBytes
41
41
}
42
42
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
+
43
49
func (repo * Repository ) CreateBlobFromBuffer (data []byte ) (* Oid , error ) {
44
50
runtime .LockOSThread ()
45
51
defer runtime .UnlockOSThread ()
Original file line number Diff line number Diff line change @@ -28,7 +28,21 @@ func TestCreateBlobFromBuffer(t *testing.T) {
28
28
t .Fatal ("Empty buffer did not deliver empty blob id" )
29
29
}
30
30
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
32
46
id , err = repo .CreateBlobFromBuffer (data )
33
47
checkFatal (t , err )
34
48
@@ -38,5 +52,9 @@ func TestCreateBlobFromBuffer(t *testing.T) {
38
52
t .Fatal ("Loaded bytes don't match original bytes:" ,
39
53
blob .Contents (), "!=" , data )
40
54
}
55
+ want := tt .isBinary
56
+ if got := blob .IsBinary (); got != want {
57
+ t .Fatalf ("IsBinary() = %v, want %v" , got , want )
58
+ }
41
59
}
42
60
}
You can’t perform that action at this time.
0 commit comments