This file is indexed.

/usr/share/gocode/src/github.com/smartystreets/goconvey/web/server/system/shell_integration_test.go is in golang-github-smartystreets-goconvey-dev 1.6.1-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
package system

import (
	"log"
	"path/filepath"
	"runtime"
	"strings"

	"testing"
)

func TestShellIntegration(t *testing.T) {
	if testing.Short() {
		t.Skip("Skipping potentially long-running integration test...")
		return
	}

	log.SetFlags(log.LstdFlags | log.Lshortfile | log.Lmicroseconds)

	_, filename, _, _ := runtime.Caller(0)
	directory := filepath.Join(filepath.Dir(filename), "..", "watch", "integration_testing", "sub")
	packageName := "github.com/smartystreets/goconvey/web/server/watch/integration_testing/sub"

	shell := NewShell("go", "", true, "5s")
	output, err := shell.GoTest(directory, packageName, []string{}, []string{"-short"})

	if !strings.Contains(output, "PASS\n") || !strings.Contains(output, "ok") {
		t.Errorf("Expected output that resembed tests passing but got this instead: [%s]", output)
	}
	if err != nil {
		t.Error("Test run resulted in the following error:", err)
	}
}