This file is indexed.

/usr/share/gocode/src/github.com/coreos/go-etcd/etcd/requests_test.go is in golang-github-coreos-go-etcd-dev 2.0.0-4.

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

import "testing"

func TestKeyToPath(t *testing.T) {
	tests := []struct {
		key   string
		wpath string
	}{
		{"", "keys/"},
		{"foo", "keys/foo"},
		{"foo/bar", "keys/foo/bar"},
		{"%z", "keys/%25z"},
		{"/", "keys/"},
	}
	for i, tt := range tests {
		path := keyToPath(tt.key)
		if path != tt.wpath {
			t.Errorf("#%d: path = %s, want %s", i, path, tt.wpath)
		}
	}
}