This file is indexed.

/usr/share/gocode/src/github.com/spf13/cobra/cobra/cmd/project_test.go is in golang-github-spf13-cobra-dev 0.0.1-1.1.

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

import (
	"testing"
)

func TestFindExistingPackage(t *testing.T) {
	path := findPackage("github.com/spf13/cobra")
	if path == "" {
		t.Fatal("findPackage didn't find the existing package")
	}
	if !hasGoPathPrefix(path) {
		t.Fatalf("%q is not in GOPATH, but must be", path)
	}
}

func hasGoPathPrefix(path string) bool {
	for _, srcPath := range srcPaths {
		if filepathHasPrefix(path, srcPath) {
			return true
		}
	}
	return false
}