File: ini_test.go

package info (click to toggle)
golang-github-go-ini-ini 1.67.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid, trixie
  • size: 420 kB
  • sloc: makefile: 14
file content (1653 lines) | stat: -rw-r--r-- 49,423 bytes parent folder | download | duplicates (2)
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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
// Copyright 2014 Unknwon
//
// Licensed under the Apache License, Version 2.0 (the "License"): you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.

package ini

import (
	"bytes"
	"flag"
	"io/ioutil"
	"path/filepath"
	"runtime"
	"testing"

	"github.com/stretchr/testify/assert"
	"github.com/stretchr/testify/require"
)

const (
	confData = `
	; Package name
	NAME        = ini
	; Package version
	VERSION     = v1
	; Package import path
	IMPORT_PATH = gopkg.in/%(NAME)s.%(VERSION)s
	
	# Information about package author
	# Bio can be written in multiple lines.
	[author]
	NAME   = Unknwon  ; Succeeding comment
	E-MAIL = fake@localhost
	GITHUB = https://github.com/%(NAME)s
	BIO    = """Gopher.
	Coding addict.
	Good man.
	"""  # Succeeding comment`
	minimalConf  = "testdata/minimal.ini"
	fullConf     = "testdata/full.ini"
	notFoundConf = "testdata/404.ini"
)

var update = flag.Bool("update", false, "Update .golden files")

func TestLoad(t *testing.T) {
	t.Run("load from good data sources", func(t *testing.T) {
		f, err := Load(
			"testdata/minimal.ini",
			[]byte("NAME = ini\nIMPORT_PATH = gopkg.in/%(NAME)s.%(VERSION)s"),
			bytes.NewReader([]byte(`VERSION = v1`)),
			ioutil.NopCloser(bytes.NewReader([]byte("[author]\nNAME = Unknwon"))),
		)
		require.NoError(t, err)
		require.NotNil(t, f)

		// Validate values make sure all sources are loaded correctly
		sec := f.Section("")
		assert.Equal(t, "ini", sec.Key("NAME").String())
		assert.Equal(t, "v1", sec.Key("VERSION").String())
		assert.Equal(t, "gopkg.in/ini.v1", sec.Key("IMPORT_PATH").String())

		sec = f.Section("author")
		assert.Equal(t, "Unknwon", sec.Key("NAME").String())
		assert.Equal(t, "u@gogs.io", sec.Key("E-MAIL").String())
	})

	t.Run("load from bad data sources", func(t *testing.T) {
		t.Run("invalid input", func(t *testing.T) {
			_, err := Load(notFoundConf)
			require.Error(t, err)
		})

		t.Run("unsupported type", func(t *testing.T) {
			_, err := Load(123)
			require.Error(t, err)
		})
	})

	t.Run("cannot properly parse INI files containing `#` or `;` in value", func(t *testing.T) {
		f, err := Load([]byte(`
	[author]
	NAME = U#n#k#n#w#o#n
	GITHUB = U;n;k;n;w;o;n
	`))
		require.NoError(t, err)
		require.NotNil(t, f)

		sec := f.Section("author")
		nameValue := sec.Key("NAME").String()
		githubValue := sec.Key("GITHUB").String()
		assert.Equal(t, "U", nameValue)
		assert.Equal(t, "U", githubValue)
	})

	t.Run("cannot parse small python-compatible INI files", func(t *testing.T) {
		f, err := Load([]byte(`
[long]
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
   foo
   bar
   foobar
   barfoo
   -----END RSA PRIVATE KEY-----
`))
		require.Error(t, err)
		assert.Nil(t, f)
		assert.Equal(t, "key-value delimiter not found: foo\n", err.Error())
	})

	t.Run("cannot parse big python-compatible INI files", func(t *testing.T) {
		f, err := Load([]byte(`
[long]
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
   1foo
   2bar
   3foobar
   4barfoo
   5foo
   6bar
   7foobar
   8barfoo
   9foo
   10bar
   11foobar
   12barfoo
   13foo
   14bar
   15foobar
   16barfoo
   17foo
   18bar
   19foobar
   20barfoo
   21foo
   22bar
   23foobar
   24barfoo
   25foo
   26bar
   27foobar
   28barfoo
   29foo
   30bar
   31foobar
   32barfoo
   33foo
   34bar
   35foobar
   36barfoo
   37foo
   38bar
   39foobar
   40barfoo
   41foo
   42bar
   43foobar
   44barfoo
   45foo
   46bar
   47foobar
   48barfoo
   49foo
   50bar
   51foobar
   52barfoo
   53foo
   54bar
   55foobar
   56barfoo
   57foo
   58bar
   59foobar
   60barfoo
   61foo
   62bar
   63foobar
   64barfoo
   65foo
   66bar
   67foobar
   68barfoo
   69foo
   70bar
   71foobar
   72barfoo
   73foo
   74bar
   75foobar
   76barfoo
   77foo
   78bar
   79foobar
   80barfoo
   81foo
   82bar
   83foobar
   84barfoo
   85foo
   86bar
   87foobar
   88barfoo
   89foo
   90bar
   91foobar
   92barfoo
   93foo
   94bar
   95foobar
   96barfoo
   -----END RSA PRIVATE KEY-----
`))
		require.Error(t, err)
		assert.Nil(t, f)
		assert.Equal(t, "key-value delimiter not found: 1foo\n", err.Error())
	})
}

func TestLooseLoad(t *testing.T) {
	f, err := LoadSources(LoadOptions{Loose: true}, notFoundConf, minimalConf)
	require.NoError(t, err)
	require.NotNil(t, f)

	t.Run("inverse case", func(t *testing.T) {
		_, err = Load(notFoundConf)
		require.Error(t, err)
	})
}

