summaryrefslogtreecommitdiffstats
path: root/src/hooks/dhcp/stat_cmds/tests/stat_cmds_unittest.cc
blob: bd211ddb0b501d72a5f9d5b42691b5b8cc195d22 (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
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
// Copyright (C) 2018-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/.
//

#include <config.h>

#include <exceptions/exceptions.h>
#include <hooks/hooks_manager.h>
#include <config/command_mgr.h>
#include <dhcpsrv/lease_mgr.h>
#include <dhcpsrv/lease_mgr_factory.h>
#include <dhcpsrv/cfgmgr.h>
#include <cc/command_interpreter.h>
#include <cc/data.h>
#include <stats/stats_mgr.h>
#include <testutils/gtest_utils.h>

#include <boost/date_time/posix_time/posix_time.hpp>
#include <gtest/gtest.h>
#include <time.h>

using namespace std;
using namespace isc;
using namespace isc::hooks;
using namespace isc::config;
using namespace isc::data;
using namespace isc::dhcp;
using namespace isc::asiolink;
using namespace isc::stats;
using namespace boost::posix_time;

namespace {

/// @brief Test fixture for testing loading and unloading the library
class LibLoadTest : public ::testing::Test {
public:
    /// @brief Constructor
    LibLoadTest(std::string lib_filename)
        : lib_name_(lib_filename), start_time_(second_clock::universal_time()) {
        CommandMgr::instance();
        unloadLibs();
    }

    /// @brief Destructor
    /// Removes files that may be left over from previous tests
    virtual ~LibLoadTest() {
        unloadLibs();
    }

    /// @brief Adds library/parameters to list of libraries to be loaded
    void addLib(const std::string& lib, ConstElementPtr params) {
        libraries_.push_back(make_pair(lib, params));
    }

    /// @brief Load all specified libraries.
    ///
    /// The libraries are stored in libraries
    void loadLibs() {
        ASSERT_TRUE(HooksManager::loadLibraries(libraries_))
            << "library loading failed";
    }

    /// @brief Unloads all libraries.
    void unloadLibs() {
        ASSERT_NO_THROW(HooksManager::unloadLibraries());
    }

    /// @brief Checks whether specified command is registered
    ///
    /// @param name name of the command to be checked
    /// @param expect_true true - must be registered, false - must not be
    void checkCommandRegistered(const std::string& name, bool expect_true) {

        // First get the list of registered commands
        ConstElementPtr lst = Element::fromJSON("{ \"command\": \"list-commands\" }");
        ConstElementPtr rsp = CommandMgr::instance().processCommand(lst);

        ASSERT_TRUE(rsp);

        ConstElementPtr args = rsp->get("arguments");
        ASSERT_TRUE(args);

        string args_txt = args->str();

        if (expect_true) {
            EXPECT_TRUE(args_txt.find(name) != string::npos);
        } else {
            EXPECT_TRUE(args_txt.find(name) == string::npos);
        } }

    /// @brief tests specified command and verifies response
    ///
    /// This method loads the library, sends specific command,
    /// then checks if the result is as expected, checks if text response
    /// is ok (optional, check skipped if exp_txt is empty) and then returns
    /// the response (for possible additional checks).
    ///
    /// @param cmd JSON command to be sent (must be valid JSON)
    /// @param exp_result 0 - success, 1 - error, 2 - ...
    /// @param exp_txt expected text response (optional)
    void testCommand(string cmd_txt, int exp_result, string exp_txt,
                     string exp_result_json = "") {
        // Let's load the library first.
        loadLib();

        ConstElementPtr cmd;
        ASSERT_NO_THROW(cmd = Element::fromJSON(cmd_txt))
                        << "command JSON invalid, test is broken";

        // Process the command and verify response.
        ConstElementPtr rsp = CommandMgr::instance().processCommand(cmd);
        checkAnswer(rsp, exp_result, exp_txt);

        // Don't care about argument contents, we're done.
        if (exp_result_json.empty()) {
            return;
        }

        // Turn expected result JSON into Element tree
        ConstElementPtr exp_args;
        ASSERT_NO_THROW(exp_args = Element::fromJSON(exp_result_json))
            << "Expected result JSON is invalid, test is broken" << exp_result_json;

        ASSERT_TRUE(exp_args->getType() == Element::map)
            << "Expected args is not a map, test is broken: " << exp_result_json;

        // Fetch "arguments" from the actual response
        ConstElementPtr actual_args = rsp->get("arguments");
        ASSERT_TRUE(actual_args && actual_args->getType() == Element::map)
                << "'arguments' missing or not a map " << toJSON(rsp);

        // If we expect nothing and nothing is what we got, we're done.
        if (exp_args->size() == 0) {
            ASSERT_TRUE(actual_args->size() == 0)
                << "Actual args should be empty:" << toJSON(actual_args);
            return;
        }

        // Fetch "result-set" from the expected arguments
        ConstElementPtr exp_result_set = exp_args->get("result-set");
        ASSERT_TRUE(exp_result_set && (exp_result_set->getType() == Element::map))
            << "Expected 'result-set' missing or not map\n" << toJSON(exp_args);

        // Fetch "result-set" from the actual arguments
        ConstElementPtr actual_result_set = actual_args->get("result-set");
        ASSERT_TRUE(actual_result_set && (actual_result_set->getType() == Element::map))
            << "Actual 'result-set' missing or not map\n" << toJSON(actual_args);

        // Compare the actual and expected "columns"
        ConstElementPtr exp = exp_result_set->get("columns");
        ASSERT_TRUE(exp && exp->getType() == Element::list)
            << "Expected 'columns' is missing or not list, test is broken"
            << toJSON(exp_result_set);

        ConstElementPtr actual = actual_result_set->get("columns");
        ASSERT_TRUE(actual && (actual->getType() == Element::list))
            << "Actual 'columns' is missing or not list"
            << toJSON(actual_result_set);

        ASSERT_TRUE(*exp == *actual) << "Result set columns are wrong\n"
                << "Expected:\n" << toJSON(exp)
                << "\nActual:\n" << toJSON(actual);

        // Compare the actual and expected "rows"
        exp = exp_result_set->get("rows");
        ASSERT_TRUE(exp && (exp->getType() == Element::list))
                << "Expected 'rows' is missing or not a list, test is broken";

        actual = actual_result_set->get("rows");
        ASSERT_TRUE(actual && (actual->getType() == Element::list))
                << "Actual 'rows' is missing or not a list"
                << toJSON(actual_result_set);

        ASSERT_TRUE(*exp == *actual) << "Result set rows are wrong\n"
                << "Expected:\n" << toJSON(exp)
                << "\nActual:\n" << toJSON(actual);

        // Make sure timestamp is present and appears valid
        actual = actual_result_set->get("timestamp");
        ASSERT_TRUE (actual && (actual->getType() == Element::string))
                << "Actual result-set timestamp is missing?"
                << toJSON(rsp);

        // We expect it to be the same or later than the test start time
        ptime timestamp = strToPtime(actual->stringValue());
        EXPECT_TRUE(timestamp >= start_time_)
                    << "Actual timestamp is wrong?" << actual->stringValue();
    }

    /// @brief Compares the status in the given parse result to a given value.
    ///
    /// @param answer Element set containing an integer response and string
    /// comment.
    /// @param exp_status is an integer against which to compare the status.
    /// @param exp_txt is expected text (not checked if "")
    void checkAnswer(isc::data::ConstElementPtr answer,
                     int exp_status,
                     string exp_txt = "") {
        int rcode = 0;
        isc::data::ConstElementPtr comment;
        comment = isc::config::parseAnswer(rcode, answer);

        if (rcode != exp_status) {
            ADD_FAILURE() << "Expected status code " << exp_status
                          << " but received " << rcode << ", comment: "
                          << (comment ? comment->str() : "(none)");
        }

        // Ok, parseAnswer interface is weird. If there are no arguments,
        // it returns content of text. But if there is an argument,
        // it returns the argument and it's not possible to retrieve
        // "text" (i.e. comment).
        if (comment->getType() != Element::string) {
            comment = answer->get("text");
        }

        if (!exp_txt.empty()) {
            EXPECT_EQ(exp_txt, comment->stringValue());
        }
    }

    /// @brief Loads the library specified by lib_name_
    void loadLib() {
        if (libraries_.empty()) {
            data::ElementPtr params = data::Element::createMap();
            addLib(lib_name_, params);
        }
        EXPECT_NO_THROW(loadLibs());
    }

    /// @brief Test checks if specified commands are provided by the library.
    ///
    /// @param cms a vector of string with command names
    void testCommands(const std::vector<string> cmds) {

        // The commands should not be registered yet.
        for (auto cmd = cmds.begin(); cmd != cmds.end(); ++cmd) {
            checkCommandRegistered(*cmd, false);
        }

        loadLib();

        // The commands should be available after library was loaded.
        for (auto cmd = cmds.begin(); cmd != cmds.end(); ++cmd) {
            checkCommandRegistered(*cmd, true);
        }

        unloadLibs();

        // and the commands should be gone now.
        for (auto cmd = cmds.begin(); cmd != cmds.end(); ++cmd) {
            checkCommandRegistered(*cmd, false);
        }

    }

    // Check that the library can be loaded and unloaded multiple times.
    void testMultipleLoads() {
        EXPECT_NO_THROW(loadLib());
        EXPECT_NO_THROW(unloadLibs());

        EXPECT_NO_THROW(loadLib());
        EXPECT_NO_THROW(unloadLibs());

        EXPECT_NO_THROW(loadLib());
        EXPECT_NO_THROW(unloadLibs());

        EXPECT_NO_THROW(loadLib());
        EXPECT_NO_THROW(unloadLibs());
    }

    std::string toJSON(ConstElementPtr element) {
        std::stringstream os;
        element->toJSON(os);
        return (os.str());
    }

    /// @brief Converts a string into a boost::posix_time::ptime
    ///
    /// The expected format of the input string is:
    ///
    ///    "%Y-%m-%d %H:%M:%S"
    ///
    /// Example: "2018-04-21 15:03:37"
    ///
    /// Any content beyond this length is ignored.
    ///
    ///  We're doing it this way because boost's function, time_from_string(),
    ///  is part of their date/time library which is not header only.
    ///
    /// @param timestamp string to convert into a ptime
    /// @throw BadValue if the string cannot be converted into a ptime
    boost::posix_time::ptime strToPtime(const std::string& timestamp) {
        struct tm tm_result;

        if (!strptime(timestamp.c_str(), "%Y-%m-%d %H:%M:%S", &tm_result)) {
            isc_throw(BadValue, "cannot convert timestamp string: " << timestamp);
        }

        return (ptime_from_tm(tm_result));
    }

    /// List of libraries to be/being loaded (usually just one)
    HookLibsCollection libraries_;

    /// Path to the library filename
    std::string lib_name_;

    /// @brief Holds the time the test started
    boost::posix_time::ptime start_time_;
};

/// @brief Class dedicated to testing lease_cmds library.
///
/// Provides convenience methods for loading, testing all commands and
/// unloading the lease_cmds library.
/// @todo This class should really be separated from loading and unloading
/// the library so implementation classes are tested more directly.
class StatCmdsTest : public LibLoadTest {
public:

    /// @brief Constructor
    ///
    /// Sets the library filename and clears the lease manager pointer.
    /// Also ensured there is no lease manager leftovers from previous
    /// test.
    StatCmdsTest()
        :LibLoadTest(STAT_CMDS_LIB_SO), hwaddr_({10,20,30,40,50,00}),
         duid_({10,20,30,40,50,60,70,00}) {
        LeaseMgrFactory::destroy();
        lmptr_ = 0;
    }

    /// @brief Destructor
    ///
    /// Removes library (if any), destroys lease manager (if any).
    virtual ~StatCmdsTest() {
        // destroys lease manager first because the other order triggers
        // a clang/boost bug
        LeaseMgrFactory::destroy();
        unloadLibs();
        lmptr_ = 0;
    }

    /// @brief Initializes lease manager for v4 operation
    ///
    /// Creates a lease manager (memfile, trimmed down to keep everything in memory
    /// only) and adds five subnets to the configuration.
    void initLeaseMgr4() {
        LeaseMgrFactory::destroy();
        LeaseMgrFactory::create("type=memfile persist=false universe=4");

        lmptr_ = &(LeaseMgrFactory::instance());
        ASSERT_TRUE(lmptr_);

        CfgMgr& cfg_mgr = CfgMgr::instance();
        CfgSubnets4Ptr subnets = cfg_mgr.getStagingCfg()->getCfgSubnets4();

        Subnet4Ptr subnet;
        Pool4Ptr pool;

        subnet.reset(new Subnet4(IOAddress("192.0.1.0"), 24, 1, 2, 3, 10));
        pool.reset(new Pool4(IOAddress("192.0.1.0"), 24));
        subnet->addPool(pool);
        subnets->add(subnet);

        subnet.reset(new Subnet4(IOAddress("192.0.2.0"), 28, 1, 2, 3, 20));
        pool.reset(new Pool4(IOAddress("192.0.2.0"), 28));
        subnet->addPool(pool);
        subnets->add(subnet);

        subnet.reset(new Subnet4(IOAddress("192.0.3.0"), 24, 1, 2, 3, 30));
        pool.reset(new Pool4(IOAddress("192.0.3.0"), 24));
        subnet->addPool(pool);
        subnets->add(subnet);

        subnet.reset(new Subnet4(IOAddress("192.0.4.0"), 28, 1, 2, 3, 40));
        pool.reset(new Pool4(IOAddress("192.0.4.0"), 28));
        subnet->addPool(pool);
        subnets->add(subnet);

        subnet.reset(new Subnet4(IOAddress("192.0.5.0"), 24, 1, 2, 3, 50));
        pool.reset(new Pool4(IOAddress("192.0.5.0"), 24));
        subnet->addPool(pool);
        subnets->add(subnet);

        cfg_mgr.commit();

        // Subnet 10
        // 300 cumulative, 2 assigned, 3 declined,  1 expired
        setSubnetStat(10, "cumulative-assigned-addresses", 300);
        addLease4("192.0.1.1", 10);
        addLease4("192.0.1.2", 10, Lease::STATE_DECLINED);
        addLease4("192.0.1.3", 10, Lease::STATE_DECLINED);
        addLease4("192.0.1.4", 10, Lease::STATE_DECLINED);
        addLease4("192.0.1.5", 10);
        addLease4("192.0.1.6", 10, Lease::STATE_EXPIRED_RECLAIMED);

        // Subnet 20
        // 10 cumulative, 3 assigned, 0 declined,  2 expired
        setSubnetStat(20, "cumulative-assigned-addresses", 10);
        addLease4("192.0.2.1", 20);
        addLease4("192.0.2.2", 20);
        addLease4("192.0.2.3", 20);
        addLease4("192.0.2.4", 20, Lease::STATE_EXPIRED_RECLAIMED);
        addLease4("192.0.2.5", 20, Lease::STATE_EXPIRED_RECLAIMED);

        // Subnet 30 no leases

        // Subnet 40, 4 cumulative, 4 assigned
        setSubnetStat(40, "cumulative-assigned-addresses", 4);
        addLease4("192.0.4.1", 40);
        addLease4("192.0.4.2", 40);
        addLease4("192.0.4.3", 40);
        addLease4("192.0.4.4", 40);

        // Subnet 50, 2 cumulative, 1 assigned, 1 declined
        setSubnetStat(50, "cumulative-assigned-addresses", 2);
        addLease4("192.0.5.1", 50);
        addLease4("192.0.5.2", 50, Lease::STATE_DECLINED);
    }

    /// @brief Initializes lease manager for v6 operation
    ///
    /// Creates a lease manager (memfile, trimmed down to keep everything in
    /// memory only) and adds five subnets to the configuration.
    void initLeaseMgr6() {
        LeaseMgrFactory::destroy();
        LeaseMgrFactory::create("type=memfile persist=false universe=6");

        lmptr_ = &(LeaseMgrFactory::instance());
        ASSERT_TRUE(lmptr_);

        CfgMgr& cfg_mgr = CfgMgr::instance();
        CfgSubnets6Ptr subnets = cfg_mgr.getStagingCfg()->getCfgSubnets6();

        Subnet6Ptr subnet;
        Pool6Ptr pool;

        subnet.reset(new Subnet6(IOAddress("2001:db8:1::"), 64, 1, 2, 3, 4, 10));
        pool.reset(new Pool6(Lease::TYPE_NA, IOAddress("2001:db8:1::"), 112));
        subnet->addPool(pool);
        subnets->add(subnet);

        subnet.reset(new Subnet6(IOAddress("2001:db8:2::"), 64, 1, 2, 3, 4, 20));
        pool.reset(new Pool6(Lease::TYPE_NA, IOAddress("2001:db8:2::"), 104));
        subnet->addPool(pool);
        subnets->add(subnet);

        subnet.reset(new Subnet6(IOAddress("2001:db8:3::"), 64, 1, 2, 3, 4, 30));
        pool.reset(new Pool6(Lease::TYPE_NA, IOAddress("2001:db8:3::"), 124));
        subnet->addPool(pool);
        pool.reset(new Pool6(Lease::TYPE_PD, IOAddress("3001::"), 96, 112));
        subnet->addPool(pool);
        subnets->add(subnet);

        subnet.reset(new Subnet6(IOAddress("2001:db8:4::"), 64, 1, 2, 3, 4, 40));
        pool.reset(new Pool6(Lease::TYPE_NA, IOAddress("2001:db8:4::"), 104));
        subnet->addPool(pool);
        subnets->add(subnet);

        // Subnet 50 is prefix only
        subnet.reset(new Subnet6(IOAddress("2001:db8:5::"), 64, 1, 2, 3, 4, 50));
        pool.reset(new Pool6(Lease::TYPE_PD, IOAddress("5001::"), 96, 112));
        subnet->addPool(pool);
        subnets->add(subnet);

        cfg_mgr.commit();

        // Subnet 10: 10000 cumulative NAs, 2 assigned, 3 declined, 1 expired
        setSubnetStat(10, "cumulative-assigned-nas", 10000);
        addLease6("2001:db8:1::1", 10);
        addLease6("2001:db8:1::2", 10);
        addLease6("2001:db8:1::3", 10, Lease::STATE_DECLINED);
        addLease6("2001:db8:1::4", 10, Lease::STATE_DECLINED);
        addLease6("2001:db8:1::5", 10, Lease::STATE_DECLINED);
        addLease6("2001:db8:1::6", 10, Lease::STATE_EXPIRED_RECLAIMED);

        // Subnet 20: 10 cumulative NAs, 3 assigned
        setSubnetStat(20, "cumulative-assigned-nas", 10);
        addLease6("2001:db8:2::1", 20);
        addLease6("2001:db8:2::2", 20);
        addLease6("2001:db8:2::3", 20);

        // Subnet 30: 2 cumulative NAs, 1 assigned, 1 declined,
        // 4 cumulative PDs, 3 assigned
        setSubnetStat(30, "cumulative-assigned-nas", 2);
        addLease6("2001:db8:3::1", 30);
        addLease6("2001:db8:3::2", 30, Lease::STATE_DECLINED);
        setSubnetStat(30, "cumulative-assigned-pds", 4);
        addPrefix("3001::1:0", 112, 30);
        addPrefix("3001::2:0", 112, 30);
        addPrefix("3001::3:0", 112, 30);

        // Subnet 40: no leases

        // Subnet 50: 1000 cumulative PDs, 2 assigned
        setSubnetStat(50, "cumulative-assigned-pds", 1000);
        addPrefix("5001::1:0", 112, 50);
        addPrefix("5001::2:0", 112, 50);
    }

    /// @brief Creates an IPv4 lease
    ///
    /// Lease parameters: valid lifetime = 3600, cltt = 12345678,
    /// fqdn-fwd = false,fqdn-rev = true, hostname = myhost.example.com
    ///
    /// @param ip_address IP address for the lease.
    /// @param subnet_id subnet identifier
    /// @param state lease state
    void addLease4(const std::string& ip_address, const SubnetID& subnet_id,
                   const int state = Lease::STATE_DEFAULT) {
        Lease4Ptr lease(new Lease4());

        lease->addr_ = IOAddress(ip_address);

        ++hwaddr_[5];

        // Set other parameters.  For historical reasons, address 0 is not used.
        lease->hwaddr_.reset(new HWAddr(hwaddr_, HTYPE_ETHER));
        lease->valid_lft_ = 3600;
        lease->cltt_ = 12345678;
        lease->subnet_id_ = subnet_id;
        lease->fqdn_fwd_ = false;
        lease->fqdn_rev_ = true;
        lease->hostname_ = "myhost.example.com.";
        lease->state_ = state;

        ASSERT_NO_THROW(lmptr_->addLease(lease))
                        << "cannot add lease4: " << ip_address
                        << " subnet: " << subnet_id;
    }

    /// @brief Creates an IPv6 lease
    ///
    /// @param ip_address IP address for the lease.
    /// @param subnet_id subnet identifier
    /// @param state lease state of the lease, defaults to STATE_DEFAULT
    /// @param lease_type type of the lease, defaults to TYPE_NA
    /// @param prefix_len prefix length of the lease, defaults to 128
    void addLease6(const std::string& ip_address, const SubnetID& subnet_id,
                   const int state = Lease::STATE_DEFAULT,
                   const Lease::Type& lease_type = Lease::TYPE_NA,
                   const int prefix_len = 128) {
        Lease6Ptr lease(new Lease6());

        ++duid_[7];

        lease->addr_ = IOAddress(ip_address);
        lease->type_ = lease_type;
        lease->prefixlen_ = prefix_len;
        lease->iaid_ = 42;
        lease->duid_ = DuidPtr(new DUID(duid_));
        lease->preferred_lft_ = 1800;
        lease->valid_lft_ = 3600;
        lease->cltt_ = 12345678;
        lease->subnet_id_ = subnet_id;
        lease->state_ = state;

        ASSERT_NO_THROW(lmptr_->addLease(lease))
                        << "cannot add lease6: " << lease->toText();
        }

    /// @brief Creates an IPv6 PD lease
    ///
    /// @param prefix IP address prefix for the lease.
    /// @param prefix_len prefix length of the lease
    /// @param subnet_id subnet identifier
    /// @param state lease state of the lease, defaults to STATE_DEFAULT
    void addPrefix(const std::string& prefix, const int prefix_len,
                   const SubnetID& subnet_id,
                   const int state = Lease::STATE_DEFAULT) {
        addLease6(prefix, subnet_id, state, Lease::TYPE_PD, prefix_len);
    }

    /// @brief Creates a statistic
    ///
    /// @param subnet_id subnet identifier
    /// @param name statistic name
    /// @param value statistic value
    void setSubnetStat(const SubnetID& subnet_id, const std::string& name,
                       int64_t value) {
        StatsMgr& stats_mgr = StatsMgr::instance();
        const std::string& stats_name =
            stats_mgr.generateName("subnet", subnet_id, name);
        stats_mgr.setValue(stats_name, value);
    }

    /// @brief Pointer to the lease manager
    LeaseMgr* lmptr_;

    /// @brief Holds the hardware address for creating v4 leases
    vector<uint8_t> hwaddr_;

    /// @brief Holds the DUID for creating v6 leases
    vector<uint8_t> duid_;
};

// Simple test that checks the library really registers the commands.
TEST_F(StatCmdsTest, commands) {

    vector<string> cmds = { "stat-lease4-get",
                            "stat-lease6-get" };
    testCommands(cmds);
}

// Check that the library can be loaded and unloaded multiple times.
TEST_F(StatCmdsTest, multipleLoads) {
    testMultipleLoads();
}

struct TestScenario {
    std::string description_;
    std::string command_txt_;
    std::string exp_response_;
    std::string exp_result_json;
};

// Verifies detection of invalid v4 input parameters.
TEST_F(StatCmdsTest, StatLease4GetBadParams) {
    // Initialize lease manager
    initLeaseMgr4();

    std::vector<TestScenario> tests = {
        {
        "arguments is not a map",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": \"not a map\"\n"
        "}",
        "'arguments' parameter is not a map"
        },
        {
        "subnet-id 0",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-id\": 0\n"
        "    }\n"
        "}",
        "'subnet-id' parameter must be > 0"
        },

        {
        "subnet-id -1",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-id\": -1\n"
        "    }\n"
        "}",
        "'subnet-id' parameter must be > 0"
        },
        {
        "subnet-id string",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-id\": \"boo\"\n"
        "    }\n"
        "}",
        "'subnet-id' parameter is not integer"
        },
        {
        "subnet-range not a map",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": -1\n"
        "    }\n"
        "}",
        "subnet-range parameter is not a map"
        },
        {
        "subnet-range empty",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "       }\n"
        "    }\n"
        "}",
        "'first-subnet-id' parameter missing or not an integer"
        },
        {
        "first-subnet-id string",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": \"boo\"\n"
        "       }\n"
        "    }\n"
        "}",
        "'first-subnet-id' parameter missing or not an integer"
        },
        {
        "first-subnet-id < 0",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": -77\n"
        "       }\n"
        "    }\n"
        "}",
        "'first-subnet-id' parameter must be > 0"
        },
        {
        "last-subnet-id missing",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' parameter missing or not an integer"
        },
        {
        "last-subnet-id string",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10,\n"
        "           \"last-subnet-id\": \"boo\"\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' parameter missing or not an integer"
        },
        {
        "last-subnet-id < 0",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10,\n"
        "           \"last-subnet-id\": -1\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' parameter must be > 0"
        },
        {
        "invalid range",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 50,\n"
        "           \"last-subnet-id\": 2\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' must be greater than 'first-subnet-id'"
        },
        {
        "Subnet-Range: all in the middle",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-id\": 10,\n"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 20,"
        "           \"last-subnet-id\": 40"
        "       }\n"
        "    }\n"
        "}",
        "cannot specify both subnet-id and subnet-range"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_ERROR,(*test).exp_response_);
        }
    }
}

// Verifies result content for valid v4 statistic commands.
// These test scenarios are all valid, and not expected to throw.
TEST_F(StatCmdsTest, statLease4GetValid) {

    // Initialize lease manager.
    initLeaseMgr4();

    // Note timestamp actual values are not important but are included
    // for clarity.
    std::vector<TestScenario> tests = {
        {
        "ALL-Subnets",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "    }\n"
        "}",
        "stat-lease4-get[all subnets]: 5 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 10, 256, 300, 2, 3 ],\n"
        "       [ 20, 16, 10, 3, 0 ],\n"
        "       [ 30, 256, 0, 0, 0 ],\n"
        "       [ 40, 16, 4, 4, 0 ],\n"
        "       [ 50, 256, 2, 1, 1 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "ALL-Subnets - arguments omitted",
        "{\n"
        "    \"command\": \"stat-lease4-get\"\n"
        "}",
        "stat-lease4-get[all subnets]: 5 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 10, 256, 300, 2, 3 ],\n"
        "       [ 20, 16, 10, 3, 0 ],\n"
        "       [ 30, 256, 0, 0, 0 ],\n"
        "       [ 40, 16, 4, 4, 0 ],\n"
        "       [ 50, 256, 2, 1, 1 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Single-Subnet",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-id\": 20"
        "    }\n"
        "}",
        "stat-lease4-get[subnet-id=20]: 1 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 20, 16, 10, 3, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range: beginning to middle",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10,"
        "           \"last-subnet-id\": 30"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease4-get[subnets 10 through 30]: 3 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 10, 256, 300, 2, 3 ],\n"
        "       [ 20, 16, 10, 3, 0 ],\n"
        "       [ 30, 256, 0, 0, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range: all in the middle",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 20,"
        "           \"last-subnet-id\": 40"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease4-get[subnets 20 through 40]: 3 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 20, 16, 10, 3, 0 ],\n"
        "       [ 30, 256, 0, 0, 0 ],\n"
        "       [ 40, 16, 4, 4, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range: middle to end",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 30,"
        "           \"last-subnet-id\": 50"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease4-get[subnets 30 through 50]: 3 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 30, 256, 0, 0, 0 ],\n"
        "       [ 40, 16, 4, 4, 0 ],\n"
        "       [ 50, 256, 2, 1, 1 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range: fuzzy range",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 25,"
        "           \"last-subnet-id\": 45"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease4-get[subnets 25 through 45]: 2 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 30, 256, 0, 0, 0 ],\n"
        "       [ 40, 16, 4, 4, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_SUCCESS,
                    (*test).exp_response_, (*test).exp_result_json);
        }
    }

}

