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 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679
|
\documentstyle[times,fullpage,rcsid]{article}
\rcs$Id$
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Make _ actually generate an _, and allow line-breaking after it.
\let\underscore=\_
\catcode`_=13
\def_{\underscore\penalty75\relax}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\newcommand{\test}[1]{\begin{description}
\setlength{\itemsep}{0pt}
#1
\end{description}
}
\newcommand{\numtest}[2]{\begin{description}
\setlength{\itemsep}{0pt}
\Number{#1}
#2
\end{description}
}
\newcommand{\Number}[1]{\item[Number:] #1}
\newcommand{\Reason}[1]{\item[Reason:] #1}
\newcommand{\Expected}[1]{\item[Expected:] #1}
\newcommand{\Conditions}[1]{\item[Conditions:] #1}
\newcommand{\Priority}[1]{\item[Priority:] #1}
\newcommand{\Status}[1]{\item[Status:] #1}
\newcommand{\Vtwonote}[1]{\item[V2 note:] #1}
\newcommand{\Version}[1]{\item[Version:] #1}
\newcommand{\Call}[1]{}
%\newcommand{\Call}[1]{\item[Call:] #1}
%\newcommand{\Number}[1]{}
%\newcommand{\Reason}[1]{}
%\newcommand{\Expected}[1]{}
%\newcommand{\Conditions}[1]{}
%\newcommand{\Priority}[1]{}
\title{KADM5 Admin API\\
Unit Test Description\footnote{\rcsId}}
\author{Jonathan I. Kamens}
\begin{document}
\maketitle
%\tableofcontents
\section{Introduction}
The following is a description of a black-box unit test of the KADM5
API. Each API function is listed, followed by the tests that shoud be
performed on it.
The tests described here are based on the ``Kerberos Administration
System KADM5 API Functional Specifications'', revision 1.68. This
document was originally written based on the OpenVision API functional
specifications, version 1.41, dated August 18, 1994, and many
indications of the original version remain.
All tests which test for success should verify, using some means other
than the return value of the function being tested, that the requested
operation was successfully performed. For example: for init, test
that other operations can be performed after init; for destroy, test
that other operations can't be performed after destroy; for modify
functions, verify that all modifications to the database which should
have taken place did, and that the new, modified data is in effect;
for get operations, verify that the data retrieved is the data that
should actually be in the database.
The tests would be better if they compared the actual contents of the
database before and after each test, rather than relying on the KADM5
API to report the results of changes.
Similarly, all tests which test for failure should verify that the
no component of the requested operation took place. For example: if
init fails, other operations should not work. If a modify fails, all
data in the database should be the same as it was before the attempt
to modify, and the old data should still be what is enforced.
Furthermore, tests which test for failure should verify that the
failure code returned is correct for the specific failure condition
tested.
Most of the tests listed below should be run twice -- once locally on
the server after linking against the server API library, and once
talking to the server via authenticated Sun RPC after linking against
the client API library. Tests which should only be run locally or via
RPC are labelled with a ``local'' or ``RPC''.
Furthermore, in addition to the tests labelled below, a test should be
implemented to verify that a client can't perform operations on the
server through the client API library when it's linked against
standard Sun RPC instead of OpenV*Secure's authenticated Sun RPC.
This will require a client with a modified version of ovsec_kadm_init
which doesn't call auth_gssapi_create. This client should call this
modified ovsec_kadm_init and then call some other admin API function,
specifying arguments to both functions that would work if the
authenticated Sun RPC had been used, but shouldn't if authentication
wasn't used. The test should verify that the API function call after
the init doesn't succeed.
There is also another test to see if all the API functions handle getting an
invalid server handle correctly. This is not done as part of the tests that
are run through the TCL program cause the TCL program has no way of
invalidating a server handle. So there is a program that calls init and
changes the handle magic number, and then attempts to call each API function
with the corrupted server handle.
A number of tests have been added or changed to correspond with KADM5
API version 2. Tests which are only performed against the newer
version specify the version number in the test description.
\section{ovsec_kadm_init}
\numtest{1}{
\Reason{An empty string realm is rejected.}
\Status{Implemented}
\Vtwonote{The empty string is now passed as the realm field of the
parameters structure.}
}
\numtest{2}{
\Reason{A realm containing invalid characters is rejected.}
\Status{Implemented}
\Vtwonote{The invalid character is now passed as the realm field of the
parameters structure.}
}
\numtest{2.5}{
\Reason{A non-existent realm is rejected.}
\Status{Implemented}
\Vtwonote{The non-existent realm is now passed as the realm field of the
parameters structure.}
}
\numtest{3}{
\Reason{A bad service name representing an existing principal
(different from the client principal) is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{4}{
\Reason{A bad service name representing a non-existent
principal is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{5}{
\Reason{A bad service name identical to the (existing) client
name is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{6}{
\Reason{A null password causes password prompting.}
\Status{Implemented}
}
\numtest{7}{
\Reason{An empty-string causes password prompting}
\Status{Implemented}
}
\numtest{8}{
\Reason{An incorrect password which is the password of another
user is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{9}{
\Reason{An incorrect password which isn't the password of any
user is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{10}{
\Reason{A null client_name is rejected.}
\Status{Implemented}
}
% Empty string client name is legal.
%\numtest{11}{
%\Reason{An empty-string client_name is rejected.}
%}
\numtest{12}{
\Reason{A client_name referring to a non-existent principal in
the default realm is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{13}{
\Reason{A client_name referring to a non-existent principal
with the local realm specified explicitly is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{14}{
\Reason{A client_name referring to a non-existent principal in
a nonexistent realm is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{15}{
\Reason{A client_name referring to an existing principal in a
nonexistent realm is rejected.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{16}{
\Reason{Valid invocation.}
\Status{Implemented}
}
\numtest{17}{
\Reason{Valid invocation (explicit client realm).}
\Status{Implemented}
}
\numtest{18}{
\Reason{Valid invocation (CHANGEPW_SERVICE).}
\Status{Implemented}
}
\numtest{19}{
\Reason{Valid invocation (explicit service realm).}
\Status{Implemented}
\Vtwonote{The explicit realm is now passed as the realm field of the
configuration parameters.}
}
\numtest{20}{
\Reason{Valid invocation (database access allowed after init).}
\Status{Implemented}
}
%\numtest{21}{
%\Reason{Init fails when called twice in a row.}
%\Status{Implemented}
%}
\numtest{22}{
\Reason{A null password causes master-key prompting.}
\Conditions{local}
\Status{Implemented}
\Vtwonote{Obsolete.}
}
\numtest{22.5}{
\Reason{A empty string password causes master-key prompting.}
\Conditions{local}
\Status{Implemented}
\Vtwonote{Obsolete.}
}
%\numtest{23}{
%\Reason{A non-null password causes reading from the kstash.}
%\Conditions{local}
%\Status{Implemented}
%}
\numtest{24}{
\Reason{Null service name is ignored in local invocation.}
\Conditions{local}
\Status{Implemented}
}
\numtest{25}{
\Reason{Non-null service name is ignored in local invocation.}
\Conditions{local}
\Status{Implemented}
}
%\numtest{26}{
%\Reason{Can't do ``get'' operation before calling init.}
%\Status{Implemented}
%}
%\numtest{27}{
%\Reason{Can't do ``add'' operation before calling init.}
%\Status{Implemented}
%}
%\numtest{28}{
%\Reason{Can't do ``modify'' operation before calling init.}
%\Status{Implemented}
%}
%\numtest{29}{
%\Reason{Can't do ``delete'' operation before calling init.}
%\Status{Implemented}
%}
\numtest{30}{
\Reason{Can init after failed init attempt.}
\Conditions{local}
\Status{Implemented}
}
\numtest{31}{
\Priority{High}
\Reason{Return BAD_STRUCT_VERSION when the mask bits are set to invalid values}
\Status{Implemented}
}
\numtest{32}{
\Priority{High}
\Reason{Return BAD_STRUCT_VERSION when the mask bits are not set}
\Status{Implemented}
}
\numtest{33}{
\Priority{High}
\Reason{Return OLD_STRUCT_VERSION when attempting to use an old/unsupported
structure version}
\Status{Implemented}
}
\numtest{34}{
\Priority{High}
\Reason{Return NEW_STRUCT_VERSION when attempting to use a newer version of
of the structure then what is supported}
\Status{Implemented}
}
\numtest{35}{
\Priority{High}
\Reason{Return BAD_API_VERSION when the mask bits are set to invalid values}
\Status{Implemented}
}
\numtest{36}{
\Priority{High}
\Reason{Return BAD_API_VERSION when the mask bits are not set}
\Status{Implemented}
}
\numtest{37}{
\Priority{High}
\Reason{Return OLD_LIB_API_VERSION when using an old/unsuppored
api version number}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{38}{
\Priority{High}
\Reason{Return OLD_SERVER_API_VERSION attempting to use an
old/unsupported api version number}
\Conditions{local}
\Status{Implemented}
}
\numtest{39}{
\Priority{High}
\Reason{Return NEW_LIB_API_VERSION when using a newer api
version number then supported}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{40}{
\Priority{High}
\Reason{Return NEW_SERVER_API_VERSION when using a newer api version
number then supported}
\Conditions{local}
\Status{Implemented}
}
\numtest{41}{
\Priority{High}
\Reason{Return BAD_XXX_VERSION when the API and the structure
version numbers are reversed}
\Status{Implemented}
}
\numtest{42}{
\Priority{High}
\Reason{Succeeds when using valid api and struct version numbers and masks}
\Status{Implemented}
}
\numtest{43}{
\Priority{Low}
\Reason{Returns two different server handle when called twice with same info}
}
\numtest{44}{
\Priority{Low}
\Reason{Returns two different server handles when called twice with
different info}
}
\numtest{45}{
\Priority{Bug fix, secure-install/3390}
\Reason{Returns SECURE_PRINC_MISSING when ADMIN_SERVICE does not
exist.}
\Status{Implemented}
}
\numtest{46}{
\Priority{Bug fix, secure-install/3390}
\Reason{Returns SECURE_PRINC_MISSING when CHANGEPW_SERVICE does not
exist.}
\Status{Implemented}
}
\numtest{100}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the profile field of the configuration parameters, if
set.}
\Status{Implemented}
}
\numtest{101}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the kadmind_port field of the configuration parameters,
if set.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{102}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the admin_server field of the configuration parameters,
if set with only an admin server name.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{102.5}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the admin_server field of the configuratin parameters,
if set with a host name and port number.}
\Conditions{RPC}
}
\numtest{103}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the dbname field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{104}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the admin_dbname field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{105}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the admin_lockfile field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{106}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the mkey_from_kbd field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{107}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the stash_file field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{108}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the mkey_name field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{109}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the max_life field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{110}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the max_rlife field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{111}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the expiration field of the configuration parameters, if
set.}
\Status{Implemented}
\Conditions{local}
}
\numtest{112}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the flags field of the configuration parameters, if
set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{113}{
\Version{KADM5_API_VERSION_2}
\Reason{Obeys the keysalts and num_keysalts field of the configuration
parameters, if set.}
\Conditions{local}
\Status{Implemented}
}
\numtest{114}{
\Version{KADM5_API_VERSION_2}
\Reason{Returns KADM5_BAD_SERVER_PARAMS if any client-only parameters
are specified to server-side init.}
\Conditions{local}
\Status{Implemented}
}
\numtest{115}{
\Version{KADM5_API_VERSION_2}
\Reason{Returns KADM5_BAD_CLIENT_PARAMS if any client-only parameters
are specified to server-side init.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{116}{
\Version{KADM5_API_VERSION_2}
\Reason{Two calls to init with clients having different privileges
succeedes, and both clients maintain their correct privileges.}
\Priority{Bug fix}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{117}{
\Version{KADM5_API_VERSION_2}
\Reason{The max_life field defaults to value specified in the API
Functional Specification when kdc.conf is unreadable.}
\Priority{Bug fix, krb5-admin/18}
\Conditions{local}
\Status{Implemented}
}
\numtest{150}{
\Version{KADM5_API_VERSION_2}
\Reason{init_with_creds works when given an open ccache with a valid
credential for ADMIN_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{151}{
\Version{KADM5_API_VERSION_2}
\Reason{init_with_creds works when given an open ccache with a valid
credential for CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{152}{
\Version{KADM5_API_VERSION_2}
\Reason{init_with_creds fails with KRB5_FCC_NOFILE (was
KADM5_GSS_ERROR) when given an open
ccache with no credentials.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{153}{
\Version{KADM5_API_VERSION_2}
\Reason{init_with_creds fails with KRB5_CC_NOTFOUND (was
KADM5_GSS_ERROR) when given an open
ccache without credentials for ADMIN_SERVICE or CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{154}{
\Version{KADM5_API_VERSION_2}
\Reason{If the KRB5_KDC_PROFILE environment variable is set to a filename
that does not exist, init fails with ENOENT.}
\Conditions{RPC}
\Status{Implemented}
}
\section{ovsec_kadm_destroy}
\numtest{1}{
\Reason{Valid invocation.}
\Status{Implemented}
}
%\numtest{2}{
%\Reason{Valid invocation (``get'' not allowed after destroy).}
%\Status{Implemented}
%}
%\numtest{3}{
%\Reason{Valid invocation (``add'' not allowed after destroy).}
%\Status{Implemented}
%}
%\numtest{4}{
%\Reason{Valid invocation (``modify'' not allowed after destroy).}
%\Status{Implemented}
%}
%\numtest{5}{
%\Reason{Valid invocation (``delete'' not allowed after destroy).}
%\Status{Implemented}
%}
%\numtest{6}{
%\Reason{Fails if database not initialized.}
%\Status{Implemented}
%}
%\numtest{7}{
%\Reason{Fails if invoked twice in a row.}
%\Status{Implemented}
%}
\numtest{8}{
\Reason{Database can be reinitialized after destroy.}
\Status{Implemented}
}
\numtest{9}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{10}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{client}
}
\section{ovsec_kadm_create_principal}
%In the tests below, ``getu'' refers to a user who has only ``get'' access,
%''addu'' refers to a user who has only ``add'' access, ``modifyu'' refers to
%a user who has only ``modify'' access, and ``deleteu'' refers to a user
%who has only ``delete'' access. ``amu'' refers to a user with ``add'' and
%''modify'' access. ``new_princ'' refers to a principal entry structure
%filled in as follows:
%
% krb5_parse_name("newuser", \&new_princ.principal);
% krb5_timeofday(\&new_princ.princ_expire_time);
% new_princ.princ_expire_time += 130;
% krb5_timeofday(\&new_princ.last_pwd_change);
% new_princ.last_pwd_change += 140;
% krb5_timeofday(\&new_princ.pw_expiration);
% new_princ.pw_expiration += 150;
% new_princ.max_life = 160;
% krb5_parse_name("usera", \&new_princ.mod_name);
% krb5_timeofday(\&new_princ.mod_date);
% new_princ.mod_date += 170;
% new_princ.attributes = 0xabcdabcd;
% new_princ.kvno = 180;
% new_princ.mkvno = 190;
% new_princ.policy = null;
% new_princ.aux_attributes = 0xdeadbeef;
%
%The offsets of 130 through 190 above are used to ensure that the
%fields are all known to be different from each other, so that
%accidentally switched fields can be detected. Some of the fields in
%this structure may be changed by the tests, but they should clean up
%after themselves.
%\numtest{1}{
%\Reason{Fails if database not initialized.}
%\Status{Implemented}
%}
\numtest{2}{
\Reason{Fails on null princ argument.}
\Status{Implemented}
}
\numtest{3}{
\Reason{Fails on null password argument.}
\Status{Implemented}
}
\numtest{4}{
\Reason{Fails on empty-string password argument.}
\Status{Implemented}
}
\numtest{5}{
\Reason{Fails when mask contains undefined bit.}
\Status{Implemented}
}
\numtest{6}{
\Reason{Fails when mask contains LAST_PWD_CHANGE bit.}
\Status{Implemented}
}
\numtest{7}{
\Reason{Fails when mask contains MOD_TIME bit.}
\Status{Implemented}
}
\numtest{8}{
\Reason{Fails when mask contains MOD_NAME bit.}
\Status{Implemented}
}
\numtest{9}{
\Reason{Fails when mask contains MKVNO bit.}
\Status{Implemented}
}
\numtest{10}{
\Reason{Fails when mask contains AUX_ATTRIBUTES bit.}
\Status{Implemented}
}
\numtest{11}{
\Reason{Fails when mask contains POLICY_CLR bit.}
\Status{Implemented}
}
\numtest{12}{
\Reason{Fails for caller with no access bits.}
\Status{Implemented}
}
\numtest{13}{
\Reason{Fails when caller has ``get'' access and not ``add''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{14}{
\Reason{Fails when caller has ``modify'' access and not ``add''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{15}{
\Reason{Fails when caller has ``delete'' access and not ``add''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{16}{
\Reason{Fails when caller connected with CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{17}{
\Reason{Fails on attempt to create existing principal.}
\Status{Implemented}
}
\numtest{18}{
\Reason{Fails when password is too short.}
\Status{Implemented}
}
\numtest{19}{
\Reason{Fails when password has too few classes.}
\Status{Implemented}
}
\numtest{20}{
\Reason{Fails when password is in dictionary.}
\Status{Implemented}
}
\numtest{21}{
\Reason{Nonexistent policy is rejected.}
\Status{Implemented}
}
\numtest{22}{
\Reason{Fails on invalid principal name.}
\Status{Implemented}
}
\numtest{23}{
\Reason{Valid invocation.}
\Status{Implemented}
}
\numtest{24}{
\Reason{Succeeds when caller has ``add'' access and another one.}
\Status{Implemented}
}
%\numtest{25}{
%\Reason{Fails when password is too short, when override_qual is true.}
%}
%\numtest{26}{
%\Reason{Fails when password has too few classes, when
% override_qual is true.}
%}
%\numtest{27}{
%\Reason{Fails when password is in dictionary, when override_qual is
% true.}
%}
\numtest{28}{
\Reason{Succeeds when assigning policy.}
\Status{Implemented}
}
\numtest{29}{
\Priority{High}
\Reason{Allows 0 (never) for princ_expire_time.}
\Status{Implemented}
}
\numtest{30}{
\Reason{Allows 0 (never) for pw_expiration when there's no policy.}
\Status{Implemented}
}
\numtest{31}{
\Reason{Allows 0 (never) for pw_expiration when there's a policy with
0 for pw_max_life.}
\Status{Implemented}
}
\numtest{32}{
\Reason{Accepts 0 (never) for pw_expiration when there's a policy with
non-zero pw_max_life, and sets pw_expiration to zero.}
\Status{Implemented}
}
\numtest{33}{
\Reason{Accepts and sets non-zero pw_expiration when no policy.}
\Status{Implemented}
}
\numtest{34}{
\Reason{Accepts and sets non-zero pw_expiration when there's a policy
with zero pw_max_life.}
\Status{Implemented}
}
\numtest{35}{
\Reason{Accepts and sets non-zero pw_expiration when there's a policy
with pw_max_life later than the specified pw_expiration.}
\Status{Implemented}
}
\numtest{36}{
\Reason{Accepts and sets non-zero pw_expiration greater than now_pw_max_life.}
\Status{Implemented}
}
\numtest{37}{
\Priority{High}
\Reason{Sets pw_expiration to 0 (never) if there's no policy and no
specified pw_expiration.}
\Status{Implemented}
}
\numtest{38}{
\Priority{High}
\Reason{Sets pw_expiration to 0 (never) if it isn't specified and the
policy has a 0 (never) pw_max_life.}
\Status{Implemented}
}
\numtest{39}{
\Priority{High}
\Reason{Sets pw_expiration to now + pw_max_life if it isn't specified
and the policy has a non-zero pw_max_life.}
\Status{Implemented}
}
\numtest{40}{
\Priority{High}
\Reason{Allows 0 (forever) for max_life.}
\Status{Implemented}
}
\numtest{41}{
\Priority{High}
\Reason{Doesn't modify or free mod_name on success.}
}
\numtest{42}{
\Priority{High}
\Reason{Doesn't modify or free mod_name on failure.}
}
\numtest{43}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{44}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\section{ovsec_kadm_delete_principal}
%\numtest{1}{
%\Reason{Fails if database not initialized.}
%\Status{Implemented}
%}
\numtest{2}{
\Reason{Fails on null principal.}
\Status{Implemented}
}
% Empty string principal is legal.
%\numtest{3}{
%\Reason{Fails on empty-string principal.}
%}
% There is not invalid principal names
%\numtest{4}{
%\Reason{Fails on invalid principal name.}
%}
\numtest{5}{
\Priority{High}
\Reason{Fails on nonexistent principal.}
\Status{Implemented}
}
\numtest{6}{
\Priority{High}
\Reason{Fails when caller connected with CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{7}{
\Priority{High}
\Reason{Fails if caller has ``add'' access and not ``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{8}{
\Priority{High}
\Reason{Fails if caller has ``modify'' access and not ``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{9}{
\Priority{High}
\Reason{Fails if caller has ``get'' access and not ``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{10}{
\Priority{High}
\Reason{Fails if caller has no access bits.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{11}{
\Priority{High}
\Reason{Valid invocation.}
\Status{Implemented}
}
\numtest{12}{
\Priority{High}
\Reason{Valid invocation (on principal with policy).}
\Status{Implemented}
}
\numtest{13}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{14}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\section{ovsec_kadm_modify_principal}
%\numtest{1}{
%\Reason{Fails if database not initialized.}
%\Status{Implemented}
%}
\numtest{2}{
\Priority{High}
\Reason{Fails if user connected with CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{3}{
\Reason{Fails on mask with undefined bit set.}
\Status{Implemented}
}
\numtest{4}{
\Reason{Fails on mask with PRINCIPAL set.}
\Status{Implemented}
}
\numtest{5}{
\Priority{High}
\Reason{Fails on mask with LAST_PWD_CHANGE set.}
\Status{Implemented}
}
\numtest{6}{
\Reason{Fails on mask with MOD_TIME set.}
\Status{Implemented}
}
\numtest{7}{
\Reason{Fails on mask with MOD_NAME set.}
\Status{Implemented}
}
\numtest{8}{
\Reason{Fails on mask with MKVNO set.}
\Status{Implemented}
}
\numtest{9}{
\Priority{High}
\Reason{Fails on mask with AUX_ATTRIBUTES set.}
\Status{Implemented}
}
\numtest{10}{
\Reason{Fails on nonexistent principal.}
\Status{Implemented}
}
\numtest{11}{
\Priority{High}
\Reason{Fails for user with no access bits.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{12}{
\Priority{High}
\Reason{Fails for user with ``get'' access.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{13}{
\Priority{High}
\Reason{Fails for user with ``add'' access.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{14}{
\Priority{High}
\Reason{Fails for user with ``delete'' access.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{15}{
\Priority{High}
\Reason{Succeeds for user with ``modify'' access.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{16}{
\Reason{Succeeds for user with ``modify'' and another access.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{17}{
\Priority{High}
\Reason{Fails when nonexistent policy is specified.}
\Status{Implemented}
}
\numtest{18}{
\Priority{High}
\Reason{Succeeds when existent policy is specified.}
\Status{Implemented}
}
\numtest{19}{
\Reason{Updates policy count when setting policy from none.}
\Status{Implemented}
}
\numtest{20}{
\Reason{Updates policy count when clearing policy from set.}
\Status{Implemented}
}
\numtest{21}{
\Reason{Updates policy count when setting policy from other policy.}
\Status{Implemented}
}
\numtest{21.5}{
\Reason{Policy reference count remains unchanged when policy is
changed to itself.}
\Status{Implemented.}
}
\numtest{22}{
\Reason{Allows 0 (never) for pw_expiration when there's no policy.}
\Status{Implemented}
}
\numtest{23}{
\Reason{Allows 0 (never) for pw_expiration when there's a policy with
0 for pw_max_life.}
\Status{Implemented}
}
\numtest{24}{
\Reason{Accepts 0 (never) for pw_expiration when there's a policy with
non-zero pw_max_life, but actually sets pw_expiration to
last_pwd_change + pw_max_life.}
\Status{Implemented}
}
\numtest{25}{
\Reason{Accepts and sets non-zero pw_expiration when no policy.}
\Status{Implemented}
}
\numtest{26}{
\Reason{Accepts and sets non-zero pw_expiration when there's a policy
with zero pw_max_life.}
\Status{Implemented}
}
\numtest{27}{
\Reason{Accepts and sets non-zero pw_expiration when there's a policy
with pw_max_life later than the specified pw_expiration.}
\Status{Implemented}
}
\numtest{28}{
\Reason{Accepts non-zero pw_expiration and limits it to last_pwd_change +
pw_max_life when it's later than last_pwd_change + non-zero
pw_max_life in policy.}
\Status{Implemented}
}
\numtest{29}{
\Priority{High}
\Reason{Sets pw_expiration to 0 (never) when a policy is cleared and
no pw_expiration is specified.}
\Status{Implemented}
}
\numtest{30}{
\Priority{High}
\Reason{Sets pw_expiration to 0 (never) if it isn't specified and the
new policy has a 0 (never) pw_max_life.}
\Status{Implemented}
}
\numtest{31}{
\Priority{High}
\Reason{Sets pw_expiration to now + pw_max_life if it isn't specified
and the new policy has a non-zero pw_max_life.}
\Status{Implemented}
}
\numtest{32}{
\Priority{High}
\Reason{Accepts princ_expire_time change.}
\Status{Implemented}
}
\numtest{33}{
\Priority{High}
\Reason{Accepts attributes change.}
\Status{Implemented}
}
\numtest{33.25}{
\Priority{High}
\Reason{Accepts attributes change (KRB5_KDB_REQUIRES_PW_CHANGE).}
\Status{Implemented}
}
\numtest{33.5}{
\Priority{High}
\Reason{Accepts attributes change (KRB5_DISALLOW_TGT_BASE).}
\Status{Implemented}
}
\numtest{33.75}{
\Priority{High}
\Reason{Accepts attributes change (KRB5_PW_CHANGE_SERVICE).}
\Status{Implemented}
}
\numtest{34}{
\Priority{High}
\Reason{Accepts max_life change.}
\Status{Implemented}
}
\numtest{35}{
\Priority{High}
\Reason{Accepts kvno change.}
\Status{Implemented}
}
\numtest{36}{
\Reason{Behaves correctly when policy is set to the same as it was
before.}
\Status{Implemented}
}
\numtest{37}{
\Reason{Behaves properly when POLICY_CLR is specified and there was no
policy before.}
\Status{Implemented}
}
\numtest{38}{
\Priority{High}
\Reason{Accepts 0 (never) for princ_expire_time.}
\Status{Implemented}
}
\numtest{39}{
\Priority{High}
\Reason{Accepts 0 for max_life.}
\Status{Implemented}
}
\numtest{40}{
\Reason{Rejects null principal argument.}
\Status{Implemented}
}
\numtest{41}{
\Priority{High}
\Reason{Doesn't modify or free mod_name on success.}
}
\numtest{42}{
\Priority{High}
\Reason{Doesn't modify or free mod_name on failure.}
}
\numtest{43}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{44}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\numtest{100}{
\Version{KADM5_API_VERSION_2}
\Priority{bug-fix}
\Reason{Accepts max_rlife change.}
\Status{Implemented}
}
\numtest{101}{
\Version{KADM5_API_VERSION_2}
\Reason{Rejects last_success change.}
\Status{Implemented}
}
\numtest{102}{
\Version{KADM5_API_VERSION_2}
\Reason{Rejects last_failed change.}
\Status{Implemented}
}
\numtest{103}{
\Version{KADM5_API_VERSION_2}
\Reason{Rejects fail_auth_count change.}
\Status{Implemented}
}
\numtest{103.5}{
\Version{KADM5_API_VERSION_2}
\Reason{Rejects key_data change.}
\Status{Implemented}
}
\numtest{104}{
\Version{KADM5_API_VERSION_2}
\Reason{Accepts tl_data change when all types are greater than 256.}
\Status{Implemented}
}
\numtest{105}{
\Version{KADM5_API_VERSION_2}
\Reason{Returns KADM5_BAD_TL_TYPE when given tl_data with a type less
than 256.}
\Status{Implemented}
}
\section{ovsec_kadm_rename_principal}
%\numtest{1}{
%\Reason{Fails if database not initialized.}
%\Status{Implemented}
%}
\numtest{2}{
\Priority{High}
\Reason{Fails if user connected with CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{3}{
\Priority{High}
\Reason{Fails for user with no access bits.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{4}{
\Reason{Fails for user with ``modify'' access and not ``add'' or
``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{5}{
\Reason{Fails for user with ``get'' access and not ``add'' or
``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{6}{
\Reason{Fails for user with ``modify'' and ``add'' but not ``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{7}{
\Reason{Fails for user with ``modify'' and ``delete'' but not ``add''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{8}{
\Reason{Fails for user with ``get'' and ``add'' but not ``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{9}{
\Reason{Fails for user with ``get'' and ``delete'' but not ``add.''}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{10}{
\Reason{Fails for user with ``modify'', ``get'' and ``add'', but not
``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{11}{
\Reason{Fails for user with ``modify'', ``get'' and ``delete'', but
not ``add''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{12}{
\Priority{High}
\Reason{Fails for user with ``add'' but not ``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{13}{
\Priority{High}
\Reason{Fails for user with ``delete'' but not ``add''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{14}{
\Priority{High}
\Reason{Succeeds for user with ``add'' and ``delete'', when that user
has non-name-based salt.}
\Status{Implemented}
}
\numtest{15}{
\Priority{High}
\Reason{Fails if target principal name exists.}
\Status{Implemented}
}
\numtest{16}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{17}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\numtest{18}{
\Priority{bug fix}
\Reason{Returns NO_RENAME_SALT when asked to rename a principal whose
salt depends on the principal name.}
\Status{Implemented}
}
\section{ovsec_kadm_chpass_principal}
\label{ovseckadmchpassprincipal}
\subsection{Quality/history enforcement tests}
This section lists a series of tests which will be run a number of
times, with various parameter settings (e.g., which access bits user
has, whether user connected with ADMIN_SERVICE or CHANGEPW_SERVICE,
etc.). The table following the
list of tests gives the various parameter settings under which the
tests should be run, as well which should succeed and which should
fail for each choice of parameter settings.
\subsubsection{List of tests}
The test number of each of these tests is an offset from the base
given in the table below.
\numtest{1}{
\Priority{High}
\Reason{With history setting of 1, change password to itself.}
}
\numtest{2}{
\Reason{With history setting of 2 but no password changes since
principal creation, change password to itself.}
}
\numtest{3}{
\Reason{With history setting of 2 and one password change since
principal creation, change password to itself
and directly previous password.}
}
\numtest{4}{
\Priority{High}
\Reason{With a history setting of 3 and no password changes,
change password to itself.}
}
\numtest{5}{
\Priority{High}
\Reason{With a history setting of 3 and 1 password change,
change password to itself or previous password.}
}
\numtest{6}{
\Priority{High}
\Reason{With a history setting of 3 and 2 password changes,
change password to itself and the two previous passwords.}
}
\numtest{7}{
\Priority{High}
\Reason{Change to previously unused password when now -
last_pwd_change $<$ pw_min_life.}
}
\numtest{8}{
\Priority{High}
\Reason{Change to previously unused password that doesn't contain enough
character classes.}
}
\numtest{9}{
\Priority{High}
\Reason{Change to previously unused password that's too short.}
}
\numtest{10}{
\Priority{High}
\Reason{Change to previously unused password that's in the dictionary.}
}
\subsubsection{List of parameter settings}
In the table below, ``7 passes'' means that test 7 above passes and
the rest of the tests fail.
\begin{tabular}{llllll}
Base & Modify access? & Own password? & Service & Pass/Fail \\ \hline
0 & No & Yes & ADMIN & all fail \\
20 & No & Yes & CHANGEPW & all fail \\
40 & No & No & ADMIN & all fail \\
60 & No & No & CHANGEPW & all fail \\
80 & Yes & Yes & ADMIN & 7 passes \\
100 & Yes & Yes & CHANGEPW & all fail \\
120 & Yes & No & ADMIN & 7 passes \\
140 & Yes & No & CHANGEPW & all fail \\
\end{tabular}
\subsection{Other quality/history tests}
\numtest{161}{
\Priority{High}
\Reason{With history of 1, can change password to anything other than
itself that doesn't conflict with other quality
rules.}
}
\numtest{162}{
\Reason{With history of 2 and 2 password changes, can change password
to original password.}
}
\numtest{163}{
\Priority{High}
\Reason{With history of 3 and 3 password changes, can change password
to original password.}
}
\numtest{164}{
\Priority{High}
\Reason{Can change password when now - last_pwd_change $>$ pw_min_life.}
}
\numtest{165}{
\Priority{High}
\Reason{Can change password when it contains exactly the number of
classes required by the policy.}
}
\numtest{166}{
\Priority{High}
\Reason{Can change password when it is exactly the length required by
the policy.}
}
\numtest{167}{
\Priority{High}
\Reason{Can change password to a word that isn't in the dictionary.}
}
\subsection{Other tests}
%\numtest{168}{
%\Reason{Fails if database not initialized.}
%}
\numtest{169}{
\Reason{Fails for non-existent principal.}
}
\numtest{170}{
\Reason{Fails for null password.}
}
\numtest{171}{
\Priority{High}
\Reason{Fails for empty-string password.}
}
\numtest{172}{
\Priority{High}
\Reason{Pw_expiration is set to now + max_pw_life if policy exists and
has non-zero max_pw_life.}
}
\numtest{173}{
\Priority{High}
\Reason{Pw_expiration is set to 0 if policy exists and has zero
max_pw_life.}
}
\numtest{174}{
\Priority{High}
\Reason{Pw_expiration is set to 0 if no policy.}
}
\numtest{175}{
\Priority{High}
\Reason{KRB5_KDC_REQUIRES_PWCHANGE bit is cleared when password is
successfully changed.}
}
\numtest{176}{
\Priority{High}
\Reason{Fails for user with no access bits, on other's password.}
}
\numtest{177}{
\Priority{High}
\Reason{Fails for user with ``get'' but not ``modify'' access, on
other's password.}
}
\numtest{178}{
\Reason{Fails for user with ``delete'' but not ``modify'' access, on
other's password.}
}
\numtest{179}{
\Reason{Fails for user with ``add'' but not ``modify'' access, on
other's password.}
}
\numtest{180}{
\Reason{Succeeds for user with ``get'' and ``modify'' access, on
other's password.}
\Status{Implemented}
}
\numtest{180.5}{
\Priority{High}
\Reason{Succeeds for user with ``modify'' but not ``get'' access, on
other's password.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{180.625}{
\Priority{High}
\Reason{Fails for user with modify when connecting with CHANGEPW_SERVICE on
others password}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{180.75}{
\Priority{High}
\Reason{Fails for user with modify when connecting with CHANGEPW_SERVICE
on other's password which has expired}
\Conditions{RPC}
\Status{Implemented}
}
%\numtest{181}{
%\Reason{Password that would succeed if override_qual were false fails
% if override_qual is true.}
%\Expected{Returns CANNOT_OVERRIDE.}
%}
\numtest{182}{
\Priority{High}
\Reason{Can not change key of ovsec_adm/history principal.}
\Status{Implemented}
}
\numtest{183}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{184}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\numtest{200}{
\Version{KADM5_API_VERSION_2}
\Reason{Creates a key for the principal for each unique encryption
type/salt type in use.}
\Status{Implemented}
}
\section{ovsec_kadm_chpass_principal_util}
Rerun all the tests listed for ovsec_kadm_chpass_principal above in
Section \ref{ovseckadmchpassprincipal}. Verify that they succeed
and fail in the same circumstances. Also verify that in each failure
case, the error message returned in msg_ret is as specified in the
functional specification.
Also, run the following additional tests.
\numtest{1}{
\Reason{Null msg_ret is rejected.}
}
\numtest{2}{
\Priority{High}
\Reason{New password is put into pw_ret, when it's prompted for.}
}
\numtest{3}{
\Priority{High}
Reason{New password is put into pw_ret, when it's supplied by the
caller.}
}
\numtest{4}{
\Priority{High}
\Reason{Successful invocation when pw_ret is null.}
}
\section{ovsec_kadm_randkey_principal}
\subsection{TOOSOON enforcement tests}
This test should be run a number of times, as indicated in the table
following it. The table also indicates the expected result of each
run of the test.
\test{
\Reason{Change key when now - last_pwd_change $<$ pw_min_life.}
}
\subsubsection{List of parameter settings}
\begin{tabular}{llllll}
Number & Modify Access? & Own Key? & Service & Pass/Fail & Implemented? \\ \hline
1 & No & Yes & ADMIN & fail & Yes \\
3 & No & Yes & CHANGEPW & fail & Yes \\
5 & No & No & ADMIN & fail \\
7 & No & No & CHANGEPW & fail \\
9 & Yes & Yes & ADMIN & pass \\
11 & Yes & Yes & CHANGEPW & fail \\
13 & Yes & No & ADMIN & pass & Yes \\
15 & Yes & No & CHANGEPW & fail & Yes \\
\end{tabular}
\subsection{Other tests}
\numtest{17}{
\Reason{Fails if database not initialized.}
}
\numtest{18}{
\Reason{Fails for non-existent principal.}
}
\numtest{19}{
\Reason{Fails for null keyblock pointer.}
}
\numtest{20}{
\Priority{High}
\Reason{Pw_expiration is set to now + max_pw_life if policy exists and
has non-zero max_pw_life.}
}
\numtest{21}{
\Priority{High}
\Reason{Pw_expiration is set to 0 if policy exists and has zero
max_pw_life.}
}
\numtest{22}{
\Priority{High}
\Reason{Pw_expiration is set to 0 if no policy.}
}
\numtest{23}{
\Priority{High}
\Reason{KRB5_KDC_REQUIRES_PWCHANGE bit is cleared when key is
successfully changed.}
}
\numtest{24}{
\Priority{High}
\Reason{Fails for user with no access bits, on other's password.}
}
\numtest{25}{
\Priority{High}
\Reason{Fails for user with ``get'' but not ``modify'' access, on
other's password.}
\Vtwonote{Change-password instead of modify access.}
}
\numtest{26}{
\Reason{Fails for user with ``delete'' but not ``modify'' access, on
other's password.}
\Vtwonote{Change-password instead of modify access.}
}
\numtest{27}{
\Reason{Fails for user with ``add'' but not ``modify'' access, on
other's password.}
\Vtwonote{Change-password instead of modify access.}
}
\numtest{28}{
\Reason{Succeeds for user with ``get'' and ``modify'' access, on
other's password.}
\Status{Implemented}
\Vtwonote{Change-password instead of modify access.}
}
\numtest{28.25}{
\Priority{High}
\Reason{Fails for user with get and modify access on others password
When conneceted with CHANGEPW_SERVICE}
\Status{Implemented}
\Vtwonote{Change-password instead of modify access.}
}
\numtest{28.5}{
\Priority{High}
\Reason{Succeeds for user with ``modify'' but not ``get'' access, on
other's password.}
\Status{Implemented}
\Vtwonote{Change-password instead of modify access.}
}
\numtest{29}{
\Reason{The new key that's assigned is truly random. XXX not sure how
to test this.}
}
\numtest{30}{
\Reason{Succeeds for own key, no other access bits when connecting with CHANGEPW service}
\Status{Implemented}
}
\numtest{31}{
\Reason{Succeeds for own key, no other access bits when connecting with ADMIM service}
\Status{Implemented}
}
\numtest{32}{
\Reason{Cannot change ovsec_adm/history key}
\Status{Implemented}
}
\numtest{33}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{34}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\numtest{100}{
\Version{KADM5_API_VERSION_2}
\Reason{Returns a key for each unique encryption type specified in the
keysalts.}
}
\section{ovsec_kadm_get_principal}
\numtest{1}{
\Reason{Fails for null ent.}
\Status{Implemented}
}
\numtest{2}{
\Reason{Fails for non-existent principal.}
\Status{Implemented}
}
\numtest{3}{
\Priority{High}
\Reason{Fails for user with no access bits, retrieving other principal.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{4}{
\Priority{High}
\Reason{Fails for user with ``add'' but not ``get'', getting principal
other than his own, using ADMIN_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{5}{
\Reason{Fails for user with ``modify'' but not ``get'', getting
principal other than his own, using ADMIN_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{6}{
\Reason{Fails for user with ``delete'' but not ``get'', getting
principal other than his own, using ADMIN_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{7}{
\Reason{Fails for user with ``delete'' but not ``get'', getting
principal other than his own, using CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{8}{
\Priority{High}
\Reason{Fails for user with ``get'', getting principal other than his
own, using CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{9}{
\Priority{High}
\Reason{Succeeds for user without ``get'', retrieving self, using
ADMIN_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{10}{
\Reason{Succeeds for user without ``get'', retrieving self, using
CHANGEPW_SERVICE.}
\Status{Implemented}
}
\numtest{11}{
\Reason{Succeeds for user with ``get'', retrieving self, using
ADMIN_SERVICE.}
\Status{Implemented}
}
\numtest{12}{
\Reason{Succeeds for user with ``get'', retrieving self, using
CHANGEPW_SERVICE.}
\Status{Implemented}
}
\numtest{13}{
\Priority{High}
\Reason{Succeeds for user with ``get'', retrieving other user, using
ADMIN_SERVICE.}
\Status{Implemented}
}
\numtest{14}{
\Reason{Succeeds for user with ``get'' and ``modify'', retrieving
other principal, using ADMIN_SERVICE.}
\Status{Implemented}
}
\numtest{15}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{16}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\numtest{100}{
\Version{KADM5_API_VERSION_2}
\Reason{If KADM5_PRINCIPAL_NORMAL_MASK is specified, the key_data and
tl_data fields are NULL/zero.}
\Status{Implemented}
}
\numtest{101}{
\Version{KADM5_API_VERSION_2}
\Reason{If KADM5_KEY_DATA is specified, the key_data fields contain
data but the contents are all NULL.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{102}{
\Version{KADM5_API_VERSION_2}
\Reason{If KADM5_KEY_DATA is specified, the key_data fields contain
data and the contents are all non-NULL.}
\Conditions{local}
\Status{Implemented}
}
\numtest{103}{
\Version{KADM5_API_VERSION_2}
\Reason{If KADM5_TL_DATA is specified, the tl_data field contains the
correct tl_data and no entries whose type is less than 256.}
\Status{Implemented}
}
\section{ovsec_kadm_create_policy}
\numtest{1}{
\Reason{Fails for mask with undefined bit set.}
\Status{Implemented - untested}
}
\numtest{2}{
\Priority{High}
\Reason{Fails if caller connected with CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{3}{
\Reason{Fails for mask without POLICY bit set.}
\Status{Implemented - untested}
}
\numtest{4}{
\Reason{Fails for mask with REF_COUNT bit set.}
\Status{Implemented}
}
\numtest{5}{
\Reason{Fails for invalid policy name.}
\Status{Implemented - untested}
}
\numtest{6}{
\Priority{High}
\Reason{Fails for existing policy name.}
\Status{Implemented}
}
\numtest{7}{
\Reason{Fails for null policy name.}
\Status{Implemented - untested}
}
\numtest{8}{
\Priority{High}
\Reason{Fails for empty-string policy name.}
\Status{Implemented}
}
\numtest{9}{
\Priority{High}
\Reason{Accepts 0 for pw_min_life.}
\Status{Implemented}
}
\numtest{10}{
\Priority{High}
\Reason{Accepts non-zero for pw_min_life.}
\Status{Implemented}
}
\numtest{11}{
\Priority{High}
\Reason{Accepts 0 for pw_max_life.}
\Status{Implemented}
}
\numtest{12}{
\Priority{High}
\Reason{Accepts non-zero for pw_max_life.}
\Status{Implemented}
}
\numtest{13}{
\Priority{High}
\Reason{Rejects 0 for pw_min_length.}
\Status{Implemented}
}
\numtest{14}{
\Priority{High}
\Reason{Accepts non-zero for pw_min_length.}
\Status{Implemented}
}
\numtest{15}{
\Priority{High}
\Reason{Rejects 0 for pw_min_classes.}
\Status{Implemented}
}
\numtest{16}{
\Priority{High}
\Reason{Accepts 1 for pw_min_classes.}
\Status{Implemented}
}
\numtest{17}{
\Priority{High}
\Reason{Accepts 4 for pw_min_classes.}
\Status{Implemented}
}
\numtest{18}{
\Priority{High}
\Reason{Rejects 5 for pw_min_classes.}
\Status{Implemented}
}
\numtest{19}{
\Priority{High}
\Reason{Rejects 0 for pw_history_num.}
\Status{Implemented}
}
\numtest{20}{
\Priority{High}
\Reason{Accepts 1 for pw_history_num.}
\Status{Implemented}
}
\numtest{21}{
\Priority{High}
\Reason{Accepts 10 for pw_history_num.}
\Status{Implemented}
}
\numtest{21.5}{
\Reason{Rejects 11 for pw_history_num.}
\Status{Implemented - untested}
}
\numtest{22}{
\Priority{High}
\Reason{Fails for user with no access bits.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{23}{
\Priority{High}
\Reason{Fails for user with ``get'' but not ``add''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{24}{
\Reason{Fails for user with ``modify'' but not ``add.''}
\Conditions{RPC}
\Status{Implemented - untested}
}
\numtest{25}{
\Reason{Fails for user with ``delete'' but not ``add.''}
\Conditions{RPC}
\Status{Implemented - untested}
}
\numtest{26}{
\Priority{High}
\Reason{Succeeds for user with ``add.''}
\Status{Implemented}
}
\numtest{27}{
\Reason{Succeeds for user with ``get'' and ``add.''}
\Status{Implemented - untested}
}
\numtest{28}{
\Reason{Rejects null policy argument.}
\Status{Implemented - untested}
}
\numtest{29}{
\Reason{Rejects pw_min_life greater than pw_max_life.}
}
\numtest{30}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{31}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\section{ovsec_kadm_delete_policy}
\numtest{1}{
\Reason{Fails for null policy name.}
}
\numtest{2}{
\Priority{High}
\Reason{Fails for empty-string policy name.}
\Status{Implemented}
}
\numtest{3}{
\Reason{Fails for non-existent policy name.}
}
\numtest{4}{
\Reason{Fails for bad policy name.}
}
\numtest{5}{
\Priority{High}
\Reason{Fails if caller connected with CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{6}{
\Priority{High}
\Reason{Fails for user with no access bits.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{7}{
\Priority{High}
\Reason{Fails for user with ``add'' but not ``delete''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{8}{
\Reason{Fails for user with ``modify'' but not ``delete''.}
\Conditions{RPC}
}
\numtest{9}{
\Reason{Fails for user with ``get'' but not ``delete.''}
\Conditions{RPC}
}
\numtest{10}{
\Priority{High}
\Reason{Succeeds for user with only ``delete''.}
\Status{Implemented}
}
\numtest{11}{
\Reason{Succeeds for user with ``delete'' and ``add''.}
}
\numtest{12}{
\Priority{High}
\Reason{Fails for policy with non-zero reference count.}
\Status{Implemented}
}
\numtest{13}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{14}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\section{ovsec_kadm_modify_policy}
\numtest{1}{
\Reason{Fails for mask with undefined bit set.}
\Conditions{RPC}
}
\numtest{2}{
\Priority{High}
\Reason{Fails if caller connected with CHANGEPW_SERVICE.}
\Status{Implemented}
}
\numtest{3}{
\Reason{Fails for mask with POLICY bit set.}
}
\numtest{4}{
\Reason{Fails for mask with REF_COUNT bit set.}
\Status{Implemented}
}
\numtest{5}{
\Reason{Fails for invalid policy name.}
}
\numtest{6}{
\Reason{Fails for non-existent policy name.}
}
\numtest{7}{
\Reason{Fails for null policy name.}
}
\numtest{8}{
\Priority{High}
\Reason{Fails for empty-string policy name.}
\Status{Implemented}
}
\numtest{9}{
\Priority{High}
\Reason{Accepts 0 for pw_min_life.}
\Status{Implemented}
}
\numtest{10}{
\Priority{High}
\Reason{Accepts non-zero for pw_min_life.}
\Status{Implemented}
}
\numtest{11}{
\Priority{High}
\Reason{Accepts 0 for pw_max_life.}
\Status{Implemented}
}
\numtest{12}{
\Priority{High}
\Reason{Accepts non-zero for pw_max_life.}
\Status{Implemented}
}
\numtest{13}{
\Priority{High}
\Reason{Accepts 0 for pw_min_length.}
\Status{Implemented}
}
\numtest{14}{
\Priority{High}
\Reason{Accepts non-zero for pw_min_length.}
\Status{Implemented}
}
\numtest{15}{
\Priority{High}
\Reason{Rejects 0 for pw_min_classes.}
\Status{Implemented}
}
\numtest{16}{
\Priority{High}
\Reason{Accepts 1 for pw_min_classes.}
\Status{Implemented}
}
\numtest{17}{
\Priority{High}
\Reason{Accepts 4 for pw_min_classes.}
\Status{Implemented}
}
\numtest{18}{
\Priority{High}
\Reason{Rejects 5 for pw_min_classes.}
\Status{Implemented}
}
\numtest{19}{
\Priority{High}
\Reason{Rejects 0 for pw_history_num.}
\Status{Implemented}
}
\numtest{20}{
\Priority{High}
\Reason{Accepts 1 for pw_history_num.}
\Status{Implemented}
}
\numtest{21}{
\Priority{High}
\Reason{Accepts 10 for pw_history_num.}
\Status{Implemented}
}
\numtest{22}{
\Priority{High}
\Reason{Fails for user with no access bits.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{23}{
\Priority{High}
\Reason{Fails for user with ``get'' but not ``modify''.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{24}{
\Reason{Fails for user with ``add'' but not ``modify.''}
\Conditions{RPC}
}
\numtest{25}{
\Reason{Fails for user with ``delete'' but not ``modify.''}
\Conditions{RPC}
}
\numtest{26}{
\Priority{High}
\Reason{Succeeds for user with ``modify.''}
\Status{Implemented}
}
\numtest{27}{
\Reason{Succeeds for user with ``get'' and ``modify.''}
}
\numtest{28}{
\Reason{Rejects null policy argument.}
}
\numtest{29}{
\Reason{Rejects change which makes pw_min_life greater than
pw_max_life.}
}
\numtest{30}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{31}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\section{ovsec_kadm_get_policy}
\numtest{1}{
\Reason{Fails for null policy.}
}
\numtest{2}{
\Reason{Fails for invalid policy name.}
}
\numtest{3}{
\Priority{High}
\Reason{Fails for empty-string policy name.}
\Status{Implemented}
}
\numtest{4}{
\Reason{Fails for non-existent policy name.}
}
\numtest{5}{
\Reason{Fails for null ent.}
}
\numtest{6}{
\Priority{High}
\Reason{Fails for user with no access bits trying to get other's
policy, using ADMIN_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{7}{
\Priority{High}
\Reason{Fails for user with ``add'' but not ``get'' trying to get
other's policy, using ADMIN_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{8}{
\Reason{Fails for user with ``modify'' but not ``get'' trying to get
other's policy, using ADMIN_SERVICE.}
\Conditions{RPC}
}
\numtest{9}{
\Reason{Fails for user with ``delete'' but not ``get'' trying to get
other's policy, using ADMIN_SERVICE.}
\Conditions{RPC}
}
\numtest{10}{
\Reason{Fails for user with ``delete'' but not ``get'' trying to get
other's policy, using CHANGEPW_SERVICE.}
\Conditions{RPC}
}
\numtest{11}{
\Priority{High}
\Reason{Succeeds for user with only ``get'', trying to get own policy,
using ADMIN_SERVICE.}
\Status{Implemented}
}
\numtest{12}{
\Priority{High}
\Reason{Succeeds for user with only ``get'', trying to get own policy,
using CHANGEPW_SERVICE.}
\Status{Implemented}
}
\numtest{13}{
\Reason{Succeeds for user with ``add'' and ``get'', trying to get own
policy, using ADMIN_SERVICE.}
}
\numtest{14}{
\Reason{Succeeds for user with ``add'' and ``get'', trying to get own
policy, using CHANGEPW_SERVICE.}
}
\numtest{15}{
\Reason{Succeeds for user without ``get'', trying to get own policy,
using ADMIN_SERVICE.}
}
\numtest{16}{
\Priority{High}
\Reason{Succeeds for user without ``get'', trying to get own policy,
using CHANGEPW_SERVICE.}
\Status{Implemented}
}
\numtest{17}{
\Priority{High}
\Reason{Succeeds for user with ``get'', trying to get other's policy,
using ADMIN_SERVICE.}
\Status{Implemented}
}
\numtest{18}{
\Priority{High}
\Reason{Fails for user with ``get'', trying to get other's policy,
using CHANGEPW_SERVICE.}
\Conditions{RPC}
\Status{Implemented}
}
\numtest{19}{
\Reason{Succeeds for user with ``modify'' and ``get'', trying to get
other's policy, using ADMIN_SERVICE.}
}
\numtest{20}{
\Reason{Fails for user with ``modify'' and ``get'', trying to get
other's policy, using CHANGEPW_SERVICE.}
}
\numtest{21}{
\Priority{High}
\Reason{Returns BAD_SERVER_HANDLE when a null server handle is passed in}
\Status{Implemented}
}
\numtest{22}{
\Priority{Low}
\Reason{Connects to correct server when mutliple handles exist}
\Conditions{RPC}
}
\section{ovsec_kadm_free_principal_ent}
In addition to the tests listed here, a memory-leak detector such as
TestCenter, Purify or dbmalloc should be used to verify that the
memory freed by this function is really freed.
\numtest{1}{
\Reason{Null princ succeeds.}
}
\numtest{2}{
\Reason{Non-null princ succeeds.}
}
\section{ovsec_kadm_free_policy_ent}
In addition to the tests listed here, a memory-leak detector such as
TestCenter, Purify or dbmalloc should be used to verify that the
memory freed by this function is really freed.
\numtest{1}{
\Reason{Null policy succeeds.}
}
\numtest{2}{
\Reason{Non-null policy succeeds.}
}
\section{ovsec_kadm_get_privs}
\numtest{1}{
\Reason{Fails for null pointer argument.}
}
This test should be run with the 16 possible combinations of access
bits (since there are 4 access bits, there are $2^4 = 16$ possible
combinations of them):
\numtest{2}{
\Priority{High}
\Reason{Returns correct bit mask for access bits of user.}
\Conditions{RPC}
}
This test should be run locally:
\numtest{3}{
\Priority{High}
\Reason{Returns 0x0f.}
\Conditions{local}
}
\end{document}
|