func TestInsensitiveLoad(t *testing.T) {
	t.Run("insensitive to section and key names", func(t *testing.T) {
		f, err := InsensitiveLoad(minimalConf)
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "u@gogs.io", f.Section("Author").Key("e-mail").String())

		t.Run("write out", func(t *testing.T) {
			var buf bytes.Buffer
			_, err := f.WriteTo(&buf)
			require.NoError(t, err)
			assert.Equal(t, `[author]
e-mail = u@gogs.io
`,
				buf.String(),
			)
		})

		t.Run("inverse case", func(t *testing.T) {
			f, err := Load(minimalConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Empty(t, f.Section("Author").Key("e-mail").String())
		})
	})

	// Ref: https://github.com/go-ini/ini/issues/198
	t.Run("insensitive load with default section", func(t *testing.T) {
		f, err := InsensitiveLoad([]byte(`
user = unknwon
[profile]
email = unknwon@local
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "unknwon", f.Section(DefaultSection).Key("user").String())
	})
}

func TestLoadSources(t *testing.T) {
	t.Run("with true `AllowPythonMultilineValues`", func(t *testing.T) {
		t.Run("ignore nonexistent files", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true, Loose: true}, notFoundConf, minimalConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			t.Run("inverse case", func(t *testing.T) {
				_, err = LoadSources(LoadOptions{AllowPythonMultilineValues: true}, notFoundConf)
				require.Error(t, err)
			})
		})

		t.Run("insensitive to section and key names", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true, Insensitive: true}, minimalConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "u@gogs.io", f.Section("Author").Key("e-mail").String())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `[author]
e-mail = u@gogs.io
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true}, minimalConf)
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Empty(t, f.Section("Author").Key("e-mail").String())
			})
		})

		t.Run("insensitive to sections and sensitive to key names", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{InsensitiveSections: true}, minimalConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "u@gogs.io", f.Section("Author").Key("E-MAIL").String())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `[author]
E-MAIL = u@gogs.io
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{}, minimalConf)
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Empty(t, f.Section("Author").Key("e-mail").String())
			})
		})

		t.Run("sensitive to sections and insensitive to key names", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{InsensitiveKeys: true}, minimalConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "u@gogs.io", f.Section("author").Key("e-mail").String())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `[author]
