summaryrefslogtreecommitdiffstats
path: root/src/bin/keactrl/tests/keactrl_tests.sh.in
blob: f4809a14d29080c4b381201b1a6a94f484310e22 (plain)
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
#!/bin/sh

# Copyright (C) 2014-2021 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

# shellcheck disable=SC1091
# SC1091: Not following: ... was not specified as input (see shellcheck -x).

# Exit with error if commands exit with non-zero and if undefined variables are
# used.
set -eu

# Disclaimer: `${keactrl} start` commands use `set +e` / `set -e` instead of
# run_command because
# run_command launches a subshell which inherently waits
# for the background processes started in `${keactrl} start` which don't end
# until explicitly stopped. So the test would freeze if
# run_command would be used.

# Include common test library.
. "@abs_top_builddir@/src/lib/testutils/dhcp_test_lib.sh"

# Set location of the keactrl.
keactrl="@abs_top_builddir@/src/bin/keactrl/keactrl"

# Set the have_netconf flag to know if netconf is available.
if test -z '@HAVE_SYSREPO_TRUE@'; then
    have_netconf=true
else
    have_netconf=false
fi

# Configuration file names need to have two '.' to check proper extension detection.
# This is why the names contain '.conf' followed by the extension which is '.json'
# Names for DHCPv4
DHCP4_CFG_FILE_NAME="dhcp4_test_config.conf"
DHCP4_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${DHCP4_CFG_FILE_NAME}.json"
# Names for DHCPv6
DHCP6_CFG_FILE_NAME="dhcp6_test_config.conf"
DHCP6_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${DHCP6_CFG_FILE_NAME}.json"
# Names for D2
D2_CFG_FILE_NAME="d2_test_config.conf"
D2_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${D2_CFG_FILE_NAME}.json"
# Names for CA
CA_CFG_FILE_NAME="ca_test_config.conf"
CA_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${CA_CFG_FILE_NAME}.json"
# Names for Netconf
NC_CFG_FILE_NAME="nc_test_config.conf"
NC_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/${NC_CFG_FILE_NAME}.json"
# Configuration files for all daemons.
CFG_FILES="kea_dhcp4_config_file=${DHCP4_CFG_FILE}\n\
kea_dhcp6_config_file=${DHCP6_CFG_FILE}\n\
kea_dhcp_ddns_config_file=${D2_CFG_FILE}\n\
kea_ctrl_agent_config_file=${CA_CFG_FILE}\n\
kea_netconf_config_file=${NC_CFG_FILE}"
KEACTRL_BUILD_DIR="@abs_top_builddir@"
# A name of the keactrl config file
KEACTRL_CFG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/keactrl_test.conf"
# Path to the Kea log file.
LOG_FILE="@abs_top_builddir@/src/bin/keactrl/tests/test.log"
# Binaries' names
wildcard_name="kea-"
kea4_name="${wildcard_name}dhcp4"
kea6_name="${wildcard_name}dhcp6"
d2_name="${wildcard_name}dhcp-ddns"
agent_name="${wildcard_name}ctrl-agent"
netconf_name="${wildcard_name}netconf"

# DHCPv4 configuration
dhcp4_config="{
    \"Dhcp4\":
    {
        \"interfaces-config\": {
            \"interfaces\": [ ]
        },
        \"valid-lifetime\": 4000,
        \"renew-timer\": 1000,
        \"rebind-timer\": 2000,
        \"lease-database\":
        {
            \"type\": \"memfile\",
            \"persist\": false
        },
        \"subnet4\": [
        {
            \"subnet\": \"10.0.0.0/24\",
            \"pools\": [ { \"pool\": \"10.0.0.10-10.0.0.100\" } ]
        } ],
        \"loggers\": [
        {
            \"name\": \"kea-dhcp4\",
            \"output_options\": [
                {
                    \"output\": \"$LOG_FILE\"
                }
            ],
            \"severity\": \"INFO\"
        }
        ]
    }
}"

# DHCPv6 configuration
dhcp6_config="{
    \"Dhcp6\":
    {
        \"interfaces-config\": {
            \"interfaces\": [ ]
        },
        \"server-id\": {
          \"type\": \"LLT\",
          \"persist\": false
        },
        \"preferred-lifetime\": 3000,
        \"valid-lifetime\": 4000,
        \"renew-timer\": 1000,
        \"rebind-timer\": 2000,
        \"lease-database\":
        {
            \"type\": \"memfile\",
            \"persist\": false
        },
        \"subnet6\": [
        {
            \"subnet\": \"2001:db8:1::/64\",
            \"pools\": [ { \"pool\": \"2001:db8:1::10-2001:db8:1::100\" } ]
        } ],
        \"loggers\": [
        {
            \"name\": \"kea-dhcp6\",
            \"output_options\": [
                {
                    \"output\": \"$LOG_FILE\"
                }
            ],
            \"severity\": \"INFO\"
        }
        ]
    }
}"

