This file is indexed.

/usr/share/gocode/src/github.com/coreos/go-etcd/etcd/set_curl_chan_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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package etcd

import (
	"fmt"
	"testing"
)

func TestSetCurlChan(t *testing.T) {
	c := NewClient(nil)
	c.OpenCURL()

	defer func() {
		c.Delete("foo", true)
	}()

	_, err := c.Set("foo", "bar", 5)
	if err != nil {
		t.Fatal(err)
	}

	expected := fmt.Sprintf("curl -X PUT %s/v2/keys/foo -d value=bar -d ttl=5",
		c.cluster.pick())
	actual := c.RecvCURL()
	if expected != actual {
		t.Fatalf(`Command "%s" is not equal to expected value "%s"`,
			actual, expected)
	}

	c.SetConsistency(STRONG_CONSISTENCY)
	_, err = c.Get("foo", false, false)
	if err != nil {
		t.Fatal(err)
	}

	expected = fmt.Sprintf("curl -X GET %s/v2/keys/foo?quorum=true&recursive=false&sorted=false",
		c.cluster.pick())
	actual = c.RecvCURL()
	if expected != actual {
		t.Fatalf(`Command "%s" is not equal to expected value "%s"`,
			actual, expected)
	}
}