e-mail = u@gogs.io
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{}, minimalConf)
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Empty(t, f.Section("Author").Key("e-mail").String())
			})
		})

		t.Run("ignore continuation lines", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: true,
				IgnoreContinuation:         true,
			}, []byte(`
key1=a\b\
key2=c\d\
key3=value`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `a\b\`, f.Section("").Key("key1").String())
			assert.Equal(t, `c\d\`, f.Section("").Key("key2").String())
			assert.Equal(t, "value", f.Section("").Key("key3").String())

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true}, []byte(`
key1=a\b\
key2=c\d\`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, `a\bkey2=c\d`, f.Section("").Key("key1").String())
			})
		})

		t.Run("ignore inline comments", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: true,
				IgnoreInlineComment:        true,
			}, []byte(`
key1=value ;comment
key2=value2 #comment2
key3=val#ue #comment3`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `value ;comment`, f.Section("").Key("key1").String())
			assert.Equal(t, `value2 #comment2`, f.Section("").Key("key2").String())
			assert.Equal(t, `val#ue #comment3`, f.Section("").Key("key3").String())

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true}, []byte(`
key1=value ;comment
key2=value2 #comment2`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, `value`, f.Section("").Key("key1").String())
				assert.Equal(t, `;comment`, f.Section("").Key("key1").Comment)
				assert.Equal(t, `value2`, f.Section("").Key("key2").String())
				assert.Equal(t, `#comment2`, f.Section("").Key("key2").Comment)
			})
		})

		t.Run("skip unrecognizable lines", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				SkipUnrecognizableLines: true,
			}, []byte(`
GenerationDepth: 13

BiomeRarityScale: 100

################
# Biome Groups #
################

BiomeGroup(NormalBiomes, 3, 99, RoofedForestEnchanted, ForestSakura, FloatingJungle
BiomeGroup(IceBiomes, 4, 85, Ice Plains)

= RainForest
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "13", f.Section("").Key("GenerationDepth").String())
			assert.Equal(t, "100", f.Section("").Key("BiomeRarityScale").String())
			assert.False(t, f.Section("").HasKey("BiomeGroup"))
		})

		t.Run("allow boolean type keys", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: true,
				AllowBooleanKeys:           true,
			}, []byte(`
key1=hello
#key2
key3`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, []string{"key1", "key3"}, f.Section("").KeyStrings())
			assert.True(t, f.Section("").Key("key3").MustBool(false))

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `key1 = hello
# key2
key3
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				_, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true}, []byte(`
key1=hello
#key2
key3`))
				require.Error(t, err)
			})
		})

		t.Run("allow shadow keys", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{AllowShadows: true, AllowPythonMultilineValues: true}, []byte(`
[remote "origin"]
url = https://github.com/Antergone/test1.git
url = https://github.com/Antergone/test2.git
fetch = +refs/heads/*:refs/remotes/origin/*`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "https://github.com/Antergone/test1.git", f.Section(`remote "origin"`).Key("url").String())
			assert.Equal(
				t,
				[]string{
					"https://github.com/Antergone/test1.git",
					"https://github.com/Antergone/test2.git",
				},
				f.Section(`remote "origin"`).Key("url").ValueWithShadows(),
			)
			assert.Equal(t, "+refs/heads/*:refs/remotes/origin/*", f.Section(`remote "origin"`).Key("fetch").String())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `[remote "origin"]
url   = https://github.com/Antergone/test1.git
url   = https://github.com/Antergone/test2.git
fetch = +refs/heads/*:refs/remotes/origin/*
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true}, []byte(`
[remote "origin"]
url = https://github.com/Antergone/test1.git
url = https://github.com/Antergone/test2.git`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, "https://github.com/Antergone/test2.git", f.Section(`remote "origin"`).Key("url").String())
			})
		})

		t.Run("unescape double quotes inside value", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: true,
				UnescapeValueDoubleQuotes:  true,
			}, []byte(`
create_repo="创建了仓库 <a href=\"%s\">%s</a>"`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `创建了仓库 <a href="%s">%s</a>`, f.Section("").Key("create_repo").String())

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true}, []byte(`
create_repo="创建了仓库 <a href=\"%s\">%s</a>"`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, `"创建了仓库 <a href=\"%s\">%s</a>"`, f.Section("").Key("create_repo").String())
			})
		})

		t.Run("unescape comment symbols inside value", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues:  true,
				IgnoreInlineComment:         true,
				UnescapeValueCommentSymbols: true,
			}, []byte(`
key = test value <span style="color: %s\; background: %s">more text</span>
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `test value <span style="color: %s; background: %s">more text</span>`, f.Section("").Key("key").String())
		})

		t.Run("can parse small python-compatible INI files", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: true,
				Insensitive:                true,
				UnparseableSections:        []string{"core_lesson", "comments"},
			}, []byte(`
[long]
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
  foo
  bar
  foobar
  barfoo
  -----END RSA PRIVATE KEY-----
multiline_list =
  first
  second
  third
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "-----BEGIN RSA PRIVATE KEY-----\n  foo\n  bar\n  foobar\n  barfoo\n  -----END RSA PRIVATE KEY-----", f.Section("long").Key("long_rsa_private_key").String())
			assert.Equal(t, "\n  first\n  second\n  third", f.Section("long").Key("multiline_list").String())
		})

		t.Run("can parse big python-compatible INI files", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: true,
				Insensitive:                true,
				UnparseableSections:        []string{"core_lesson", "comments"},
			}, []byte(`
[long]
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
   1foo
   2bar
   3foobar
   4barfoo
   5foo
   6bar
   7foobar
   8barfoo
   9foo
   10bar
   11foobar
   12barfoo
   13foo
   14bar
   15foobar
   16barfoo
   17foo
   18bar
   19foobar
   20barfoo
   21foo
   22bar
   23foobar
   24barfoo
   25foo
   26bar
   27foobar
   28barfoo
   29foo
   30bar
   31foobar
   32barfoo
   33foo
   34bar
   35foobar
   36barfoo
   37foo
   38bar
   39foobar
   40barfoo
   41foo
   42bar
   43foobar
   44barfoo
   45foo
   46bar
   47foobar
   48barfoo
   49foo
   50bar
   51foobar
   52barfoo
   53foo
   54bar
   55foobar
   56barfoo
   57foo
   58bar
   59foobar
   60barfoo
   61foo
   62bar
   63foobar
   64barfoo
   65foo
   66bar
   67foobar
   68barfoo
   69foo
   70bar
   71foobar
   72barfoo
   73foo
   74bar
   75foobar
   76barfoo
   77foo
   78bar
   79foobar
   80barfoo
   81foo
   82bar
   83foobar
   84barfoo
   85foo
   86bar
   87foobar
   88barfoo
   89foo
   90bar
   91foobar
   92barfoo
   93foo
   94bar
   95foobar
   96barfoo
   -----END RSA PRIVATE KEY-----
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `-----BEGIN RSA PRIVATE KEY-----
   1foo
   2bar
   3foobar
   4barfoo
   5foo
   6bar
   7foobar
   8barfoo
   9foo
   10bar
   11foobar
   12barfoo
   13foo
   14bar
   15foobar
   16barfoo
   17foo
   18bar
   19foobar
   20barfoo
   21foo
   22bar
   23foobar
   24barfoo
   25foo
   26bar
   27foobar
   28barfoo
   29foo
   30bar
   31foobar
   32barfoo
   33foo
   34bar
   35foobar
   36barfoo
   37foo
   38bar
   39foobar
   40barfoo
   41foo
   42bar
   43foobar
   44barfoo
   45foo
   46bar
   47foobar
   48barfoo
   49foo
   50bar
   51foobar
   52barfoo
   53foo
   54bar
   55foobar
   56barfoo
   57foo
   58bar
   59foobar
   60barfoo
   61foo
   62bar
   63foobar
   64barfoo
   65foo
   66bar
   67foobar
   68barfoo
   69foo
   70bar
   71foobar
   72barfoo
   73foo
   74bar
   75foobar
   76barfoo
   77foo
   78bar
   79foobar
   80barfoo
   81foo
   82bar
   83foobar
   84barfoo
   85foo
   86bar
   87foobar
   88barfoo
   89foo
   90bar
   91foobar
   92barfoo
   93foo
   94bar
   95foobar
   96barfoo
   -----END RSA PRIVATE KEY-----`,
				f.Section("long").Key("long_rsa_private_key").String(),
			)
		})

		t.Run("allow unparsable sections", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: true,
				Insensitive:                true,
				UnparseableSections:        []string{"core_lesson", "comments"},
			}, []byte(`
Lesson_Location = 87
Lesson_Status = C
Score = 3
Time = 00:02:30

[CORE_LESSON]
my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data

[COMMENTS]
<1><L.Slide#2> This slide has the fuel listed in the wrong units <e.1>
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "3", f.Section("").Key("score").String())
			assert.Empty(t, f.Section("").Body())
			assert.Equal(t, `my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data`,
				f.Section("core_lesson").Body(),
			)
			assert.Equal(t, `<1><L.Slide#2> This slide has the fuel listed in the wrong units <e.1>`, f.Section("comments").Body())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `lesson_location = 87
lesson_status   = C
score           = 3
time            = 00:02:30

[core_lesson]
my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data

[comments]
<1><L.Slide#2> This slide has the fuel listed in the wrong units <e.1>
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				_, err := LoadSources(LoadOptions{AllowPythonMultilineValues: true}, []byte(`
[CORE_LESSON]
my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data`))
				require.Error(t, err)
			})
		})

		t.Run("and false `SpaceBeforeInlineComment`", func(t *testing.T) {
			t.Run("cannot parse INI files containing `#` or `;` in value", func(t *testing.T) {
				f, err := LoadSources(
					LoadOptions{AllowPythonMultilineValues: false, SpaceBeforeInlineComment: false},
					[]byte(`
[author]
NAME = U#n#k#n#w#o#n
GITHUB = U;n;k;n;w;o;n
`))
				require.NoError(t, err)
				require.NotNil(t, f)
				sec := f.Section("author")
				nameValue := sec.Key("NAME").String()
				githubValue := sec.Key("GITHUB").String()
				assert.Equal(t, "U", nameValue)
				assert.Equal(t, "U", githubValue)
			})
		})

		t.Run("and true `SpaceBeforeInlineComment`", func(t *testing.T) {
			t.Run("can parse INI files containing `#` or `;` in value", func(t *testing.T) {
				f, err := LoadSources(
					LoadOptions{AllowPythonMultilineValues: false, SpaceBeforeInlineComment: true},
					[]byte(`
[author]
NAME = U#n#k#n#w#o#n
GITHUB = U;n;k;n;w;o;n
`))
				require.NoError(t, err)
				require.NotNil(t, f)
				sec := f.Section("author")
				nameValue := sec.Key("NAME").String()
				githubValue := sec.Key("GITHUB").String()
				assert.Equal(t, "U#n#k#n#w#o#n", nameValue)
				assert.Equal(t, "U;n;k;n;w;o;n", githubValue)
			})
		})
	})

	t.Run("with false `AllowPythonMultilineValues`", func(t *testing.T) {
		t.Run("ignore nonexistent files", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: false,
				Loose:                      true,
			}, notFoundConf, minimalConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			t.Run("inverse case", func(t *testing.T) {
				_, err = LoadSources(LoadOptions{
					AllowPythonMultilineValues: false,
				}, notFoundConf)
				require.Error(t, err)
			})
		})

		t.Run("insensitive to section and key names", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: false,
				Insensitive:                true,
			}, minimalConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "u@gogs.io", f.Section("Author").Key("e-mail").String())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `[author]
e-mail = u@gogs.io
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{
					AllowPythonMultilineValues: false,
				}, minimalConf)
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Empty(t, f.Section("Author").Key("e-mail").String())
			})
		})

		t.Run("ignore continuation lines", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: false,
				IgnoreContinuation:         true,
			}, []byte(`