# DHCP-DDNS configuration
dhcp_ddns_config="{
    \"DhcpDdns\":
    {
        \"ip-address\": \"127.0.0.1\",
        \"port\": 53001,
        \"tsig-keys\": [],
        \"forward-ddns\" : {},
        \"reverse-ddns\" : {},
        \"loggers\": [
        {
            \"name\": \"kea-dhcp-ddns\",
            \"output_options\": [
                {
                    \"output\": \"$LOG_FILE\"
                }
            ],
            \"severity\": \"INFO\"
        }
        ]
    }
}"

# Control-agent configuration
control_agent_config="{
    \"Control-agent\": {
        \"http-host\": \"127.0.0.1\",
        \"http-port\": 18080,
        \"loggers\": [
        {
            \"name\": \"kea-ctrl-agent\",
            \"output_options\": [
                {
                    \"output\": \"$LOG_FILE\"
                }
            ],
            \"severity\": \"INFO\"
        }
        ]
    }
}"

# Netconf configuration
netconf_config="{
    \"Netconf\": {
        \"loggers\": [
        {
            \"name\": \"kea-netconf\",
            \"output_options\": [
                {
                    \"output\": \"$LOG_FILE\"
                }
            ],
            \"severity\": \"INFO\"
        }
        ]
    }
}"

# Fixed part of the keactrl configuration file.
keactrl_fixed_config="dhcp4_srv=${KEACTRL_BUILD_DIR}/src/bin/dhcp4/kea-dhcp4\n\
dhcp6_srv=${KEACTRL_BUILD_DIR}/src/bin/dhcp6/kea-dhcp6\n\
dhcp_ddns_srv=${KEACTRL_BUILD_DIR}/src/bin/d2/kea-dhcp-ddns\n\
ctrl_agent_srv=${KEACTRL_BUILD_DIR}/src/bin/agent/kea-ctrl-agent\n\
netconf_srv=${KEACTRL_BUILD_DIR}/src/bin/netconf/kea-netconf\n"

# This test checks that DHCPv4, DHCPv6, D2, CA and Netconf server can
# be started and shut down.
start_all_servers_no_verbose_test() {
    # Create configuration file for keactrl. This configuration enables
    # DHCPv4, DHCPv6, D2, CA and netconf.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
kea_verbose=no\n${keactrl_fixed_config}"

    test_start "keactrl.start_all_servers_no_verbose_test"

    # Create configuration file for Kea and for keactrl.
    create_dhcp4_config "${dhcp4_config}"
    create_dhcp6_config "${dhcp6_config}"
    create_d2_config "${dhcp_ddns_config}"
    create_ca_config "${control_agent_config}"
    create_nc_config "${netconf_config}"
    create_keactrl_config "${keactrl_config}"

    # Set logging to a file.
    set_logger

    # Start servers using keactrl script.
    printf 'Starting Kea: %s start -c %s -s all\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    # Append the -s option to specify all servers. This is not necessary
    # because all should be a default but let's see if it is accepted
    # by the command line parser.
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE} -s all
    assert_eq 0 "${?}" "Expected keactrl to return %d, returned value was %d"
    set -e

    # Wait up to 20s for the DHCPv6 server to configure.
    wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 20s for the DHCPv4 server to configure.
    wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Wait for D2, CA and Netconf to configure.
    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for CPL daemons to start. \
Expected wait_for_message return %d, returned %d."

    wait_for_message 20 "DHCP_DDNS_STARTED" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to start. \
Expected wait_for_message return %d, returned %d."

    wait_for_message 20 "CTRL_AGENT_HTTP_SERVICE_STARTED" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${agent_name} to start. \
