This file is indexed.

/usr/share/gocode/src/github.com/lunny/nodb/config/config_test.go is in golang-github-lunny-nodb-dev 0.0~git20160621.0.fc1ef06-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
package config

import (
	"reflect"
	"testing"
)

func TestConfig(t *testing.T) {
	dstCfg := new(Config)
	dstCfg.Addr = "127.0.0.1:6380"
	dstCfg.HttpAddr = "127.0.0.1:11181"
	dstCfg.DataDir = "/tmp/ledis_server"
	dstCfg.DBName = "leveldb"

	dstCfg.LevelDB.Compression = false
	dstCfg.LevelDB.BlockSize = 32768
	dstCfg.LevelDB.WriteBufferSize = 67108864
	dstCfg.LevelDB.CacheSize = 524288000
	dstCfg.LevelDB.MaxOpenFiles = 1024
	dstCfg.LMDB.MapSize = 524288000
	dstCfg.LMDB.NoSync = true

	cfg, err := NewConfigWithFile("./config.toml")
	if err != nil {
		t.Fatal(err)
	}

	if !reflect.DeepEqual(dstCfg, cfg) {
		t.Fatal("parse toml error")
	}
}