This file is indexed.

/usr/share/gocode/src/github.com/influxdata/toml/encode_test.go is in golang-github-influxdata-toml-dev 0.0~git20160905.0.ad49a5c-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
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
package toml_test

import (
	"os"
	"reflect"
	"testing"
	"time"

	"github.com/influxdata/toml"
)

func TestMarshal(t *testing.T) {
	type iceCreamPreference struct {
		Flavor string
		Scoops int
	}

	for _, v := range []struct {
		v      interface{}
		expect string
	}{
		{struct{ Name string }{"alice"}, "name = \"alice\"\n"},
		{struct{ Age int }{7}, "age = 7\n"},
		{struct {
			Name string
			Age  int
		}{"alice", 7}, "name = \"alice\"\nage = 7\n"},
		{struct {
			Name string `toml:"-"`
			Age  int
		}{"alice", 7}, "age = 7\n"},
		{struct {
			Name string `toml:"my_name"`
		}{"bob"}, "my_name = \"bob\"\n"},
		{struct {
			Name string `toml:"my_name,omitempty"`
		}{"bob"}, "my_name = \"bob\"\n"},
		{struct {
			Name string `toml:",omitempty"`
		}{"bob"}, "name = \"bob\"\n"},
		{struct {
			Name string `toml:",omitempty"`
		}{""}, ""},
		{struct {
			Name map[string]string `toml:"name"`
		}{map[string]string{"foo": "bar", "baz": "quux"}}, "[name]\n    baz = \"quux\"\n    foo = \"bar\"\n"},
		{struct {
			Preferences map[string]iceCreamPreference `toml:"preferences"`
		}{map[string]iceCreamPreference{"tim": iceCreamPreference{"Vanilla", 3}}}, "[preferences]\n    [preferences.tim]\n        flavor = \"Vanilla\"\n        scoops = 3\n"},
		{struct {
			Name string `toml:"name" doc:"The name of the person"`
		}{"bob"}, "name = \"bob\" # The name of the person\n"},
	} {
		b, err := toml.Marshal(v.v)
		var actual interface{} = err
		var expect interface{} = nil
		if !reflect.DeepEqual(actual, expect) {
			t.Errorf(`Marshal(%#v) => %#v; want %#v`, v.v, actual, expect)
		}

		actual = string(b)
		expect = v.expect
		if !reflect.DeepEqual(actual, expect) {
			t.Errorf(`Marshal(%#v); v => %#v; want %#v`, v, actual, expect)
		}
	}
}

