1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
|
#!/bin/sh
# Copyright (C) 2015-2023 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).
# shellcheck disable=SC2154
# SC2154: ... is referenced but not assigned.
# Reason: some variables are sourced.
# Exit with error if commands exit with non-zero and if undefined variables are
# used.
set -eu
# Include common test library.
. "@abs_top_builddir@/src/lib/testutils/dhcp_test_lib.sh"
# Include admin utilities
. "@abs_top_builddir@/src/bin/admin/admin-utils.sh"
# Set path to the production schema scripts
db_scripts_dir="@abs_top_srcdir@/src/share/database/scripts"
# Set location of the kea-admin.
kea_admin="@abs_top_builddir@/src/bin/admin/kea-admin"
# Convenience function for running an SQL statement
# param hdr - text message to prepend to any error
# param qry - SQL statement to run
# param exp_value - optional expected value. This can be used IF the SQL statement
# generates a single value, such as a SELECT which returns one column for one row.
# Examples:
#
# qry="insert into lease6 (address, lease_type, subnet_id, state) values ($addr,$ltype,1,0)"
# run_statement "#2" "$qry"
#
# qry="select leases from lease6_stat where subnet_id = 1 and lease_type = $ltype and state = 0"
# run_statement "#3" "$qry" 1
run_statement() {
hdr="$1";shift
qry="$1";shift
exp_value="${1-}" # Optional value. If not given, replace with empty string.
# Execute the statement
run_command \
pgsql_execute "${qry}"
value="${OUTPUT}"
# Execution should succeed
assert_eq 0 "${EXIT_CODE}" "$hdr: SQL=[$qry] failed: (expected status code %d, returned %d)"
# If there's an expected value, test it
if [ "x$exp_value" != "x" ]
then
assert_str_eq "$exp_value" "$value" "$hdr: SQL=[$qry] wrong: (expected value %s, returned %s)"
fi
}
# Wipe all tables from the DB:
pgsql_wipe() {
printf "Wiping whole database %s...\n" "${db_name}"
export PGPASSWORD="${db_password}"
run_command \
psql --set ON_ERROR_STOP=1 -A -t -q -U keatest -d keatest -f "${db_scripts_dir}/pgsql/dhcpdb_drop.pgsql"
assert_eq 0 "${EXIT_CODE}" "pgsql_wipe drop failed, expected exit code: %d, actual: %d"
}
pgsql_db_init_test() {
test_start "pgsql.db-init"
# Let's wipe the whole database
pgsql_wipe
# Create the database
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "kea-admin db-init pgsql failed, expected exit code: %d, actual: %d"
# Verify that all the expected tables exist
# Check schema_version table
run_command \
pgsql_execute "SELECT version, minor FROM schema_version"
assert_eq 0 "${EXIT_CODE}" "schema_version table check failed, expected exit code: %d, actual: %d"
# Check lease4 table
run_command \
pgsql_execute "SELECT address, hwaddr, client_id, valid_lifetime, expire, subnet_id, fqdn_fwd, fqdn_rev, hostname, state, user_context FROM lease4"
assert_eq 0 "${EXIT_CODE}" "lease4 table check failed, expected exit code: %d, actual: %d"
# Check lease6 table
run_command \
pgsql_execute "SELECT address, duid, valid_lifetime, expire, subnet_id, pref_lifetime, lease_type, iaid, prefix_len, fqdn_fwd, fqdn_rev, hostname, state, user_context FROM lease6"
assert_eq 0 "${EXIT_CODE}" "lease6 table check failed, expected exit code: %d, actual: %d"
# Check lease6_types table
run_command \
pgsql_execute "SELECT lease_type, name FROM lease6_types"
assert_eq 0 "${EXIT_CODE}" "lease6_types table check failed, expected exit code: %d, actual: %d"
# Check lease_state table
run_command \
pgsql_execute "SELECT state, name FROM lease_state"
assert_eq 0 "${EXIT_CODE}" "lease_state table check failed, expected exit code: %d, actual: %d"
# Trying to create it again should fail. This verifies the db present
# check
printf '\nDB created successfully, make sure we are not allowed to try it again:\n'
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 2 "${EXIT_CODE}" "kea-admin failed to deny db-init, expected exit code: %d, actual: %d"
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
pgsql_db_version_test() {
test_start "pgsql.db-version"
# Wipe the whole database
pgsql_wipe
# Do not create any table so db-version will raise an error
printf 'Checking db-version error case...\n'
run_command \
"${kea_admin}" db-version pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}"
assert_eq 3 "${EXIT_CODE}" "schema_version table still exists. (expected %d, exit code %d)"
# Create the database
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "cannot initialize the database, expected exit code: %d, actual: %d"
# Verify that kea-admin db-version returns the latest version.
run_command \
"${kea_admin}" db-version pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}"
version="${OUTPUT}"
assert_str_eq "18.0" "${version}" "Expected kea-admin to return %s, returned value was %s"
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
pgsql_upgrade_1_0_to_2_0_test() {
# Added state column to lease4
run_command \
pgsql_execute "select state from lease4"
assert_eq 0 "${EXIT_CODE}" "lease4 is missing state column. (expected status code %d, returned %d)"
# Added state column to lease6
run_command \
pgsql_execute "select state from lease6"
assert_eq 0 "${EXIT_CODE}" "lease6 is missing state column. (expected status code %d, returned %d)"
# Added stored procedures for lease dumps
run_command \
pgsql_execute "select lease4DumpHeader from lease4DumpHeader()"
assert_eq 0 "${EXIT_CODE}" "function lease4DumpHeader() broken or missing. (expected status code %d, returned %d)"
run_command \
pgsql_execute "select address from lease4DumpData()"
assert_eq 0 "${EXIT_CODE}" "function lease4DumpData() broken or missing. (expected status code %d, returned %d)"
run_command \
pgsql_execute "select lease6DumpHeader from lease6DumpHeader()"
assert_eq 0 "${EXIT_CODE}" "function lease6DumpHeader() broken or missing. (expected status code %d, returned %d)"
run_command \
pgsql_execute "select address from lease6DumpData()"
assert_eq 0 "${EXIT_CODE}" "function lease6DumpData() broken or missing. (expected status code %d, returned %d)"
}
pgsql_upgrade_2_0_to_3_0_test() {
# Added hwaddr, hwtype, and hwaddr_source columns to lease6 table
run_command \
pgsql_execute "select hwaddr, hwtype, hwaddr_source from lease6"
assert_eq 0 "${EXIT_CODE}" "lease6 table not upgraded to 3.0 (expected status code %d, returned %d)"
# Added lease_hwaddr_source table
run_command \
pgsql_execute "select hwaddr_source, name from lease_hwaddr_source"
assert_eq 0 "${EXIT_CODE}" "lease_hwaddr_source table is missing or broken. (expected status code %d, returned %d)"
# Added hosts table
run_command \
pgsql_execute "select host_id, dhcp_identifier, dhcp_identifier_type, dhcp4_subnet_id, dhcp6_subnet_id, ipv4_address, hostname, dhcp4_client_classes, dhcp6_client_classes, dhcp4_next_server, dhcp4_server_hostname, dhcp4_boot_file_name, auth_key from hosts"
assert_eq 0 "${EXIT_CODE}" "hosts table is missing or broken. (expected status code %d, returned %d)"
# Added ipv6_reservations table
run_command \
pgsql_execute "select reservation_id, address, prefix_len, type, dhcp6_iaid, host_id from ipv6_reservations"
assert_eq 0 "${EXIT_CODE}" "ipv6_reservations table is missing or broken. (expected status code %d, returned %d)"
# Added dhcp4_options table
run_command \
pgsql_execute "select option_id, code, value, formatted_value, space, persistent, dhcp_client_class, dhcp4_subnet_id, host_id, scope_id from dhcp4_options"
assert_eq 0 "${EXIT_CODE}" "dhcp4_options table is missing or broken. (expected status code %d, returned %d)"
# Added dhcp6_options table
run_command \
pgsql_execute "select option_id, code, value, formatted_value, space, persistent, dhcp_client_class, dhcp6_subnet_id, host_id,scope_id from dhcp6_options"
assert_eq 0 "${EXIT_CODE}" "dhcp6_options table is missing or broken. (expected status code %d, returned %d)"
# Added host_identifier_type table
run_command \
pgsql_execute "select type, name from host_identifier_type"
assert_eq 0 "${EXIT_CODE}" "host_identifier_type table is missing or broken. (expected status code %d, returned %d)"
# Added dhcp_option_scope table
run_command \
pgsql_execute "select scope_id, scope_name from dhcp_option_scope"
assert_eq 0 "${EXIT_CODE}" "dhcp_option_scope table is missing or broken. (expected status code %d, returned %d)"
# Added dhcp6_options table
run_command \
pgsql_execute "select option_id, code, value, formatted_value, space, persistent, dhcp_client_class, dhcp6_subnet_id, host_id,scope_id from dhcp6_options"
assert_eq 0 "${EXIT_CODE}" "dhcp6_options table is missing or broken. (expected status code %d, returned %d)"
# Added order by clause to lease4DumpData
run_command \
pgsql_execute "select address from lease4DumpData()"
assert_eq 0 "${EXIT_CODE}" "function lease4DumpData() broken or missing. (expected status code %d, returned %d)"
run_command \
pgsql_execute "\sf lease4DumpData"
assert_eq 0 "${EXIT_CODE}" "\sf of lease4DumpData failed. (expected status code %d, returned %d)"
count=$(echo "${OUTPUT}" | grep -Eci 'order by [a-z]*[\.]?address') || true
assert_eq 1 "${count}" "lease4DumpData is missing order by clause. (expected count %d, returned %d)"
# Added hwaddr columns to lease6DumpHeader
run_command \
pgsql_execute "select lease6DumpHeader from lease6DumpHeader()"
assert_eq 0 "${EXIT_CODE}" "function lease6DumpHeader() broken or missing. (expected status code %d, returned %d)"
count=$(echo "${OUTPUT}" | grep -Fci 'hwaddr') || true
assert_eq 1 "${count}" "lease6DumpHeader is missing the hwaddr column"
count=$(echo "${OUTPUT}" | grep -Fci 'hwtype') || true
assert_eq 1 "${count}" "lease6DumpHeader is missing the hwtype column"
count=$(echo "${OUTPUT}" | grep -Fci 'hwaddr_source') || true
assert_eq 1 "${count}" "lease6DumpHeader is missing the hwaddr_source column"
# Added hwaddr columns to lease6DumpData
run_command \
pgsql_execute "select hwaddr,hwtype,hwaddr_source from lease6DumpData()"
assert_eq 0 "${EXIT_CODE}" "function lease6DumpData() broken or missing. (expected status code %d, returned %d)"
# Added order by clause to lease6DumpData
run_command \
pgsql_execute "\sf lease6DumpData"
assert_eq 0 "${EXIT_CODE}" "\sf of lease6DumpData failed. (expected status code %d, returned %d)"
count=$(echo "${OUTPUT}" | grep -Eci 'order by [a-z]*[\.]?address') || true
assert_eq 1 "${count}" "lease6DumpData is missing order by clause. (expected count %d, returned %d)"
# lease_hardware_source should have row for source = 0
run_command \
pgsql_execute "select count(hwaddr_source) from lease_hwaddr_source where hwaddr_source = 0 and name='HWADDR_SOURCE_UNKNOWN'"
assert_eq 0 "${EXIT_CODE}" "select from lease_hwaddr_source failed. (expected status code %d, returned %d)"
assert_eq 1 "${OUTPUT}" "lease_hwaddr_source does not contain entry for HWADDR_SOURCE_UNKNOWN. (record count %d, expected %d)"
}
pgsql_upgrade_3_0_to_6_1_test() {
# Added user_context to lease4
run_command \
pgsql_execute "select user_context from lease4"
assert_eq 0 "${EXIT_CODE}" "lease4 is missing user_context column. (expected status code %d, returned %d)"
# Added user_context to lease6
run_command \
pgsql_execute "select user_context from lease6"
assert_eq 0 "${EXIT_CODE}" "lease6 is missing user_context column. (expected status code %d, returned %d)"
# Added logs table
run_command \
pgsql_execute "select timestamp, address, log from logs"
assert_eq 0 "${EXIT_CODE}" "logs table is missing or broken. (expected status code %d, returned %d)"
}
pgsql_upgrade_6_1_to_6_2_test() {
insert_sql="\
insert into hosts(dhcp_identifier, dhcp_identifier_type, dhcp4_subnet_id, ipv4_address) values (decode('010101010101', 'hex'), 0, 1, x'FFAF0002'::int);\
insert into hosts(dhcp_identifier, dhcp_identifier_type, dhcp4_subnet_id, ipv4_address) values (decode('010101010102', 'hex'), 0, 1, x'FFAF0002'::int)"
run_command \
pgsql_execute "$insert_sql"
assert_eq 0 "${EXIT_CODE}" "insert into hosts failed, expected exit code %d, actual %d"
}
pgsql_upgrade_6_2_to_7_0_test() {
# dhcp4_server should have a single entry for 'all'
select_sql="SELECT id, tag, description, modification_ts from dhcp4_server where id = 1 and tag = 'all'"
run_command \
pgsql_execute "$select_sql"
assert_eq 0 "${EXIT_CODE}" "the dhcp4_server table is broken or missing. (expected status code %d, returned %d)"
# dhcp6_server should have a single entry for 'all'
select_sql="SELECT id, tag, description, modification_ts from dhcp6_server where id = 1 and tag = 'all'"
run_command \
pgsql_execute "$select_sql"
assert_eq 0 "${EXIT_CODE}" "the dhcp6_server table is broken or missing. (expected status code %d, returned %d)"
# Verify that session variable setting is present and functional.
session_sql="\
select get_session_value('kea.text'); \
select set_session_value('kea.text', 'booya'); \
select get_session_value('kea.text'); \
select get_session_boolean('kea.bool'); \
select set_session_value('kea.bool', true); \
select get_session_boolean('kea.bool'); \
select get_session_big_int('kea.bigint'); \
select set_session_value('kea.bigint', cast('1984' as BIGINT)); \
select get_session_big_int('kea.bigint'); \
"
run_command \
pgsql_execute "$session_sql"
assert_eq 0 "${EXIT_CODE}" "session variable handling broken. (expected status code %d, returned %d)"
clean_out=$(echo "${OUTPUT}" | tr '\n' ' ')
assert_str_eq " booya f t 0 1984 " "${clean_out}" "session variable output incorrect"
}
pgsql_upgrade_7_0_to_8_0_test() {
run_command \
pgsql_execute "$session_sql"
# Added class_id to dhcp4_option_def
run_command \
pgsql_execute "select class_id from dhcp4_option_def"
assert_eq 0 "${EXIT_CODE}" "dhcp4_option_def is missing class_id column. (expected status code %d, returned %d)"
# Added class_id to dhcp6_option_def
run_command \
pgsql_execute "select class_id from dhcp6_option_def"
assert_eq 0 "${EXIT_CODE}" "dhcp6_option_def is missing class_id column. (expected status code %d, returned %d)"
# Added preferred lifetime columns to dhcp6_client_class.
run_command \
pgsql_execute "select preferred_lifetime, min_preferred_lifetime, max_preferred_lifetime from dhcp6_client_class"
assert_eq 0 "${EXIT_CODE}" "dhcp6_client_class is missing preferred lifetime column(s). (expected status code %d, returned %d)"
# Check the output of colonSeparatedHex().
run_command \
pgsql_execute "SELECT colonSeparatedHex('f123456789')"
assert_eq 0 "${EXIT_CODE}" 'colonSeparatedHex() failed, expected exit code %d, actual %d'
assert_str_eq 'f1:23:45:67:89' "${OUTPUT}"
run_command \
pgsql_execute "SELECT colonSeparatedHex('')"
assert_eq 0 "${EXIT_CODE}" 'colonSeparatedHex() failed, expected exit code %d, actual %d'
assert_str_eq '' "${OUTPUT}"
run_command \
pgsql_execute "SELECT colonSeparatedHex('f')"
assert_eq 0 "${EXIT_CODE}" 'colonSeparatedHex() failed, expected exit code %d, actual %d'
assert_str_eq '0f' "${OUTPUT}"
run_command \
pgsql_execute "SELECT colonSeparatedHex('f1')"
assert_eq 0 "${EXIT_CODE}" 'colonSeparatedHex() failed, expected exit code %d, actual %d'
assert_str_eq 'f1' "${OUTPUT}"
run_command \
pgsql_execute "SELECT colonSeparatedHex('f12')"
assert_eq 0 "${EXIT_CODE}" 'colonSeparatedHex() failed, expected exit code %d, actual %d'
assert_str_eq '0f:12' "${OUTPUT}"
# Check lease4Dump*().
run_command \
pgsql_execute "INSERT INTO lease4 VALUES(10,E'\\\\x3230',E'\\\\x3330',40,TO_TIMESTAMP(1678900000),50,'t','t','one,example,com',0,'{ \"a\": 1, \"b\": 2 }')"
assert_eq 0 "${EXIT_CODE}" 'INSERT INTO lease4 failed, expected exit code %d, actual %d'
assert_str_eq '' "${OUTPUT}"
run_command \
pgsql_execute "SELECT * FROM lease4DumpHeader()"
assert_eq 0 "${EXIT_CODE}" 'lease4DumpHeader() failed, expected exit code %d, actual %d'
assert_str_eq 'address,hwaddr,client_id,valid_lifetime,expire,subnet_id,fqdn_fwd,fqdn_rev,hostname,state,user_context,pool_id' "${OUTPUT}"
run_command \
pgsql_execute "SELECT * FROM lease4DumpData()" --field-separator=','
assert_eq 0 "${EXIT_CODE}" 'lease4DumpData() failed, expected exit code %d, actual %d'
assert_str_eq '0.0.0.10,32:30,33:30,40,1678900000,50,1,1,oneˎxampleˌom,0,{ "a": 1, "b": 2 },0' "${OUTPUT}"
# Check lease6Dump*().
run_command \
pgsql_execute "INSERT INTO lease6 VALUES(cast('::10' as inet),E'\\\\x3230',30,TO_TIMESTAMP(1678900000),40,50,1,60,70,'t','t','one,example,com',0,E'\\\\x3830',16,0,'{ \"a\": 1, \"b\": 2 }',0)"
assert_eq 0 "${EXIT_CODE}" 'INSERT INTO lease6 failed, expected exit code %d, actual %d'
assert_str_eq '' "${OUTPUT}"
run_command \
pgsql_execute "SELECT * FROM lease6DumpHeader()"
assert_eq 0 "${EXIT_CODE}" 'lease6DumpHeader() failed, expected exit code %d, actual %d'
assert_str_eq 'address,duid,valid_lifetime,expire,subnet_id,pref_lifetime,lease_type,iaid,prefix_len,fqdn_fwd,fqdn_rev,hostname,hwaddr,state,user_context,hwtype,hwaddr_source,pool_id' "${OUTPUT}"
run_command \
pgsql_execute "SELECT * FROM lease6DumpData()" --field-separator=','
assert_eq 0 "${EXIT_CODE}" 'lease6DumpData() failed, expected exit code %d, actual %d'
assert_str_eq '::10,32:30,30,1678900000,40,50,1,60,70,1,1,oneˎxampleˌom,38:30,0,{ "a": 1, "b": 2 },16,0,0' "${OUTPUT}"
# Check lease4Upload().
run_command \
pgsql_execute "SELECT lease4Upload('192.0.0.0','ff0102030405','01ff0102030405',7200,1234567890,1,0,0,'',0,'',0)"
assert_eq 0 "${EXIT_CODE}" 'lease4Upload() failed, expected exit code %d, actual %d'
assert_str_eq '' "${OUTPUT}"
# Check lease6Upload().
run_command \
pgsql_execute "SELECT lease6Upload('2001:db8::','000100012955cb80ff0102030407',7200,1234567890,1,3600,0,1,128,0,0,'','ff0102030407',0,'',90,16,0)"
assert_eq 0 "${EXIT_CODE}" 'lease6Upload() failed, expected exit code %d, actual %d'
assert_str_eq '' "${OUTPUT}"
}
pgsql_upgrade_8_0_to_9_0_test() {
run_command \
pgsql_execute "$session_sql"
# Most changes are not readily testable without querying the information schema,
# not sure the effort is worthwhile. Verify that function gmt_epoch() was created.
run_command \
pgsql_execute "select gmt_epoch(now())"
assert_eq 0 "${EXIT_CODE}" "function gmt_epoch() broken or missing. (expected status code %d, returned %d)"
}
pgsql_upgrade_9_0_to_10_test() {
run_command \
pgsql_execute "$session_sql"
# Get function source code so we can check that it returns NEW.
# Function name must be lower case for WHERE clause.
run_command \
pgsql_execute "select proname,prosrc from pg_proc where proname='func_dhcp6_client_class_check_dependency_bins'"
assert_eq 0 "${EXIT_CODE}" "function func_dhcp6_client_class_check_dependency_BINS() broken or missing. (expected status code %d, returned %d)"
count=$(echo "${OUTPUT}" | grep -Eci 'RETURN NEW') || true
assert_eq 1 "${count}" "func_dhcp6_client_class_check_dependency_BINS is missing RETURN NEW. (expected count %d, returned %d)"
}
pgsql_upgrade_10_to_11_test() {
run_command \
pgsql_execute "$session_sql"
# Get function source code so we can check that it returns NEW.
# Function name must be lower case for WHERE clause.
run_command \
pgsql_execute "select proname,prosrc from pg_proc where proname='createoptionauditdhcp6'"
assert_eq 0 "${EXIT_CODE}" "function createOptionAuditDHCP6() broken or missing. (expected status code %d, returned %d)"
count=$(echo "${OUTPUT}" | grep -Eci 'SELECT dhcp6_pd_pool.subnet_id INTO sid FROM dhcp6_pd_pool WHERE id = pd_pool_id') || true
assert_eq 1 "${count}" "function createOptionAuditDHCP6() is missing changed line. (expected count %d, returned %d)"
}
pgsql_upgrade_11_to_12_test() {
run_command \
pgsql_execute "$session_sql"
# Check function source code
run_command \
pgsql_execute "select proname,prosrc from pg_proc where proname='func_dhcp4_shared_network_bdel'"
assert_eq 0 "${EXIT_CODE}" "function func_dhcp4_shared_network_BDEL() broken or missing. (expected status code %d, returned %d)"
count=$(echo "${OUTPUT}" | grep -Eci 'UPDATE dhcp4_subnet SET shared_network_name = NULL') || true
assert_eq 1 "${count}" "function func_dhcp4_shared_network_BDEL() is missing changed line. (expected count %d, returned %d)"
# Check function source code
run_command \
pgsql_execute "select proname,prosrc from pg_proc where proname='func_dhcp6_shared_network_bdel'"
assert_eq 0 "${EXIT_CODE}" "function func_dhcp6_shared_network_BDEL() broken or missing. (expected status code %d, returned %d)"
count=$(echo "${OUTPUT}" | grep -Eci 'UPDATE dhcp6_subnet SET shared_network_name = NULL') || true
assert_eq 1 "${count}" "function func_dhcp6_shared_network_BDEL() is missing changed line. (expected count %d, returned %d)"
# user_context should have been added to dhcp4_client_class
qry="select user_context from dhcp4_client_class limit 1"
run_command \
pgsql_execute "${qry}"
assert_eq 0 "${EXIT_CODE}" "${qry}. (expected status code %d, returned %d)"
# user_context should have been added to dhcp6_client_class
qry="select user_context from dhcp6_client_class limit 1"
run_command \
pgsql_execute "${qry}"
assert_eq 0 "${EXIT_CODE}" "${qry}. (expected status code %d, returned %d)"
}
pgsql_upgrade_12_to_13_test() {
# -- lease counting tests --
# Clean up.
query="DELETE FROM lease4; DELETE FROM lease6"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
# Populate the lease tables. Also check that @json_supported is NULL at
# first, and then it is set after inserting leases.
run_command \
pgsql_execute "
INSERT INTO lease4 (address, subnet_id, state, user_context) VALUES (100,1,0,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease4 (address, subnet_id, state, user_context) VALUES (101,1,1,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease4 (address, subnet_id, state, user_context) VALUES (102,1,2,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease4 (address, subnet_id, state, user_context) VALUES (103,1,0,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease4 (address, subnet_id, state, user_context) VALUES (104,1,1,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease4 (address, subnet_id, state, user_context) VALUES (105,1,1,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::10' as inet),0,1,0,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::11' as inet),0,1,1,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::12' as inet),0,1,0,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::13' as inet),0,1,1,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::14' as inet),2,1,0,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::15' as inet),2,1,1,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::16' as inet),2,1,0,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
INSERT INTO lease6 (address, lease_type, subnet_id, state, user_context) VALUES (cast('::17' as inet),2,1,1,
'{\"ISC\": {\"client-classes\": [\"ALL\", \"KNOWN\", \"bar\", \"foo\"] } }');
"
assert_eq 0 "${EXIT_CODE}" 'INSERT INTO leases when upgrading from 11 to 12 failed. expected %d, returned %d'
assert_str_eq '' "${OUTPUT}" "INSERT INTO leases when upgrading from 11 to 12 failed. expected output %s, returned %s"
# Check that @json_supported is NULL by default.
query="SELECT isJsonSupported()"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
json_supported="${OUTPUT}"
if test "${json_supported}" != 'f' && test "${json_supported}" != 't'; then
assert_str_eq '[ft]' "${json_supported}" "${query}. expected '[ft]', returned '${json_supported}'"
fi
for v in 4 6; do
# Check that client classes were counted correctly.
query="SELECT leases FROM lease${v}_stat_by_client_class WHERE client_class = 'foo' LIMIT 1"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
if test "${json_supported}" = 't'; then
assert_str_eq 2 "${OUTPUT}" "${query}: expected output %s, returned %s"
else
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
# -- Verify some calls to checkLeaseXLimits(). --
query="SELECT checkLease${v}Limits('')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
fi
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
query="SELECT checkLease${v}Limits('{}')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
fi
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"client-classes\": [ { \"name\": \"foo\", \"address-limit\": 1 } ] } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq "address limit 1 for client class \"foo\", current lease count 2" "${OUTPUT}" "${query}: expected output %s, returned %s"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"subnet\": { \"id\": 1, \"address-limit\": 1 } } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq "address limit 1 for subnet ID 1, current lease count 2" "${OUTPUT}" "${query}: expected output %s, returned %s"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"client-classes\": [ { \"name\": \"foo\", \"address-limit\": 2 } ] } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq "address limit 2 for client class \"foo\", current lease count 2" "${OUTPUT}" "${query}: expected output %s, returned %s"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"subnet\": { \"id\": 1, \"address-limit\": 2 } } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq "address limit 2 for subnet ID 1, current lease count 2" "${OUTPUT}" "${query}: expected output %s, returned %s"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"client-classes\": [ { \"name\": \"foo\", \"address-limit\": 4 } ] } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
fi
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"subnet\": { \"id\": 1, \"address-limit\": 4 } } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
fi
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"client-classes\": [ { \"name\": \"foo\", \"address-limit\": 1 }, { \"name\": \"bar\", \"address-limit\": 1 } ], \"subnet\": { \"id\": 1, \"address-limit\": 1 } } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq "address limit 1 for client class \"foo\", current lease count 2" "${OUTPUT}" "${query}: expected output %s, returned %s"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"client-classes\": [ { \"name\": \"foo\", \"address-limit\": 2 }, { \"name\": \"bar\", \"address-limit\": 4 } ], \"subnet\": { \"id\": 1, \"address-limit\": 4 } } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq "address limit 2 for client class \"foo\", current lease count 2" "${OUTPUT}" "${query}: expected output %s, returned %s"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"client-classes\": [ { \"name\": \"foo\", \"address-limit\": 4 }, { \"name\": \"bar\", \"address-limit\": 4 } ], \"subnet\": { \"id\": 1, \"address-limit\": 2 } } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq "address limit 2 for subnet ID 1, current lease count 2" "${OUTPUT}" "${query}: expected output %s, returned %s"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
query="SELECT checkLease${v}Limits('{ \"ISC\": { \"limits\": { \"client-classes\": [ { \"name\": \"foo\", \"address-limit\": 4 }, { \"name\": \"bar\", \"address-limit\": 4 } ], \"subnet\": { \"id\": 1, \"address-limit\": 4 } } } }')"
run_command \
pgsql_execute "${query}"
if test "${json_supported}" = 't'; then
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
else
# Should fail with ERROR: operator does not exist: json -> unknown
assert_eq 3 "${EXIT_CODE}" "${query}: expected %d, returned %d"
fi
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
done
# Check that leases counters cannot go negative.
for v in 4 6; do
query="SELECT leases FROM lease${v}_stat WHERE subnet_id = 1 AND state = 0 LIMIT 1"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '2' "${OUTPUT}" "${query}: expected output %s, returned %s"
# Artificially change the subnet counter from 2 down to 1.
query="UPDATE lease${v}_stat SET leases = 1 WHERE subnet_id = 1 AND state = 0"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
if test "${json_supported}" = 't'; then
query="SELECT leases FROM lease${v}_stat_by_client_class WHERE client_class = 'foo' LIMIT 1"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '2' "${OUTPUT}" "${query}: expected output %s, returned %s"
# Artificially change the client class counter from 2 down to 1.
query="UPDATE lease${v}_stat_by_client_class SET leases = 1 WHERE client_class = 'foo'"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
# Clean up.
query="DELETE FROM lease${v}"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '' "${OUTPUT}" "${query}: expected output %s, returned %s"
# SELECT should finish successfully and the subnet counter should be 0.
query="SELECT leases FROM lease${v}_stat WHERE subnet_id = 1 AND state = 0 LIMIT 1"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '0' "${OUTPUT}" "${query}: expected output %s, returned %s"
if test "${json_supported}" = 't'; then
# SELECT should finish successfully and the client class counter should be 0.
query="SELECT leases FROM lease${v}_stat_by_client_class WHERE client_class = 'foo' LIMIT 1"
run_command \
pgsql_execute "${query}"
assert_eq 0 "${EXIT_CODE}" "${query}: expected %d, returned %d"
assert_str_eq '0' "${OUTPUT}" "${query}: expected output %s, returned %s"
fi
done
}
pgsql_upgrade_13_to_14_test() {
run_command \
pgsql_execute "$session_sql"
# Added cancelled column to dhcp4_options
run_command \
pgsql_execute "select cancelled from dhcp4_options"
assert_eq 0 "${EXIT_CODE}" "dhcp4_options is missing cancelled column. (expected status code %d, returned %d)"
# Added cancelled column to dhcp6_options
run_command \
pgsql_execute "select cancelled from dhcp6_options"
assert_eq 0 "${EXIT_CODE}" "dhcp6_options is missing cancelled column. (expected status code %d, returned %d)"
# Check if offer_lifetime was added to dhcp4_shared_network table.
qry="SELECT offer_lifetime from dhcp4_shared_network limit 1"
run_command \
pgsql_execute "${qry}"
assert_eq 0 "${EXIT_CODE}" "${qry}. (expected status code %d, returned %d)"
# Check if offer_lifetime was added to dhcp4_subnet table.
qry="SELECT offer_lifetime from dhcp4_subnet limit 1"
run_command \
pgsql_execute "${qry}"
assert_eq 0 "${EXIT_CODE}" "${qry}. (expected status code %d, returned %d)"
# Check if offer_lifetime was added to dhcp4_client_class table.
qry="SELECT offer_lifetime from dhcp4_client_class limit 1"
run_command \
pgsql_execute "${qry}"
assert_eq 0 "${EXIT_CODE}" "${qry}. (expected status code %d, returned %d)"
}
pgsql_upgrade_14_to_15_test() {
# Added relay_id column to lease4
run_command \
pgsql_execute "select relay_id from lease4"
assert_eq 0 "${EXIT_CODE}" "lease4 is missing relay_id column. (expected status code %d, returned %d)"
# Added remote_id column to lease4
run_command \
pgsql_execute "select remote_id from lease4"
assert_eq 0 "${EXIT_CODE}" "lease4 is missing remote_id column. (expected status code %d, returned %d)"
}
pgsql_upgrade_15_to_16_test() {
# Added allocator column to dhcp4_shared_network
run_command \
pgsql_execute "select allocator from dhcp4_shared_network"
assert_eq 0 "${EXIT_CODE}" "dhcp4_shared_network is missing allocator column. (expected status code %d, returned %d)"
# Added allocator column to dhcp6_shared_network
run_command \
pgsql_execute "select allocator from dhcp6_shared_network"
assert_eq 0 "${EXIT_CODE}" "dhcp6_shared_network is missing allocator column. (expected status code %d, returned %d)"
# Added pd_allocator column to dhcp6_shared_network
run_command \
pgsql_execute "select pd_allocator from dhcp6_shared_network"
assert_eq 0 "${EXIT_CODE}" "dhcp6_shared_network is missing pd_allocator column. (expected status code %d, returned %d)"
# Added allocator column to dhcp4_subnet
run_command \
pgsql_execute "select allocator from dhcp4_subnet"
assert_eq 0 "${EXIT_CODE}" "dhcp4_subnet is missing allocator column. (expected status code %d, returned %d)"
# Added allocator column to dhcp6_subnet
run_command \
pgsql_execute "select allocator from dhcp6_subnet"
assert_eq 0 "${EXIT_CODE}" "dhcp6_subnet is missing allocator column. (expected status code %d, returned %d)"
# Added pd_allocator column to dhcp6_subnet
run_command \
pgsql_execute "select pd_allocator from dhcp6_subnet"
assert_eq 0 "${EXIT_CODE}" "dhcp6_subnet is missing pd_allocator column. (expected status code %d, returned %d)"
}
pgsql_upgrade_16_to_17_test() {
# Added lease4_pool_stat table
run_command \
pgsql_execute "SELECT subnet_id, pool_id, state, leases FROM lease4_pool_stat"
assert_eq 0 "${EXIT_CODE}" "lease4_pool_stat table is missing or broken. (expected status code %d, returned %d)"
# Added lease6_pool_stat table
run_command \
pgsql_execute "SELECT subnet_id, pool_id, lease_type, state, leases FROM lease6_pool_stat"
assert_eq 0 "${EXIT_CODE}" "lease6_pool_stat table is missing or broken. (expected status code %d, returned %d)"
# Added lease6_relay_id table
run_command \
pgsql_execute "select extended_info_id, relay_id, lease_addr from lease6_relay_id"
assert_eq 0 "${EXIT_CODE}" "lease6_relay_id table is missing or broken. (expected status code %d, returned %d)"
# Added lease6_remote_id table
run_command \
pgsql_execute "select extended_info_id, remote_id, lease_addr from lease6_remote_id"
assert_eq 0 "${EXIT_CODE}" "lease6_remote_id table is missing or broken. (expected status code %d, returned %d)"
}
pgsql_upgrade_17_to_18_test() {
# Verify that lease6 address is binary.
qry="insert into lease6 (address,duid,prefix_len,lease_type,subnet_id) values(cast('3001::99' as inet),'18219',128,1,0);"
run_statement "lease6_insert" "$qry"
qry="select host(address) from lease6 where duid = '18219';"
run_statement "lease6_insert" "$qry" "3001::99"
# Verify that ipv6_reservations address is binary.
qry="\
insert into hosts(host_id, dhcp_identifier, dhcp_identifier_type) values (18219, '18219', 1); \
insert into ipv6_reservations (address, prefix_len, type, dhcp6_iaid, host_id) \
values (cast('3001::99' as inet), 128, 1, 123, 18219); \
select host(address) from ipv6_reservations where host_id = 18219;"
run_statement "ipv6_reservations_insert" "$qry" "3001::99"
}
pgsql_upgrade_test() {
test_start "pgsql.upgrade"
# Wipe the whole database
pgsql_wipe
# Initialize database to schema 1.0.
run_command \
pgsql_execute_script "@abs_top_srcdir@/src/bin/admin/tests/dhcpdb_create_1.0.pgsql"
assert_eq 0 "${EXIT_CODE}" "cannot initialize the database, expected exit code: %d, actual: %d"
# Let's upgrade it to the latest version.
run_command \
"${kea_admin}" db-upgrade pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "db-upgrade failed, expected exit code: %d, actual: %d"
# Verify upgraded schema reports the latest version.
version=$("${kea_admin}" db-version pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}")
assert_str_eq "18.0" "${version}" 'Expected kea-admin to return %s, returned value was %s'
# Check 1.0 to 2.0 upgrade
pgsql_upgrade_1_0_to_2_0_test
# Check 2.0 to 3.0 upgrade
pgsql_upgrade_2_0_to_3_0_test
# Check 3.0 to 6.1 upgrade
pgsql_upgrade_3_0_to_6_1_test
# Check 6.1 to 6.2 upgrade
pgsql_upgrade_6_1_to_6_2_test
# Check 6.2 to 7.0 upgrade
pgsql_upgrade_6_2_to_7_0_test
# Check 7.0 to 8.0 upgrade
pgsql_upgrade_7_0_to_8_0_test
# Check 8.0 to 9.0 upgrade
pgsql_upgrade_8_0_to_9_0_test
# Check 9.0 to 10 upgrade
pgsql_upgrade_9_0_to_10_test
# Check 10.0 to 11.0 upgrade
pgsql_upgrade_10_to_11_test
# Check 11.0 to 12.0 upgrade
pgsql_upgrade_11_to_12_test
# Check 12.0 to 13.0 upgrade
pgsql_upgrade_12_to_13_test
# Check 13.0 to 14.0 upgrade
pgsql_upgrade_13_to_14_test
# Check 14.0 to 15.0 upgrade
pgsql_upgrade_14_to_15_test
# Check 15 to 16 upgrade
pgsql_upgrade_15_to_16_test
# Check 16 to 17 upgrade
pgsql_upgrade_16_to_17_test
# Check 17 to 18 upgrade
pgsql_upgrade_17_to_18_test
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Test verifies the ability to dump lease4 data to CSV file
# The dump output file is compared against a reference file.
# If the dump is successful, the file contents will be the
# same. Note that the expire field in the lease4 table
# is of data type "timestamp with timezone". This means that
# the dumped file content is dependent upon the timezone
# setting the PostgreSQL server is using. To account for
# this the reference data contains a tag, "<timestamp>"
# where the expire column's data would normally be. This
# tag is replaced during text execution with a value
# determined by querying the PostgreSQL server. This
# updated reference data is captured in a temporary file
# which is used for the actual comparison.
# May accept additional parameters to be passed to lease-dump.
pgsql_lease4_dump_test() {
test_start "pgsql.lease4_dump_test"
test_dir="@abs_top_srcdir@/src/bin/admin/tests"
output_dir="@abs_top_builddir@/src/bin/admin/tests"
output_file="$output_dir/data/pgsql.lease4_dump_test.output.csv"
ref_file="$test_dir/data/lease4_dump_test.reference.csv"
# Clean up any test files left from prior failed runs unless -y was provided in which case
# explicitly create the file to check that it will be automatically deleted.
# files should be removed by kea-admin itself.
if printf '%s' "$@" | grep 'y' > /dev/null; then
touch "${output_file}"
touch "${output_file}.tmp"
else
rm -f "${output_file}"
rm -f "${output_file}.tmp"
fi
# Let's wipe the whole database
pgsql_wipe
# Ok, now let's initialize the database
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "could not create database, expected exit code %d, actual %d"
# Insert the reference records. Normally, for the bytea values, you would have two backslashes.
# Because shell evaluates the double quoted string one more time, they need to be doubled.
# Otherwise, the value is interpreted as ASCII instead of raw bytes.
insert_sql="\
insert into lease4 values(10,E'\\\\x3230',E'\\\\x3330',40,TO_TIMESTAMP(1642000000),50,'t','t','one.example.com',0,'');\
insert into lease4 values(11,'',E'\\\\x313233',40,TO_TIMESTAMP(1643210000),50,'t','t','',1,'{ }');\
insert into lease4 values(12,E'\\\\x3232','',40,TO_TIMESTAMP(1643212345),50,'t','t','three,example,com',2,'{ \"a\": 1, \"b\": \"c\" }')"
run_command \
pgsql_execute "$insert_sql"
assert_eq 0 "${EXIT_CODE}" "insert into lease4 failed, expected exit code %d, actual %d"
# Dump lease4 to output_file
run_command \
"${kea_admin}" lease-dump pgsql -4 -u "${db_user}" -p "${db_password}" -n "${db_name}" \
-d "${db_scripts_dir}" -o "${output_file}" "$@"
assert_eq 0 "${EXIT_CODE}" "kea-admin lease-dump -4 failed, expected exit code %d, actual %d"
# Compare the dump output to reference file, they should be identical
run_command \
cmp -s "${output_file}" "${ref_file}"
assert_eq 0 "${EXIT_CODE}" "dump file does not match reference file, expected exit code %d, actual %d, diff:\n$(diff "${ref_file}" "${output_file}")"
# Remove the files.
rm -f "${output_file}"
rm -f "${output_file}.tmp"
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Test verifies the ability to dump lease6 data to CSV file
# The dump output file is compared against a reference file.
# If the dump is successful, the file contents will be the
# same. Note that the expire field in the lease6 table
# is of data type "timestamp with timezone". This means that
# the dumped file content is dependent upon the timezone
# setting the PostgreSQL server is using. To account for
# this the reference data contains a tag, "<timestamp>"
# where the expire column's data would normally be. This
# tag is replaced during text execution with a value
# determined by querying the PostgreSQL server. This
# updated reference data is captured in a temporary file
# which is used for the actual comparison.
pgsql_lease6_dump_test() {
test_start "pgsql.lease6_dump_test"
test_dir="@abs_top_srcdir@/src/bin/admin/tests"
output_dir="@abs_top_builddir@/src/bin/admin/tests"
output_file="$output_dir/data/pgsql.lease6_dump_test.output.csv"
ref_file="$test_dir/data/lease6_dump_test.reference.csv"
# Clean up any test files left from prior failed runs unless -y was provided in which case
# explicitly create the file to check that it will be automatically deleted.
# files should be removed by kea-admin itself.
if printf '%s' "$@" | grep 'y' > /dev/null; then
touch "${output_file}"
touch "${output_file}.tmp"
else
rm -f "${output_file}"
rm -f "${output_file}.tmp"
fi
# Let's wipe the whole database
pgsql_wipe
# Ok, now let's initialize the database
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "could not create database, status code %d"
# Insert the reference records. Normally, for the bytea values, you would have two backslashes.
# Because shell evaluates the double quoted string one more time, they need to be doubled.
# Otherwise, the value is interpreted as ASCII instead of raw bytes.
insert_sql="\
insert into lease6 values(cast('::10' as inet),E'\\\\x323033',30,TO_TIMESTAMP(1642000000),40,50,1,60,128,'t','t','one.example.com',0,decode(encode('80','hex'),'hex'),90,16,'',0); \
insert into lease6 values(cast('::11' as inet),E'\\\\x323133',30,TO_TIMESTAMP(1643210000),40,50,1,60,128,'t','t','',1,decode(encode('80','hex'),'hex'),90,1,'{ }',0); \
insert into lease6 values(cast('::12' as inet),E'\\\\x323233',30,TO_TIMESTAMP(1643212345),40,50,1,60,128,'t','t','three,example,com',2,decode(encode('80','hex'),'hex'),90,4,'{ \"a\": 1, \"b\": \"c\" }',0)"
run_command \
pgsql_execute "$insert_sql"
assert_eq 0 "${EXIT_CODE}" "insert into lease6 failed, expected exit code %d, actual %d"
# Dump lease6 to output_file
run_command \
"${kea_admin}" lease-dump pgsql -6 -u "${db_user}" -p "${db_password}" -n "${db_name}" \
-d "${db_scripts_dir}" -o "${output_file}" "$@"
assert_eq 0 "${EXIT_CODE}" "kea-admin lease-dump -6 failed, expected exit code %d, actual %d"
# Compare the dump output to reference file, they should be identical
run_command \
cmp -s "${output_file}" "${ref_file}"
assert_eq 0 "${EXIT_CODE}" "dump file does not match reference file, expected exit code %d, actual %d, diff:\n$(diff "${ref_file}" "${output_file}")"
# Remove the files.
rm -f "${output_file}"
rm -f "${output_file}.tmp"
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# May accept additional parameters to be passed to lease-dump or to lease-upload.
pgsql_lease4_upload_test() {
test_start "pgsql.lease4_upload_test"
input_file="@abs_top_srcdir@/src/bin/admin/tests/data/lease4_dump_test.reference.csv"
input_file_cp="@abs_top_builddir@/src/bin/admin/tests/data/lease4_dump_test.reference.csv"
output_file="@abs_top_builddir@/src/bin/admin/tests/data/lease4_dump_test.output.csv"
if [ "${input_file}" != "${input_file_cp}" ]; then
cp -f ${input_file} ${input_file_cp}
input_file=${input_file_cp}
input_file_cp=""
fi
# Wipe the whole database.
pgsql_wipe
# Clean up any test files left from prior failed runs unless -y was provided in which case
# explicitly create the file to check that it will be automatically deleted.
# files should be removed by kea-admin itself.
if printf '%s' "$@" | grep 'y' > /dev/null; then
touch "${input_file}.tmp"
touch "${output_file}"
touch "${output_file}.tmp"
else
rm -f "${input_file}.tmp"
rm -f "${output_file}"
rm -f "${output_file}.tmp"
fi
# Initialize the database.
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" \
-n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "could not create database, expected exit code %d, actual %d"
# Upload leases.
run_command \
"${kea_admin}" lease-upload pgsql -4 -u "${db_user}" \
-p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}" \
-i "${input_file}" "$@"
assert_eq 0 "${EXIT_CODE}" "kea-admin lease-upload -4 failed, expected exit code %d, actual %d"
# Dump leases.
run_command \
"${kea_admin}" lease-dump pgsql -4 -u "${db_user}" \
-p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}" \
-o "${output_file}" "$@"
assert_eq 0 "${EXIT_CODE}" "kea-admin lease-dump -4 failed, expected exit code %d, actual %d"
# Compare the initial file used for upload to the file retrieved from dump, they should be identical.
run_command \
cmp -s "${input_file}" "${output_file}"
assert_eq 0 "${EXIT_CODE}" "file resulted from dump after upload does not match file used for upload, expected exit code %d, actual %d, diff:\n$(diff "${input_file}" "${output_file}")"
# Remove the files.
if [ "${input_file}" != "${input_file_cp}" ]; then
rm -f "${input_file}"
fi
rm -f "${input_file}.tmp"
rm -f "${output_file}"
rm -f "${output_file}.tmp"
# Wipe the whole database.
pgsql_wipe
test_finish 0
}
pgsql_lease6_upload_test() {
test_start "pgsql.lease6_upload_test"
input_file="@abs_top_srcdir@/src/bin/admin/tests/data/lease6_dump_test.reference.csv"
input_file_cp="@abs_top_builddir@/src/bin/admin/tests/data/lease6_dump_test.reference.csv"
output_file="@abs_top_builddir@/src/bin/admin/tests/data/lease6_dump_test.output.csv"
if [ "${input_file}" != "${input_file_cp}" ]; then
cp -f ${input_file} ${input_file_cp}
input_file=${input_file_cp}
input_file_cp=""
fi
# Wipe the whole database.
pgsql_wipe
# Clean up any test files left from prior failed runs unless -y was provided in which case
# explicitly create the file to check that it will be automatically deleted.
# files should be removed by kea-admin itself.
if printf '%s' "$@" | grep 'y' > /dev/null; then
touch "${input_file}.tmp"
touch "${output_file}"
touch "${output_file}.tmp"
else
rm -f "${input_file}.tmp"
rm -f "${output_file}"
rm -f "${output_file}.tmp"
fi
# Initialize the database.
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" \
-n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "could not create database, expected exit code %d, actual %d"
# Upload leases.
run_command \
"${kea_admin}" lease-upload pgsql -6 -u "${db_user}" \
-p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}" \
-i "${input_file}" "$@"
assert_eq 0 "${EXIT_CODE}" "kea-admin lease-upload -6 failed, expected exit code %d, actual %d"
# Dump leases.
run_command \
"${kea_admin}" lease-dump pgsql -6 -u "${db_user}" \
-p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}" \
-o "${output_file}" "$@"
assert_eq 0 "${EXIT_CODE}" "kea-admin lease-dump -6 failed, expected exit code %d, actual %d"
# Compare the initial file used for upload to the file retrieved from dump, they should be identical.
run_command \
cmp -s "${input_file}" "${output_file}"
assert_eq 0 "${EXIT_CODE}" "file resulted from dump after upload does not match file used for upload, expected exit code %d, actual %d, diff:\n$(diff "${input_file}" "${output_file}")"
# Remove the files.
if [ "${input_file}" != "${input_file_cp}" ]; then
rm -f "${input_file}"
fi
rm -f "${input_file}.tmp"
rm -f "${output_file}"
rm -f "${output_file}.tmp"
# Wipe the whole database.
pgsql_wipe
test_finish 0
}
# Upgrades an existing schema to a target newer version
# param target_version - desired schema version as "major.minor"
pgsql_upgrade_schema_to_version() {
target_version=$1
upgrade_scripts_dir=${db_scripts_dir}/pgsql
# Check if the scripts directory exists at all.
if [ ! -d ${upgrade_scripts_dir} ]; then
log_error "Invalid scripts directory: ${upgrade_scripts_dir}"
exit 1
fi
# Check if there are any files in it
num_files=$(find ${upgrade_scripts_dir} -name 'upgrade*.sh' -type f | wc -l)
if [ "${num_files}" -eq 0 ]; then
upgrade_scripts_dir=@abs_top_builddir@/src/share/database/scripts/pgsql
# Check if the scripts directory exists at all.
if [ ! -d ${upgrade_scripts_dir} ]; then
log_error "Invalid scripts directory: ${upgrade_scripts_dir}"
exit 1
fi
# Check if there are any files in it
num_files=$(find "${upgrade_scripts_dir}" -name 'upgrade*.sh' -type f | wc -l)
fi
if [ "${num_files}" -eq 0 ]; then
log_error "No scripts in ${upgrade_scripts_dir}?"
exit 1
fi
# Postgres psql does not accept pw on command line, but can do it
# thru an env
export PGPASSWORD=$db_password
for script in "${upgrade_scripts_dir}"/upgrade*.sh
do
version=$(pgsql_version)
if [ "${version}" = "${target_version}" ]
then
break
fi
echo "Processing $script file..."
"${script}" -U "${db_user}" -d "${db_name}"
done
echo "Schema upgraded to $version"
}
# Verifies lease4_stat trigger operations on
# an new, empty database. It inserts, updates, and
# deletes various leases, checking lease4_stat
# values along the way.
pgsql_lease4_stat_test() {
test_start "pgsql.lease4_stat_test"
# Let's wipe the whole database
pgsql_wipe
# Ok, now let's initialize the database
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "kea-admin db-init pgsql failed, expected %d, returned non-zero status code %d"
# Verify lease4 stat table is present
qry="select count(subnet_id) from lease4_stat"
run_statement "#1" "$qry" 0
# Insert lease4
qry="insert into lease4 (address, subnet_id, state) values (111,1,0)"
run_statement "#2" "$qry"
# Assigned state count should be 1
qry="select leases from lease4_stat where subnet_id = 1 and state = 0"
run_statement "#3" "$qry" 1
# Assigned state count should be 1
qry="select leases from lease4_pool_stat where subnet_id = 1 and pool_id = 0 and state = 0"
run_statement "#4" "$qry" 1
# Set lease state to declined
qry="update lease4 set state = 1 where address = 111"
run_statement "#5" "$qry"
# Leases state count for assigned should be 0
qry="select leases from lease4_stat where subnet_id = 1 and state = 0"
run_statement "#6" "$qry" 0
# Leases state count for assigned should be 0
qry="select leases from lease4_pool_stat where subnet_id = 1 and pool_id = 0 and state = 0"
run_statement "#7" "$qry" 0
# Leases state count for declined should be 1
qry="select leases from lease4_stat where subnet_id = 1 and state = 1"
run_statement "#8" "$qry" 1
# Leases state count for declined should be 1
qry="select leases from lease4_pool_stat where subnet_id = 1 and pool_id = 0 and state = 1"
run_statement "#9" "$qry" 1
# Delete the lease
qry="delete from lease4 where address = 111"
run_statement "#10" "$qry"
# Leases state count for declined should be 0
qry="select leases from lease4_stat where subnet_id = 1 and state = 1"
run_statement "#11" "$qry" 0
# Leases state count for declined should be 0
qry="select leases from lease4_pool_stat where subnet_id = 1 and pool_id = 0 and state = 1"
run_statement "#12" "$qry" 0
# Insert lease4
qry="insert into lease4 (address, subnet_id, pool_id, state) values (112,1,1,0)"
run_statement "#13" "$qry"
# Assigned state count should be 1
qry="select leases from lease4_stat where subnet_id = 1 and state = 0"
run_statement "#14" "$qry" 1
# Assigned state count should be 1
qry="select leases from lease4_pool_stat where subnet_id = 1 and pool_id = 1 and state = 0"
run_statement "#15" "$qry" 1
# Insert lease4
qry="insert into lease4 (address, subnet_id, pool_id, state) values (113,1,2,0)"
run_statement "#16" "$qry"
# Assigned state count should be 2
qry="select leases from lease4_stat where subnet_id = 1 and state = 0"
run_statement "#17" "$qry" 2
# Assigned state count should be 1
qry="select leases from lease4_pool_stat where subnet_id = 1 and pool_id = 1 and state = 0"
run_statement "#18" "$qry" 1
# Assigned state count should be 1
qry="select leases from lease4_pool_stat where subnet_id = 1 and pool_id = 2 and state = 0"
run_statement "#19" "$qry" 1
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Verifies that lease6_stat triggers operate correctly
# for using a given address and lease_type. It will
# insert a lease, update it, and delete checking the
# lease stat counts along the way. It assumes the
# database has been created but is empty.
# param addr - address to use to add to subnet 1
# param ltype - type of lease to create
pgsql_lease6_stat_per_type() {
addr=$1;shift
addr1=$1;shift
addr2=$1;shift
ltype=$1
# insert a lease6 for addr and ltype, state assigned
qry="insert into lease6 (address, lease_type, subnet_id, state) values (cast('$addr' as inet),$ltype,1,0)"
run_statement "#2" "$qry"
# assigned stat should be 1
qry="select leases from lease6_stat where subnet_id = 1 and lease_type = $ltype and state = 0"
run_statement "#3" "$qry" 1
# assigned stat should be 1
qry="select leases from lease6_pool_stat where subnet_id = 1 and lease_type = $ltype and pool_id = 0 and state = 0"
run_statement "#4" "$qry" 1
# update the lease, changing state to declined
qry="update lease6 set state = 1 where address = cast('$addr' as inet)"
run_statement "#5" "$qry"
# leases stat for assigned state should be 0
qry="select leases from lease6_stat where subnet_id = 1 and lease_type = $ltype and state = 0"
run_statement "#6" "$qry" 0
# leases stat for assigned state should be 0
qry="select leases from lease6_pool_stat where subnet_id = 1 and lease_type = $ltype and pool_id = 0 and state = 0"
run_statement "#7" "$qry" 0
# leases count for declined state should be 1
qry="select leases from lease6_stat where subnet_id = 1 and lease_type = $ltype and state = 1"
run_statement "#8" "$qry" 1
# leases count for declined state should be 1
qry="select leases from lease6_pool_stat where subnet_id = 1 and lease_type = $ltype and pool_id = 0 and state = 1"
run_statement "#9" "$qry" 1
# delete the lease
qry="delete from lease6 where address = '$addr'"
run_statement "#10" "$qry"
# leases count for declined state should be 0
qry="select leases from lease6_stat where subnet_id = 1 and lease_type = $ltype and state = 0"
run_statement "#11" "$qry" 0
# leases count for declined state should be 0
qry="select leases from lease6_pool_stat where subnet_id = 1 and lease_type = $ltype and pool_id = 0 and state = 0"
run_statement "#12" "$qry" 0
# insert a lease6 for addr and ltype, state assigned
qry="insert into lease6 (address, lease_type, subnet_id, pool_id, state) values (cast('$addr1' as inet),$ltype,1,1,0)"
run_statement "#13" "$qry"
# assigned stat should be 1
qry="select leases from lease6_stat where subnet_id = 1 and lease_type = $ltype and state = 0"
run_statement "#14" "$qry" 1
# assigned stat should be 1
qry="select leases from lease6_pool_stat where subnet_id = 1 and lease_type = $ltype and pool_id = 1 and state = 0"
run_statement "#15" "$qry" 1
# insert a lease6 for addr and ltype, state assigned
qry="insert into lease6 (address, lease_type, subnet_id, pool_id, state) values (cast('$addr2' as inet),$ltype,1,2,0)"
run_statement "#16" "$qry"
# assigned stat should be 2
qry="select leases from lease6_stat where subnet_id = 1 and lease_type = $ltype and state = 0"
run_statement "#17" "$qry" 2
# assigned stat should be 1
qry="select leases from lease6_pool_stat where subnet_id = 1 and lease_type = $ltype and pool_id = 1 and state = 0"
run_statement "#18" "$qry" 1
# assigned stat should be 1
qry="select leases from lease6_pool_stat where subnet_id = 1 and lease_type = $ltype and pool_id = 2 and state = 0"
run_statement "#19" "$qry" 1
}
# Verifies that lease6_stat triggers operation correctly
# for both NA and PD lease types, pgsql_lease6_stat_per_type()
pgsql_lease6_stat_test() {
test_start "pgsql.lease6_stat_test"
# Let's wipe the whole database
pgsql_wipe
# Ok, now let's initialize the database
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "kea-admin db-init pgsql failed, expected %d, returned non-zero status code %d"
# verify lease6 stat table is present
qry="select count(subnet_id) from lease6_stat"
run_statement "#1" "$qry"
# Test for address 111, NA lease type
pgsql_lease6_stat_per_type "::11" "::12" "::13" "0"
# Test for address 222, PD lease type
pgsql_lease6_stat_per_type "::22" "::23" "::24" "1"
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Verifies that you can upgrade from earlier version and
# lease<4/6>_stat tables will be populated based on existing
# leases and that the stat triggers work properly.
pgsql_lease_stat_upgrade_test() {
test_start "pgsql.lease_stat_upgrade_test"
# Let's wipe the whole database
pgsql_wipe
# We need to create an older database with lease data so we can
# verify the upgrade mechanisms which prepopulate the lease stat
# tables.
#
# Initialize database to schema 1.0.
pgsql_execute_script "@abs_top_srcdir@/src/bin/admin/tests/dhcpdb_create_1.0.pgsql"
assert_eq 0 "${EXIT_CODE}" "cannot initialize 1.0 database, expected exit code: %d, actual: %d"
# Now upgrade to schema 2.0, this has lease_state in it
pgsql_upgrade_schema_to_version 2.0
# Now we need insert some leases to "migrate" for both v4 and v6
qry=\
"insert into lease4 (address, subnet_id, state) values (111,10,0);\
insert into lease4 (address, subnet_id, state) values (222,10,0);\
insert into lease4 (address, subnet_id, state) values (333,10,1);\
insert into lease4 (address, subnet_id, state) values (444,10,2);\
insert into lease4 (address, subnet_id, state) values (555,77,0)"
run_statement "insert v4 leases" "$qry"
qry=\
"insert into lease6 (address, lease_type, subnet_id, state) values ('::11',0,40,0);\
insert into lease6 (address, lease_type, subnet_id, state) values ('::22',0,40,1);\
insert into lease6 (address, lease_type, subnet_id, state) values ('::33',1,40,0);\
insert into lease6 (address, lease_type, subnet_id, state) values ('::44',1,50,0);\
insert into lease6 (address, lease_type, subnet_id, state) values ('::55',1,50,0);\
insert into lease6 (address, lease_type, subnet_id, state) values ('::66',1,40,2)"
run_statement "insert v6 leases" "$qry"
# Let's upgrade it to the latest version.
run_command \
"${kea_admin}" db-upgrade pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
#
# First we'll verify lease4_stats are correct after migration.
#
# Assigned leases for subnet 10 should be 2
qry="select leases from lease4_stat where subnet_id = 10 and state = 0"
run_statement "#4.1" "$qry" 2
# Assigned leases for subnet 10 should be 2
qry="select leases from lease4_pool_stat where subnet_id = 10 and pool_id = 0 and state = 0"
run_statement "#4.2" "$qry" 2
# Assigned leases for subnet 77 should be 1
qry="select leases from lease4_stat where subnet_id = 77 and state = 0"
run_statement "#4.3" "$qry" 1
# Assigned leases for subnet 77 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 0 and state = 0"
run_statement "#4.4" "$qry" 1
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease4_stat where state = 2"
run_statement "#4.5" "$qry" 0
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease4_pool_stat where state = 2"
run_statement "#4.6" "$qry" 0
#
# Now we'll verify v4 trigger operation for insert, update, and delete
#
# Insert a new lease subnet 77
qry="insert into lease4 (address, subnet_id, pool_id, state) values (777,77,1,0)"
run_statement "#4.7" "$qry"
# Assigned count for subnet 77 should be 2
qry="select leases from lease4_stat where subnet_id = 77 and state = 0"
run_statement "#4.8" "$qry" 2
# Assigned count for subnet 77 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 0 and state = 0"
run_statement "#4.9" "$qry" 1
# Assigned count for subnet 77 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 1 and state = 0"
run_statement "#4.10" "$qry" 1
# Update the state of the new lease to declined
qry="update lease4 set state = 1 where address = 777"
run_statement "#4.11" "$qry"
# Assigned count for subnet 77 should be 1 again
qry="select leases from lease4_stat where subnet_id = 77 and state = 0"
run_statement "#4.12" "$qry" 1
# Assigned count for subnet 77 should be 1 again
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 0 and state = 0"
run_statement "#4.13" "$qry" 1
# Assigned count for subnet 77 should be 0 again
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 1 and state = 0"
run_statement "#4.14" "$qry" 0
# Declined count for subnet 77 should be 1
qry="select leases from lease4_stat where subnet_id = 77 and state = 1"
run_statement "#4.15" "$qry" 1
# Declined count for subnet 77 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 1 and state = 1"
run_statement "#4.16" "$qry" 1
# Delete the lease.
qry="delete from lease4 where address = 777"
run_statement "#4.17" "$qry"
# Declined count for subnet 77 should be 0
qry="select leases from lease4_stat where subnet_id = 77 and state = 1"
run_statement "#4.18" "$qry" 0
# Declined count for subnet 77 should be 0
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 1 and state = 1"
run_statement "#4.19" "$qry" 0
#
# Next we'll verify lease6_stats are correct after migration.
#
# Assigned leases for subnet 40 should be 1
qry="select leases from lease6_stat where subnet_id = 40 and lease_type = 0 and state = 0"
run_statement "#6.1" "$qry" 1
# Assigned leases for subnet 40 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 40 and lease_type = 0 and pool_id = 0 and state = 0"
run_statement "#6.2" "$qry" 1
# Assigned (PD) leases for subnet 40 should be 1
qry="select leases from lease6_stat where subnet_id = 40 and lease_type = 1 and state = 0"
run_statement "#6.3" "$qry" 1
# Assigned (PD) leases for subnet 40 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 40 and lease_type = 1 and pool_id = 0 and state = 0"
run_statement "#6.4" "$qry" 1
# Declined leases for subnet 40 should be 1
qry="select leases from lease6_stat where subnet_id = 40 and lease_type = 0 and state = 1"
run_statement "#6.5" "$qry" 1
# Declined leases for subnet 40 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 40 and lease_type = 0 and pool_id = 0 and state = 1"
run_statement "#6.6" "$qry" 1
# Assigned (PD) leases for subnet 50 should be 2
qry="select leases from lease6_stat where subnet_id = 50 and lease_type = 1 and state = 0"
run_statement "#6.7" "$qry" 2
# Assigned (PD) leases for subnet 50 should be 2
qry="select leases from lease6_pool_stat where subnet_id = 50 and lease_type = 1 and pool_id = 0 and state = 0"
run_statement "#6.8" "$qry" 2
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease6_stat where state = 2"
run_statement "#6.9" "$qry" 0
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease6_pool_stat where state = 2"
run_statement "#6.10" "$qry" 0
#
# Finally we'll verify v6 trigger operation for insert, update, and delete
#
# Insert a new lease subnet 50
qry="insert into lease6 (address, subnet_id, pool_id, lease_type, state) values ('::77',50,1,1,0)"
run_statement "#6.11" "$qry"
# Assigned count for subnet 50 should be 3
qry="select leases from lease6_stat where subnet_id = 50 and lease_type = 1 and state = 0"
run_statement "#6.12" "$qry" 3
# Assigned count for subnet 50 should be 2
qry="select leases from lease6_pool_stat where subnet_id = 50 and lease_type = 1 and pool_id = 0 and state = 0"
run_statement "#6.13" "$qry" 2
# Assigned count for subnet 50 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 50 and lease_type = 1 and pool_id = 1 and state = 0"
run_statement "#6.14" "$qry" 1
# Update the state of the new lease to expired
qry="update lease6 set state = 2 where address = '::77'"
run_statement "#6.15" "$qry"
# Assigned count for subnet 50 should be 2 again
qry="select leases from lease6_stat where subnet_id = 50 and lease_type = 1 and state = 0"
run_statement "#6.16" "$qry" 2
# Assigned count for subnet 50 should be 0 again
qry="select leases from lease6_pool_stat where subnet_id = 50 and lease_type = 1 and pool_id = 1 and state = 0"
run_statement "#6.17" "$qry" 0
# Delete another PD lease.
qry="delete from lease6 where address = '::55'"
run_statement "#6.18" "$qry"
# Assigned leases for subnet 50 should be 1
qry="select leases from lease6_stat where subnet_id = 50 and lease_type = 1 and state = 0"
run_statement "#6.19" "$qry" 1
# Assigned leases for subnet 50 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 50 and lease_type = 1 and pool_id = 0 and state = 0"
run_statement "#6.20" "$qry" 1
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
pgsql_lease_stat_recount_test() {
test_start "pgsql.lease_stat_recount_test"
# Let's wipe the whole database
pgsql_wipe
# Ok, now let's initialize the database
run_command \
"${kea_admin}" db-init pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
assert_eq 0 "${EXIT_CODE}" "kea-admin db-init pgsql failed, expected %d, returned non-zero status code %d"
# Now we need insert some leases to "recount"
qry=\
"insert into lease4 (address, subnet_id, state) values (111,10,0);\
insert into lease4 (address, subnet_id, pool_id, state) values (222,10,1,0);\
insert into lease4 (address, subnet_id, state) values (333,10,1);\
insert into lease4 (address, subnet_id, state) values (444,10,2);\
insert into lease4 (address, subnet_id, pool_id, state) values (555,77,2,0)"
run_statement "insert v4 leases" "$qry"
qry=\
"insert into lease6 (address, lease_type, subnet_id, state) values (cast('::11' as inet),0,40,0);\
insert into lease6 (address, lease_type, subnet_id, pool_id, state) values (cast('::22' as inet),0,40,1,1);\
insert into lease6 (address, lease_type, subnet_id, state) values (cast('::33' as inet),1,40,0);\
insert into lease6 (address, lease_type, subnet_id, state) values (cast('::44' as inet),1,50,0);\
insert into lease6 (address, lease_type, subnet_id, pool_id, state) values (cast('::55' as inet),1,50,2,0);\
insert into lease6 (address, lease_type, subnet_id, state) values (cast('::66' as inet),1,40,2)"
run_statement "insert v6 leases" "$qry"
# Now we change some counters.
qry=\
"insert into lease4_stat (subnet_id, state, leases) values (20,0,1);\
update lease4_stat set leases = 5 where subnet_id = 10 and state = 0;\
delete from lease4_stat where subnet_id = 10 and state = 2"
run_statement "change v4 stats" "$qry"
qry=\
"insert into lease4_pool_stat (subnet_id, pool_id, state, leases) values (20,3,0,1);\
update lease4_pool_stat set leases = 5 where subnet_id = 10 and pool_id = 0 and state = 0;\
delete from lease4_pool_stat where subnet_id = 10 and pool_id = 0 and state = 2"
run_statement "change v4 stats" "$qry"
qry=\
"insert into lease6_stat (subnet_id, lease_type, state, leases) values (20,1,0,1);\
update lease6_stat set leases = 5 where subnet_id = 40 and lease_type = 0 and state = 0;\
delete from lease6_stat where subnet_id = 40 and lease_type = 1 and state = 2"
run_statement "change v6 stats" "$qry"
qry=\
"insert into lease6_pool_stat (subnet_id, pool_id, lease_type, state, leases) values (20,3,1,0,1);\
update lease6_pool_stat set leases = 5 where subnet_id = 40 and lease_type = 0 and pool_id = 0 and state = 0;\
delete from lease6_pool_stat where subnet_id = 40 and lease_type = 1 and pool_id = 0 and state = 2"
run_statement "change v6 stats" "$qry"
# Recount all statistics from scratch.
run_command \
"${kea_admin}" stats-recount pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}"
assert_eq 0 "${EXIT_CODE}" "kea-admin stats-recount pgsql failed, expected %d, returned non-zero status code %d"
#
# First we'll verify lease4_stats are correct after recount.
#
# Assigned leases for subnet 10 should be 2
qry="select leases from lease4_stat where subnet_id = 10 and state = 0"
run_statement "#4.1" "$qry" 2
# Assigned leases for subnet 10 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 10 and pool_id = 0 and state = 0"
run_statement "#4.2" "$qry" 1
# Assigned leases for subnet 10 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 10 and pool_id = 1 and state = 0"
run_statement "#4.3" "$qry" 1
# Declined leases for subnet 10 should be 1
qry="select leases from lease4_stat where subnet_id = 10 and state = 1"
run_statement "#4.4" "$qry" 1
# Declined leases for subnet 10 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 10 and pool_id = 0 and state = 0"
run_statement "#4.5" "$qry" 1
# Assigned leases for subnet 77 should be 1
qry="select leases from lease4_stat where subnet_id = 77 and state = 0"
run_statement "#4.6" "$qry" 1
# Assigned leases for subnet 77 should be 1
qry="select leases from lease4_pool_stat where subnet_id = 77 and pool_id = 2 and state = 0"
run_statement "#4.7" "$qry" 1
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease4_stat where state = 2"
run_statement "#4.8" "$qry" 0
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease4_pool_stat where state = 2"
run_statement "#4.9" "$qry" 0
#
# Next we'll verify lease6_stats are correct after recount.
#
# Assigned leases for subnet 40 should be 1
qry="select leases from lease6_stat where subnet_id = 40 and lease_type = 0 and state = 0"
run_statement "#6.1" "$qry" 1
# Assigned leases for subnet 40 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 40 and lease_type = 0 and pool_id = 0 and state = 0"
run_statement "#6.2" "$qry" 1
# Assigned (PD) leases for subnet 40 should be 1
qry="select leases from lease6_stat where subnet_id = 40 and lease_type = 1 and state = 0"
run_statement "#6.3" "$qry" 1
# Assigned (PD) leases for subnet 40 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 40 and lease_type = 1 and pool_id = 0 and state = 0"
run_statement "#6.4" "$qry" 1
# Declined leases for subnet 40 should be 1
qry="select leases from lease6_stat where subnet_id = 40 and lease_type = 0 and state = 1"
run_statement "#6.5" "$qry" 1
# Declined leases for subnet 40 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 40 and lease_type = 0 and pool_id = 1 and state = 1"
run_statement "#6.6" "$qry" 1
# Assigned (PD) leases for subnet 50 should be 2
qry="select leases from lease6_stat where subnet_id = 50 and lease_type = 1 and state = 0"
run_statement "#6.7" "$qry" 2
# Assigned (PD) leases for subnet 50 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 50 and lease_type = 1 and pool_id = 0 and state = 0"
run_statement "#6.8" "$qry" 1
# Assigned (PD) leases for subnet 50 should be 1
qry="select leases from lease6_pool_stat where subnet_id = 50 and lease_type = 1 and pool_id = 2 and state = 0"
run_statement "#6.9" "$qry" 1
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease6_stat where state = 2"
run_statement "#6.10" "$qry" 0
# Should be no records for EXPIRED
qry="select count(subnet_id) from lease6_pool_stat where state = 2"
run_statement "#6.11" "$qry" 0
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Verifies that you can upgrade from an earlier version and
# that unused subnet ID values in hosts and options tables are
# converted to NULL.
pgsql_unused_subnet_id_test() {
test_start "pgsql.unused_subnet_id_test"
# Let's wipe the whole database
pgsql_wipe
# We need to create an older database with lease data so we can
# verify the upgrade mechanisms which prepopulate the lease stat
# tables.
#
# Initialize database to schema 1.0.
pgsql_execute_script "@abs_top_srcdir@/src/bin/admin/tests/dhcpdb_create_1.0.pgsql"
assert_eq 0 "${EXIT_CODE}" "cannot initialize 1.0 database, expected exit code: %d, actual: %d"
# Now upgrade to schema 4.0
pgsql_upgrade_schema_to_version 4.0
# Now we need insert some hosts to "migrate" for both v4 and v6
qry=\
"insert into hosts (dhcp_identifier_type, dhcp_identifier, dhcp4_subnet_id, dhcp6_subnet_id, hostname)\
values (0, '0123456', 0, 0, 'both'); \
insert into hosts (dhcp_identifier_type, dhcp_identifier, dhcp4_subnet_id, dhcp6_subnet_id, hostname)\
values (0, '1123456', 4, 0, 'v4only');
insert into hosts (dhcp_identifier_type, dhcp_identifier, dhcp4_subnet_id, dhcp6_subnet_id, hostname)\
values (0, '2123456', 0, 6, 'v6only');\
insert into hosts (dhcp_identifier_type, dhcp_identifier, dhcp4_subnet_id, dhcp6_subnet_id, hostname) \
values (0, '3123456', 4, 6, 'neither')"
run_statement "insert hosts" "$qry"
# Now we need insert some options to "migrate" for both v4 and v6
qry=\
"insert into dhcp4_options (code, dhcp4_subnet_id, scope_id) values (1, 4, 0);\
insert into dhcp4_options (code, dhcp4_subnet_id, scope_id) values (2, 0, 0);\
insert into dhcp6_options (code, dhcp6_subnet_id, scope_id) values (1, 6, 0);\
insert into dhcp6_options (code, dhcp6_subnet_id, scope_id) values (2, 0, 0)"
run_statement "insert options" "$qry"
# Let's upgrade it to the latest version.
run_command \
"${kea_admin}" db-upgrade pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
# Upgrade should succeed
assert_eq 0 "${EXIT_CODE}" "upgrade failed"
# Two hosts should have null v4 subnet ids
qry="select count(host_id) from hosts where dhcp4_subnet_id is null"
run_statement "#hosts.1" "$qry" 2
# Two hosts should have v4 subnet ids = 4
qry="select count(host_id) from hosts where dhcp4_subnet_id = 4"
run_statement "#hosts.2" "$qry" 2
# Two hosts should have null v6 subnet ids
qry="select count(host_id) from hosts where dhcp6_subnet_id is null"
run_statement "#hosts.3" "$qry" 2
# Two hosts should should have v6 subnet ids = 6
qry="select count(host_id) from hosts where dhcp6_subnet_id = 6"
run_statement "#hosts.4" "$qry" 2
# One option should have null v4 subnet id
qry="select count(option_id) from dhcp4_options where dhcp4_subnet_id is null"
run_statement "#options.1" "$qry" 1
# One option should have v4 subnet id = 4
qry="select count(option_id) from dhcp4_options where dhcp4_subnet_id = 4"
run_statement "#options.2" "$qry" 1
# One option should have null v6 subnet id
qry="select count(option_id) from dhcp6_options where dhcp6_subnet_id is null"
run_statement "#options.3" "$qry" 1
# One option should have v4 subnet id = 6
qry="select count(option_id) from dhcp6_options where dhcp6_subnet_id = 6"
run_statement "#options.4" "$qry" 1
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Verifies that you can upgrade from earlier version and that initial EMPTY DUID
# (0x00) value in lease6 table is updated to proper value (0x000000).
pgsql_update_empty_duid_test() {
test_start "pgsql.update_empty_duid_test"
# Let's wipe the whole database
pgsql_wipe
# We need to create an older database with lease data so we can
# verify the upgrade mechanisms which prepopulate the lease stat
# tables.
#
# Initialize database to schema 1.0.
pgsql_execute_script "@abs_top_srcdir@/src/bin/admin/tests/dhcpdb_create_1.0.pgsql"
assert_eq 0 "${EXIT_CODE}" "cannot initialize 1.0 database, expected exit code: %d, actual: %d"
# Now upgrade to schema 15.0
pgsql_upgrade_schema_to_version 15.0
qry=\
"insert into lease6 values('::10',E'\\\\x323033',30,TO_TIMESTAMP(1642000000),40,50,1,60,70,'t','t','one.example.com',0,decode(encode('80','hex'),'hex'),90,16,''); \
insert into lease6 values('::11',E'\\\\x00',30,TO_TIMESTAMP(1643210000),40,50,1,60,70,'t','t','',1,decode(encode('80','hex'),'hex'),90,1,'{ }')"
run_statement "insert v6 leases" "$qry"
# Let's upgrade it to the latest version.
run_command \
"${kea_admin}" db-upgrade pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
# leases count for declined state should be 1 with DUID updated (0x000000)
qry="select count(*) from lease6 where address = '::11' and duid = E'\\\\x000000' and state = 1"
run_statement "#2" "$qry" 1
# leases count for non declined state should be 1 with DUID unchanged (0x323033)
qry="select count(*) from lease6 where address = '::10' and duid = E'\\\\x323033' and state = 0"
run_statement "#3" "$qry" 1
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Verifies that converting from lease6.address to binary column works
# while preserving data.
pgsql_update_v6_addresses_to_binary() {
test_start "pgsql.update_v6_address_to_binary"
# Let's wipe the whole database
pgsql_wipe
# Initialize database to schema 1.0.
pgsql_execute_script "@abs_top_srcdir@/src/bin/admin/tests/dhcpdb_create_1.0.pgsql"
assert_eq 0 "${EXIT_CODE}" "cannot initialize 1.0 database, expected exit code: %d, actual: %d"
# Now upgrade to schema 16.0
pgsql_upgrade_schema_to_version 16.0
sql=\
"insert into lease6 (address, lease_type, subnet_id) values('2601:19e:8100:1e10:b1b:51a8:f616:cf14', 1, 1);
insert into lease6 (address, lease_type, subnet_id) values('2601:19e:8100:1e10:b1b:51a8:f616:cf15', 1, 1);"
run_statement "insert v6 leases" "$sql"
# Insert ipv6_reservations address is binary.
sql=\
"insert into hosts(host_id, dhcp_identifier, dhcp_identifier_type) values (18219, '18219', 1); \
insert into ipv6_reservations (address, prefix_len, type, dhcp6_iaid, host_id) \
values ('2601:19e:8100:1e10:b1b:51a8:f616:cf16', 128, 1, 123, 18219);"
run_statement "insert an ipv6 reservation" "$sql"
# Let's upgrade it to the latest version.
run_command \
"${kea_admin}" db-upgrade pgsql -u "${db_user}" -p "${db_password}" -n "${db_name}" -d "${db_scripts_dir}"
# leases count for declined state should be 1 with DUID updated (0x000000)
qry="select count(*) from lease6 where address = cast('2601:19e:8100:1e10:b1b:51a8:f616:cf14' as inet);"
run_statement "#2" "$qry" 1
# leases count for non declined state should be 1 with DUID unchanged (0x323033)
qry="select count(*) from lease6 where address = cast('2601:19e:8100:1e10:b1b:51a8:f616:cf15' as inet);"
run_statement "#3" "$qry" 1
# verify the reservation is intact
qry="select host(address) from ipv6_reservations where host_id = 18219;"
run_statement "ipv6_reservations_insert" "$qry" "2601:19e:8100:1e10:b1b:51a8:f616:cf16"
# Let's wipe the whole database
pgsql_wipe
test_finish 0
}
# Run tests.
pgsql_db_init_test
pgsql_db_version_test
pgsql_upgrade_test
pgsql_lease4_dump_test
pgsql_lease4_dump_test -y
pgsql_lease6_dump_test
pgsql_lease6_dump_test -y
pgsql_lease4_upload_test
pgsql_lease4_upload_test -y
pgsql_lease6_upload_test
pgsql_lease6_upload_test -y
pgsql_lease4_stat_test
pgsql_lease6_stat_test
pgsql_lease_stat_upgrade_test
pgsql_lease_stat_recount_test
pgsql_unused_subnet_id_test
pgsql_update_empty_duid_test
pgsql_update_v6_addresses_to_binary
|