This file is indexed.

/usr/share/gocode/src/github.com/coreos/go-oidc/http/client.go is in golang-github-coreos-go-oidc-dev 0.0~git20151022.0.e9c0807-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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package http

import (
	"io/ioutil"
	"net/http"
	"net/http/httptest"
)

type Client interface {
	Do(*http.Request) (*http.Response, error)
}

type HandlerClient struct {
	Handler http.Handler
}

func (hc *HandlerClient) Do(r *http.Request) (*http.Response, error) {
	w := httptest.NewRecorder()
	hc.Handler.ServeHTTP(w, r)

	resp := http.Response{
		StatusCode: w.Code,
		Header:     w.Header(),
		Body:       ioutil.NopCloser(w.Body),
	}

	return &resp, nil
}

type RequestRecorder struct {
	Response *http.Response
	Error    error

	Request *http.Request
}

func (rr *RequestRecorder) Do(req *http.Request) (*http.Response, error) {
	rr.Request = req

	if rr.Response == nil && rr.Error == nil {
		panic("RequestRecorder Response and Error cannot both be nil")
	} else if rr.Response != nil && rr.Error != nil {
		panic("RequestRecorder Response and Error cannot both be non-nil")
	}

	return rr.Response, rr.Error
}

func (rr *RequestRecorder) RoundTrip(req *http.Request) (*http.Response, error) {
	return rr.Do(req)
}