This file is indexed.

/usr/share/gocode/src/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/ulimit/ulimit_test.go is in golang-github-fsouza-go-dockerclient-dev 0.0+git20150905-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
52
53
54
55
package ulimit

import "testing"

func TestParseValid(t *testing.T) {
	u1 := &Ulimit{"nofile", 1024, 512}
	if u2, _ := Parse("nofile=512:1024"); *u1 != *u2 {
		t.Fatalf("expected %q, but got %q", u1, u2)
	}
}

func TestParseInvalidLimitType(t *testing.T) {
	if _, err := Parse("notarealtype=1024:1024"); err == nil {
		t.Fatalf("expected error on invalid ulimit type")
	}
}

func TestParseBadFormat(t *testing.T) {
	if _, err := Parse("nofile:1024:1024"); err == nil {
		t.Fatal("expected error on bad syntax")
	}

	if _, err := Parse("nofile"); err == nil {
		t.Fatal("expected error on bad syntax")
	}

	if _, err := Parse("nofile="); err == nil {
		t.Fatal("expected error on bad syntax")
	}
	if _, err := Parse("nofile=:"); err == nil {
		t.Fatal("expected error on bad syntax")
	}
	if _, err := Parse("nofile=:1024"); err == nil {
		t.Fatal("expected error on bad syntax")
	}
}

func TestParseHardLessThanSoft(t *testing.T) {
	if _, err := Parse("nofile:1024:1"); err == nil {
		t.Fatal("expected error on hard limit less than soft limit")
	}
}

func TestParseInvalidValueType(t *testing.T) {
	if _, err := Parse("nofile:asdf"); err == nil {
		t.Fatal("expected error on bad value type")
	}
}

func TestStringOutput(t *testing.T) {
	u := &Ulimit{"nofile", 1024, 512}
	if s := u.String(); s != "nofile=512:1024" {
		t.Fatal("expected String to return nofile=512:1024, but got", s)
	}
}