Expected wait_for_message return %d, returned %d."

    if ${have_netconf}; then
        wait_for_message 20 "NETCONF_STARTED" 1
        assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
            "Timeout waiting for${netconf_name} to start. \
Expected wait_for_message return %d, returned %d."
    fi

    # Make sure that debug messages are logged for neither
    # server (non-verbose mode).
    get_log_messages "DHCP6_START_INFO"
    assert_eq 0 "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages return %d, returned %d."

    get_log_messages "DHCP4_START_INFO"
    assert_eq 0 "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages return %d, returned %d."

    get_log_messages "DCTL_STANDALONE"
    assert_eq 0 "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages return %d, returned %d."

    # Server may shut down immediately after configuration has completed.
    # Give it some time to shutdown.
    sleep 3

    # Make sure that all servers are running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Use keactrl stop to shutdown the servers.
    printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${?}" "Expected keactrl to return %d, returned value was %d."
    set -e

    # Wait up to 10s for the DHCPv6 server to stop.
    wait_for_message 10 "DHCP6_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the DHCPv4 server to stop.
    wait_for_message 10 "DHCP4_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the D2, CA and Netconf to stop.
    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    wait_for_message 10 "DCTL_SHUTDOWN" ${expected}
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that all servers are down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${wildcard_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    test_finish 0
}