func TestMarshalWhole(t *testing.T) {
	for _, v := range []struct {
		v      interface{}
		expect string
	}{
		{
			testStruct{
				Table: Table{
					Key: "value",
					Subtable: Subtable{
						Key: "another value",
					},
					Inline: Inline{
						Name: Name{
							First: "Tom",
							Last:  "Preston-Werner",
						},
						Point: Point{
							X: 1,
							Y: 2,
						},
					},
				},
				X: X{},
				String: String{
					Basic: Basic{
						Basic: "I'm a string. \"You can quote me\". Name\tJos\u00E9\nLocation\tSF.",
					},
					Multiline: Multiline{
						Key1: "One\nTwo",
						Continued: Continued{
							Key1: "The quick brown fox jumps over the lazy dog.",
						},
					},
					Literal: Literal{
						Winpath:  `C:\Users\nodejs\templates`,
						Winpath2: `\\ServerX\admin$\system32\`,
						Quoted:   `Tom "Dubs" Preston-Werner`,
						Regex:    `<\i\c*\s*>`,
						Multiline: LiteralMultiline{
							Regex2: `I [dw]on't need \d{2} apples`,
							Lines:  "The first newline is\ntrimmed in raw strings.\n   All other whitespace\n   is preserved.\n",
						},
					},
				},
				Integer: Integer{
					Key1: 99,
					Key2: 42,
					Key3: 0,
					Key4: -17,
					Underscores: IntegerUnderscores{
						Key1: 1000,
						Key2: 5349221,
						Key3: 12345,
					},
				},
				Float: Float{
					Fractional: Fractional{
						Key1: 1.0,
						Key2: 3.1415,
						Key3: -0.01,
					},
					Exponent: Exponent{
						Key1: 5e22,
						Key2: 1e6,
						Key3: -2e-2,
					},
					Both: Both{
						Key: 6.626e-34,
					},
					Underscores: FloatUnderscores{
						Key1: 9224617.445991228313,
						Key2: 1e100,
					},
				},
				Boolean: Boolean{
					True:  true,
					False: false,
				},
				Datetime: Datetime{
					Key1: mustTime(time.Parse(time.RFC3339Nano, "1979-05-27T07:32:00Z")),
					Key2: mustTime(time.Parse(time.RFC3339Nano, "1979-05-27T00:32:00-07:00")),
					Key3: mustTime(time.Parse(time.RFC3339Nano, "1979-05-27T00:32:00.999999-07:00")),
				},
				Array: Array{
					Key1: []int{1, 2, 3},
					Key2: []string{"red", "yellow", "green"},
					Key3: [][]int{{1, 2}, {3, 4, 5}},
					Key4: [][]interface{}{{int64(1), int64(2)}, {"a", "b", "c"}},
					Key5: []int{1, 2, 3},
					Key6: []int{1, 2},
				},
				Products: []Product{
					{Name: "Hammer", Sku: 738594937},
					{},
					{Name: "Nail", Sku: 284758393, Color: "gray"},
				},
				Fruit: []Fruit{
					{
						Name: "apple",
						Physical: Physical{
							Color: "red",
							Shape: "round",
						},
						Variety: []Variety{
							{Name: "red delicious"},
							{Name: "granny smith"},
						},
					},
					{
						Name: "banana",
						Variety: []Variety{
							{Name: "plantain"},
						},
					},
				},
			},
			`[table]
    key = "value"
    [table.subtable]
        key = "another value"
    [table.inline]
        [table.inline.name]
            first = "Tom"
            last = "Preston-Werner"
        [table.inline.point]
            x = 1
            y = 2
[x]
    [x.y]
        [x.y.z]
            [x.y.z.w]
[string]
    [string.basic]
        basic = "I'm a string. \"You can quote me\". Name\tJosé\nLocation\tSF."
    [string.multiline]
        key1 = "One\nTwo"
        key2 = ""
        key3 = ""
        [string.multiline.continued]
            key1 = "The quick brown fox jumps over the lazy dog."
            key2 = ""
            key3 = ""
    [string.literal]
        winpath = "C:\\Users\\nodejs\\templates"
        winpath2 = "\\\\ServerX\\admin$\\system32\\"
        quoted = "Tom \"Dubs\" Preston-Werner"
        regex = "<\\i\\c*\\s*>"
        [string.literal.multiline]
            regex2 = "I [dw]on't need \\d{2} apples"
            lines = "The first newline is\ntrimmed in raw strings.\n   All other whitespace\n   is preserved.\n"
[integer]
    key1 = 99
    key2 = 42
    key3 = 0
    key4 = -17
    [integer.underscores]
        key1 = 1000
        key2 = 5349221
        key3 = 12345
[float]
    [float.fractional]
        key1 = 1e+00
        key2 = 3.1415e+00
        key3 = -1e-02
    [float.exponent]
        key1 = 5e+22
        key2 = 1e+06
        key3 = -2e-02
    [float.both]
        key = 6.626e-34
    [float.underscores]
        key1 = 9.224617445991227e+06
        key2 = 1e+100
[boolean]
    true = true
    false = false
[datetime]
    key1 = 1979-05-27T07:32:00Z
    key2 = 1979-05-27T00:32:00-07:00
    key3 = 1979-05-27T00:32:00.999999-07:00
[array]
    key1 = [1, 2, 3]
    key2 = ["red", "yellow", "green"]
    key3 = [[1, 2], [3, 4, 5]]
    key4 = [[1, 2], ["a", "b", "c"]]
    key5 = [1, 2, 3]
    key6 = [1, 2]
[[products]]
    name = "Hammer"
    sku = 738594937
    color = ""
[[products]]
    name = ""
    sku = 0
    color = ""
[[products]]
    name = "Nail"
    sku = 284758393
    color = "gray"
[[fruit]]
    name = "apple"
    [fruit.physical]
        color = "red"
        shape = "round"
    [[fruit.variety]]
        name = "red delicious"
    [[fruit.variety]]
        name = "granny smith"
[[fruit]]
    name = "banana"
    [fruit.physical]
        color = ""
        shape = ""
    [[fruit.variety]]
        name = "plantain"
`,
		},
	} {
		b, err := toml.Marshal(v.v)
		var actual interface{} = err
		var expect interface{} = nil
		if !reflect.DeepEqual(actual, expect) {
			t.Errorf("Marshal=>\ngot-------------\n%s\nwant-------------\n%s", actual, expect)
		}
		actual = string(b)
		expect = v.expect
		if !reflect.DeepEqual(actual, expect) {
			t.Errorf("Marshal=>\ngot-------------\n%s\nwant-------------\n%s", actual, expect)
		}

		// test for reversible.
		dest := testStruct{}
		actual = toml.Unmarshal(b, &dest)
		expect = nil
		if !reflect.DeepEqual(actual, expect) {
			t.Errorf("Unmarshal after Marshal=>\ngot-------------\n%s\nwant-------------\n%s", actual, expect)
		}
		actual = dest
		expect = v.v
		if !reflect.DeepEqual(actual, expect) {
			t.Errorf("Unmarshal after Marshal=>\ngot-------------\n%s\nwant-------------\n%s", actual, expect)
		}
	}
}

