summaryrefslogtreecommitdiffstats
path: root/doc/kadm5/api-unit-test.tex
blob: 01969fde4f23296f06c8e7457511519c30ebf01d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
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
\documentstyle[times,fullpage,rcsid]{article}

\rcs$Header$

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 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{\Call}[1]{\item[Call:] #1}
%\newcommand{\Expected}[1]{\item[Expected:] #1}
\newcommand{\Conditions}[1]{\item[Conditions:] #1}

%\newcommand{\Number}[1]{}
%\newcommand{\Reason}[1]{}
\newcommand{\Call}[1]{}
\newcommand{\Expected}[1]{}
%\newcommand{\Conditions}[1]{}

\title{OpenV*Secure 1.0 Admin API\\
Unit Test Description\footnote{\rcsHeader}}
\author{Jonathan I. Kamens}

\begin{document}

\maketitle

%\tableofcontents

\section{Introduction}

The following is a description of a black-box unit test of the
OpenV*Secure Admin API.  Each API function is listed, followed by the
tests that shoud be performed on it.

The tests described here are based on the ``OV*Secure Admin Functional
Specifications'' dated November 9, 1993.

Since inter-realm functionality is not a requirement for OpenV*Secure
1.0, it is not tested.

%In these tests: ``usera'' and ``userb'' (abbreviated ``a'' and ``b'') as the
%non-realm part of a principal represent the names of principals that
%exist in the current realm; ``nouser'' (abbreviated ``n'') represents a
%principal that does not exist in the current realm; ``useras-password''
%(abbreviated ``a's-p'') represents ``usera'''s password; ``userbs-password''
%(abbreviated ``b's-p'') represents ``userb'''s password; ``no-password''
%(abbreviated ``no-p'') represents some password string which isn't the
%password of anyone in the database; ``LOCAL.REALM'' (abbreviated ``L.R'')
%represents the local realm; and ``BAD.REALM'' (abbreviated ``B.R'')
%represents a nonexistent realm.

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.

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.

\section{ovsec_kadm_init}

%ADMIN_SERVICE is abbreviated A_S, and CHANGEPW_SERVICE is abbreviated
%C_S.

\numtest{1}{
\Reason{An empty string realm is rejected.}
\Call{ovsec_kadm_init(a, a's-p, A_S, "")}
\Expected{returns XXX.}
}

\numtest{2}{
\Reason{A realm containing invalid characters is rejected.}
\Call{ovsec_kadm_init(a, a's-p, A_S, B.R)}
\Expected{returns XXX}
}

\numtest{2.5}{
\Reason{A non-existent realm is rejected.}
}

\numtest{3}{
\Reason{A bad service name representing an existing principal
	(different from the client principal) is rejected.}
\Call{ovsec_kadm_init(a, a's-p, b, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{4}{
\Reason{A bad service name representing a non-existent
		principal is rejected.}
\Call{ovsec_kadm_init(a, a's-p, n, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{5}{
\Reason{A bad service name identical to the (existing) client
		name is rejected.}
\Call{ovsec_kadm_init(a, a's-p, a, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{6}{
\Reason{A null password causes password prompting.}
\Call{ovsec_kadm_init(a, null, A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{7}{
\Reason{An empty-string password is rejected.}
\Call{ovsec_kadm_init(a, "", A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{8}{
\Reason{An incorrect password which is the password of another
		user is rejected.}
\Call{ovsec_kadm_init(a, b's-p, A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{9}{
\Reason{An incorrect password which isn't the password of any
		user is rejected.}
\Call{ovsec_kadm_init(a, no-p, A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{10}{
\Reason{A null client_name is rejected.}
\Call{ovsec_kadm_init(null, no-p, A_S, null)}
\Expected{returns XXX}
}

\numtest{11}{
\Reason{An empty-string client_name is rejected.}
\Call{ovsec_kadm_init("", no-p, A_S, null)}
\Expected{returns XXX}
}

\numtest{12}{
\Reason{A client_name referring to a non-existent principal in
		the default realm is rejected.}
\Call{ovsec_kadm_init(n, no-p, A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{13}{
\Reason{A client_name referring to a non-existent principal
		with the local realm specified explicitly is rejected.}
\Call{ovsec_kadm_init(n@L.R, no-p, A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{14}{
\Reason{A client_name referring to a non-existent principal in
	a nonexistent realm is rejected.}
\Call{ovsec_kadm_init(n@B.R, no-p, A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{15}{
\Reason{A client_name referring to an existing principal in a
	nonexistent realm is rejected.}
\Call{ovsec_kadm_init(a@B.R, a's-p, A_S, null)}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{16}{
\Reason{Valid invocation.}
\Call{ovsec_kadm_init(a, a-s'p, A_S, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
}

\numtest{17}{
\Reason{Valid invocation (explicit client realm).}
\Call{ovsec_kadm_init(a@L.R, a-s'p, A_S, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
}

\numtest{18}{
\Reason{Valid invocation (CHANGEPW_SERVICE).}
\Call{ovsec_kadm_init(a, a-s'p, C_S, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
}

\numtest{19}{
\Reason{Valid invocation (explicit service realm).}
\Call{ovsec_kadm_init(a, a-s'p, A_S, L.R);
		ovsec_kadm_destroy()}
\Expected{returns OK}
}

\numtest{20}{
\Reason{Valid invocation (database access allowed after init).}
\Call{ovsec_kadm_init(a, a-s'p, A_S, null);
		ovsec_kadm_get_principal(a, buffer);
		ovsec_kadm_destroy()}
\Expected{returns OK}
}

\numtest{21}{
\Reason{Init fails when called twice in a row.}
\Call{ovsec_kadm_init(a, a-s'p, A_S, null);
		ovsec_kadm_init(a, a-s'p, A_S, null);
		ovsec_kadm_destroy()}
\Expected{returns OK the first time, XXX the second time}
}

\numtest{22}{
\Reason{A null password causes master-key prompting.}
\Call{ovsec_kadm_init(a, null, A_S, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
\Conditions{local}
}

\numtest{23}{
\Reason{A non-null password causes reading from the kstash.}
\Call{ovsec_kadm_init(a, no-p, A_S, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
\Conditions{local}
}

\numtest{24}{
\Reason{Null service name is ignored in local invocation.}
\Call{ovsec_kadm_init(a, null, null, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
\Conditions{local}
}

\numtest{25}{
\Reason{Non-null service name is ignored in local invocation.}
\Call{ovsec_kadm_init(a, null, n, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
\Conditions{local}
}

\numtest{26}{
\Reason{Can't do ``get'' operation before calling init.}
}

\numtest{27}{
\Reason{Can't do ``add'' operation before calling init.}
}

\numtest{28}{
\Reason{Can't do ``modify'' operation before calling init.}
}

\numtest{29}{
\Reason{Can't do ``delete'' operation before calling init.}
}

\section{ovsec_kadm_destroy}

\numtest{1}{
\Reason{Valid invocation.}
\Call{ovsec_kadm_init(a, a-s'p, A_S, null);
		ovsec_kadm_destroy()}
\Expected{returns OK}
}

\numtest{2}{
\Reason{Valid invocation (``get'' not allowed after destroy).}
}

\numtest{3}{
\Reason{Valid invocation (``add'' not allowed after destroy).}
}

\numtest{4}{
\Reason{Valid invocation (``modify'' not allowed after destroy).}
}

\numtest{5}{
\Reason{Valid invocation (``delete'' not allowed after destroy).}
}

\numtest{6}{
\Reason{Fails if database not initialized.}
\Call{ovsec_kadm_destroy()}
\Expected{returns NOT_INIT}
}

\numtest{7}{
\Reason{Fails if invoked twice in a row.}
\Call{ovsec_kadm_init(a, a's-p, A_S, null);
		ovsec_kadm_destroy();
		ovsec_kadm_destroy()}
\Expected{returns OK the first time, NOT_INIT the second}
}

\numtest{8}{
\Reason{Database can be reinitialized after destroy.}
\Call{ovsec_kadm_init(a, a's-p, A_S, null);
		ovsec_kadm_destroy();
		ovsec_kadm_init(a, a's-p, A_S, null);
		ovsec_kadm_get_principal(a, buffer);
		verify contents of buffer;
		ovsec_kadm_destroy()}
}

\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.}
}

\numtest{2}{
\Reason{Fails on null princ argument.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(null, PRINCIPAL, "foobar",
					    true);
		ovsec_kadm_destroy()}
\Expected{returns EINVAL}
}

\numtest{3}{
\Reason{Fails on null password argument.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL, null,
					    true);
		ovsec_kadm_destroy()}
\Expected{returns EINVAL}
}

\numtest{4}{
\Reason{Fails on empty-string password argument. XXX Assumes
		that an empty string is not a legal password.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL, "",
					    true);
		ovsec_kadm_destroy()}
\Expected{returns XXX}
}

\numtest{5}{
\Reason{Fails when mask contains undefined bit.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL | 0x002000,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns BAD_MASK}
}

\numtest{6}{
\Reason{Fails when mask contains LAST_PWD_CHANGE bit.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, 
					    PRINCIPAL | LAST_PWD_CHANGE,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns BAD_MASK}
}

\numtest{7}{
\Reason{Fails when mask contains MOD_TIME bit.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL | MOD_TIME,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns BAD_MASK}
}

\numtest{8}{
\Reason{Fails when mask contains MOD_NAME bit.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL | MOD_NAME,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns BAD_MASK}
}

\numtest{9}{
\Reason{Fails when mask contains MKVNO bit.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL | MKVNO,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns BAD_MASK}
}

\numtest{10}{
\Reason{Fails when mask contains AUX_ATTRIBUTES bit.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ,
					    PRINCIPAL | AUX_ATTRIBUTES,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns BAD_MASK}
}

\numtest{11}{
\Reason{Fails when mask contains POLICY_CLR bit.}
\Call{ovsec_kadm_init(addu, addu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL | POLICY_CLR,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns BAD_MASK}
}

\numtest{12}{
\Reason{Fails for caller with no access bits.}
}

\numtest{13}{
\Reason{Fails when caller has ``get'' access and not ``add''.}
\Call{ovsec_kadm_init(getu, getu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns AUTH_ADD}
\Conditions{RPC}
}

\numtest{14}{
\Reason{Fails when caller has ``modify'' access and not ``add''.}
\Call{ovsec_kadm_init(modifyu, modifyu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns AUTH_ADD}
\Conditions{RPC}
}

\numtest{15}{
\Reason{Fails when caller has ``delete'' access and not ``add''.}
\Call{ovsec_kadm_init(deleteu, deleteu's-p, A_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns AUTH_ADD}
\Conditions{RPC}
}

\numtest{16}{
\Reason{Fails when caller connected with CHANGEPW_SERVICE.}
\Call{ovsec_kadm_init(addu, addu's-p, C_S, null);
		ovsec_kadm_create_principal(new_princ, PRINCIPAL,
					    "foobar", true);
		ovsec_kadm_get_principal("newuser", buffer);
		ovsec_kadm_destroy()}
\Expected{returns XXX}
\Conditions{RPC}
}

\numtest{17}{
\Reason{Fails on attempt to create existing principal.}
\Call{ovsec_kadm_init(getu, getu's-p, A_S, null);
		ovsec_kadm_get_principal("usera", buffer);
		ovsec_kadm_destroy();
		ovsec_kadm_init(addu, addu's-p, A_S, null);
		save new_princ's principal;
		new_princ.principal = buffer.principal;
		save new_princ's max_life;
		new_princ.max_life = buffer.max_life + 1;
		ovsec_kadm_create_principal(new_princ, PRINCIPAL,
					    "foobar", true);
		ovsec_kadm_destroy();
		ovsec_kadm_init(getu, getu's-p, A_S, null);
		ovsec_kadm_get_principal("usera", buffer2);
		ovsec_kadm_destroy()
		compare buffer to buffer2;
		restore new_princ's principal;
		restore new_princ's max_life;
		ovsec_kadm_free_principle_ent(buffer);
		ovsec_kadm_free_principal_ent(buffer2)}
\Expected{returns DUP}
}

\numtest{18}{
\Reason{Fails when password is too short.}
}

\numtest{19}{
\Reason{Fails when password has too few classes.}
}

\numtest{20}{
\Reason{Fails when password is in dictionary.}
}

\numtest{21}{
\Reason{Nonexistent policy is rejected.}
}

\numtest{22}{
\Reason{Fails on invalid principal name.}
}

\numtest{23}{
\Reason{Valid invocation.}
}

\numtest{24}{
\Reason{Succeeds when caller has ``add'' access and another one.}
}

\numtest{25}{
\Reason{Allows too-short password when override_qual is true.}
}

\numtest{26}{
\Reason{Allows password with too few classes when
		override_qual is true.}
}

\numtest{27}{
\Reason{Allows password in dictionary when override_qual is
		true.}
}

\numtest{28}{
\Reason{Succeeds when assigning policy.}
}

\numtest{29}{
\Reason{Allows 0 (never) for princ_expire_time.}
}

\numtest{30}{
\Reason{Allows 0 (never) for pw_expiration when there's no policy.}
}

\numtest{31}{
\Reason{Allows 0 (never) for pw_expiration when there's a policy with
	0 for pw_max_life.}
}

\numtest{32}{
\Reason{Accepts 0 (never) for pw_expiration when there's a policy with
	non-zero pw_max_life, but actually sets pw_expiration to now +
	pw_max_life.}
}

\numtest{33}{
\Reason{Accepts and sets non-zero pw_expiration when no policy.}
}

\numtest{34}{
\Reason{Accepts and sets non-zero pw_expiration when there's a policy
	with zero pw_max_life.}
}

\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.}
}

\numtest{36}{
\Reason{Accepts non-zero pw_expiration and limits it to now +
	pw_max_life when it's later than now + non-zero pw_max_life in
	policy.}
}

\numtest{37}{
\Reason{Sets pw_expiration to 0 (never) if there's no policy and no
	specified pw_expiration.}
}

\numtest{38}{
\Reason{Sets pw_expiration to 0 (never) if it isn't specified and the
	policy has a 0 (never) pw_max_life.}
}

\numtest{39}{
\Reason{Sets pw_expiration to now + pw_max_life if it isn't specified
	and the policy has a non-zero pw_max_life.}
}

\numtest{40}{
\Reason{Allows 0 (forever) for max_life.}
}



\section{ovsec_kadm_delete_principal}

\numtest{1}{
\Reason{Fails if database not initialized.}
}

\numtest{2}{
\Reason{Fails on null principal.}
}

\numtest{3}{
\Reason{Fails on empty-string principal.}
}

\numtest{4}{
\Reason{Fails on invalid principal name.}
}

\numtest{5}{
\Reason{Fails on nonexistent principal.}
}

\numtest{6}{
\Reason{Fails when caller connected with CHANGEPW_SERVICE.}
}

\numtest{7}{
\Reason{Fails if caller has ``add'' access and not ``delete''.}
}

\numtest{8}{
\Reason{Fails if caller has ``modify'' access and not ``delete''.}
}

\numtest{9}{
\Reason{Fails if caller has ``get'' access and not ``delete''.}
}

\numtest{10}{
\Reason{Fails if caller has no access bits.}
}

\numtest{11}{
\Reason{Valid invocation.}
\Expected{Principal is removed from database.}
}

\numtest{12}{
\Reason{Valid invocation (on principal with policy).}
\Expected{Principal is removed from database.  Reference count
		of its policy is decremented.}
}



\section{ovsec_kadm_modify_principal}

\numtest{1}{
\Reason{Fails if database not initialized.}
}

\numtest{2}{
\Reason{Fails if user connected with CHANGEPW_SERVICE.}
}

\numtest{3}{
\Reason{Fails on mask with undefined bit set.}
}

\numtest{4}{
\Reason{Fails on mask with PRINCIPAL set.}
}

\numtest{5}{
\Reason{Fails on mask with LAST_PWD_CHANGE set.}
}

\numtest{6}{
\Reason{Fails on mask with MOD_TIME set.}
}

\numtest{7}{
\Reason{Fails on mask with MOD_NAME set.}
}

\numtest{8}{
\Reason{Fails on mask with MKVNO set.}
}

\numtest{9}{
\Reason{Fails on mask with AUX_ATTRIBUTES set.}
}

\numtest{10}{
\Reason{Fails on nonexistent principal.}
}

\numtest{11}{
\Reason{Fails for user with no access bits.}
}

\numtest{12}{
\Reason{Fails for user with ``get'' access.}
}

\numtest{13}{
\Reason{Fails for user with ``add'' access.}
}

\numtest{14}{
\Reason{Fails for user with ``delete'' access.}
}

\numtest{15}{
\Reason{Succeeds for user with ``modify'' access.}
}

\numtest{16}{
\Reason{Succeeds for user with ``modify'' and another access.}
}

\numtest{17}{
\Reason{Fails when nonexistent policy is specified.}
}

\numtest{18}{
\Reason{Succeeds when existent policy is specified.}
}

\numtest{19}{
\Reason{Updates policy count when setting policy from none.}
}

\numtest{20}{
\Reason{Updates policy count when clearing policy from set.}
}

\numtest{21}{
\Reason{Updates policy count when setting policy from other policy.}
}

\numtest{22}{
\Reason{Allows 0 (never) for pw_expiration when there's no policy.}
}

\numtest{23}{
\Reason{Allows 0 (never) for pw_expiration when there's a policy with
	0 for pw_max_life.}
}

\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.}
}

\numtest{25}{
\Reason{Accepts and sets non-zero pw_expiration when no policy.}
}

\numtest{26}{
\Reason{Accepts and sets non-zero pw_expiration when there's a policy
	with zero pw_max_life.}
}

\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.}
}

\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.}
}

\numtest{29}{
\Reason{Sets pw_expiration to 0 (never) if there's no policy and no
	specified pw_expiration.}
}

\numtest{30}{
\Reason{Sets pw_expiration to 0 (never) if it isn't specified and the
	policy has a 0 (never) pw_max_life.}
}

\numtest{31}{
\Reason{Sets pw_expiration to now + pw_max_life if it isn't specified
	and the policy has a non-zero pw_max_life.}
}

\numtest{32}{
\Reason{Accepts princ_expire_time change.}
}

\numtest{33}{
\Reason{Accepts attributes change.}
}

\numtest{34}{
\Reason{Accepts max_life change.}
}

\numtest{35}{
\Reason{Accepts kvno change.}
}

\numtest{36}{
\Reason{Behaves correctly when policy is set to the same as it was
	before.}
}

\numtest{37}{
\Reason{Behaves properly when POLICY_CLR is specified and there was no
	policy before.}
}

\numtest{38}{
\Reason{Accepts 0 (never) for princ_expire_time.}
}

\numtest{39}{
\Reason{Accepts 0 for max_life.}
}



\section{ovsec_kadm_rename_principal}

\numtest{1}{
\Reason{Fails if database not initialized.}
}

\numtest{2}{
\Reason{Fails if user connected with CHANGEPW_SERVICE.}
}

\numtest{3}{
\Reason{Fails for user with no access bits.}
}

\numtest{4}{
\Reason{Fails for user with ``modify'' access and not ``add'' or
``delete''.}
}

\numtest{5}{
\Reason{Fails for user with ``get'' access and not ``add'' or
``delete''.}
}

\numtest{6}{
\Reason{Fails for user with ``modify'' and ``add'' but not ``delete''.}
}

\numtest{7}{
\Reason{Fails for user with ``modify'' and ``delete'' but not ``add''.}
}

\numtest{8}{
\Reason{Fails for user with ``get'' and ``add'' but not ``delete''.}
}

\numtest{9}{
\Reason{Fails for user with ``get'' and ``delete'' but not ``add.''}
}

\numtest{10}{
\Reason{Fails for user with ``modify'', ``get'' and ``add'', but not
	``delete''.}
}

\numtest{11}{
\Reason{Fails for user with ``modify'', ``get'' and ``delete'', but
	not ``add''.}
}

\numtest{12}{
\Reason{Fails for user with ``add'' but not ``delete''.}
}

\numtest{13}{
\Reason{Fails for user with ``delete'' but not ``add''.}
}

\numtest{14}{
\Reason{Succeeds for user with ``add'' and ``delete''.}
}

\numtest{15}{
\Reason{Fails if target principal name exists.}
}



\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,
whether override_qual is specified, etc.).  These changes should
either all succeed or all fail, depending on the parameter settings.
After the list of tests, the various invocations of them, with the
corresponding parameter settings and whether the changes should
succeed or fail, will be given.

\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}{
\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}{
\Reason{With a history setting of 3 and no password changes,
	change password to itself.}
}

\numtest{5}{
\Reason{With a history setting of 3 and 1 password change,
	change password itself or previous password.}
}

\numtest{6}{
\Reason{With a history setting of 3 and 2 password changes,
	change password to itself and the two previous passwords.}
}

\numtest{7}{
\Reason{Change to previously unused password when now -
	last_pwd_change $<$ pw_min_life.}
}

\numtest{8}{
\Reason{Change to previously unused password that doesn't contain enough
	character classes.}
}

\numtest{9}{
\Reason{Change to previously unused password that's too short.}
}

\numtest{10}{
\Reason{Change to previously unused password that's in the dictionary.}
}

\subsubsection{List of parameter settings}

\begin{tabular}{llllll}
Base & Modify access? & Own password? & Service & override_qual & Pass/Fail \\ \hline
0 & no & yes & ADMIN & false & fail \\
10 & no & yes & ADMIN & true & RPC: fail; local: {\em pass} \\
20 & no & yes & CHANGEPW & false & fail \\
30 & no & yes & CHANGEPW & true & RPC: fail; local: {\em pass} \\
40 & no & no & ADMIN & false & fail \\
50 & no & no & ADMIN & true & RPC: fail; local: {\em pass} \\
60 & no & no & CHANGEPW & false & fail \\
70 & no & no & CHANGEPW & true & RPC: fail; local: {\em pass} \\
80 & yes & yes & ADMIN & false & fail \\
90 & yes & yes & ADMIN & true & RPC: fail; local {\em pass} \\
100 & yes & yes & CHANGEPW & false & fail \\
110 & yes & yes & CHANGEPW & true & RPC: fail; local: {\em pass} \\
120 & yes & no & ADMIN & false & fail \\
130 & yes & no & ADMIN & true & {\em pass} \\
140 & yes & no & CHANGEPW & false & fail \\
150 & yes & no & CHANGEPW & true & RPC: fail; local: {\em pass}
\end{tabular}

\subsection{Other quality/history tests}

These tests should be run with override_qual false.

\numtest{161}{
\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}{
\Reason{With history of 3 and 3 password changes, can change password
	to original password.}
}

\numtest{164}{
\Reason{Can change password when now - last_pwd_change $>$ pw_min_life.}
}

\numtest{165}{
\Reason{Can change password when it contains exactly the number of
	classes required by the policy.}
}

\numtest{166}{
\Reason{Can change password when it is exactly the length required by
	the policy.}
}

\numtest{167}{
\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}{
\Reason{Fails for empty-string password.}
}

\numtest{172}{
\Reason{Pw_expiration is set to now + max_pw_life if policy exists and
	has non-zero max_pw_life.}
}

\numtest{173}{
\Reason{Pw_expiration is set to 0 if policy exists and has zero
	max_pw_life.}
}

\numtest{174}{
\Reason{Pw_expiration is set to 0 if no policy.}
}

\numtest{175}{
\Reason{KRB5_KDC_REQUIRES_PWCHANGE bit is cleared when password is
	successfully changed.}
}

\numtest{176}{
\Reason{Fails for user with no access bits, on other's password.}
}

\numtest{177}{
\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.}
}



\section{ovsec_kadm_chpass_principal_util}

XXX Needs to be modified to take into account the new argument.

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.



\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 & override_qual & Pass/Fail \\ \hline
1 & no & yes & ADMIN & false & fail \\
2 & no & yes & ADMIN & true & RPC: fail; local: {\em pass} \\
3 & no & yes & CHANGEPW & false & fail \\
4 & no & yes & CHANGEPW & true & RPC: fail; local: {\em pass} \\
5 & no & no & ADMIN & false & fail \\
6 & no & no & ADMIN & true & RPC: fail; local: {\em pass} \\
7 & no & no & CHANGEPW & false & fail \\
8 & no & no & CHANGEPW & true & RPC: fail; local: {\em pass} \\
9 & yes & yes & ADMIN & false & fail \\
10 & yes & yes & ADMIN & true & RPC: fail; local {\em pass} \\
11 & yes & yes & CHANGEPW & false & fail \\
12 & yes & yes & CHANGEPW & true & RPC: fail; local: {\em pass} \\
13 & yes & no & ADMIN & false & fail \\
14 & yes & no & ADMIN & true & {\em pass} \\
15 & yes & no & CHANGEPW & false & fail \\
16 & yes & no & CHANGEPW & true & RPC: fail; local: {\em pass}
\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}{
\Reason{Pw_expiration is set to now + max_pw_life if policy exists and
	has non-zero max_pw_life.}
}

\numtest{21}{
\Reason{Pw_expiration is set to 0 if policy exists and has zero
	max_pw_life.}
}

\numtest{22}{
\Reason{Pw_expiration is set to 0 if no policy.}
}

\numtest{23}{
\Reason{KRB5_KDC_REQUIRES_PWCHANGE bit is cleared when key is
	successfully changed.}
}

\numtest{24}{
\Reason{Fails for user with no access bits, on other's password.}
}

\numtest{25}{
\Reason{Fails for user with ``get'' but not ``modify'' access, on
	other's password.}
}

\numtest{26}{
\Reason{Fails for user with ``delete'' but not ``modify'' access, on
	other's password.}
}

\numtest{27}{
\Reason{Fails for user with ``add'' but not ``modify'' access, on
	other's password.}
}

\numtest{28}{
\Reason{Succeeds for user with ``get'' and ``modify'' access, on
	other's password.}
}

\numtest{29}{
\Reason{The new key that's assigned is truly random. XXX not sure how
	to test this.}
}



\section{ovsec_kadm_get_principal}

\numtest{1}{
\Reason{Fails for null ent.}
}

\numtest{2}{
\Reason{Fails for non-existent principal.}
}

\numtest{3}{
\Reason{Fails for user with no access bits, retrieving other principal.}
}

\numtest{4}{
\Reason{Fails for user with ``add'' but not ``get'', getting principal
	other than his own, using ADMIN_SERVICE.}
}

\numtest{5}{
\Reason{Fails for user with ``modify'' but not ``get'', getting
	principal other than his own, using ADMIN_SERVICE.}
}

\numtest{6}{
\Reason{Fails for user with ``delete'' but not ``get'', getting
	principal other than his own, using ADMIN_SERVICE.}
}

\numtest{7}{
\Reason{Fails for user with ``delete'' but not ``get'', getting
	principal other than his own, using CHANGEPW_SERVICE.}
}

\numtest{8}{
\Reason{Fails for user with ``get'', getting principal other than his
	own, using CHANGEPW_SERVICE.}
}

\numtest{9}{
\Reason{Succeeds for user without ``get'', retrieving self, using
	ADMIN_SERVICE.}
}

\numtest{10}{
\Reason{Succeeds for user without ``get'', retrieving self, using
	CHANGEPW_SERVICE.}
}

\numtest{11}{
\Reason{Succeeds for user with ``get'', retrieving self, using
	ADMIN_SERVICE.}
}

\numtest{12}{
\Reason{Succeeds for user with ``get'', retrieving self, using
	CHANGEPW_SERVICE.}
}

\numtest{13}{
\Reason{Succeeds for user with ``get'', retrieving other user, using
	ADMIN_SERVICE.}
}

\numtest{14}{
\Reason{Succeeds for user with ``get'' and ``modify'', retrieving
	other principal, using ADMIN_SERVICE.}
}



\section{ovsec_kadm_create_policy}

\numtest{1}{
\Reason{Fails for mask with undefined bit set.}
}

\numtest{2}{
\Reason{Fails if caller connected with CHANGEPW_SERVICE.}
}

\numtest{3}{
\Reason{Fails for mask without POLICY bit set.}
}

\numtest{4}{
\Reason{Fails for mask with REF_COUNT bit set.}
}

\numtest{5}{
\Reason{Fails for invalid policy name.}
}

\numtest{6}{
\Reason{Fails for existing policy name.}
}

\numtest{7}{
\Reason{Fails for null policy name.}
}

\numtest{8}{
\Reason{Fails for empty-string policy name.}
}

\numtest{9}{
\Reason{Accepts 0 for pw_min_life.}
}

\numtest{10}{
\Reason{Accepts non-zero for pw_min_life.}
}

\numtest{11}{
\Reason{Accepts 0 for pw_max_life.}
}

\numtest{12}{
\Reason{Accepts non-zero for pw_max_life.}
}

\numtest{13}{
\Reason{Accepts 0 for pw_min_length.}
}

\numtest{14}{
\Reason{Accepts non-zero for pw_min_length.}
}

\numtest{15}{
\Reason{Rejects 0 for pw_min_classes.}
}

\numtest{16}{
\Reason{Accepts 1 for pw_min_classes.}
}

\numtest{17}{
\Reason{Accepts 4 for pw_min_classes.}
}

\numtest{18}{
\Reason{Rejects 5 for pw_min_classes.}
}

\numtest{19}{
\Reason{Rejects 0 for pw_history_num.}
}

\numtest{20}{
\Reason{Accepts 1 for pw_history_num.}
}

\numtest{21}{
\Reason{Accepts 10 for pw_history_num.}
}

\numtest{22}{
\Reason{Fails for user with no access bits.}
}

\numtest{23}{
\Reason{Fails for user with ``get'' but not ``add''.}
}

\numtest{24}{
\Reason{Fails for user with ``modify'' but not ``add.''}
}

\numtest{25}{
\Reason{Fails for user with ``delete'' but not ``add.''}
}

\numtest{26}{
\Reason{Succeeds for user with ``add.''}
}

\numtest{27}{
\Reason{Succeeds for user with ``get'' and ``add.''}
}



\section{ovsec_kadm_delete_policy}

\numtest{1}{
\Reason{Fails for null policy name.}
}

\numtest{2}{
\Reason{Fails for empty-string policy name.}
}

\numtest{3}{
\Reason{Fails for non-existent policy name.}
}

\numtest{4}{
\Reason{Fails for bad policy name.}
}

\numtest{5}{
\Reason{Fails if caller connected with CHANGEPW_SERVICE.}
}

\numtest{6}{
\Reason{Fails for user with no access bits.}
}

\numtest{7}{
\Reason{Fails for user with ``add'' but not ``delete''.}
}

\numtest{8}{
\Reason{Fails for user with ``modify'' but not ``delete''.}
}

\numtest{9}{
\Reason{Fails for user with ``get'' but not ``delete.''}
}

\numtest{10}{
\Reason{Succeeds for user with only ``delete''.}
}

\numtest{11}{
\Reason{Succeeds for user with ``delete'' and ``add''.}
}

\numtest{12}{
\Reason{Fails for policy with non-zero reference count.}
}



\section{ovsec_kadm_modify_policy}

\numtest{1}{
\Reason{Fails for mask with undefined bit set.}
}

\numtest{2}{
\Reason{Fails if caller connected with CHANGEPW_SERVICE.}
}

\numtest{3}{
\Reason{Fails for mask with POLICY bit set.}
}

\numtest{4}{
\Reason{Fails for mask with REF_COUNT bit set.}
}

\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}{
\Reason{Fails for empty-string policy name.}
}

\numtest{9}{
\Reason{Accepts 0 for pw_min_life.}
}

\numtest{10}{
\Reason{Accepts non-zero for pw_min_life.}
}

\numtest{11}{
\Reason{Accepts 0 for pw_max_life.}
}

\numtest{12}{
\Reason{Accepts non-zero for pw_max_life.}
}

\numtest{13}{
\Reason{Accepts 0 for pw_min_length.}
}

\numtest{14}{
\Reason{Accepts non-zero for pw_min_length.}
}

\numtest{15}{
\Reason{Rejects 0 for pw_min_classes.}
}

\numtest{16}{
\Reason{Accepts 1 for pw_min_classes.}
}

\numtest{17}{
\Reason{Accepts 4 for pw_min_classes.}
}

\numtest{18}{
\Reason{Rejects 5 for pw_min_classes.}
}

\numtest{19}{
\Reason{Rejects 0 for pw_history_num.}
}

\numtest{20}{
\Reason{Accepts 1 for pw_history_num.}
}

\numtest{21}{
\Reason{Accepts 10 for pw_history_num.}
}

\numtest{22}{
\Reason{Fails for user with no access bits.}
}

\numtest{23}{
\Reason{Fails for user with ``get'' but not ``modify''.}
}

\numtest{24}{
\Reason{Fails for user with ``add'' but not ``modify.''}
}

\numtest{25}{
\Reason{Fails for user with ``delete'' but not ``modify.''}
}

\numtest{26}{
\Reason{Succeeds for user with ``modify.''}
}

\numtest{27}{
\Reason{Succeeds for user with ``get'' and ``modify.''}
}



\section{ovsec_kadm_get_policy}

\numtest{1}{
\Reason{Fails for null policy.}
}

\numtest{2}{
\Reason{Fails for invalid policy name.}
}

\numtest{3}{
\Reason{Fails for empty-string policy name.}
}

\numtest{4}{
\Reason{Fails for non-existent policy name.}
}

\numtest{5}{
\Reason{Fails for null ent.}
}

\numtest{6}{
\Reason{Fails for user with no access bits trying to get other's
	policy, using ADMIN_SERVICE.}
}

\numtest{7}{
\Reason{Fails for user with ``add'' but not ``get'' trying to get
	other's policy, using ADMIN_SERVICE.}
}

\numtest{8}{
\Reason{Fails for user with ``modify'' but not ``get'' trying to get
	other's policy, using ADMIN_SERVICE.}
}

\numtest{9}{
\Reason{Fails for user with ``delete'' but not ``get'' trying to get
	other's policy, using ADMIN_SERVICE.}
}

\numtest{10}{
\Reason{Fails for user with ``delete'' but not ``get'' trying to get
	other's policy, using CHANGEPW_SERVICE.}
}

\numtest{11}{
\Reason{Succeeds for user with only ``get'', trying to get own policy,
	using ADMIN_SERVICE.}
}

\numtest{12}{
\Reason{Succeeds for user with only ``get'', trying to get own policy,
	using CHANGEPW_SERVICE.}
}

\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}{
\Reason{Succeeds for user without ``get'', trying to get own policy,
	using CHANGEPW_SERVICE.}
}

\numtest{17}{
\Reason{Succeeds for user with ``get'', trying to get other's policy,
	using ADMIN_SERVICE.}
}

\numtest{18}{
\Reason{Fails for user with ``get'', trying to get other's policy,
	using CHANGEPW_SERVICE.}
}

\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.}
}



\section{ovsec_kadm_free_principal_ent}

Handled by memory-leak testing handled elsewhere.

XXX This isn't sufficient.


\section{ovsec_kadm_free_policy_ent}

Handled by memory-leak testing handled elsewhere.

XXX This isn't sufficient.


\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$ popsible
combinations of them):

\numtest{2}{
\Reason{Returns correct bit mask for access bits of user.}
\Conditions{RPC}
}

This test should be run locally:

\numtest{3}{
\Reason{Returns 0x0f.}
\Conditions{local}
}

\end{document}