// Verifies result content for valid v4 statistic commands that
// result in no matching subnets.
TEST_F(StatCmdsTest, statLease4GetSubnetsNotFound) {

    // Initialize lease manager.
    initLeaseMgr4();

    // Note timestamp actual values are not important but are included
    // for clarity.
    std::vector<TestScenario> tests = {
        {
        "Single-Subnet, undefined subnet",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-id\": 88"
        "    }\n"
        "}",
        "stat-lease4-get[subnet-id=88]: no matching data, subnet-id: 88 does not exist",
        "{}"
        },
        {
        "Subnet-Range: empty range below",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 2,"
        "           \"last-subnet-id\": 6"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease4-get[subnets 2 through 6]: no matching data, selected ID range: 2 through 6 includes no known subnets",
        "{}"
        },
        {
        "Subnet-Range: empty range above",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 200,"
        "           \"last-subnet-id\": 600"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease4-get[subnets 200 through 600]: no matching data, selected ID range: 200 through 600 includes no known subnets",
        "{}"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_EMPTY,
                    (*test).exp_response_, (*test).exp_result_json);
        }
    }

}

// Verifies detection of invalid v6 input parameters.
TEST_F(StatCmdsTest, StatLease6GetBadParams) {
    // Initialize lease manager
    initLeaseMgr6();

    std::vector<TestScenario> tests = {
        {
        "arguments not a map",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": \"not a map\"\n"
        "}",
        "'arguments' parameter is not a map"
        },
        {
        "subnet-id 0",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-id\": 0\n"
        "    }\n"
        "}",
        "'subnet-id' parameter must be > 0"
        },

        {
        "subnet-id -1",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-id\": -1\n"
        "    }\n"
        "}",
        "'subnet-id' parameter must be > 0"
        },
        {
        "subnet-id string",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-id\": \"boo\"\n"
        "    }\n"
        "}",
        "'subnet-id' parameter is not integer"
        },
        {
        "subnet-range not a map",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": -1\n"
        "    }\n"
        "}",
        "subnet-range parameter is not a map"
        },
        {
        "subnet-range empty",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "       }\n"
        "    }\n"
        "}",
        "'first-subnet-id' parameter missing or not an integer"
        },
        {
        "first-subnet-id string",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": \"boo\"\n"
        "       }\n"
        "    }\n"
        "}",
        "'first-subnet-id' parameter missing or not an integer"
        },
        {
        "first-subnet-id < 0",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": -77\n"
        "       }\n"
        "    }\n"
        "}",
        "'first-subnet-id' parameter must be > 0"
        },
        {
        "last-subnet-id missing",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' parameter missing or not an integer"
        },
        {
        "last-subnet-id string",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10,\n"
        "           \"last-subnet-id\": \"boo\"\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' parameter missing or not an integer"
        },
        {
        "last-subnet-id < 0",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10,\n"
        "           \"last-subnet-id\": -1\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' parameter must be > 0"
        },
        {
        "invalid range",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "        \"subnet-range\": {\n"
        "           \"first-subnet-id\": 50,\n"
        "           \"last-subnet-id\": 2\n"
        "       }\n"
        "    }\n"
        "}",
        "'last-subnet-id' must be greater than 'first-subnet-id'"
        },
        {
        "both subnet and range",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-id\": 10,\n"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 20,"
        "           \"last-subnet-id\": 40"
        "       }\n"
        "    }\n"
        "}",
        "cannot specify both subnet-id and subnet-range"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_ERROR,(*test).exp_response_);
        }
    }
}