key1=a\b\
key2=c\d\
key3=value`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `a\b\`, f.Section("").Key("key1").String())
			assert.Equal(t, `c\d\`, f.Section("").Key("key2").String())
			assert.Equal(t, "value", f.Section("").Key("key3").String())

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
key1=a\b\
key2=c\d\`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, `a\bkey2=c\d`, f.Section("").Key("key1").String())
			})
		})

		t.Run("ignore inline comments", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: false,
				IgnoreInlineComment:        true,
			}, []byte(`
key1=value ;comment
key2=value2 #comment2
key3=val#ue #comment3`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `value ;comment`, f.Section("").Key("key1").String())
			assert.Equal(t, `value2 #comment2`, f.Section("").Key("key2").String())
			assert.Equal(t, `val#ue #comment3`, f.Section("").Key("key3").String())

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
key1=value ;comment
key2=value2 #comment2`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, `value`, f.Section("").Key("key1").String())
				assert.Equal(t, `;comment`, f.Section("").Key("key1").Comment)
				assert.Equal(t, `value2`, f.Section("").Key("key2").String())
				assert.Equal(t, `#comment2`, f.Section("").Key("key2").Comment)
			})
		})

		t.Run("allow boolean type keys", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: false,
				AllowBooleanKeys:           true,
			}, []byte(`
key1=hello
#key2
key3`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, []string{"key1", "key3"}, f.Section("").KeyStrings())
			assert.True(t, f.Section("").Key("key3").MustBool(false))

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `key1 = hello
# key2
key3
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				_, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
key1=hello
#key2
key3`))
				require.Error(t, err)
			})
		})

		t.Run("allow shadow keys", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false, AllowShadows: true}, []byte(`
[remote "origin"]
url = https://github.com/Antergone/test1.git
url = https://github.com/Antergone/test2.git
fetch = +refs/heads/*:refs/remotes/origin/*`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "https://github.com/Antergone/test1.git", f.Section(`remote "origin"`).Key("url").String())
			assert.Equal(
				t,
				[]string{
					"https://github.com/Antergone/test1.git",
					"https://github.com/Antergone/test2.git",
				},
				f.Section(`remote "origin"`).Key("url").ValueWithShadows(),
			)
			assert.Equal(t, "+refs/heads/*:refs/remotes/origin/*", f.Section(`remote "origin"`).Key("fetch").String())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `[remote "origin"]
url   = https://github.com/Antergone/test1.git
url   = https://github.com/Antergone/test2.git
fetch = +refs/heads/*:refs/remotes/origin/*
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
[remote "origin"]
url = https://github.com/Antergone/test1.git
url = https://github.com/Antergone/test2.git`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, "https://github.com/Antergone/test2.git", f.Section(`remote "origin"`).Key("url").String())
			})
		})

		t.Run("unescape double quotes inside value", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: false,
				UnescapeValueDoubleQuotes:  true,
			}, []byte(`
create_repo="创建了仓库 <a href=\"%s\">%s</a>"`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `创建了仓库 <a href="%s">%s</a>`, f.Section("").Key("create_repo").String())

			t.Run("inverse case", func(t *testing.T) {
				f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
create_repo="创建了仓库 <a href=\"%s\">%s</a>"`))
				require.NoError(t, err)
				require.NotNil(t, f)

				assert.Equal(t, `"创建了仓库 <a href=\"%s\">%s</a>"`, f.Section("").Key("create_repo").String())
			})
		})

		t.Run("unescape comment symbols inside value", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues:  false,
				IgnoreInlineComment:         true,
				UnescapeValueCommentSymbols: true,
			}, []byte(`
key = test value <span style="color: %s\; background: %s">more text</span>
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, `test value <span style="color: %s; background: %s">more text</span>`, f.Section("").Key("key").String())
		})

		t.Run("cannot parse small python-compatible INI files", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
[long]
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
  foo
  bar
  foobar
  barfoo
  -----END RSA PRIVATE KEY-----
`))
			require.Error(t, err)
			assert.Nil(t, f)
			assert.Equal(t, "key-value delimiter not found: foo\n", err.Error())
		})

		t.Run("cannot parse big python-compatible INI files", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
[long]
long_rsa_private_key = -----BEGIN RSA PRIVATE KEY-----
  1foo
  2bar
  3foobar
  4barfoo
  5foo
  6bar
  7foobar
  8barfoo
  9foo
  10bar
  11foobar
  12barfoo
  13foo
  14bar
  15foobar
  16barfoo
  17foo
  18bar
  19foobar
  20barfoo
  21foo
  22bar
  23foobar
  24barfoo
  25foo
  26bar
  27foobar
  28barfoo
  29foo
  30bar
  31foobar
  32barfoo
  33foo
  34bar
  35foobar
  36barfoo
  37foo
  38bar
  39foobar
  40barfoo
  41foo
  42bar
  43foobar
  44barfoo
  45foo
  46bar
  47foobar
  48barfoo
  49foo
  50bar
  51foobar
  52barfoo
  53foo
  54bar
  55foobar
  56barfoo
  57foo
  58bar
  59foobar
  60barfoo
  61foo
  62bar
  63foobar
  64barfoo
  65foo
  66bar
  67foobar
  68barfoo
  69foo
  70bar
  71foobar
  72barfoo
  73foo
  74bar
  75foobar
  76barfoo
  77foo
  78bar
  79foobar
  80barfoo
  81foo
  82bar
  83foobar
  84barfoo
  85foo
  86bar
  87foobar
  88barfoo
  89foo
  90bar
  91foobar
  92barfoo
  93foo
  94bar
  95foobar
  96barfoo
  -----END RSA PRIVATE KEY-----
`))
			require.Error(t, err)
			assert.Nil(t, f)
			assert.Equal(t, "key-value delimiter not found: 1foo\n", err.Error())
		})

		t.Run("allow unparsable sections", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{
				AllowPythonMultilineValues: false,
				Insensitive:                true,
				UnparseableSections:        []string{"core_lesson", "comments"},
			}, []byte(`
Lesson_Location = 87
Lesson_Status = C
Score = 3
Time = 00:02:30

[CORE_LESSON]
my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data

[COMMENTS]
<1><L.Slide#2> This slide has the fuel listed in the wrong units <e.1>
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			assert.Equal(t, "3", f.Section("").Key("score").String())
			assert.Empty(t, f.Section("").Body())
			assert.Equal(t, `my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data`,
				f.Section("core_lesson").Body(),
			)
			assert.Equal(t, `<1><L.Slide#2> This slide has the fuel listed in the wrong units <e.1>`, f.Section("comments").Body())

			t.Run("write out", func(t *testing.T) {
				var buf bytes.Buffer
				_, err := f.WriteTo(&buf)
				require.NoError(t, err)
				assert.Equal(t, `lesson_location = 87
lesson_status   = C
score           = 3
time            = 00:02:30

[core_lesson]
my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data

[comments]
<1><L.Slide#2> This slide has the fuel listed in the wrong units <e.1>
`,
					buf.String(),
				)
			})

			t.Run("inverse case", func(t *testing.T) {
				_, err := LoadSources(LoadOptions{AllowPythonMultilineValues: false}, []byte(`
[CORE_LESSON]
my lesson state data – 1111111111111111111000000000000000001110000
111111111111111111100000000000111000000000 – end my lesson state data`))
				require.Error(t, err)
			})
		})

		t.Run("and false `SpaceBeforeInlineComment`", func(t *testing.T) {
			t.Run("cannot parse INI files containing `#` or `;` in value", func(t *testing.T) {
				f, err := LoadSources(
					LoadOptions{AllowPythonMultilineValues: true, SpaceBeforeInlineComment: false},
					[]byte(`
[author]
NAME = U#n#k#n#w#o#n
GITHUB = U;n;k;n;w;o;n
`))
				require.NoError(t, err)
				require.NotNil(t, f)
				sec := f.Section("author")
				nameValue := sec.Key("NAME").String()
				githubValue := sec.Key("GITHUB").String()
				assert.Equal(t, "U", nameValue)
				assert.Equal(t, "U", githubValue)
			})
		})

		t.Run("and true `SpaceBeforeInlineComment`", func(t *testing.T) {
			t.Run("can parse INI files containing `#` or `;` in value", func(t *testing.T) {
				f, err := LoadSources(
					LoadOptions{AllowPythonMultilineValues: true, SpaceBeforeInlineComment: true},
					[]byte(`
[author]
NAME = U#n#k#n#w#o#n
GITHUB = U;n;k;n;w;o;n
`))
				require.NoError(t, err)
				require.NotNil(t, f)
				sec := f.Section("author")
				nameValue := sec.Key("NAME").String()
				githubValue := sec.Key("GITHUB").String()
				assert.Equal(t, "U#n#k#n#w#o#n", nameValue)
				assert.Equal(t, "U;n;k;n;w;o;n", githubValue)
			})
		})
	})

	t.Run("with `ChildSectionDelimiter` ':'", func(t *testing.T) {
		t.Run("get all keys of parent sections", func(t *testing.T) {
			f := Empty(LoadOptions{ChildSectionDelimiter: ":"})
			require.NotNil(t, f)

			k, err := f.Section("package").NewKey("NAME", "ini")
			require.NoError(t, err)
			assert.NotNil(t, k)
			k, err = f.Section("package").NewKey("VERSION", "v1")
			require.NoError(t, err)
			assert.NotNil(t, k)
			k, err = f.Section("package").NewKey("IMPORT_PATH", "gopkg.in/ini.v1")
			require.NoError(t, err)
			assert.NotNil(t, k)

			keys := f.Section("package:sub:sub2").ParentKeys()
			names := []string{"NAME", "VERSION", "IMPORT_PATH"}
			assert.Equal(t, len(names), len(keys))
			for i, name := range names {
				assert.Equal(t, name, keys[i].Name())
			}
		})

		t.Run("getting and setting values", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{ChildSectionDelimiter: ":"}, fullConf)
			require.NoError(t, err)
			require.NotNil(t, f)

			t.Run("get parent-keys that are available to the child section", func(t *testing.T) {
				parentKeys := f.Section("package:sub").ParentKeys()
				assert.NotNil(t, parentKeys)
				for _, k := range parentKeys {
					assert.Equal(t, "CLONE_URL", k.Name())
				}
			})

			t.Run("get parent section value", func(t *testing.T) {
				assert.Equal(t, "https://gopkg.in/ini.v1", f.Section("package:sub").Key("CLONE_URL").String())
				assert.Equal(t, "https://gopkg.in/ini.v1", f.Section("package:fake:sub").Key("CLONE_URL").String())
			})
		})

		t.Run("get child sections by parent name", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{ChildSectionDelimiter: ":"}, []byte(`
[node]
[node:biz1]
[node:biz2]
[node.biz3]
[node.bizN]
`))
			require.NoError(t, err)
			require.NotNil(t, f)

			children := f.ChildSections("node")
			names := []string{"node:biz1", "node:biz2"}
			assert.Equal(t, len(names), len(children))
			for i, name := range names {
				assert.Equal(t, name, children[i].Name())
			}
		})
	})

	t.Run("ShortCircuit", func(t *testing.T) {
		t.Run("load the first available configuration, ignore other configuration", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{ShortCircuit: true}, minimalConf, []byte(`key1 = value1`))
			require.NotNil(t, f)
			require.NoError(t, err)
			var buf bytes.Buffer
			_, err = f.WriteTo(&buf)
			require.NoError(t, err)
			assert.Equal(t, `[author]
E-MAIL = u@gogs.io
`,
				buf.String(),
			)
		})

		t.Run("return an error when fail to load", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{ShortCircuit: true}, notFoundConf, minimalConf)
			assert.Nil(t, f)
			require.Error(t, err)
		})

		t.Run("used with Loose to ignore errors that the file does not exist", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{ShortCircuit: true, Loose: true}, notFoundConf, minimalConf)
			require.NotNil(t, f)
			require.NoError(t, err)
			var buf bytes.Buffer
			_, err = f.WriteTo(&buf)
			require.NoError(t, err)
			assert.Equal(t, `[author]
E-MAIL = u@gogs.io
`,
				buf.String(),
			)
		})

		t.Run("ensure all sources are loaded without ShortCircuit", func(t *testing.T) {
			f, err := LoadSources(LoadOptions{ShortCircuit: false}, minimalConf, []byte(`key1 = value1`))
			require.NotNil(t, f)
			require.NoError(t, err)
			var buf bytes.Buffer
			_, err = f.WriteTo(&buf)
			require.NoError(t, err)
			assert.Equal(t, `key1 = value1

[author]
E-MAIL = u@gogs.io
`,
				buf.String(),
			)
		})
	})
}