func TestMarshalPointer(t *testing.T) {
	type Profession struct {
		Name       string
		Department string
	}

	foo := struct {
		Active     bool
		Name       string
		Occupation *Profession
	}{
		true,
		"Foo Bar",
		&Profession{"Professor", "CS"},
	}

	expect := `active = true
name = "Foo Bar"
[occupation]
    name = "Professor"
    department = "CS"
`
	actual, err := toml.Marshal(&foo)
	if err != nil {
		t.Errorf(`Unable to marshal pointer, err was %s`, err.Error())
	}

	if !reflect.DeepEqual(string(actual), expect) {
		t.Errorf("Marshal=>\ngot-------------\n%s\nwant-------------\n%s", string(actual), expect)
	}
}

func TestMarshal_MixedStructMap(t *testing.T) {
	type location struct {
		X int
		Y int
	}

	type menuItem struct {
		Name  string
		Price int
	}

	type store struct {
		StoreName string
		Locations map[string]location
		Cuisine   string
		Menu      []menuItem
	}

	foo := store{
		"Arby's",
		map[string]location{
			"Boston": location{1, 2},
		},
		"American",
		[]menuItem{
			menuItem{"Burger", 12},
			menuItem{"Fries", 4},
		},
	}

	str, err := toml.Marshal(foo)
	if err != nil {
		t.Errorf(`Error marshalling example: %s`, err.Error())
	}

	expect := `store_name = "Arby's"
cuisine = "American"
[locations]
    [locations.Boston]
        x = 1
        y = 2
[[menu]]
    name = "Burger"
    price = 12
[[menu]]
    name = "Fries"
    price = 4
`

	if string(str) != expect {
		t.Errorf("Marshal=>\ngot-------------\n%s\nwant-------------\n%s", string(str), expect)
	}

	var out store
	toml.Unmarshal(str, &out)

	if !reflect.DeepEqual(out, foo) {
		t.Errorf(`Unmarshal => %#v; want %#v`, out, foo)
	}
}

func ExampleNewEncoder() {
	enc := toml.NewEncoder(os.Stdout)
	type SubConfig struct {
		Field1 string `toml:"f1" doc:"f1 doc"`
		Field2 string `toml:"f2" doc:"f2 doc"`
	}
	type NestedConfig struct {
		Name      string    `toml:"name" doc:"name doc"`
		SubConfig SubConfig `toml:"sub" doc:"sub config doc"`
	}
	type Config struct {
		Int          int               `toml:"int" doc:"int doc"`
		Float        float64           `toml:"float" doc:"float doc"`
		Str          string            `toml:"str" doc:"str doc"`
		Slice        []string          `toml:"slice" doc:"slice doc"`
		Array        [3]string         `toml:"array" doc:"array doc"`
		Table        map[string]string `toml:"table" doc:"table doc"`
		Subtable     SubConfig         `toml:"sub-table" doc:"sub-table doc"`
		SliceConfig  []SubConfig       `toml:"slice-config" doc:"slice of struct doc"`
		NestedConfig NestedConfig      `toml:"nested" doc:"nested doc"`
	}
	c := Config{
		Int:   1,
		Float: 1.5,
		Str:   "str",
		Slice: []string{"1", "2", "3", "4"},
		Array: [3]string{"3", "2", "1"},
		Table: map[string]string{
			"k1": "v1",
			"k2": "v2",
		},
		Subtable: SubConfig{
			Field1: "f1",
			Field2: "f2",
		},
		SliceConfig: []SubConfig{
			{
				Field1: "a1",
				Field2: "a2",
			},
			{
				Field1: "b1",
				Field2: "b2",
			},
		},
		NestedConfig: NestedConfig{
			Name: "nested",
			SubConfig: SubConfig{
				Field1: "c1",
				Field2: "c2",
			},
		},
	}
	enc.Encode(c)
	//Output:
	// int = 1 # int doc
	// float = 1.5e+00 # float doc
	// str = "str" # str doc
	// # array doc
	// array = ["3", "2", "1"]
	// # slice doc
	// slice = ["1", "2", "3", "4"]
	// # table doc
	// [table]
	//     k1 = "v1"
	//     k2 = "v2"
	// # sub-table doc
	// [sub-table]
	//     f1 = "f1" # f1 doc
	//     f2 = "f2" # f2 doc
	// # slice of struct doc
	// [[slice-config]]
	//     f1 = "a1" # f1 doc
	//     f2 = "a2" # f2 doc
	// [[slice-config]]
	//     f1 = "b1" # f1 doc
	//     f2 = "b2" # f2 doc
	// # nested doc
	// [nested]
	//     name = "nested" # name doc
	//     # sub config doc
	//     [nested.sub]
	//         f1 = "c1" # f1 doc
	//         f2 = "c2" # f2 doc

}