This file is indexed.

/usr/share/gocode/src/github.com/docker/go-connections/sockets/inmem_socket_test.go is in golang-github-docker-go-connections-dev 0.3.0-3.

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

import "testing"

func TestInmemSocket(t *testing.T) {
	l := NewInmemSocket("test", 0)
	defer l.Close()
	go func() {
		for {
			conn, err := l.Accept()
			if err != nil {
				return
			}
			conn.Write([]byte("hello"))
			conn.Close()
		}
	}()

	conn, err := l.Dial("test", "test")
	if err != nil {
		t.Fatal(err)
	}

	buf := make([]byte, 5)
	_, err = conn.Read(buf)
	if err != nil {
		t.Fatal(err)
	}

	if string(buf) != "hello" {
		t.Fatalf("expected `hello`, got %s", string(buf))
	}

	l.Close()
	conn, err = l.Dial("test", "test")
	if err != errClosed {
		t.Fatalf("expected `errClosed` error, got %v", err)
	}
}