-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconfigparser_test.go
582 lines (492 loc) · 11 KB
/
configparser_test.go
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
package configparser
import (
"bufio"
"log"
"os"
"os/exec"
"strings"
"testing"
)
var gConfig *Configuration
const (
ConfigFilePath = "/tmp/configparser_test.ini"
ConfigFilePathSHA = "b28cf57c4f5a261d2e6810466c0f157392fe11d5"
ConfigNewFilePath = "/tmp/configparser_test_new.ini"
ConfigNewFilePathSHA = "f6e64298eb5c4f0dbd34c720158fdf311e87ccfc"
SectionName1 = "MYSQLD DEFAULT"
SectionName2 = "MONGODB"
SectionName3 = "NDB_MGMD DEFAULT"
SectionNameRegex = "webservers$"
Key1 = "TotalSendBufferMemory"
Key2 = "DefaultOperationRedoProblemAction"
Key3 = "innodb_buffer_pool_size"
Key4 = "innodb_buffer_pool_instances"
Key5 = "datadir"
Key6 = "smallfiles"
ConfigFileContent = `wsrep_provider_options="gcache.size=128M; evs.keepalive_period=PT3S; evs.inactive_check_period=PT10S; evs.suspect_timeout=PT30S; evs.inactive_timeout=PT1M; evs.consensus_timeout=PT1M; evs.send_window=1024; evs.user_send_window=512;"
# global settings
SendBufferMemory = 20M
ReceiveBufferMemory = 20M
[dc1.webservers]
10.10.10.10
20.20.20.20
dc1.backup.local
[dc2.database]
30.30.30.30
40.40.40.40
dc2.standby.local
[dc2.webservers]
30.30.30.30
40.40.40.40
loginURL="https://station.watchdog.com/home"
statsURL="https://station.watchdog.com/stats?cpu=sec"
statsURL2=https://station.watchdog.com/stats?cpu=user&mem=free
[TCP DEFAULT]
#SendBufferMemory=20M
#ReceiveBufferMemory=20M
[NDBD DEFAULT]
NoOfReplicas=2
DataDir=/data/mysql/cluster/dev
FileSystemPath=/data/mysql/cluster/dev
#FileSystemPathDD=
#FileSystemPathDataFiles=
#FileSystemPathUndoFiles=
#BackupDataDir=
#InitialLogFileGroup=name=lg1;undo_buffer_size:64M;undo1.log:64M
#InitialTablespace=name=ts1;extent_size:1M;data1.dat:256M;data2.dat:256M
DataMemory:256M
IndexMemory:32M
DiskPageBufferMemory:64M
SharedGlobalMemory=128M
RedoBuffer=48M
TotalSendBufferMemory=20M
LockPagesInMainMemory=1
Numa=0
RealtimeScheduler=1
MaxNoOfExecutionThreads=4
#LockExecuteThreadToCPU=
#LockMaintThreadsToCPU=
DiskIOThreadPool=2
BuildIndexThreads=2
TwoPassInitialNodeRestartCopy=1
DiskCheckpointSpeedInRestart=100M
DiskCheckpointSpeed=10M
FragmentLogFileSize=256M
NoOfFragmentLogFiles=6
InitFragmentLogFiles=SPARSE
ODirect=1
;CompressedBackup=0
;CompressedLCP=0
Diskless=0
TimeBetweenLocalCheckpoints=20
TimeBetweenGlobalCheckpoints=2000
TimeBetweenEpochs=100
;This parameter defines a timeout for synchronization epochs for MySQL Cluster Replication. If a node fails to participate in a global checkpoint within the time determined by this parameter, the node is shut down
#TimeBetweenEpochsTimeout=4000
# Set in production
#TimeBetweenInactiveTransactionAbortCheck=1000
#TransactionDeadlockDetectionTimeout=1200
#TransactionInactiveTimeout=0
# Might need to increase initial check for large data memory allocations
#TimeBetweenWatchDogCheckInitial = 6000
#TimeBetweenWatchDogCheck= 6000
MaxNoOfConcurrentOperations=250000
MaxNoOfConcurrentScans=500
#MaxNoOfLocalScans=2048
#MaxNoOfConcurrentScans=256 (2-500)
#MaxNoOfLocalScans=numOfDataNodes*MaxNoOfConcurrentScans
# 1-992
#BatchSizePerLocalScan=900
#MaxParallelScansPerFragment=256 (1-1G)
# % of max value
StringMemory=25
MaxNoOfTables=2048
MaxNoOfOrderedIndexes=1024
MaxNoOfUniqueHashIndexes=1024
MaxNoOfAttributes=8192
MaxNoOfTriggers=8192
#MemReportFrequency=10
StartupStatusReportFrequency=10
### Params for setting logging
LogLevelStartup=15
LogLevelShutdown=15
LogLevelCheckpoint=8
LogLevelNodeRestart=15
LogLevelCongestion=15
LogLevelStatistic=15
### Params for increasing Disk throughput
BackupDataBufferSize=16M
BackupLogBufferSize=16M
BackupMemory=32M
#If BackupDataBufferSize and BackupLogBufferSize taken together exceed the default value for BackupMemory, then this parameter must be set explicitly in the config.ini file to their sum.
BackupWriteSize=256K
BackupMaxWriteSize=1M
BackupReportFrequency=10
### CGE 6.3 - REALTIME EXTENSIONS
#RealTimeScheduler=1
#SchedulerExecutionTimer=80
#SchedulerSpinTimer=40
RedoOverCommitCounter=3
RedoOverCommitLimit=20
StartFailRetryDelay=0
MaxStartFailRetries=3
[NDB_MGMD DEFAULT]
PortNumber=1186
DataDir=/data/mysql/cluster/dev
#MaxNoOfSavedEvents=100
TotalSendBufferMemory=4M
[NDB_MGMD]
NodeId=1
HostName=localhost
PortNumber=1186
ArbitrationRank=1
#[NDB_MGMD]
#NodeId=2
#HostName=localhost
#PortNumber=1187
#ArbitrationRank=1
[NDBD]
NodeId=10
HostName=localhost
#HeartbeatOrder=10
[NDBD]
NodeId=11
HostName=localhost
#HeartbeatOrder=20
[NDBD]
NodeId=12
HostName=localhost
#HeartbeatOrder=20
NodeGroup=65536
[NDBD]
NodeId=13
HostName=localhost
#HeartbeatOrder=20
NodeGroup=65536
[NDBD]
NodeId=14
HostName=localhost
#HeartbeatOrder=20
NodeGroup=65536
[NDBD]
NodeId=15
HostName=localhost
#HeartbeatOrder=20
NodeGroup=65536
#
# Note=The following can be MySQLD connections or
# NDB API application connecting to the cluster
#
[MYSQLD DEFAULT]
TotalSendBufferMemory=10M
DefaultOperationRedoProblemAction=ABORT
#DefaultOperationRedoProblemAction=QUEUE
#BatchByteSize=32K (1024-1M)
# 1-992
#BatchSize=900
#MaxScanBatchSize=256K (32K-16M)
; this is another comment
[MYSQLD]
NodeId=100
HostName=localhost
[API]
NodeId=101
[API]
NodeId=102
[API]
NodeId=103
[API]
NodeId=104
[API]
NodeId=105
[API]
NodeId=106
[API]
NodeId=107
[API]
NodeId=108
[API]
NodeId=109
[API]
NodeId=110
[API]
NodeId=111
[API]
NodeId=200
[API]
NodeId=201
[API]
NodeId=202
[API]
NodeId=203
[API]
NodeId=204
[API]
NodeId=205
[API]
NodeId=206
[API]
NodeId=207
[API]
NodeId=208
[API]
NodeId=209
[API]
NodeId=210
[API]
NodeId=211
[API]
NodeId=212
[API]
NodeId=213
[API]
NodeId=214
[API]
NodeId=215
[API]
NodeId=216
[API]
NodeId=217
[API]
NodeId=218
[API]
NodeId=219
[API]
NodeId=220
[API]
NodeId=221
[API]
NodeId=222
`
)
func TestWriteTestConfigFile(t *testing.T) {
t.Log("Writing test config to" + ConfigFilePath)
f, err := os.Create(ConfigFilePath)
if err != nil {
t.Fatal(err)
}
defer func() {
err = f.Close()
}()
w := bufio.NewWriter(f)
defer func() {
err = w.Flush()
}()
w.WriteString(ConfigFileContent)
}
func TestReadConfigFile(t *testing.T) {
t.Log("Reading test config " + ConfigFilePath)
var err error
gConfig, err = Read(ConfigFilePath)
if err != nil {
t.Fatal(err)
}
t.Log(gConfig)
}
func TestGetSection(t *testing.T) {
s, err := getConfig().Section("NDBD DEFAULT")
if err != nil {
t.Error(err)
}
t.Log(s)
}
func TestGetSections(t *testing.T) {
s, err := getConfig().Sections("NDBD")
if err != nil {
t.Error(err)
}
t.Log(s)
}
func TestSetNewValue(t *testing.T) {
s, err := getConfig().Section(SectionName1)
if err != nil {
t.Error(err)
}
t.Logf("%s=%s\n", Key1, s.ValueOf(Key1))
oldValue := s.SetValueFor(Key1, "512M")
t.Logf("New: %s=%s\n", Key1, s.ValueOf(Key1))
if oldValue == s.ValueOf(Key1) {
t.Error("Unable to change value for key " + s.ValueOf(Key1))
}
}
func TestAddOption(t *testing.T) {
s, err := getConfig().Section(SectionName1)
if err != nil {
t.Error(err)
}
testAddOption(s, Key3, "128G", t)
testAddOption(s, Key4, "16", t)
testAddOption(s, Key3, "64G", t)
testAddOption(s, Key4, "8", t)
}
func TestDeleteOption(t *testing.T) {
s, err := getConfig().Section(SectionName1)
if err != nil {
t.Error(err)
}
testDeleteOption(s, Key2, t)
}
func TestNotExistsOption(t *testing.T) {
s, err := getConfig().Section(SectionName1)
if err != nil {
t.Error(err)
}
if s.Exists("none_existing_key") {
t.Error("none existing key found")
}
}
func TestNewSection(t *testing.T) {
s := getConfig().NewSection(SectionName2)
s.Add(Key5, "/var/lib/mongodb")
s.Add(Key6, "true")
}
func TestGetNewSections(t *testing.T) {
s, err := getConfig().Section(SectionName2)
if err != nil {
t.Error(err)
}
if !s.Exists(Key5) {
t.Error(Key5 + " does not exists")
}
if !s.Exists(Key6) {
t.Error(Key6 + " does not exists")
}
t.Log(s)
}
func TestDeleteSection(t *testing.T) {
c := getConfig()
sections, err := c.Delete(SectionName3)
if err != nil {
t.Error(err)
}
// Verify that the section was deleted.
var section []*Section
section, err = c.Find(SectionName3)
if err != nil {
t.Error(err)
}
if len(section) != 0 {
t.Error("Section not deleted")
}
for _, s := range sections {
t.Log(s)
}
}
// Test removal of the final two sections in the configuration file.
func TestDeleteFinalSections(t *testing.T) {
c := getConfig()
// First, append two sections to the configuration.
sectionName := "FinalSection"
c.NewSection(sectionName)
c.NewSection(sectionName + "2")
// Now remove the sections using a regular expression.
sections, err := c.Delete(sectionName)
if err != nil {
t.Error(err)
}
// Verify that the sections were deleted.
var section []*Section
section, err = c.Find(sectionName)
if err != nil {
t.Error(err)
}
if len(section) != 0 {
t.Error("Section not deleted")
}
for _, s := range sections {
t.Log(s)
}
}
func TestFindSection(t *testing.T) {
c := getConfig()
sections, err := c.Find(SectionNameRegex)
if err != nil {
t.Error(err)
}
for _, s := range sections {
t.Log(s)
}
}
func TestGetPlainURL(t *testing.T) {
s, err := getConfig().Section("dc2.webservers")
if err != nil {
t.Error(err)
}
t.Log("loginuRL=" + s.ValueOf("loginURL"))
if "\"https://station.watchdog.com/home\"" != s.ValueOf("loginURL") {
t.Fatal("loginURL does not match!")
}
}
func TestGetParamURL(t *testing.T) {
s, err := getConfig().Section("dc2.webservers")
if err != nil {
t.Error(err)
}
t.Log("statsURL=" + s.ValueOf("statsURL"))
if "\"https://station.watchdog.com/stats?cpu=sec\"" != s.ValueOf("statsURL") {
t.Fatal("statsURL does not match!")
}
}
func TestGetParamURL2(t *testing.T) {
s, err := getConfig().Section("dc2.webservers")
if err != nil {
t.Error(err)
}
t.Log("statsURL2=" + s.ValueOf("statsURL2"))
if "https://station.watchdog.com/stats?cpu=user&mem=free" != s.ValueOf("statsURL2") {
t.Fatal("statsURL2 does not match!")
}
}
func TestSaveNewConfigFile(t *testing.T) {
c := getConfig()
err := Save(c, ConfigNewFilePath)
if err != nil {
t.Fatal(err)
}
}
func TestSectionString(t *testing.T) {
Delimiter = " = "
s, err := getConfig().Section(SectionName2)
if err != nil {
t.Error(err)
}
expected := `[MONGODB]
datadir = /var/lib/mongodb
smallfiles = true
`
str := s.String()
t.Log(expected)
t.Log(str)
if str != expected {
t.Error("section string doesn't match expected string")
}
}
func TestSHA(t *testing.T) {
out, err := exec.Command("shasum", ConfigNewFilePath).Output()
if err != nil {
t.Fatal(err)
}
sha := strings.Split(string(out), " ")
t.Logf("%v=%v", sha[0], ConfigNewFilePathSHA)
if sha[0] != ConfigNewFilePathSHA {
t.Error(ConfigNewFilePath + " shasum doees not match!")
}
}
func getConfig() *Configuration {
if gConfig == nil {
log.Println("No configuration instance!")
os.Exit(1)
}
return gConfig
}
func testAddOption(s *Section, name string, value string, t *testing.T) {
oldValue := s.Add(name, value)
t.Logf("%s=%s, old value: %s\n", name, s.ValueOf(name), oldValue)
if oldValue == s.ValueOf(name) {
t.Error("Unable to change value for key " + s.ValueOf(name))
}
}
func testDeleteOption(s *Section, name string, t *testing.T) {
oldValue := s.Delete(name)
t.Logf("%s=%s\n", name, oldValue)
}