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
|
import datetime
import hashlib
import os
import re
import time
import warnings
from configparser import NoSectionError
import pytest
import passlib.utils.handlers as uh
from passlib import hash
from passlib.context import CryptContext, LazyCryptContext
from passlib.exc import PasslibHashWarning
from passlib.registry import (
_has_crypt_handler as has_crypt_handler,
)
from passlib.registry import (
_unload_handler_name as unload_handler_name,
)
from passlib.registry import (
get_crypt_handler,
register_crypt_handler_path,
)
from tests.utils import (
TestCase,
handler_derived_from,
set_file,
time_call,
)
from tests.utils_ import WARN_SETTINGS_ARG
# local
here = os.path.abspath(os.path.dirname(__file__))
def merge_dicts(first, *args, **kwds):
target = first.copy()
for arg in args:
target.update(arg)
if kwds:
target.update(kwds)
return target
class CryptContextTest(TestCase):
descriptionPrefix = "CryptContext"
# TODO: these unittests could really use a good cleanup
# and reorganizing, to ensure they're getting everything.
# ---------------------------------------------------------------
# sample 1 - typical configuration
# ---------------------------------------------------------------
sample_1_schemes = ["des_crypt", "md5_crypt", "bsdi_crypt", "sha512_crypt"]
sample_1_handlers = [get_crypt_handler(name) for name in sample_1_schemes]
sample_1_dict = dict(
schemes=sample_1_schemes,
default="md5_crypt",
all__vary_rounds=0.1,
bsdi_crypt__max_rounds=30001,
bsdi_crypt__default_rounds=25001,
sha512_crypt__max_rounds=50000,
sha512_crypt__min_rounds=40000,
)
sample_1_resolved_dict = merge_dicts(sample_1_dict, schemes=sample_1_handlers)
sample_1_unnormalized = """\
[passlib]
schemes = des_crypt, md5_crypt, bsdi_crypt, sha512_crypt
default = md5_crypt
; this is using %...
all__vary_rounds = 10%%
bsdi_crypt__default_rounds = 25001
bsdi_crypt__max_rounds = 30001
sha512_crypt__max_rounds = 50000
sha512_crypt__min_rounds = 40000
"""
sample_1_unicode = """\
[passlib]
schemes = des_crypt, md5_crypt, bsdi_crypt, sha512_crypt
default = md5_crypt
all__vary_rounds = 0.1
bsdi_crypt__default_rounds = 25001
bsdi_crypt__max_rounds = 30001
sha512_crypt__max_rounds = 50000
sha512_crypt__min_rounds = 40000
"""
# ---------------------------------------------------------------
# sample 1 external files
# ---------------------------------------------------------------
# sample 1 string with '\n' linesep
sample_1_path = os.path.join(here, "sample1.cfg")
# sample 1 with '\r\n' linesep
sample_1b_unicode = sample_1_unicode.replace("\n", "\r\n")
sample_1b_path = os.path.join(here, "sample1b.cfg")
# sample 1 using UTF-16 and alt section
sample_1c_bytes = sample_1_unicode.replace("[passlib]", "[mypolicy]").encode(
"utf-16"
)
sample_1c_path = os.path.join(here, "sample1c.cfg")
# enable to regenerate sample files
if False:
set_file(sample_1_path, sample_1_unicode)
set_file(sample_1b_path, sample_1b_unicode)
set_file(sample_1c_path, sample_1c_bytes)
# ---------------------------------------------------------------
# sample 2 & 12 - options patch
# ---------------------------------------------------------------
sample_2_dict = dict(
# using this to test full replacement of existing options
bsdi_crypt__min_rounds=29001,
bsdi_crypt__max_rounds=35001,
bsdi_crypt__default_rounds=31001,
# using this to test partial replacement of existing options
sha512_crypt__min_rounds=45000,
)
sample_2_unicode = """\
[passlib]
bsdi_crypt__min_rounds = 29001
bsdi_crypt__max_rounds = 35001
bsdi_crypt__default_rounds = 31001
sha512_crypt__min_rounds = 45000
"""
# sample 2 overlayed on top of sample 1
sample_12_dict = merge_dicts(sample_1_dict, sample_2_dict)
# ---------------------------------------------------------------
# sample 3 & 123 - just changing default from sample 1
# ---------------------------------------------------------------
sample_3_dict = dict(
default="sha512_crypt",
)
# sample 3 overlayed on 2 overlayed on 1
sample_123_dict = merge_dicts(sample_12_dict, sample_3_dict)
# ---------------------------------------------------------------
# sample 4 - used by api tests
# ---------------------------------------------------------------
sample_4_dict = dict(
schemes=["des_crypt", "md5_crypt", "phpass", "bsdi_crypt", "sha256_crypt"],
deprecated=[
"des_crypt",
],
default="sha256_crypt",
bsdi_crypt__max_rounds=31,
bsdi_crypt__default_rounds=25,
bsdi_crypt__vary_rounds=0,
sha256_crypt__max_rounds=3000,
sha256_crypt__min_rounds=2000,
sha256_crypt__default_rounds=3000,
phpass__ident="H",
phpass__default_rounds=7,
)
def setUp(self):
super().setUp()
warnings.filterwarnings("ignore", "The 'all' scheme is deprecated.*")
warnings.filterwarnings(
"ignore", ".*'scheme' keyword is deprecated as of Passlib 1.7.*"
)
def test_01_constructor(self):
"""test class constructor"""
# test blank constructor works correctly
ctx = CryptContext()
assert ctx.to_dict() == {}
# test sample 1 with scheme=names
ctx = CryptContext(**self.sample_1_dict)
assert ctx.to_dict() == self.sample_1_dict
# test sample 1 with scheme=handlers
ctx = CryptContext(**self.sample_1_resolved_dict)
assert ctx.to_dict() == self.sample_1_dict
# test sample 2: options w/o schemes
ctx = CryptContext(**self.sample_2_dict)
assert ctx.to_dict() == self.sample_2_dict
# test sample 3: default only
ctx = CryptContext(**self.sample_3_dict)
assert ctx.to_dict() == self.sample_3_dict
# test unicode scheme names (issue 54)
ctx = CryptContext(schemes=["sha256_crypt"])
assert ctx.schemes() == ("sha256_crypt",)
def test_02_from_string(self):
"""test from_string() constructor"""
# test sample 1 unicode
ctx = CryptContext.from_string(self.sample_1_unicode)
assert ctx.to_dict() == self.sample_1_dict
# test sample 1 with unnormalized inputs
ctx = CryptContext.from_string(self.sample_1_unnormalized)
assert ctx.to_dict() == self.sample_1_dict
# test sample 1 utf-8
ctx = CryptContext.from_string(self.sample_1_unicode.encode("utf-8"))
assert ctx.to_dict() == self.sample_1_dict
# test sample 1 w/ '\r\n' linesep
ctx = CryptContext.from_string(self.sample_1b_unicode)
assert ctx.to_dict() == self.sample_1_dict
# test sample 1 using UTF-16 and alt section
ctx = CryptContext.from_string(
self.sample_1c_bytes, section="mypolicy", encoding="utf-16"
)
assert ctx.to_dict() == self.sample_1_dict
# test wrong type
with pytest.raises(TypeError):
CryptContext.from_string(None)
# test missing section
with pytest.raises(NoSectionError):
CryptContext.from_string(
self.sample_1_unicode,
section="fakesection",
)
def test_03_from_path(self):
"""test from_path() constructor"""
# make sure sample files exist
if not os.path.exists(self.sample_1_path):
raise RuntimeError(f"can't find data file: {self.sample_1_path!r}")
# test sample 1
ctx = CryptContext.from_path(self.sample_1_path)
assert ctx.to_dict() == self.sample_1_dict
# test sample 1 w/ '\r\n' linesep
ctx = CryptContext.from_path(self.sample_1b_path)
assert ctx.to_dict() == self.sample_1_dict
# test sample 1 encoding using UTF-16 and alt section
ctx = CryptContext.from_path(
self.sample_1c_path, section="mypolicy", encoding="utf-16"
)
assert ctx.to_dict() == self.sample_1_dict
# test missing file
with pytest.raises(EnvironmentError):
CryptContext.from_path(
os.path.join(here, "sample1xxx.cfg"),
)
# test missing section
with pytest.raises(NoSectionError):
CryptContext.from_path(
self.sample_1_path,
section="fakesection",
)
def test_04_copy(self):
"""test copy() method"""
cc1 = CryptContext(**self.sample_1_dict)
# overlay sample 2 onto copy
cc2 = cc1.copy(**self.sample_2_dict)
assert cc1.to_dict() == self.sample_1_dict
assert cc2.to_dict() == self.sample_12_dict
# check that repeating overlay makes no change
cc2b = cc2.copy(**self.sample_2_dict)
assert cc1.to_dict() == self.sample_1_dict
assert cc2b.to_dict() == self.sample_12_dict
# overlay sample 3 on copy
cc3 = cc2.copy(**self.sample_3_dict)
assert cc3.to_dict() == self.sample_123_dict
# test empty copy creates separate copy
cc4 = cc1.copy()
assert cc4 is not cc1
assert cc1.to_dict() == self.sample_1_dict
assert cc4.to_dict() == self.sample_1_dict
# ... and that modifying copy doesn't affect original
cc4.update(**self.sample_2_dict)
assert cc1.to_dict() == self.sample_1_dict
assert cc4.to_dict() == self.sample_12_dict
def test_09_repr(self):
"""test repr()"""
cc1 = CryptContext(**self.sample_1_dict)
# NOTE: "0x-1234" format used by Pyston 0.5.1 (support deprecated 2019-11)
assert re.search("^<CryptContext at 0x-?[0-9a-f]+>$", repr(cc1))
def test_10_load(self):
"""test load() / load_path() method"""
# NOTE: load() is the workhorse that handles all policy parsing,
# compilation, and validation. most of its features are tested
# elsewhere, since all the constructors and modifiers are just
# wrappers for it.
# source_type 'auto'
ctx = CryptContext()
# detect dict
ctx.load(self.sample_1_dict)
assert ctx.to_dict() == self.sample_1_dict
# detect unicode string
ctx.load(self.sample_1_unicode)
assert ctx.to_dict() == self.sample_1_dict
# detect bytes string
ctx.load(self.sample_1_unicode.encode("utf-8"))
assert ctx.to_dict() == self.sample_1_dict
# anything else - TypeError
with pytest.raises(TypeError):
ctx.load(None)
# NOTE: load_path() tested by from_path()
# NOTE: additional string tests done by from_string()
# update flag - tested by update() method tests
# encoding keyword - tested by from_string() & from_path()
# section keyword - tested by from_string() & from_path()
# test load empty
ctx = CryptContext(**self.sample_1_dict)
ctx.load({}, update=True)
assert ctx.to_dict() == self.sample_1_dict
# multiple loads should clear the state
ctx = CryptContext()
ctx.load(self.sample_1_dict)
ctx.load(self.sample_2_dict)
assert ctx.to_dict() == self.sample_2_dict
def test_11_load_rollback(self):
"""test load() errors restore old state"""
# create initial context
cc = CryptContext(
["des_crypt", "sha256_crypt"],
sha256_crypt__default_rounds=5000,
all__vary_rounds=0.1,
)
result = cc.to_string()
# do an update operation that should fail during parsing
# XXX: not sure what the right error type is here.
with pytest.raises(TypeError):
cc.update(too__many__key__parts=True)
assert cc.to_string() == result
# do an update operation that should fail during extraction
# FIXME: this isn't failing even in broken case, need to figure out
# way to ensure some keys come after this one.
with pytest.raises(KeyError):
cc.update(fake_context_option=True)
assert cc.to_string() == result
# do an update operation that should fail during compilation
with pytest.raises(ValueError):
cc.update(sha256_crypt__min_rounds=10000)
assert cc.to_string() == result
def test_12_update(self):
"""test update() method"""
# empty overlay
ctx = CryptContext(**self.sample_1_dict)
ctx.update()
assert ctx.to_dict() == self.sample_1_dict
# test basic overlay
ctx = CryptContext(**self.sample_1_dict)
ctx.update(**self.sample_2_dict)
assert ctx.to_dict() == self.sample_12_dict
# ... and again
ctx.update(**self.sample_3_dict)
assert ctx.to_dict() == self.sample_123_dict
# overlay w/ dict arg
ctx = CryptContext(**self.sample_1_dict)
ctx.update(self.sample_2_dict)
assert ctx.to_dict() == self.sample_12_dict
# overlay w/ string
ctx = CryptContext(**self.sample_1_dict)
ctx.update(self.sample_2_unicode)
assert ctx.to_dict() == self.sample_12_dict
# too many args
with pytest.raises(TypeError):
ctx.update({}, {})
with pytest.raises(TypeError):
ctx.update({}, schemes=["des_crypt"])
# wrong arg type
with pytest.raises(TypeError):
ctx.update(None)
def test_20_options(self):
"""test basic option parsing"""
def parse(**kwds):
return CryptContext(**kwds).to_dict()
#
# common option parsing tests
#
# test keys with blank fields are rejected
# blank option
with pytest.raises(TypeError):
CryptContext(__=0.1)
with pytest.raises(TypeError):
CryptContext(default__scheme__="x")
# blank scheme
with pytest.raises(TypeError):
CryptContext(__option="x")
with pytest.raises(TypeError):
CryptContext(default____option="x")
# blank category
with pytest.raises(TypeError):
CryptContext(__scheme__option="x")
# test keys with too many field are rejected
with pytest.raises(TypeError):
CryptContext(category__scheme__option__invalid=30000)
# keys with mixed separators should be handled correctly.
# (testing actual data, not to_dict(), since re-render hid original bug)
with pytest.raises(KeyError):
parse(**{"admin.context__schemes": "md5_crypt"})
ctx = CryptContext(
**{"schemes": "md5_crypt,des_crypt", "admin.context__default": "des_crypt"}
)
assert ctx.default_scheme("admin") == "des_crypt"
#
# context option -specific tests
#
# test context option key parsing
result = dict(default="md5_crypt")
assert parse(default="md5_crypt") == result
assert parse(context__default="md5_crypt") == result
assert parse(default__context__default="md5_crypt") == result
assert parse(**{"context.default": "md5_crypt"}) == result
assert parse(**{"default.context.default": "md5_crypt"}) == result
# test context option key parsing w/ category
result = dict(admin__context__default="md5_crypt")
assert parse(admin__context__default="md5_crypt") == result
assert parse(**{"admin.context.default": "md5_crypt"}) == result
#
# hash option -specific tests
#
# test hash option key parsing
result = dict(all__vary_rounds=0.1)
assert parse(all__vary_rounds=0.1) == result
assert parse(default__all__vary_rounds=0.1) == result
assert parse(**{"all.vary_rounds": 0.1}) == result
assert parse(**{"default.all.vary_rounds": 0.1}) == result
# test hash option key parsing w/ category
result = dict(admin__all__vary_rounds=0.1)
assert parse(admin__all__vary_rounds=0.1) == result
assert parse(**{"admin.all.vary_rounds": 0.1}) == result
# settings not allowed if not in hash.setting_kwds
ctx = CryptContext(["phpass", "md5_crypt"], phpass__ident="P")
with pytest.raises(KeyError):
ctx.copy(md5_crypt__ident="P")
# hash options 'salt' and 'rounds' not allowed
with pytest.raises(KeyError):
CryptContext(schemes=["des_crypt"], des_crypt__salt="xx")
with pytest.raises(KeyError):
CryptContext(schemes=["des_crypt"], all__salt="xx")
def test_21_schemes(self):
"""test 'schemes' context option parsing"""
# schemes can be empty
cc = CryptContext(schemes=None)
assert cc.schemes() == ()
# schemes can be list of names
cc = CryptContext(schemes=["des_crypt", "md5_crypt"])
assert cc.schemes() == ("des_crypt", "md5_crypt")
# schemes can be comma-sep string
cc = CryptContext(schemes=" des_crypt, md5_crypt, ")
assert cc.schemes() == ("des_crypt", "md5_crypt")
# schemes can be list of handlers
cc = CryptContext(schemes=[hash.des_crypt, hash.md5_crypt])
assert cc.schemes() == ("des_crypt", "md5_crypt")
# scheme must be name or handler
with pytest.raises(TypeError):
CryptContext(schemes=[uh.StaticHandler])
# handlers must have a name
class nameless(uh.StaticHandler):
name = None
with pytest.raises(ValueError):
CryptContext(schemes=[nameless])
# names must be unique
class dummy_1(uh.StaticHandler):
name = "dummy_1"
with pytest.raises(KeyError):
CryptContext(schemes=[dummy_1, dummy_1])
# schemes not allowed per-category
with pytest.raises(KeyError):
CryptContext(admin__context__schemes=["md5_crypt"])
def test_22_deprecated(self):
"""test 'deprecated' context option parsing"""
def getdep(ctx, category=None):
return [
name for name in ctx.schemes() if ctx.handler(name, category).deprecated
]
# no schemes - all deprecated values allowed
cc = CryptContext(deprecated=["md5_crypt"])
cc.update(schemes=["md5_crypt", "des_crypt"])
assert getdep(cc) == ["md5_crypt"]
# deprecated values allowed if subset of schemes
cc = CryptContext(deprecated=["md5_crypt"], schemes=["md5_crypt", "des_crypt"])
assert getdep(cc) == ["md5_crypt"]
# can be handler
# XXX: allow handlers in deprecated list? not for now.
with pytest.raises(TypeError):
CryptContext(
deprecated=[hash.md5_crypt],
schemes=["md5_crypt", "des_crypt"],
)
## cc = CryptContext(deprecated=[hash.md5_crypt], schemes=["md5_crypt", "des_crypt"])
## self.assertEqual(getdep(cc), ["md5_crypt"])
# comma sep list
cc = CryptContext(
deprecated="md5_crypt,des_crypt",
schemes=["md5_crypt", "des_crypt", "sha256_crypt"],
)
assert getdep(cc) == ["md5_crypt", "des_crypt"]
# values outside of schemes not allowed
with pytest.raises(KeyError):
CryptContext(schemes=["des_crypt"], deprecated=["md5_crypt"])
# deprecating ALL schemes should cause ValueError
with pytest.raises(ValueError):
CryptContext(schemes=["des_crypt"], deprecated=["des_crypt"])
with pytest.raises(ValueError):
CryptContext(
schemes=["des_crypt", "md5_crypt"],
admin__context__deprecated=["des_crypt", "md5_crypt"],
)
# deprecating explicit default scheme should cause ValueError
# ... default listed as deprecated
with pytest.raises(ValueError):
CryptContext(
schemes=["des_crypt", "md5_crypt"],
default="md5_crypt",
deprecated="md5_crypt",
)
# ... global default deprecated per-category
with pytest.raises(ValueError):
CryptContext(
schemes=["des_crypt", "md5_crypt"],
default="md5_crypt",
admin__context__deprecated="md5_crypt",
)
# ... category default deprecated globally
with pytest.raises(ValueError):
CryptContext(
schemes=["des_crypt", "md5_crypt"],
admin__context__default="md5_crypt",
deprecated="md5_crypt",
)
# ... category default deprecated in category
with pytest.raises(ValueError):
CryptContext(
schemes=["des_crypt", "md5_crypt"],
admin__context__default="md5_crypt",
admin__context__deprecated="md5_crypt",
)
# category deplist should shadow default deplist
CryptContext(
schemes=["des_crypt", "md5_crypt"],
deprecated="md5_crypt",
admin__context__default="md5_crypt",
admin__context__deprecated=[],
)
# wrong type
with pytest.raises(TypeError):
CryptContext(deprecated=123)
# deprecated per-category
cc = CryptContext(
deprecated=["md5_crypt"],
schemes=["md5_crypt", "des_crypt"],
admin__context__deprecated=["des_crypt"],
)
assert getdep(cc) == ["md5_crypt"]
assert getdep(cc, "user") == ["md5_crypt"]
assert getdep(cc, "admin") == ["des_crypt"]
# blank per-category deprecated list, shadowing default list
cc = CryptContext(
deprecated=["md5_crypt"],
schemes=["md5_crypt", "des_crypt"],
admin__context__deprecated=[],
)
assert getdep(cc) == ["md5_crypt"]
assert getdep(cc, "user") == ["md5_crypt"]
assert getdep(cc, "admin") == []
def test_23_default(self):
"""test 'default' context option parsing"""
# anything allowed if no schemes
assert CryptContext(default="md5_crypt").to_dict() == dict(default="md5_crypt")
# default allowed if in scheme list
ctx = CryptContext(default="md5_crypt", schemes=["des_crypt", "md5_crypt"])
assert ctx.default_scheme() == "md5_crypt"
# default can be handler
# XXX: sure we want to allow this ? maybe deprecate in future.
ctx = CryptContext(default=hash.md5_crypt, schemes=["des_crypt", "md5_crypt"])
assert ctx.default_scheme() == "md5_crypt"
# implicit default should be first non-deprecated scheme
ctx = CryptContext(schemes=["des_crypt", "md5_crypt"])
assert ctx.default_scheme() == "des_crypt"
ctx.update(deprecated="des_crypt")
assert ctx.default_scheme() == "md5_crypt"
# error if not in scheme list
with pytest.raises(KeyError):
CryptContext(schemes=["des_crypt"], default="md5_crypt")
# wrong type
with pytest.raises(TypeError):
CryptContext(default=1)
# per-category
ctx = CryptContext(
default="des_crypt",
schemes=["des_crypt", "md5_crypt"],
admin__context__default="md5_crypt",
)
assert ctx.default_scheme() == "des_crypt"
assert ctx.default_scheme("user") == "des_crypt"
assert ctx.default_scheme("admin") == "md5_crypt"
def test_24_vary_rounds(self):
"""test 'vary_rounds' hash option parsing"""
def parse(v):
return CryptContext(all__vary_rounds=v).to_dict()["all__vary_rounds"]
# floats should be preserved
assert parse(0.1) == 0.1
assert parse("0.1") == 0.1
# 'xx%' should be converted to float
assert parse("10%") == 0.1
# ints should be preserved
assert parse(1000) == 1000
assert parse("1000") == 1000
def assertHandlerDerivedFrom(self, handler, base, msg=None):
assert handler_derived_from(handler, base), msg
def test_30_schemes(self):
"""test schemes() method"""
# NOTE: also checked under test_21
# test empty
ctx = CryptContext()
assert ctx.schemes() == ()
assert ctx.schemes(resolve=True) == ()
# test sample 1
ctx = CryptContext(**self.sample_1_dict)
assert ctx.schemes() == tuple(self.sample_1_schemes)
assert ctx.schemes(resolve=True, unconfigured=True) == tuple(
self.sample_1_handlers
)
for result, correct in zip(ctx.schemes(resolve=True), self.sample_1_handlers):
assert handler_derived_from(result, correct)
# test sample 2
ctx = CryptContext(**self.sample_2_dict)
assert ctx.schemes() == ()
def test_31_default_scheme(self):
"""test default_scheme() method"""
# NOTE: also checked under test_23
# test empty
ctx = CryptContext()
with pytest.raises(KeyError):
ctx.default_scheme()
# test sample 1
ctx = CryptContext(**self.sample_1_dict)
assert ctx.default_scheme() == "md5_crypt"
assert ctx.default_scheme(resolve=True, unconfigured=True) == hash.md5_crypt
self.assertHandlerDerivedFrom(ctx.default_scheme(resolve=True), hash.md5_crypt)
# test sample 2
ctx = CryptContext(**self.sample_2_dict)
with pytest.raises(KeyError):
ctx.default_scheme()
# test defaults to first in scheme
ctx = CryptContext(schemes=self.sample_1_schemes)
assert ctx.default_scheme() == "des_crypt"
# categories tested under test_23
def test_32_handler(self):
"""test handler() method"""
# default for empty
ctx = CryptContext()
with pytest.raises(KeyError):
ctx.handler()
with pytest.raises(KeyError):
ctx.handler("md5_crypt")
# default for sample 1
ctx = CryptContext(**self.sample_1_dict)
assert ctx.handler(unconfigured=True) == hash.md5_crypt
self.assertHandlerDerivedFrom(ctx.handler(), hash.md5_crypt)
# by name
assert ctx.handler("des_crypt", unconfigured=True) == hash.des_crypt
self.assertHandlerDerivedFrom(ctx.handler("des_crypt"), hash.des_crypt)
# name not in schemes
with pytest.raises(KeyError):
ctx.handler("mysql323")
# check handler() honors category default
ctx = CryptContext(
"sha256_crypt,md5_crypt", admin__context__default="md5_crypt"
)
assert ctx.handler(unconfigured=True) == hash.sha256_crypt
self.assertHandlerDerivedFrom(ctx.handler(), hash.sha256_crypt)
assert ctx.handler(category="staff", unconfigured=True) == hash.sha256_crypt
self.assertHandlerDerivedFrom(ctx.handler(category="staff"), hash.sha256_crypt)
assert ctx.handler(category="admin", unconfigured=True) == hash.md5_crypt
self.assertHandlerDerivedFrom(ctx.handler(category="staff"), hash.sha256_crypt)
def test_33_options(self):
"""test internal _get_record_options() method"""
def options(ctx, scheme, category=None):
return ctx._config._get_record_options_with_flag(scheme, category)[0]
# this checks that (3 schemes, 3 categories) inherit options correctly.
# the 'user' category is not present in the options.
cc4 = CryptContext(
truncate_error=True,
schemes=["sha512_crypt", "des_crypt", "bsdi_crypt"],
deprecated=["sha512_crypt", "des_crypt"],
all__vary_rounds=0.1,
bsdi_crypt__vary_rounds=0.2,
sha512_crypt__max_rounds=20000,
admin__context__deprecated=["des_crypt", "bsdi_crypt"],
admin__all__vary_rounds=0.05,
admin__bsdi_crypt__vary_rounds=0.3,
admin__sha512_crypt__max_rounds=40000,
)
assert cc4._config.categories == ("admin",)
#
# sha512_crypt
# NOTE: 'truncate_error' shouldn't be passed along...
#
assert options(cc4, "sha512_crypt") == dict(
deprecated=True,
vary_rounds=0.1, # inherited from all__
max_rounds=20000,
)
assert options(cc4, "sha512_crypt", "user") == dict(
deprecated=True, # unconfigured category inherits from default
vary_rounds=0.1,
max_rounds=20000,
)
assert options(cc4, "sha512_crypt", "admin") == dict(
# NOT deprecated - context option overridden per-category
vary_rounds=0.05, # global overridden per-cateogry
max_rounds=40000, # overridden per-category
)
#
# des_crypt
# NOTE: vary_rounds shouldn't be passed along...
#
assert options(cc4, "des_crypt") == dict(deprecated=True, truncate_error=True)
assert options(cc4, "des_crypt", "user") == dict(
deprecated=True, # unconfigured category inherits from default
truncate_error=True,
)
assert options(cc4, "des_crypt", "admin") == dict(
deprecated=True, # unchanged though overidden
truncate_error=True,
)
#
# bsdi_crypt
#
assert options(cc4, "bsdi_crypt") == dict(
vary_rounds=0.2, # overridden from all__vary_rounds
)
assert options(cc4, "bsdi_crypt", "user") == dict(
vary_rounds=0.2, # unconfigured category inherits from default
)
assert options(cc4, "bsdi_crypt", "admin") == dict(
vary_rounds=0.3,
deprecated=True, # deprecation set per-category
)
def test_34_to_dict(self):
"""test to_dict() method"""
# NOTE: this is tested all throughout this test case.
ctx = CryptContext(**self.sample_1_dict)
assert ctx.to_dict() == self.sample_1_dict
assert ctx.to_dict(resolve=True) == self.sample_1_resolved_dict
def test_35_to_string(self):
"""test to_string() method"""
# create ctx and serialize
ctx = CryptContext(**self.sample_1_dict)
dump = ctx.to_string()
# check ctx->string returns canonical format.
assert dump == self.sample_1_unicode
# check ctx->string->ctx->dict returns original
ctx2 = CryptContext.from_string(dump)
assert ctx2.to_dict() == self.sample_1_dict
# test section kwd is honored
other = ctx.to_string(section="password-security")
assert other == dump.replace("[passlib]", "[password-security]")
# test unmanaged handler warning
from tests.test_utils_handlers import UnsaltedHash
ctx3 = CryptContext([UnsaltedHash, "md5_crypt"])
dump = ctx3.to_string()
assert re.search(
"# NOTE: the 'unsalted_test_hash' handler\\(s\\)"
" are not registered with Passlib",
dump,
)
nonstring_vectors = [
(None, {}),
(None, {"scheme": "des_crypt"}),
(1, {}),
((), {}),
]
def test_40_basic(self):
"""test basic hash/identify/verify functionality"""
handlers = [hash.md5_crypt, hash.des_crypt, hash.bsdi_crypt]
cc = CryptContext(handlers, bsdi_crypt__default_rounds=5)
# run through handlers
for crypt in handlers:
h = cc.hash("test", scheme=crypt.name)
assert cc.identify(h) == crypt.name
assert cc.identify(h, resolve=True, unconfigured=True) == crypt
self.assertHandlerDerivedFrom(cc.identify(h, resolve=True), crypt)
assert cc.verify("test", h)
assert not cc.verify("notest", h)
# test default
h = cc.hash("test")
assert cc.identify(h) == "md5_crypt"
# test genhash
h = cc.genhash("secret", cc.genconfig())
assert cc.identify(h) == "md5_crypt"
h = cc.genhash("secret", cc.genconfig(), scheme="md5_crypt")
assert cc.identify(h) == "md5_crypt"
with pytest.raises(ValueError):
cc.genhash("secret", cc.genconfig(), scheme="des_crypt")
def test_41_genconfig(self):
"""test genconfig() method"""
cc = CryptContext(
schemes=["md5_crypt", "phpass"],
phpass__ident="H",
phpass__default_rounds=7,
admin__phpass__ident="P",
)
# uses default scheme
assert cc.genconfig().startswith("$1$")
# override scheme
assert cc.genconfig(scheme="phpass").startswith("$H$5")
# category override
assert cc.genconfig(scheme="phpass", category="admin").startswith("$P$5")
assert cc.genconfig(scheme="phpass", category="staff").startswith("$H$5")
# override scheme & custom settings
assert (
cc.genconfig(scheme="phpass", salt="." * 8, rounds=8, ident="P")
== "$P$6........22zGEuacuPOqEpYPDeR0R/"
)
# NOTE: config string generated w/ rounds=1
# --------------------------------------------------------------
# border cases
# --------------------------------------------------------------
# throws error without schemes
with pytest.raises(KeyError):
CryptContext().genconfig()
with pytest.raises(KeyError):
CryptContext().genconfig(scheme="md5_crypt")
# bad scheme values
with pytest.raises(KeyError):
cc.genconfig(scheme="fake") # XXX: should this be ValueError?
with pytest.raises(TypeError):
cc.genconfig(scheme=1, category="staff")
with pytest.raises(TypeError):
cc.genconfig(scheme=1)
# bad category values
with pytest.raises(TypeError):
cc.genconfig(category=1)
def test_42_genhash(self):
"""test genhash() method"""
# --------------------------------------------------------------
# border cases
# --------------------------------------------------------------
# rejects non-string secrets
cc = CryptContext(["des_crypt"])
hash = cc.hash("stub")
for secret, kwds in self.nonstring_vectors:
with pytest.raises(TypeError):
cc.genhash(secret, hash, **kwds)
# rejects non-string config strings
cc = CryptContext(["des_crypt"])
for config, kwds in self.nonstring_vectors:
if hash is None:
# NOTE: as of 1.7, genhash is just wrapper for hash(),
# and handles genhash(secret, None) fine.
continue
with pytest.raises(TypeError):
cc.genhash("secret", config, **kwds)
# rejects config=None, even if default scheme lacks config string
cc = CryptContext(["mysql323"])
with pytest.raises(TypeError):
cc.genhash("stub", None)
# throws error without schemes
with pytest.raises(KeyError):
CryptContext().genhash("secret", "hash")
# bad scheme values
with pytest.raises(KeyError):
cc.genhash("secret", hash, scheme="fake") # XXX: should this be ValueError?
with pytest.raises(TypeError):
cc.genhash("secret", hash, scheme=1)
# bad category values
with pytest.raises(TypeError):
cc.genconfig("secret", hash, category=1)
def test_43_hash(
self,
):
"""test hash() method"""
# XXX: what more can we test here that isn't deprecated
# or handled under another test (e.g. context kwds?)
# respects rounds
cc = CryptContext(**self.sample_4_dict)
hash = cc.hash("password")
assert hash.startswith("$5$rounds=3000$")
assert cc.verify("password", hash)
assert not cc.verify("passwordx", hash)
# make default > max throws error if attempted
# XXX: move this to copy() test?
with pytest.raises(ValueError):
cc.copy(sha256_crypt__default_rounds=4000)
# rejects non-string secrets
cc = CryptContext(["des_crypt"])
for secret, kwds in self.nonstring_vectors:
with pytest.raises(TypeError):
cc.hash(secret, **kwds)
# throws error without schemes
with pytest.raises(KeyError):
CryptContext().hash("secret")
# bad category values
with pytest.raises(TypeError):
cc.hash("secret", category=1)
def test_43_hash_legacy(self, use_16_legacy=False):
"""test hash() method -- legacy 'scheme' and settings keywords"""
cc = CryptContext(**self.sample_4_dict)
# TODO: should migrate these tests elsewhere, or remove them.
# can be replaced with following equivalent:
#
# def wrapper(secret, scheme=None, category=None, **kwds):
# handler = cc.handler(scheme, category)
# if kwds:
# handler = handler.using(**kwds)
# return handler.hash(secret)
#
# need to make sure bits being tested here are tested
# under the tests for the equivalent methods called above,
# and then discard the rest of these under 2.0.
# hash specific settings
with pytest.deprecated_call(match=WARN_SETTINGS_ARG):
assert (
cc.hash("password", scheme="phpass", salt="." * 8)
== "$H$5........De04R5Egz0aq8Tf.1eVhY/"
)
with pytest.deprecated_call(match=WARN_SETTINGS_ARG):
assert (
cc.hash("password", scheme="phpass", salt="." * 8, ident="P")
== "$P$5........De04R5Egz0aq8Tf.1eVhY/"
)
# NOTE: more thorough job of rounds limits done below.
# min rounds
with pytest.deprecated_call(match=WARN_SETTINGS_ARG):
assert (
cc.hash("password", rounds=1999, salt="nacl")
== "$5$rounds=1999$nacl$nmfwJIxqj0csloAAvSER0B8LU0ERCAbhmMug4Twl609"
)
with pytest.deprecated_call(match=WARN_SETTINGS_ARG):
assert (
cc.hash("password", rounds=2001, salt="nacl")
== "$5$rounds=2001$nacl$8PdeoPL4aXQnJ0woHhqgIw/efyfCKC2WHneOpnvF.31"
)
# NOTE: max rounds, etc tested in genconfig()
# bad scheme values
with pytest.raises(KeyError):
cc.hash("secret", scheme="fake") # XXX: should this be ValueError?
with pytest.raises(TypeError):
cc.hash("secret", scheme=1)
def test_44_identify(self):
"""test identify() border cases"""
handlers = ["md5_crypt", "des_crypt", "bsdi_crypt"]
cc = CryptContext(handlers, bsdi_crypt__default_rounds=5)
# check unknown hash
assert cc.identify("$9$232323123$1287319827") is None
with pytest.raises(ValueError):
cc.identify("$9$232323123$1287319827", required=True)
# --------------------------------------------------------------
# border cases
# --------------------------------------------------------------
# rejects non-string hashes
cc = CryptContext(["des_crypt"])
for hash_, kwds in self.nonstring_vectors:
with pytest.raises(TypeError):
cc.identify(hash_, **kwds)
# throws error without schemes
cc = CryptContext()
assert cc.identify("hash") is None
with pytest.raises(KeyError):
cc.identify("hash", required=True)
# bad category values
with pytest.raises(TypeError):
cc.identify(None, category=1)
def test_45_verify(self):
"""test verify() scheme kwd"""
handlers = ["md5_crypt", "des_crypt", "bsdi_crypt"]
cc = CryptContext(handlers, bsdi_crypt__default_rounds=5)
h = hash.md5_crypt.hash("test")
# check base verify
assert cc.verify("test", h)
assert not cc.verify("notest", h)
# check verify using right alg
assert cc.verify("test", h, scheme="md5_crypt")
assert not cc.verify("notest", h, scheme="md5_crypt")
# check verify using wrong alg
with pytest.raises(ValueError):
cc.verify("test", h, scheme="bsdi_crypt")
# --------------------------------------------------------------
# border cases
# --------------------------------------------------------------
# unknown hash should throw error
with pytest.raises(ValueError):
cc.verify("stub", "$6$232323123$1287319827")
# rejects non-string secrets
cc = CryptContext(["des_crypt"])
h = refhash = cc.hash("stub")
for secret, kwds in self.nonstring_vectors:
with pytest.raises(TypeError):
cc.verify(secret, h, **kwds)
# always treat hash=None as False
assert not cc.verify(secret, None)
# rejects non-string hashes
cc = CryptContext(["des_crypt"])
for h, kwds in self.nonstring_vectors:
if h is None:
continue
with pytest.raises(TypeError):
cc.verify("secret", h, **kwds)
# throws error without schemes
with pytest.raises(KeyError):
CryptContext().verify("secret", "hash")
# bad scheme values
with pytest.raises(KeyError):
cc.verify(
"secret", refhash, scheme="fake"
) # XXX: should this be ValueError?
with pytest.raises(TypeError):
cc.verify("secret", refhash, scheme=1)
# bad category values
with pytest.raises(TypeError):
cc.verify("secret", refhash, category=1)
def test_46_needs_update(self):
"""test needs_update() method"""
cc = CryptContext(**self.sample_4_dict)
# check deprecated scheme
assert cc.needs_update("9XXD4trGYeGJA")
assert not cc.needs_update("$1$J8HC2RCr$HcmM.7NxB2weSvlw2FgzU0")
# check min rounds
assert cc.needs_update(
"$5$rounds=1999$jD81UCoo.zI.UETs$Y7qSTQ6mTiU9qZB4fRr43wRgQq4V.5AAf7F97Pzxey/"
)
assert not cc.needs_update(
"$5$rounds=2000$228SSRje04cnNCaQ$YGV4RYu.5sNiBvorQDlO0WWQjyJVGKBcJXz3OtyQ2u8"
)
# check max rounds
assert not cc.needs_update(
"$5$rounds=3000$fS9iazEwTKi7QPW4$VasgBC8FqlOvD7x2HhABaMXCTh9jwHclPA9j5YQdns."
)
assert cc.needs_update(
"$5$rounds=3001$QlFHHifXvpFX4PLs$/0ekt7lSs/lOikSerQ0M/1porEHxYq7W/2hdFpxA3fA"
)
# --------------------------------------------------------------
# test hash.needs_update() interface
# --------------------------------------------------------------
check_state = []
class dummy(uh.StaticHandler):
name = "dummy"
_hash_prefix = "@"
@classmethod
def needs_update(cls, hash, secret=None):
check_state.append((hash, secret))
return secret == "nu"
def _calc_checksum(self, secret):
from hashlib import md5
if isinstance(secret, str):
secret = secret.encode("utf-8")
return md5(secret).hexdigest()
# calling needs_update should query callback
ctx = CryptContext([dummy])
hash = refhash = dummy.hash("test")
assert not ctx.needs_update(hash)
assert check_state == [(hash, None)]
del check_state[:]
# now with a password
assert not ctx.needs_update(hash, secret="bob")
assert check_state == [(hash, "bob")]
del check_state[:]
# now when it returns True
assert ctx.needs_update(hash, secret="nu")
assert check_state == [(hash, "nu")]
del check_state[:]
# --------------------------------------------------------------
# border cases
# --------------------------------------------------------------
# rejects non-string hashes
cc = CryptContext(["des_crypt"])
for hash, kwds in self.nonstring_vectors:
with pytest.raises(TypeError):
cc.needs_update(hash, **kwds)
# throws error without schemes
with pytest.raises(KeyError):
CryptContext().needs_update("hash")
# bad scheme values
with pytest.raises(KeyError):
cc.needs_update(refhash, scheme="fake") # XXX: should this be ValueError?
with pytest.raises(TypeError):
cc.needs_update(refhash, scheme=1)
# bad category values
with pytest.raises(TypeError):
cc.needs_update(refhash, category=1)
def test_47_verify_and_update(self):
"""test verify_and_update()"""
cc = CryptContext(**self.sample_4_dict)
# create some hashes
h1 = cc.handler("des_crypt").hash("password")
h2 = cc.handler("sha256_crypt").hash("password")
# check bad password, deprecated hash
ok, new_hash = cc.verify_and_update("wrongpass", h1)
assert not ok
assert new_hash is None
# check bad password, good hash
ok, new_hash = cc.verify_and_update("wrongpass", h2)
assert not ok
assert new_hash is None
# check right password, deprecated hash
ok, new_hash = cc.verify_and_update("password", h1)
assert ok
assert cc.identify(new_hash), "sha256_crypt"
# check right password, good hash
ok, new_hash = cc.verify_and_update("password", h2)
assert ok
assert new_hash is None
# --------------------------------------------------------------
# border cases
# --------------------------------------------------------------
# rejects non-string secrets
cc = CryptContext(["des_crypt"])
hash = refhash = cc.hash("stub")
for secret, kwds in self.nonstring_vectors:
with pytest.raises(TypeError):
cc.verify_and_update(secret, hash, **kwds)
# always treat hash=None as False
assert cc.verify_and_update(secret, None) == (False, None)
# rejects non-string hashes
cc = CryptContext(["des_crypt"])
for hash, kwds in self.nonstring_vectors:
if hash is None:
continue
with pytest.raises(TypeError):
cc.verify_and_update("secret", hash, **kwds)
# throws error without schemes
with pytest.raises(KeyError):
CryptContext().verify_and_update("secret", "hash")
# bad scheme values
with pytest.raises(KeyError):
cc.verify_and_update(
"secret", refhash, scheme="fake"
) # XXX: should this be ValueError?
with pytest.raises(TypeError):
cc.verify_and_update("secret", refhash, scheme=1)
# bad category values
with pytest.raises(TypeError):
cc.verify_and_update("secret", refhash, category=1)
def test_48_context_kwds(self):
"""hash(), verify(), and verify_and_update() -- discard unused context keywords"""
# setup test case
# NOTE: postgres_md5 hash supports 'user' context kwd, which is used for this test.
from passlib.hash import des_crypt, md5_crypt, postgres_md5
des_hash = des_crypt.hash("stub")
pg_root_hash = postgres_md5.hash("stub", user="root")
pg_admin_hash = postgres_md5.hash("stub", user="admin") # noqa: F841
# ------------------------------------------------------------
# case 1: contextual kwds not supported by any hash in CryptContext
# ------------------------------------------------------------
cc1 = CryptContext([des_crypt, md5_crypt])
assert cc1.context_kwds == set()
# des_scrypt should work w/o any contextual kwds
assert des_crypt.identify(cc1.hash("stub")), "des_crypt"
assert cc1.verify("stub", des_hash)
assert cc1.verify_and_update("stub", des_hash) == (True, None)
# des_crypt should throw error due to unknown context keyword
with pytest.deprecated_call(match=WARN_SETTINGS_ARG), pytest.raises(TypeError):
cc1.hash("stub", user="root")
with pytest.raises(TypeError):
cc1.verify("stub", des_hash, user="root")
with pytest.raises(TypeError):
cc1.verify_and_update("stub", des_hash, user="root")
# ------------------------------------------------------------
# case 2: at least one contextual kwd supported by non-default hash
# ------------------------------------------------------------
cc2 = CryptContext([des_crypt, postgres_md5])
assert cc2.context_kwds == set(["user"])
# verify des_crypt works w/o "user" kwd
assert des_crypt.identify(cc2.hash("stub")), "des_crypt"
assert cc2.verify("stub", des_hash)
assert cc2.verify_and_update("stub", des_hash) == (True, None)
# verify des_crypt ignores "user" kwd
assert des_crypt.identify(cc2.hash("stub", user="root")), "des_crypt"
assert cc2.verify("stub", des_hash, user="root")
assert cc2.verify_and_update("stub", des_hash, user="root") == (True, None)
# verify error with unknown kwd
with pytest.deprecated_call(match=WARN_SETTINGS_ARG), pytest.raises(TypeError):
cc2.hash("stub", badkwd="root")
with pytest.raises(TypeError):
cc2.verify("stub", des_hash, badkwd="root")
with pytest.raises(TypeError):
cc2.verify_and_update("stub", des_hash, badkwd="root")
# ------------------------------------------------------------
# case 3: at least one contextual kwd supported by default hash
# ------------------------------------------------------------
cc3 = CryptContext([postgres_md5, des_crypt], deprecated="auto")
assert cc3.context_kwds == set(["user"])
# postgres_md5 should have error w/o context kwd
with pytest.raises(TypeError):
cc3.hash("stub")
with pytest.raises(TypeError):
cc3.verify("stub", pg_root_hash)
with pytest.raises(TypeError):
cc3.verify_and_update("stub", pg_root_hash)
# postgres_md5 should work w/ context kwd
assert cc3.hash("stub", user="root") == pg_root_hash
assert cc3.verify("stub", pg_root_hash, user="root")
assert cc3.verify_and_update("stub", pg_root_hash, user="root") == (True, None)
# verify_and_update() should fail against wrong user
assert cc3.verify_and_update("stub", pg_root_hash, user="admin") == (
False,
None,
)
# verify_and_update() should pass all context kwds through when rehashing
assert cc3.verify_and_update("stub", des_hash, user="root") == (
True,
pg_root_hash,
)
# TODO: now that rounds generation has moved out of _CryptRecord to HasRounds,
# this should just test that we're passing right options to handler.using(),
# and that resulting handler has right settings.
# Can then just let HasRounds tests (which are a copy of this) deal with things.
# NOTE: the follow tests check how _CryptRecord handles
# the min/max/default/vary_rounds options, via the output of
# genconfig(). it's assumed hash() takes the same codepath.
def test_50_rounds_limits(self):
"""test rounds limits"""
cc = CryptContext(
schemes=["sha256_crypt"],
sha256_crypt__min_rounds=2000,
sha256_crypt__max_rounds=3000,
sha256_crypt__default_rounds=2500,
)
# stub digest returned by sha256_crypt's genconfig calls..
STUB = "..........................................."
# --------------------------------------------------
# settings should have been applied to custom handler,
# it should take care of the rest
# --------------------------------------------------
custom_handler = cc._get_record("sha256_crypt", None)
assert custom_handler.min_desired_rounds == 2000
assert custom_handler.max_desired_rounds == 3000
assert custom_handler.default_rounds == 2500
# --------------------------------------------------
# min_rounds
# --------------------------------------------------
# set below handler minimum
with pytest.warns(PasslibHashWarning) as warns:
c2 = cc.copy(
sha256_crypt__min_rounds=500,
sha256_crypt__max_rounds=None,
sha256_crypt__default_rounds=500,
)
assert len(warns) == 2
assert c2.genconfig(salt="nacl") == "$5$rounds=1000$nacl$" + STUB
# below policy minimum
# NOTE: formerly issued a warning in passlib 1.6, now just a wrapper for .replace()
assert cc.genconfig(rounds=1999, salt="nacl") == "$5$rounds=1999$nacl$" + STUB
# equal to policy minimum
assert cc.genconfig(rounds=2000, salt="nacl") == "$5$rounds=2000$nacl$" + STUB
# above policy minimum
assert cc.genconfig(rounds=2001, salt="nacl") == "$5$rounds=2001$nacl$" + STUB
# --------------------------------------------------
# max rounds
# --------------------------------------------------
# set above handler max
with pytest.warns(PasslibHashWarning) as warns:
c2 = cc.copy(
sha256_crypt__max_rounds=int(1e9) + 500,
sha256_crypt__min_rounds=None,
sha256_crypt__default_rounds=int(1e9) + 500,
)
assert len(warns) == 2
assert c2.genconfig(salt="nacl") == "$5$rounds=999999999$nacl$" + STUB
# above policy max
# NOTE: formerly issued a warning in passlib 1.6, now just a wrapper for .using()
assert cc.genconfig(rounds=3001, salt="nacl") == "$5$rounds=3001$nacl$" + STUB
# equal policy max
assert cc.genconfig(rounds=3000, salt="nacl") == "$5$rounds=3000$nacl$" + STUB
# below policy max
assert cc.genconfig(rounds=2999, salt="nacl") == "$5$rounds=2999$nacl$" + STUB
# --------------------------------------------------
# default_rounds
# --------------------------------------------------
# explicit default rounds
assert cc.genconfig(salt="nacl") == "$5$rounds=2500$nacl$" + STUB
# fallback default rounds - use handler's
df = hash.sha256_crypt.default_rounds
c2 = cc.copy(
sha256_crypt__default_rounds=None, sha256_crypt__max_rounds=df << 1
)
assert c2.genconfig(salt="nacl") == "$5$rounds=%d$nacl$%s" % (df, STUB)
# fallback default rounds - use handler's, but clipped to max rounds
c2 = cc.copy(sha256_crypt__default_rounds=None, sha256_crypt__max_rounds=3000)
assert c2.genconfig(salt="nacl") == "$5$rounds=3000$nacl$" + STUB
# TODO: test default falls back to mx / mn if handler has no default.
# default rounds - out of bounds
with pytest.raises(ValueError):
cc.copy(sha256_crypt__default_rounds=1999)
cc.copy(sha256_crypt__default_rounds=2000)
cc.copy(sha256_crypt__default_rounds=3000)
with pytest.raises(ValueError):
cc.copy(sha256_crypt__default_rounds=3001)
# --------------------------------------------------
# border cases
# --------------------------------------------------
# invalid min/max bounds
c2 = CryptContext(schemes=["sha256_crypt"])
# NOTE: as of v1.7, these are clipped w/ a warning instead...
# self.assertRaises(ValueError, c2.copy, sha256_crypt__min_rounds=-1)
# self.assertRaises(ValueError, c2.copy, sha256_crypt__max_rounds=-1)
with pytest.raises(ValueError):
c2.copy(
sha256_crypt__min_rounds=2000,
sha256_crypt__max_rounds=1999,
)
# test bad values
with pytest.raises(ValueError):
CryptContext(sha256_crypt__min_rounds="x")
with pytest.raises(ValueError):
CryptContext(sha256_crypt__max_rounds="x")
with pytest.raises(ValueError):
CryptContext(all__vary_rounds="x")
with pytest.raises(ValueError):
CryptContext(sha256_crypt__default_rounds="x")
# test bad types rejected
bad = datetime.datetime.now() # picked cause can't be compared to int
with pytest.raises(TypeError):
CryptContext("sha256_crypt", sha256_crypt__min_rounds=bad)
with pytest.raises(TypeError):
CryptContext("sha256_crypt", sha256_crypt__max_rounds=bad)
with pytest.raises(TypeError):
CryptContext("sha256_crypt", all__vary_rounds=bad)
with pytest.raises(TypeError):
CryptContext("sha256_crypt", sha256_crypt__default_rounds=bad)
def test_51_linear_vary_rounds(self):
"""test linear vary rounds"""
cc = CryptContext(
schemes=["sha256_crypt"],
sha256_crypt__min_rounds=1995,
sha256_crypt__max_rounds=2005,
sha256_crypt__default_rounds=2000,
)
# test negative
with pytest.raises(ValueError):
cc.copy(all__vary_rounds=-1)
with pytest.raises(ValueError):
cc.copy(all__vary_rounds="-1%")
with pytest.raises(ValueError):
cc.copy(all__vary_rounds="101%")
# test static
c2 = cc.copy(all__vary_rounds=0)
assert c2._get_record("sha256_crypt", None).vary_rounds == 0
self.assert_rounds_range(c2, "sha256_crypt", 2000, 2000)
c2 = cc.copy(all__vary_rounds="0%")
assert c2._get_record("sha256_crypt", None).vary_rounds == 0
self.assert_rounds_range(c2, "sha256_crypt", 2000, 2000)
# test absolute
c2 = cc.copy(all__vary_rounds=1)
assert c2._get_record("sha256_crypt", None).vary_rounds == 1
self.assert_rounds_range(c2, "sha256_crypt", 1999, 2001)
c2 = cc.copy(all__vary_rounds=100)
assert c2._get_record("sha256_crypt", None).vary_rounds == 100
self.assert_rounds_range(c2, "sha256_crypt", 1995, 2005)
# test relative
c2 = cc.copy(all__vary_rounds="0.1%")
assert c2._get_record("sha256_crypt", None).vary_rounds == 0.001
self.assert_rounds_range(c2, "sha256_crypt", 1998, 2002)
c2 = cc.copy(all__vary_rounds="100%")
assert c2._get_record("sha256_crypt", None).vary_rounds == 1.0
self.assert_rounds_range(c2, "sha256_crypt", 1995, 2005)
def test_52_log2_vary_rounds(self):
"""test log2 vary rounds"""
cc = CryptContext(
schemes=["bcrypt"],
bcrypt__min_rounds=15,
bcrypt__max_rounds=25,
bcrypt__default_rounds=20,
)
# test negative
with pytest.raises(ValueError):
cc.copy(all__vary_rounds=-1)
with pytest.raises(ValueError):
cc.copy(all__vary_rounds="-1%")
with pytest.raises(ValueError):
cc.copy(all__vary_rounds="101%")
# test static
c2 = cc.copy(all__vary_rounds=0)
assert c2._get_record("bcrypt", None).vary_rounds == 0
self.assert_rounds_range(c2, "bcrypt", 20, 20)
c2 = cc.copy(all__vary_rounds="0%")
assert c2._get_record("bcrypt", None).vary_rounds == 0
self.assert_rounds_range(c2, "bcrypt", 20, 20)
# test absolute
c2 = cc.copy(all__vary_rounds=1)
assert c2._get_record("bcrypt", None).vary_rounds == 1
self.assert_rounds_range(c2, "bcrypt", 19, 21)
c2 = cc.copy(all__vary_rounds=100)
assert c2._get_record("bcrypt", None).vary_rounds == 100
self.assert_rounds_range(c2, "bcrypt", 15, 25)
# test relative - should shift over at 50% mark
c2 = cc.copy(all__vary_rounds="1%")
assert c2._get_record("bcrypt", None).vary_rounds == 0.01
self.assert_rounds_range(c2, "bcrypt", 20, 20)
c2 = cc.copy(all__vary_rounds="49%")
assert c2._get_record("bcrypt", None).vary_rounds == 0.49
self.assert_rounds_range(c2, "bcrypt", 20, 20)
c2 = cc.copy(all__vary_rounds="50%")
assert c2._get_record("bcrypt", None).vary_rounds == 0.5
self.assert_rounds_range(c2, "bcrypt", 19, 20)
c2 = cc.copy(all__vary_rounds="100%")
assert c2._get_record("bcrypt", None).vary_rounds == 1.0
self.assert_rounds_range(c2, "bcrypt", 15, 21)
def assert_rounds_range(self, context, scheme, lower, upper):
"""helper to check vary_rounds covers specified range"""
# NOTE: this runs enough times the min and max *should* be hit,
# though there's a faint chance it will randomly fail.
handler = context.handler(scheme)
salt = handler.default_salt_chars[0:1] * handler.max_salt_size
seen = set()
for i in range(300):
h = context.genconfig(scheme, salt=salt)
r = handler.from_string(h).rounds
seen.add(r)
assert min(seen) == lower, "vary_rounds had wrong lower limit:"
assert max(seen) == upper, "vary_rounds had wrong upper limit:"
def test_dummy_verify(self):
"""
dummy_verify() method
"""
# check dummy_verify() takes expected time
expected = 0.05
accuracy = 0.3
handler = DelayHash.using()
handler.delay = expected
ctx = CryptContext(schemes=[handler])
ctx.dummy_verify() # prime the memoized helpers
elapsed, _ = time_call(ctx.dummy_verify)
assert elapsed == pytest.approx(expected, abs=expected * accuracy)
# TODO: test dummy_verify() invoked by .verify() when hash is None,
# and same for .verify_and_update()
def test_61_autodeprecate(self):
"""test deprecated='auto' is handled correctly"""
def getstate(ctx, category=None):
return [
ctx.handler(scheme, category).deprecated for scheme in ctx.schemes()
]
# correctly reports default
ctx = CryptContext("sha256_crypt,md5_crypt,des_crypt", deprecated="auto")
assert getstate(ctx, None) == [False, True, True]
assert getstate(ctx, "admin") == [False, True, True]
# correctly reports changed default
ctx.update(default="md5_crypt")
assert getstate(ctx, None) == [True, False, True]
assert getstate(ctx, "admin") == [True, False, True]
# category default is handled correctly
ctx.update(admin__context__default="des_crypt")
assert getstate(ctx, None) == [True, False, True]
assert getstate(ctx, "admin") == [True, True, False]
# handles 1 scheme
ctx = CryptContext(["sha256_crypt"], deprecated="auto")
assert getstate(ctx, None) == [False]
assert getstate(ctx, "admin") == [False]
# disallow auto & other deprecated schemes at same time.
with pytest.raises(ValueError):
CryptContext(
"sha256_crypt,md5_crypt",
deprecated="auto,md5_crypt",
)
with pytest.raises(ValueError):
CryptContext(
"sha256_crypt,md5_crypt",
deprecated="md5_crypt,auto",
)
def test_disabled_hashes(self):
"""disabled hash support"""
#
# init ref info
#
from passlib.exc import UnknownHashError
from passlib.hash import md5_crypt, unix_disabled
ctx = CryptContext(["des_crypt"])
ctx2 = CryptContext(["des_crypt", "unix_disabled"])
h_ref = ctx.hash("foo")
h_other = md5_crypt.hash("foo")
#
# ctx.disable()
#
# test w/o disabled hash support
err_msg = "no disabled hasher present"
error_context = pytest.raises(RuntimeError, match=err_msg)
with error_context:
ctx.disable()
with error_context:
ctx.disable(h_ref)
with error_context:
ctx.disable(h_other)
# test w/ disabled hash support
h_dis = ctx2.disable()
assert h_dis == unix_disabled.default_marker
h_dis_ref = ctx2.disable(h_ref)
assert h_dis_ref == unix_disabled.default_marker + h_ref
h_dis_other = ctx2.disable(h_other)
assert h_dis_other == unix_disabled.default_marker + h_other
# don't double-wrap existing disabled hash
assert ctx2.disable(h_dis_ref) == h_dis_ref
#
# ctx.is_enabled()
#
# test w/o disabled hash support
assert ctx.is_enabled(h_ref)
with pytest.raises(UnknownHashError):
ctx.is_enabled(h_other)
with pytest.raises(UnknownHashError):
ctx.is_enabled(h_dis)
with pytest.raises(UnknownHashError):
ctx.is_enabled(h_dis_ref)
# test w/ disabled hash support
assert ctx2.is_enabled(h_ref)
with pytest.raises(UnknownHashError):
ctx.is_enabled(h_other)
assert not ctx2.is_enabled(h_dis)
assert not ctx2.is_enabled(h_dis_ref)
#
# ctx.enable()
#
# test w/o disabled hash support
with pytest.raises(UnknownHashError):
ctx.enable("")
with pytest.raises(TypeError):
ctx.enable(None)
assert ctx.enable(h_ref) == h_ref
with pytest.raises(UnknownHashError):
ctx.enable(h_other)
with pytest.raises(UnknownHashError):
ctx.enable(h_dis)
with pytest.raises(UnknownHashError):
ctx.enable(h_dis_ref)
# test w/ disabled hash support
with pytest.raises(UnknownHashError):
ctx.enable("")
with pytest.raises(TypeError):
ctx2.enable(None)
assert ctx2.enable(h_ref) == h_ref
with pytest.raises(UnknownHashError):
ctx2.enable(h_other)
with pytest.raises(ValueError, match="cannot restore original hash"):
ctx2.enable(h_dis)
assert ctx2.enable(h_dis_ref) == h_ref
class DelayHash(uh.StaticHandler):
"""dummy hasher which delays by specified amount"""
name = "delay_hash"
checksum_chars = uh.LOWER_HEX_CHARS
checksum_size = 40
delay = 0
_hash_prefix = "$x$"
def _calc_checksum(self, secret):
time.sleep(self.delay)
if isinstance(secret, str):
secret = secret.encode("utf-8")
return hashlib.sha1(b"prefix" + secret).hexdigest()
class dummy_2(uh.StaticHandler):
name = "dummy_2"
class LazyCryptContextTest(TestCase):
descriptionPrefix = "LazyCryptContext"
def setUp(self):
# make sure this isn't registered before OR after
unload_handler_name("dummy_2")
self.addCleanup(unload_handler_name, "dummy_2")
def test_kwd_constructor(self):
"""test plain kwds"""
assert not has_crypt_handler("dummy_2")
register_crypt_handler_path("dummy_2", "tests.test_context")
cc = LazyCryptContext(iter(["dummy_2", "des_crypt"]), deprecated=["des_crypt"])
assert not has_crypt_handler("dummy_2", True)
assert cc.schemes() == ("dummy_2", "des_crypt")
assert cc.handler("des_crypt").deprecated
assert has_crypt_handler("dummy_2", True)
def test_callable_constructor(self):
assert not has_crypt_handler("dummy_2")
register_crypt_handler_path("dummy_2", "tests.test_context")
def onload(flag=False):
assert flag
return dict(
schemes=iter(["dummy_2", "des_crypt"]), deprecated=["des_crypt"]
)
cc = LazyCryptContext(onload=onload, flag=True)
assert not has_crypt_handler("dummy_2", True)
assert cc.schemes() == ("dummy_2", "des_crypt")
assert cc.handler("des_crypt").deprecated
assert has_crypt_handler("dummy_2", True)
|