// Verifies result content for valid v6 statistic commands.
// These test scenarios are all valid, and not expected to throw.
TEST_F(StatCmdsTest, statLease6GetValid) {

    // Initialize lease manager
    initLeaseMgr6();

    // Note timestamp actual values are not important but are included
    // for clarity.
    std::vector<TestScenario> tests = {
        {
        "ALL-Subnets6",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "    }\n"
        "}",
        "stat-lease6-get[all subnets]: 5 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 10, 65536, 10000, 2, 3, 0, 0, 0 ],\n"
        "       [ 20, 16777216, 10, 3, 0, 0, 0, 0 ],\n"
        "       [ 30, 16, 2, 1, 1, 65536, 4, 3 ],\n"
        "       [ 40, 16777216, 0, 0, 0, 0, 0, 0 ],\n"
        "       [ 50, 0, 0, 0, 0, 65536, 1000, 2 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "ALL-Subnets6 arguments omitted",
        "{\n"
        "    \"command\": \"stat-lease6-get\"\n"
        "}",
        "stat-lease6-get[all subnets]: 5 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 10, 65536, 10000, 2, 3, 0, 0, 0 ],\n"
        "       [ 20, 16777216, 10, 3, 0, 0, 0, 0 ],\n"
        "       [ 30, 16, 2, 1, 1, 65536, 4, 3 ],\n"
        "       [ 40, 16777216, 0, 0, 0, 0, 0, 0 ],\n"
        "       [ 50, 0, 0, 0, 0, 65536, 1000, 2 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Single-Subnet6",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-id\": 20"
        "    }\n"
        "}",
        "stat-lease6-get[subnet-id=20]: 1 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 20, 16777216, 10, 3, 0, 0, 0, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range6: beginning to middle",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 10,"
        "           \"last-subnet-id\": 30"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease6-get[subnets 10 through 30]: 3 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 10, 65536, 10000, 2, 3, 0, 0, 0 ],\n"
        "       [ 20, 16777216, 10, 3, 0, 0, 0, 0 ],\n"
        "       [ 30, 16, 2, 1, 1, 65536, 4, 3 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range6: all in the middle",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 20,"
        "           \"last-subnet-id\": 40"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease6-get[subnets 20 through 40]: 3 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 20, 16777216, 10, 3, 0, 0, 0, 0 ],\n"
        "       [ 30, 16, 2, 1, 1, 65536, 4, 3 ],\n"
        "       [ 40, 16777216, 0, 0, 0, 0, 0, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range6: middle to end",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 30,"
        "           \"last-subnet-id\": 50"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease6-get[subnets 30 through 50]: 3 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 30, 16, 2, 1, 1, 65536, 4, 3 ],\n"
        "       [ 40, 16777216, 0, 0, 0, 0, 0, 0 ],\n"
        "       [ 50, 0, 0, 0, 0, 65536, 1000, 2 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        },
        {
        "Subnet-Range6: fuzzy range",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 25,"
        "           \"last-subnet-id\": 45"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease6-get[subnets 25 through 45]: 2 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 30, 16, 2, 1, 1, 65536, 4, 3 ],\n"
        "       [ 40, 16777216, 0, 0, 0, 0, 0, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_SUCCESS,
                    (*test).exp_response_, (*test).exp_result_json);
        }
    }

}