func Test_KeyValueDelimiters(t *testing.T) {
	t.Run("custom key-value delimiters", func(t *testing.T) {
		f, err := LoadSources(LoadOptions{
			KeyValueDelimiters: "?!",
		}, []byte(`
[section]
key1?value1
key2!value2
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "value1", f.Section("section").Key("key1").String())
		assert.Equal(t, "value2", f.Section("section").Key("key2").String())
	})
}

func Test_PreserveSurroundedQuote(t *testing.T) {
	t.Run("preserve surrounded quote test", func(t *testing.T) {
		f, err := LoadSources(LoadOptions{
			PreserveSurroundedQuote: true,
		}, []byte(`
[section]
key1 = "value1"
key2 = value2
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "\"value1\"", f.Section("section").Key("key1").String())
		assert.Equal(t, "value2", f.Section("section").Key("key2").String())
	})

	t.Run("preserve surrounded quote test inverse test", func(t *testing.T) {
		f, err := LoadSources(LoadOptions{
			PreserveSurroundedQuote: false,
		}, []byte(`
[section]
key1 = "value1"
key2 = value2
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "value1", f.Section("section").Key("key1").String())
		assert.Equal(t, "value2", f.Section("section").Key("key2").String())
	})
}

type testData struct {
	Value1 string `ini:"value1"`
	Value2 string `ini:"value2"`
	Value3 string `ini:"value3"`
}

func TestPythonMultiline(t *testing.T) {
	if runtime.GOOS == "windows" {
		t.Skip("Skipping testing on Windows")
	}

	path := filepath.Join("testdata", "multiline.ini")
	f, err := LoadSources(LoadOptions{
		AllowPythonMultilineValues: true,
		ReaderBufferSize:           64 * 1024,
	}, path)
	require.NoError(t, err)
	require.NotNil(t, f)
	assert.Len(t, f.Sections(), 1)

	defaultSection := f.Section("")
	assert.NotNil(t, f.Section(""))

	var testData testData
	err = defaultSection.MapTo(&testData)
	require.NoError(t, err)
	assert.Equal(t, "some text here\n\tsome more text here\n\t\n\tthere is an empty line above and below\n\t", testData.Value1)
	assert.Equal(t, "there is an empty line above\n    that is not indented so it should not be part\n    of the value", testData.Value2)
	assert.Equal(t, `.
 
 Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Eu consequat ac felis donec et odio pellentesque diam volutpat. Mauris commodo quis imperdiet massa tincidunt nunc. Interdum velit euismod in pellentesque. Nisl condimentum id venenatis a condimentum vitae sapien pellentesque. Nascetur ridiculus mus mauris vitae. Posuere urna nec tincidunt praesent semper feugiat. Lorem donec massa sapien faucibus et molestie ac feugiat sed. Ipsum dolor sit amet consectetur adipiscing elit. Enim sed faucibus turpis in eu mi. A diam sollicitudin tempor id. Quam nulla porttitor massa id neque aliquam vestibulum morbi blandit.
 
 Lectus sit amet est placerat in egestas. At risus viverra adipiscing at in tellus integer. Tristique senectus et netus et malesuada fames ac. In hac habitasse platea dictumst. Purus in mollis nunc sed. Pellentesque sit amet porttitor eget dolor morbi. Elit at imperdiet dui accumsan sit amet nulla. Cursus in hac habitasse platea dictumst. Bibendum arcu vitae elementum curabitur. Faucibus ornare suspendisse sed nisi lacus. In vitae turpis massa sed. Libero nunc consequat interdum varius sit amet. Molestie a iaculis at erat pellentesque.
 
 Dui faucibus in ornare quam viverra orci sagittis eu. Purus in mollis nunc sed id semper. Sed arcu non odio euismod lacinia at. Quis commodo odio aenean sed adipiscing diam donec. Quisque id diam vel quam elementum pulvinar. Lorem ipsum dolor sit amet. Purus ut faucibus pulvinar elementum integer enim neque volutpat ac. Fermentum posuere urna nec tincidunt praesent semper feugiat nibh sed. Gravida rutrum quisque non tellus orci. Ipsum dolor sit amet consectetur adipiscing elit pellentesque habitant. Et sollicitudin ac orci phasellus egestas tellus rutrum tellus pellentesque. Eget gravida cum sociis natoque penatibus et magnis. Elementum eu facilisis sed odio morbi quis commodo. Mollis nunc sed id semper risus in hendrerit gravida rutrum. Lorem dolor sed viverra ipsum.
 
 Pellentesque adipiscing commodo elit at imperdiet dui accumsan sit amet. Justo eget magna fermentum iaculis eu non diam. Condimentum mattis pellentesque id nibh tortor id aliquet lectus. Tellus molestie nunc non blandit massa enim. Mauris ultrices eros in cursus turpis. Purus viverra accumsan in nisl nisi scelerisque. Quis lectus nulla at volutpat. Purus ut faucibus pulvinar elementum integer enim. In pellentesque massa placerat duis ultricies lacus sed turpis. Elit sed vulputate mi sit amet mauris commodo. Tellus elementum sagittis vitae et. Duis tristique sollicitudin nibh sit amet commodo nulla facilisi nullam. Lectus vestibulum mattis ullamcorper velit sed ullamcorper morbi tincidunt ornare. Libero id faucibus nisl tincidunt eget nullam. Mattis aliquam faucibus purus in massa tempor. Fames ac turpis egestas sed tempus urna. Gravida in fermentum et sollicitudin ac orci phasellus egestas.
 
 Blandit turpis cursus in hac habitasse. Sed id semper risus in. Amet porttitor eget dolor morbi non arcu. Rhoncus est pellentesque elit ullamcorper dignissim cras tincidunt. Ut morbi tincidunt augue interdum velit. Lorem mollis aliquam ut porttitor leo a. Nunc eget lorem dolor sed viverra. Scelerisque mauris pellentesque pulvinar pellentesque. Elit at imperdiet dui accumsan sit amet. Eget magna fermentum iaculis eu non diam phasellus vestibulum lorem. Laoreet non curabitur gravida arcu ac tortor dignissim. Tortor pretium viverra suspendisse potenti nullam ac tortor vitae purus. Lacus sed viverra tellus in hac habitasse platea dictumst vestibulum. Viverra adipiscing at in tellus. Duis at tellus at urna condimentum. Eget gravida cum sociis natoque penatibus et magnis dis parturient. Pharetra massa massa ultricies mi quis hendrerit.
 
 Mauris pellentesque pulvinar pellentesque habitant morbi tristique. Maecenas volutpat blandit aliquam etiam. Sed turpis tincidunt id aliquet. Eget duis at tellus at urna condimentum. Pellentesque habitant morbi tristique senectus et. Amet aliquam id diam maecenas. Volutpat est velit egestas dui id. Vulputate eu scelerisque felis imperdiet proin fermentum leo vel orci. Massa sed elementum tempus egestas sed sed risus pretium. Quam quisque id diam vel quam elementum pulvinar etiam non. Sapien faucibus et molestie ac. Ipsum dolor sit amet consectetur adipiscing. Viverra orci sagittis eu volutpat. Leo urna molestie at elementum. Commodo viverra maecenas accumsan lacus. Non sodales neque sodales ut etiam sit amet. Habitant morbi tristique senectus et netus et malesuada fames. Habitant morbi tristique senectus et netus et malesuada. Blandit aliquam etiam erat velit scelerisque in. Varius duis at consectetur lorem donec massa sapien faucibus et.
 
 Augue mauris augue neque gravida in. Odio ut sem nulla pharetra diam sit amet nisl suscipit. Nulla aliquet enim tortor at auctor urna nunc id. Morbi tristique senectus et netus et malesuada fames ac. Quam id leo in vitae turpis massa sed elementum tempus. Ipsum faucibus vitae aliquet nec ullamcorper sit amet risus nullam. Maecenas volutpat blandit aliquam etiam erat velit scelerisque in. Sagittis nisl rhoncus mattis rhoncus urna neque viverra justo. Massa tempor nec feugiat nisl pretium. Vulputate sapien nec sagittis aliquam malesuada bibendum arcu vitae elementum. Enim lobortis scelerisque fermentum dui faucibus in ornare. Faucibus ornare suspendisse sed nisi lacus. Morbi tristique senectus et netus et malesuada fames. Malesuada pellentesque elit eget gravida cum sociis natoque penatibus et. Dictum non consectetur a erat nam at. Leo urna molestie at elementum eu facilisis sed odio morbi. Quam id leo in vitae turpis massa. Neque egestas congue quisque egestas diam in arcu. Varius morbi enim nunc faucibus a pellentesque sit. Aliquet enim tortor at auctor urna.
 
 Elit scelerisque mauris pellentesque pulvinar pellentesque habitant morbi tristique. Luctus accumsan tortor posuere ac. Eu ultrices vitae auctor eu augue ut lectus arcu bibendum. Pretium nibh ipsum consequat nisl vel pretium lectus. Aliquam etiam erat velit scelerisque in dictum. Sem et tortor consequat id porta nibh venenatis cras sed. A scelerisque purus semper eget duis at tellus at urna. At auctor urna nunc id. Ornare quam viverra orci sagittis eu volutpat odio. Nisl purus in mollis nunc sed id semper. Ornare suspendisse sed nisi lacus sed. Consectetur lorem donec massa sapien faucibus et. Ipsum dolor sit amet consectetur adipiscing elit ut. Porta nibh venenatis cras sed. Dignissim diam quis enim lobortis scelerisque. Quam nulla porttitor massa id. Tellus molestie nunc non blandit massa.
 
 Malesuada fames ac turpis egestas. Suscipit tellus mauris a diam maecenas. Turpis in eu mi bibendum neque egestas. Venenatis tellus in metus vulputate eu scelerisque felis imperdiet. Quis imperdiet massa tincidunt nunc pulvinar sapien et. Urna duis convallis convallis tellus id. Velit egestas dui id ornare arcu odio. Consectetur purus ut faucibus pulvinar elementum integer enim neque. Aenean sed adipiscing diam donec adipiscing tristique. Tortor aliquam nulla facilisi cras fermentum odio eu. Diam in arcu cursus euismod quis viverra nibh cras.
 
 Id ornare arcu odio ut sem. Arcu dictum varius duis at consectetur lorem donec massa sapien. Proin libero nunc consequat interdum varius sit. Ut eu sem integer vitae justo. Vitae elementum curabitur vitae nunc. Diam quam nulla porttitor massa. Lectus mauris ultrices eros in cursus turpis massa tincidunt dui. Natoque penatibus et magnis dis parturient montes. Pellentesque habitant morbi tristique senectus et netus et malesuada fames. Libero nunc consequat interdum varius sit. Rhoncus dolor purus non enim praesent. Pellentesque sit amet porttitor eget. Nibh tortor id aliquet lectus proin nibh. Fermentum iaculis eu non diam phasellus vestibulum lorem sed.
 
 Eu feugiat pretium nibh ipsum consequat nisl vel pretium lectus. Habitant morbi tristique senectus et netus et malesuada fames ac. Urna condimentum mattis pellentesque id. Lorem sed risus ultricies tristique nulla aliquet enim tortor at. Ipsum dolor sit amet consectetur adipiscing elit. Convallis a cras semper auctor neque vitae tempus quam. A diam sollicitudin tempor id eu nisl nunc mi ipsum. Maecenas sed enim ut sem viverra aliquet eget. Massa enim nec dui nunc mattis enim. Nam aliquam sem et tortor consequat. Adipiscing commodo elit at imperdiet dui accumsan sit amet nulla. Nullam eget felis eget nunc lobortis. Mauris a diam maecenas sed enim ut sem viverra. Ornare massa eget egestas purus. In hac habitasse platea dictumst. Ut tortor pretium viverra suspendisse potenti nullam ac tortor. Nisl nunc mi ipsum faucibus. At varius vel pharetra vel. Mauris ultrices eros in cursus turpis massa tincidunt.`,
		testData.Value3,
	)
}

func TestPythonMultiline_EOF(t *testing.T) {
	if runtime.GOOS == "windows" {
		t.Skip("Skipping testing on Windows")
	}

	path := filepath.Join("testdata", "multiline_eof.ini")
	f, err := LoadSources(LoadOptions{
		AllowPythonMultilineValues: true,
		ReaderBufferSize:           64 * 1024,
	}, path)
	require.NoError(t, err)
	require.NotNil(t, f)
	assert.Len(t, f.Sections(), 1)

	defaultSection := f.Section("")
	assert.NotNil(t, f.Section(""))

	var testData testData
	err = defaultSection.MapTo(&testData)
	require.NoError(t, err)
	assert.Equal(t, "some text here\n\tsome more text here 2", testData.Value1)
}

func Test_NestedValuesSpanningSections(t *testing.T) {
	t.Run("basic nested value", func(t *testing.T) {
		f, err := LoadSources(LoadOptions{
			AllowNestedValues: true,
		}, []byte(`
[section]
key1 = value1
key2 =
  nested1 = nestedvalue1
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "value1", f.Section("section").Key("key1").String())
		assert.Equal(t, "", f.Section("section").Key("key2").String())
		assert.Equal(t, []string{"nested1 = nestedvalue1"}, f.Section("section").Key("key2").NestedValues())
	})

	t.Run("no nested values", func(t *testing.T) {
		f, err := LoadSources(LoadOptions{
			AllowNestedValues: true,
		}, []byte(`
[section]
key1 = value1
key2 =
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "value1", f.Section("section").Key("key1").String())
		assert.Equal(t, "", f.Section("section").Key("key2").String())
	})

	t.Run("no nested values and following sections", func(t *testing.T) {
		f, err := LoadSources(LoadOptions{
			AllowNestedValues: true,
		}, []byte(`
[section]
key1 = value1
key2 =

[section2]
key3 = value3
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "value1", f.Section("section").Key("key1").String())
		assert.Equal(t, "", f.Section("section").Key("key2").String())
		assert.Equal(t, "value3", f.Section("section2").Key("key3").String())
	})

	t.Run("no nested values and following sections with indentation", func(t *testing.T) {
		f, err := LoadSources(LoadOptions{
			AllowNestedValues: true,
		}, []byte(`
[section]
key1 = value1
key2 =

[section2]
  key3 = value3
`))
		require.NoError(t, err)
		require.NotNil(t, f)

		assert.Equal(t, "value1", f.Section("section").Key("key1").String())
		assert.Equal(t, "", f.Section("section").Key("key2").String())
		assert.Equal(t, "value3", f.Section("section2").Key("key3").String())
	})
}