This file is indexed.

/usr/share/gocode/src/github.com/influxdata/influxdb/stress/v2/stress_client/commune_test.go is in golang-github-influxdb-influxdb-dev 1.1.1+dfsg1-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
43
44
45
46
47
48
49
package stressClient

import (
	"testing"
)

func TestCommunePoint(t *testing.T) {
	comm := newCommune(5)
	pt := "write,tag=tagVal fooField=5 1460912595"
	comm.ch <- pt
	point := comm.point("s")
	if point.Name() != "write" {
		t.Errorf("expected: write\ngot: %v", point.Name())
	}
	if point.Tags().GetString("tag") != "tagVal" {
		t.Errorf("expected: tagVal\ngot: %v", point.Tags().GetString("tag"))
	}
	if int(point.Fields()["fooField"].(float64)) != 5 {
		t.Errorf("expected: 5\ngot: %v\n", point.Fields()["fooField"])
	}
	// Make sure commune returns the prev point
	comm.ch <- ""
	point = comm.point("s")
	if point.Name() != "write" {
		t.Errorf("expected: write\ngot: %v", point.Name())
	}
	if point.Tags().GetString("tag") != "tagVal" {
		t.Errorf("expected: tagVal\ngot: %v", point.Tags().GetString("tag"))
	}
	if int(point.Fields()["fooField"].(float64)) != 5 {
		t.Errorf("expected: 5\ngot: %v\n", point.Fields()["fooField"])
	}
}

func TestSetCommune(t *testing.T) {
	sf, _, _ := NewTestStressTest()
	ch := sf.SetCommune("foo_name")
	ch <- "write,tag=tagVal fooField=5 1460912595"
	pt := sf.GetPoint("foo_name", "s")
	if pt.Name() != "write" {
		t.Errorf("expected: write\ngot: %v", pt.Name())
	}
	if pt.Tags().GetString("tag") != "tagVal" {
		t.Errorf("expected: tagVal\ngot: %v", pt.Tags().GetString("tag"))
	}
	if int(pt.Fields()["fooField"].(float64)) != 5 {
		t.Errorf("expected: 5\ngot: %v\n", pt.Fields()["fooField"])
	}
}