// Verifies result content for valid v6 statistic commands that
// result in no matching subnets.
TEST_F(StatCmdsTest, statLease6GetSubnetsNotFound) {

    // Initialize lease manager
    initLeaseMgr6();

    // Note timestamp actual values are not important but are included
    // for clarity.
    std::vector<TestScenario> tests = {
        {
        "Single-Subnet6, undefined subnet",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-id\": 88"
        "    }\n"
        "}",
        "stat-lease6-get[subnet-id=88]: no matching data, subnet-id: 88 does not exist",
        "{}"
        },
        {
        "Subnet-Range6: empty range below",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 2,"
        "           \"last-subnet-id\": 6"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease6-get[subnets 2 through 6]: no matching data, selected ID range: 2 through 6 includes no known subnets",
        "{}"
        },
        {
        "Subnet-Range6: empty range above",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "       \"subnet-range\": {\n"
        "           \"first-subnet-id\": 200,"
        "           \"last-subnet-id\": 600"
        "       }\n"
        "    }\n"
        "}",
        "stat-lease6-get[subnets 200 through 600]: no matching data, selected ID range: 200 through 600 includes no known subnets",
        "{}"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_EMPTY,
                    (*test).exp_response_, (*test).exp_result_json);
        }
    }
}

// Verifies that statistics for v4 subnets which no longer
// exist are dropped from the result sets.
TEST_F(StatCmdsTest, statLease4OrphanedStats) {

    // Initialize lease manager.
    initLeaseMgr4();

    // Now remove subnets 10, 30, and 50 thereby orphaning their leases.
    CfgMgr& cfg_mgr = CfgMgr::instance();
    CfgSubnets4Ptr subnets = cfg_mgr.getCurrentCfg()->getCfgSubnets4();
    ASSERT_NO_THROW_LOG(subnets->del(10));
    ASSERT_NO_THROW_LOG(subnets->del(30));
    ASSERT_NO_THROW_LOG(subnets->del(50));
    cfg_mgr.commit();

    // Note timestamp actual values are not important but are included
    // for clarity.
    std::vector<TestScenario> tests = {
        {
        "ALL-Subnets",
        "{\n"
        "    \"command\": \"stat-lease4-get\",\n"
        "    \"arguments\": {"
        "    }\n"
        "}",
        "stat-lease4-get[all subnets]: 2 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-addresses\",\n"
        "        \"cumulative-assigned-addresses\",\n"
        "        \"assigned-addresses\", \"declined-addresses\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 20, 16, 0, 3, 0 ],\n"
        "       [ 40, 16, 0, 4, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_SUCCESS,
                    (*test).exp_response_, (*test).exp_result_json);
        }
    }
}