# This test checks that both DHCPv4 and DHCPv6 server can be started in
# a verbose mode.
start_all_servers_verbose_test() {
    # Create configuration file for keactrl. This configuration enables
    # all servers.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
kea_verbose=yes\n${keactrl_fixed_config}"

    test_start "keactrl.start_all_servers_verbose_test"

    # Create configuration file for Kea and for keactrl.
    create_dhcp4_config "${dhcp4_config}"
    create_dhcp6_config "${dhcp6_config}"
    create_d2_config "${dhcp_ddns_config}"
    create_ca_config "${control_agent_config}"
    create_nc_config "${netconf_config}"
    create_keactrl_config "${keactrl_config}"

    # Set logging to a file.
    set_logger

    # Start servers using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
    set -e

    # Wait up to 20s for the DHCPv6 server to configure.
    wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 20s for the DHCPv4 server to configure.
    wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to start. \
Expected wait_for_message return %d, returned %d."

    wait_for_message 20 "DCTL_CONFIG_COMPLETE" 2
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for CPL daemons to start. \
Expected wait_for_message return %d, returned %d."

    wait_for_message 20 "DHCP_DDNS_STARTED" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to start. \
Expected wait_for_message return %d, returned %d."

    wait_for_message 20 "CTRL_AGENT_HTTP_SERVICE_STARTED" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${agent_name} to start. \
Expected wait_for_message return %d, returned %d."

    if ${have_netconf}; then
        wait_for_message 20 "NETCONF_STARTED" 1
        assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
            "Timeout waiting for${netconf_name} to start. \
Expected wait_for_message return %d, returned %d."
    fi

    # Check if the debug messages are present, which should only be
    # the case if the verbose mode is on.
    get_log_messages "DHCP6_START_INFO" 1
    assert_eq 1 "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages for DHCP6_START_INFO return %d, returned %d."

    get_log_messages "DHCP4_START_INFO" 1
    assert_eq 1 "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages for DHCP4_START_INFO return %d, returned %d."

    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    get_log_messages "DCTL_STANDALONE" ${expected}
    assert_eq "${expected}" "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages for DCT_STANDALONE return %d, returned %d."

    # Server may shut down immediately after configuration has completed.
    # Give it some time to shutdown.
    sleep 3

    # Make sure that all servers are running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Use keactrl stop to shutdown the servers.
    printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the DHCPv6 server to stop.
    wait_for_message 10 "DHCP6_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the DHCPv4 server to stop.
    wait_for_message 10 "DHCP4_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the D2, CA and Netconf to stop.
    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    wait_for_message 10 "DCTL_SHUTDOWN" ${expected}
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} and ${agent_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that all servers are down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${wildcard_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    test_finish 0
}

# Test that a simple "keactrl status" works.
keactrl_status_test() {
  # Create the configuration files.
  create_dhcp4_config "${dhcp4_config}"
  create_dhcp6_config "${dhcp6_config}"
  create_d2_config "${dhcp_ddns_config}"
  create_ca_config "${control_agent_config}"
  create_nc_config "${netconf_config}"
  create_keactrl_config "${CFG_FILES}
${keactrl_fixed_config}
ctrl_agent=no
dhcp_ddns=no
dhcp4=yes
dhcp6=yes
netconf=no
kea_verbose=no
"

  run_command \
    "${keactrl}" status -c "${KEACTRL_CFG_FILE}"
  assert_eq 0 "${EXIT_CODE}"
  assert_str_eq \
'DHCPv4 server: inactive
DHCPv6 server: inactive
DHCP DDNS: inactive
Control Agent: inactive' \
    "$(printf '%s\n' "${OUTPUT}" | head -n 4)"

  if "${have_netconf}"; then
    assert_str_eq 'Netconf agent: inactive' \
      "$(printf '%s\n' "${OUTPUT}" | head -n 5 | tail -n 1)"
  fi
}

# Test that a simple "keactrl status" without a configuration file works in two
# cases: KEA_PIDFILE_DIR set and not set.
keactrl_status_tests() {
  # Run first without any relevant entries in the configuration file.
  test_start 'keactrl.status_test.empty_config'
  create_keactrl_config 'hello=world'
  run_command \
    "${keactrl}" status -c "${KEACTRL_CFG_FILE}"
  assert_eq 1 "${EXIT_CODE}"
  test_finish ${?}

  # Run without KEA_PIDFILE_DIR.
  if test -n "${KEA_PIDFILE_DIR+x}"; then
    save_kea_pidfile_dir="${KEA_PIDFILE_DIR}"
    unset KEA_PIDFILE_DIR
  fi
  assert_str_eq '' "${KEA_PIDFILE_DIR-}"

  test_start 'keactrl.status_test'
  keactrl_status_test
  test_finish ${?}

  # Restore KEA_PIDFILE_DIR which should have been set from dhcp_test_lib.sh.
  if test -n "${save_kea_pidfile_dir+x}"; then
    export KEA_PIDFILE_DIR="${save_kea_pidfile_dir}"
  fi
  assert_str_neq '' "${KEA_PIDFILE_DIR-}"

  # Restore KEA_PIDFILE_DIR.
  test_start 'keactrl.status_test.KEA_PIDFILE_DIR'
  keactrl_status_test
  test_finish ${?}
}

# This test checks that only DHCPv4 server can be started and that other
# servers are not started.
start_v4_server_test() {
    # Create configuration file for keactrl. This configuration enables
    # DHCPv4 server but disables other servers.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=no\n\
dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
kea_verbose=no\n${keactrl_fixed_config}"

    test_start "keactrl.start_v4_server_test"

    # Create configuration file for Kea and for keactrl.
    create_dhcp4_config "${dhcp4_config}"
    create_dhcp6_config "${dhcp6_config}"
    create_d2_config "${dhcp_ddns_config}"
    create_ca_config "${control_agent_config}"
    create_nc_config "${netconf_config}"
    create_keactrl_config "${keactrl_config}"

    # Set logging to a file.
    set_logger

    # Start DHCPv4 server using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
    set -e

    # Wait up to 20s for the DHCPv4 server to configure.
    wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Server may shut down immediately after configuration has completed.
    # Give it some time to shutdown.
    sleep 3

    # Make sure that DHCPv4 server is running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    # Make sure that DHCPv6 server is not running.
    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    # Make sure that D2 server is not running.
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure that CA is not running.
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure that Netconf agent is not running.
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 0 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Make sure that the status command returns appropriate status.
    printf "Getting status of Kea modules: %s\n" "${keactrl} status \
-c ${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" status -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned %d"
    assert_string_contains "DHCPv4 server: active" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "DHCPv6 server: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "DHCP DDNS: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "Control Agent: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    if ${have_netconf}; then
        assert_string_contains "Netconf agent: inactive" "${OUTPUT}" \
            "Expected keactrl status command return %s"
    fi

    # Use keactrl stop to shutdown the servers.
    printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the DHCPv4 server to stop.
    wait_for_message 10 "DHCP4_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that all servers are down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${wildcard_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    test_finish 0
}

# This test checks that only DHCPv6 server can be started and that other
# servers are not started.
start_v6_server_test() {
    # Create configuration file for keactrl. This configuration enables
    # DHCPv6 server but disables other servers..
    keactrl_config="${CFG_FILES}\ndhcp4=no\ndhcp6=yes\n\
dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
kea_verbose=no\n${keactrl_fixed_config}"

    test_start "keactrl.start_v6_server_test"

    # Create configuration file for Kea and for keactrl.
    create_dhcp4_config "${dhcp4_config}"
    create_dhcp6_config "${dhcp6_config}"
    create_d2_config "${dhcp_ddns_config}"
    create_ca_config "${control_agent_config}"
    create_nc_config "${netconf_config}"
    create_keactrl_config "${keactrl_config}"

    # Set logging to a file.
    set_logger

    # Start DHCPv6 server using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
    set -e

    # Wait up to 20s for the DHCPv6 server to configure.
    wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Server may shut down immediately after configuration has completed.
    # Give it some time to shutdown.
    sleep 3

    # Make sure that DHCPv6 server is running.
    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    # Make sure that DHCPv4 server is not running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    # Make sure that D2 server is not running.
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure that CA is not running.
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure that Netconf agent is not running.
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 0 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Make sure that the status command returns appropriate status.
    printf "Getting status of Kea modules: %s\n" "${keactrl} status -c ${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" status -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned %d"
    assert_string_contains "DHCPv4 server: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "DHCPv6 server: active" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "DHCP DDNS: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "Control Agent: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    if ${have_netconf}; then
        assert_string_contains "Netconf agent: inactive" "${OUTPUT}" \
            "Expected keactrl status command return %s"
    fi

    # Use keactrl stop to shutdown the servers.
    printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the DHCPv6 server to stop.
    wait_for_message 10 "DHCP6_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that all servers are down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${wildcard_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    test_finish 0
}

# This test checks that the DHCPv4 server can be started first, and then the
# other servers can be started while DHCPv4 server is already running.
# Also check that both servers can be reconfigured.
late_start_v4_server_test() {
    # Create configuration file for keactrl. This configuration enables
    # DHCPv6 server but disables other servers.
    keactrl_config="${CFG_FILES}\ndhcp4=no\ndhcp6=yes\n\
dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
kea_verbose=no\n${keactrl_fixed_config}"

    test_start "keactrl.late_start_v4_server_test"

    # Create configuration file for Kea and for keactrl.
    create_dhcp4_config "${dhcp4_config}"
    create_dhcp6_config "${dhcp6_config}"
    create_d2_config "${dhcp_ddns_config}"
    create_ca_config "${control_agent_config}"
    create_nc_config "${netconf_config}"
    create_keactrl_config "${keactrl_config}"

    # Set logging to a file.
    set_logger

    # Start DHCPv6 server using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
    set -e

    # Wait up to 20s for the DHCPv6 server to configure.
    wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Server may shut down immediately after configuration has completed.
    # Give it some time to shutdown.
    sleep 3

    # Make sure that DHCPv6 server is running.
    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    # Make sure that DHCPv4 server is not running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    # Make sure that D2 server is not running.
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure that CA is not running.
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure that Netconf agent is not running.
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 0 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Trigger reconfiguration, make sure that the DHCPv6 server reconfigured.
    printf 'Reconfiguring the DHCPv6 server: %s reload -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"

    # There should be two completed reconfigurations so far.
    wait_for_message 10 "DHCP6_CONFIG_COMPLETE" 2
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea6_name} to reconfigure. \
Expected wait_for_message to return %d, returned %d."

    # Update keactrl config to enable other servers.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
kea_verbose=yes\n${keactrl_fixed_config}"
    create_keactrl_config "${keactrl_config}"

    # Start other servers using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
    set -e

    # Wait up to 20s for the DHCPv4 server to configure.
    wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 20s for the D2, CA and Netconf to configure.
    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Make sure that DHCPv6 server is running.
    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    # Make sure that DHCPv4 server is running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    # Make sure that D2 server is running.
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure that CA is running.
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure that Netconf agent is running.
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Trigger reconfiguration, make sure that servers are reconfigured.
    printf "Reconfiguring all servers: %s reload -c %s\n" \
        "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"

    # There should be three completed configurations of DHCPv6 server.
    wait_for_message 10 "DHCP6_CONFIG_COMPLETE" 3
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea6_name} to reconfigure. \
Expected wait_for_message to return %d, returned %d."

    # There should be two completed configurations of DHCPv4 server.
    wait_for_message 10 "DHCP4_CONFIG_COMPLETE" 2
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea4_name} to reconfigure. \
Expected wait_for_message to return %d, returned %d."

    # There should be two completed configurations of D2 and two
    # configurations of CA.
    wait_for_message 10 "DCTL_CONFIG_COMPLETE" 4
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${d2_name} or ${agent_name} \
to reconfigure. Expected wait_for_message to return %d, returned %d."

    # Use keactrl stop to shutdown the servers.
    printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the DHCPv6 server to stop.
    wait_for_message 10 "DHCP6_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the DHCPv4 server to stop.
    wait_for_message 10 "DHCP4_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the D2, CA and Netconf to stop.
    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    wait_for_message 10 "DCTL_SHUTDOWN" ${expected}
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} and ${agent_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that all servers are down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${wildcard_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    test_finish 0
}

# This test checks that the DHCPv4 server can be started first, and then the
# other servers can be started while DHCPv4 server is already running.
# Also check that both servers can be reconfigured.
late_start_v6_server_test() {
    # Create configuration file for keactrl. This configuration enables
    # DHCPv4 server but disables DHCPv6 server.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=no\n\
dhcp_ddns=no\nctrl_agent=no\nnetconf=no\n\
kea_verbose=yes\n${keactrl_fixed_config}"

    test_start "keactrl.late_start_v6_server_test"

    # Create configuration file for Kea and for keactrl.
    create_dhcp4_config "${dhcp4_config}"
    create_dhcp6_config "${dhcp6_config}"
    create_d2_config "${dhcp_ddns_config}"
    create_ca_config "${control_agent_config}"
    create_nc_config "${netconf_config}"
    create_keactrl_config "${keactrl_config}"

    # Set logging to a file.
    set_logger

    # Start DHCPv4 server using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
    set -e

    # Wait up to 20s for the DHCPv4 server to configure.
    wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Server may shut down immediately after configuration has completed.
    # Give it some time to shutdown.
    sleep 3

    # Make sure that DHCPv4 server is running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    # Make sure that DHCPv6 server is not running.
    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    # Make sure that D2 server is not running.
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure that CA is not running.
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 0 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure that Netconf agent is not running.
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 0 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Trigger reconfiguration, make sure that the DHCPv4 server is reconfigured.
    printf 'Reconfiguring the DHCPv4 server: %s reload -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"

    # There should be two completed reconfigurations so far.
    wait_for_message 10 "DHCP4_CONFIG_COMPLETE" 2
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea4_name} to reconfigure. \
Expected wait_for_message to return %d, returned %d."

    # Update keactrl config to enable other servers.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
kea_verbose=no\n${keactrl_fixed_config}"
    create_keactrl_config "${keactrl_config}"

    # Start other servers using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return 0, returned value was ${EXIT_CODE}"
    set -e

    # Wait up to 20s for the DHCPv6 server to configure.
    wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 20s for the D2, CA and Netconf to configure.
    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to start. \
Expected wait_for_message return %d, returned %d."


    # Make sure that DHCPv6 server is running.
    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    # Make sure that DHCPv4 server is running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    # Make sure that D2 server is running.
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure that CA is running.
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure that Netconf agent is running.
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Trigger reconfiguration, make sure that servers are reconfigured.
    printf 'Reconfiguring DHCPv6 and DHCPv4 servers: %s reload -c %s\n' \
        "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" reload -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"

    # There should be three completed configurations of DHCPv4 server.
    wait_for_message 10 "DHCP4_CONFIG_COMPLETE" 3
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea4_name} to reconfigure. \
Expected wait_for_message to return %d, returned %d."

    # There should be two completed configurations of DHCPv6 server.
    wait_for_message 10 "DHCP6_CONFIG_COMPLETE" 2
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${kea6_name} to reconfigure. \
Expected wait_for_message to return %d, returned %d."

    # There should be two completed configurations of D2 and two
    # configurations of CA.
    wait_for_message 10 "DCTL_CONFIG_COMPLETE" 4
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" "Timeout waiting for ${d2_name} to reconfigure. \
Expected wait_for_message to return %d, returned %d."

    # Use keactrl stop to shutdown the servers.
    printf 'Stopping Kea: %s stop -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the DHCPv6 server to stop.
    wait_for_message 10 "DHCP6_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the DHCPv4 server to stop.
    wait_for_message 10 "DHCP4_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 10s for the D2, CA and Netconf to stop.
    wait_for_message 10 "DCTL_SHUTDOWN" 2
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that all servers are down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${wildcard_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    test_finish 0
}

