This file is indexed.

/usr/share/gocode/src/github.com/Shopify/sarama/leave_group_request_test.go is in golang-github-shopify-sarama-dev 1.9.0-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
package sarama

import "testing"

var (
	basicLeaveGroupRequest = []byte{
		0, 3, 'f', 'o', 'o',
		0, 3, 'b', 'a', 'r',
	}
)

func TestLeaveGroupRequest(t *testing.T) {
	var request *LeaveGroupRequest

	request = new(LeaveGroupRequest)
	request.GroupId = "foo"
	request.MemberId = "bar"
	testRequest(t, "basic", request, basicLeaveGroupRequest)
}