// Verifies that statistics for v6 subnets which no longer
// exist are dropped from the result sets.
TEST_F(StatCmdsTest, statLease6OrphanedStats) {

    // Initialize lease manager.
    initLeaseMgr6();

    // Now remove subnets 10, 30, and 50 thereby orphaning their leases.
    CfgMgr& cfg_mgr = CfgMgr::instance();
    CfgSubnets6Ptr subnets = cfg_mgr.getCurrentCfg()->getCfgSubnets6();
    ASSERT_NO_THROW_LOG(subnets->del(10));
    ASSERT_NO_THROW_LOG(subnets->del(30));
    ASSERT_NO_THROW_LOG(subnets->del(50));
    cfg_mgr.commit();

    // Note timestamp actual values are not important but are included
    // for clarity.
    std::vector<TestScenario> tests = {
        {
        "ALL-Subnets",
        "{\n"
        "    \"command\": \"stat-lease6-get\",\n"
        "    \"arguments\": {"
        "    }\n"
        "}",
        "stat-lease6-get[all subnets]: 2 rows found",
        "{\n"
        "\"result-set\": {\n"
        "   \"columns\": [\n"
        "        \"subnet-id\", \"total-nas\",\n"
        "        \"cumulative-assigned-nas\", \"assigned-nas\",\n"
        "        \"declined-nas\", \"total-pds\",\n"
        "        \"cumulative-assigned-pds\", \"assigned-pds\"\n"
        "   ],\n"
        "   \"rows\": [\n"
        "       [ 20, 16777216, 0, 3, 0, 0, 0, 0 ],\n"
        "       [ 40, 16777216, 0, 0, 0, 0, 0, 0 ]\n"
        "   ],\n"
        "   \"timestamp\": \"2018-05-04 15:03:37.000000\" }\n"
        "}\n"
        }
    };

    for (auto test = tests.begin(); test != tests.end(); ++test) {
        {
        SCOPED_TRACE((*test).description_);
        testCommand((*test).command_txt_, CONTROL_RESULT_SUCCESS,
                    (*test).exp_response_, (*test).exp_result_json);
        }
    }
}

} // end of anonymous namespace