This file is indexed.

/usr/share/gocode/src/github.com/kr/binarydist/patch_test.go is in golang-github-kr-binarydist-dev 0.0~git20120828.0.9955b0a-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
package binarydist

import (
	"io/ioutil"
	"os"
	"os/exec"
	"testing"
)

func TestPatch(t *testing.T) {
	mustWriteRandFile("test.old", 1e3, 1)
	mustWriteRandFile("test.new", 1e3, 2)

	got, err := ioutil.TempFile("/tmp", "bspatch.")
	if err != nil {
		panic(err)
	}
	os.Remove(got.Name())

	err = exec.Command("bsdiff", "test.old", "test.new", "test.patch").Run()
	if err != nil {
		panic(err)
	}

	err = Patch(mustOpen("test.old"), got, mustOpen("test.patch"))
	if err != nil {
		t.Fatal("err", err)
	}

	ref, err := got.Seek(0, 2)
	if err != nil {
		panic(err)
	}

	t.Logf("got %d bytes", ref)
	if n := fileCmp(got, mustOpen("test.new")); n > -1 {
		t.Fatalf("produced different output at pos %d", n)
	}
}

func TestPatchHk(t *testing.T) {
	got, err := ioutil.TempFile("/tmp", "bspatch.")
	if err != nil {
		panic(err)
	}
	os.Remove(got.Name())

	err = Patch(mustOpen("testdata/sample.old"), got, mustOpen("testdata/sample.patch"))
	if err != nil {
		t.Fatal("err", err)
	}

	ref, err := got.Seek(0, 2)
	if err != nil {
		panic(err)
	}

	t.Logf("got %d bytes", ref)
	if n := fileCmp(got, mustOpen("testdata/sample.new")); n > -1 {
		t.Fatalf("produced different output at pos %d", n)
	}
}