# This test checks that the servers can be shutdown selectively.
stop_selected_server_test() {
    # Create configuration file for keactrl. This configuration enables
    # all servers.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\n\
dhcp_ddns=yes\nctrl_agent=yes\nnetconf=yes\n\
kea_verbose=no\n${keactrl_fixed_config}"

    test_start "keactrl.stop_selected_server_test"

    # Create configuration file for Kea and for keactrl.
    create_dhcp4_config "${dhcp4_config}"
    create_dhcp6_config "${dhcp6_config}"
    create_d2_config "${dhcp_ddns_config}"
    create_ca_config "${control_agent_config}"
    create_nc_config "${netconf_config}"
    create_keactrl_config "${keactrl_config}"

    # Set logging to a file.
    set_logger

    # Start servers using keactrl script.
    printf 'Starting Kea: %s start -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    set +e
    "${keactrl}" start -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d"
    set -e

    # Wait up to 20s for the DHCPv6 server to configure.
    wait_for_message 20 "DHCP6_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 20s for the DHCPv4 server to configure.
    wait_for_message 20 "DHCP4_CONFIG_COMPLETE" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Wait up to 20s for the D2, CA and Netconf to configure.
    if ${have_netconf}; then
        expected=3
    else
        expected=2
    fi
    wait_for_message 20 "DCTL_CONFIG_COMPLETE" ${expected}
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to start. \
Expected wait_for_message return %d, returned %d."

    # Make sure that debug messages are not logged (non-verbose mode).
    get_log_messages "DHCP6_START_INFO"
    assert_eq 0 "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages return %d, returned %d."

    get_log_messages "DHCP4_START_INFO"
    assert_eq 0 "${_GET_LOG_MESSAGES}" \
        "Expected get_log_messages return %d, returned %d."

    get_log_messages "DCTL_STANDALONE"
    assert_eq 0 "${_GET_LOG_MESSAGES}" \
    "Expected get_log_messages return %d, returned %d."

    # Server may shut down immediately after configuration has completed.
    # Give it some time to shutdown.
    sleep 3

    # Make sure that all servers are running.
    get_pid ${kea4_name} ${DHCP4_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea4_name} process running, found %d processes running"

    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Use keactrl stop to shutdown DHCPv4 server.
    printf "Stopping DHCPv4 server: %s stop -s dhcp4 -c %s\n" "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -s dhcp4 -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the DHCPv4 server to stop.
    wait_for_message 10 "DHCP4_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea4_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that the DHCPv4 server is down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${kea4_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    # Make sure DHCPv6 server is still running
    get_pid ${kea6_name} ${DHCP6_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${kea6_name} process running, found %d processes running"

    # Make sure D2 server is still running
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure CA is still running
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure Netconf agent is still running
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Use keactrl stop to shutdown DHCPv6 server.
    printf 'Stopping DHCPv6 server: %s stop -s dhcp6 -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -s dhcp6 -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the DHCPv6 server to stop.
    wait_for_message 10 "DHCP6_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${kea6_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that the DHCPv6 server is down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${kea6_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    # Make sure D2 server is still running
    get_pid ${d2_name} ${D2_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${d2_name} process running, found %d processes running"

    # Make sure CA is still running
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Use keactrl stop to shutdown D2 server.
    printf 'Stopping DHCP DDNS server: %s stop -s dhcp_ddns -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -s dhcp_ddns -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the D2 server to stop.
    wait_for_message 10 "DCTL_SHUTDOWN" 1
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${d2_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that the D2 server is down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${d2_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    # Make sure CA is still running
    get_pid ${agent_name} ${CA_CFG_FILE_NAME}
    assert_eq 1 "${_GET_PIDS_NUM}" \
        "Expected %d ${agent_name} process running, found %d processes running"

    # Make sure Netconf agent is still running
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Use keactrl stop to shutdown CA.
    printf 'Stopping Control Agent: %s stop -s ctrl_agent -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
    run_command \
        "${keactrl}" stop -s ctrl_agent -c ${KEACTRL_CFG_FILE}
    assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

    # Wait up to 10s for the CA to stop.
    wait_for_message 10 "DCTL_SHUTDOWN" 2
    assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
        "Timeout waiting for ${agent_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

    # Make sure that the CA is down.
    if ${have_netconf}; then
        expected=6
    else
        expected=5
    fi
    wait_for_server_down ${expected} ${agent_name}
    assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
        "Expected wait_for_server_down return %d, returned %d"

    # Make sure Netconf agent is still running
    if ${have_netconf}; then
        get_pid ${netconf_name} ${NC_CFG_FILE_NAME}
        assert_eq 1 "${_GET_PIDS_NUM}" \
            "Expected %d ${netconf_name} process running, found %d processes running"
    fi

    # Use keactrl stop to shutdown Netconf agent.
    if ${have_netconf}; then
        printf 'Stopping Netconf agent: %s stop -s netconf -c %s\n' "${keactrl}" "${KEACTRL_CFG_FILE}"
        run_command \
            "${keactrl}" stop -s netconf -c ${KEACTRL_CFG_FILE}
        assert_eq 0 "${EXIT_CODE}" "Expected keactrl to return %d, returned value was %d."

        # Wait up to 10s for the Netconf agent to stop.
        wait_for_message 10 "DCTL_SHUTDOWN" 2
        assert_eq 1 "${_WAIT_FOR_MESSAGE}" \
            "Timeout waiting for ${netconf_name} to shutdown. \
Expected wait_for_message return %d, returned %d."

        # Make sure that the Netconf agent is down.
        wait_for_server_down 6 ${netconf_name}
        assert_eq 1 "${_WAIT_FOR_SERVER_DOWN}" \
            "Expected wait_for_server_down return %d, returned %d"
    fi

    test_finish 0
}

# This test checks that the "status" command doesn't check the presence of the
# config file.
status_no_config_test() {
    test_start "keactrl.status_no_config_test"

    # Make sure that all config files are removed.
    cleanup

    # Create keactrl configuration file.
    create_keactrl_config "${keactrl_config}"

    # Make sure that the "status" command doesn't check the presence of
    # the config file.
    printf "Getting status without a Kea config file\n"

    run_command \
        "${keactrl}" status -c ${KEACTRL_CFG_FILE}
    assert_eq 1 "${EXIT_CODE}" "Expected keactrl to return %d, returned %d"
    assert_string_contains "DHCPv4 server: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "DHCPv6 server: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "DHCP DDNS: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    assert_string_contains "Control Agent: inactive" "${OUTPUT}" \
        "Expected keactrl status command return %s"
    if ${have_netconf}; then
        assert_string_contains "Netconf agent: inactive" "${OUTPUT}" \
            "Expected keactrl status command return %s"
    fi
    assert_string_contains "Configuration file for Kea does not exist" \
        "${OUTPUT}" "Expected keactrl status command return %s"

    test_finish 0
}

# This test uses version command, which reports version of the keactrl
# tool itself, but also all the daemons.
version_command_test() {
    test_start "keactrl.version-command"

    # Create configuration file for keactrl.
    # Note that += is NOT in POSIX shell so PLEASE do NOT use it.
    keactrl_config="${CFG_FILES}\ndhcp4=yes\ndhcp6=yes\ndhcp_ddns=yes\n"
    keactrl_config="${keactrl_config}ctrl_agent=yes\nnetconf=yes\n"
    keactrl_config="${keactrl_config}kea_verbose=no\n${keactrl_fixed_config}"
    create_keactrl_config "${keactrl_config}"

    # This is what we expect to get. We need to run it through printf
    # to convert \n to actual LF (0xa) or whatever the EOL is used on your
    # system.
    exp="keactrl: @PACKAGE_VERSION@\n"
    exp="${exp}kea-dhcp4: @PACKAGE_VERSION@\n"
    exp="${exp}kea-dhcp6: @PACKAGE_VERSION@\n"
    exp="${exp}kea-dhcp-ddns: @PACKAGE_VERSION@\n"
    exp="${exp}kea-ctrl-agent: @PACKAGE_VERSION@"
    if ${have_netconf}; then
        exp="${exp}\nkea-netconf: @PACKAGE_VERSION@"
    fi
    # The %b parameter tells printf to interpret backslashes.
    EXPECTED_RESP=$(printf "%b" "$exp")

    # Let's use short version:
    run_command \
        "${keactrl}" version -c ${KEACTRL_CFG_FILE}

    assert_str_eq "${EXPECTED_RESP}" "${OUTPUT}" \
                  "Expected keactrl version to report %s, but it reported %s"

    test_finish 0
}

keactrl_error_reporting_tests() {
  test_start 'keactrl_error_reporting_test'
  run_command \
    "${keactrl}"
  assert_eq 1 "${EXIT_CODE}"
  assert_str_eq 'ERROR/keactrl: missing command' "$(printf '%s\n' "${OUTPUT}" | head -n 1)"
  test_finish ${?}

  test_start 'keactrl_error_reporting_test.start.c'
  run_command \
    "${keactrl}" start -c
  assert_eq 1 "${EXIT_CODE}"
  assert_str_eq 'ERROR/keactrl: keactrl-config-file not specified' "$(printf '%s\n' "${OUTPUT}" | head -n 1)"
  test_finish ${?}

  test_start 'keactrl_error_reporting_test.start.s'
  run_command \
    "${keactrl}" start -s
  assert_eq 1 "${EXIT_CODE}"
  assert_str_eq 'ERROR/keactrl: servers not specified' "$(printf '%s\n' "${OUTPUT}" | head -n 1)"
  test_finish ${?}
}


# shellcheck disable=SC2034
# SC2034: ... appears unused. Verify use (or export if used externally).
# reason: bin and bin_path are used in version_test
{
bin=$(basename "${keactrl}")
bin_path=$(dirname "${keactrl}")
version_test 'keactrl.version' 'long_version_too_please'
}

keactrl_status_tests
version_command_test
start_all_servers_no_verbose_test
start_all_servers_verbose_test
start_v4_server_test
start_v6_server_test
late_start_v4_server_test
late_start_v6_server_test
stop_selected_server_test
status_no_config_test
keactrl_error_reporting_tests