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
|
-- CXAI015.A
--
-- Grant of Unlimited Rights
--
-- The Ada Conformity Assessment Authority (ACAA) holds unlimited
-- rights in the software and documentation contained herein. Unlimited
-- rights are the same as those granted by the U.S. Government for older
-- parts of the Ada Conformity Assessment Test Suite, and are defined
-- in DFAR 252.227-7013(a)(19). By making this public release, the ACAA
-- intends to confer upon all recipients unlimited rights equal to those
-- held by the ACAA. These rights include rights to use, duplicate,
-- release or disclose the released technical data and computer software
-- in whole or in part, in any manner and for any purpose whatsoever, and
-- to have or permit others to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE ACAA MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--
-- Notice
--
-- The ACAA has created and maintains the Ada Conformity Assessment Test
-- Suite for the purpose of conformity assessments conducted in accordance
-- with the International Standard ISO/IEC 18009 - Ada: Conformity
-- assessment of a language processor. This test suite should not be used
-- to make claims of conformance unless used in accordance with
-- ISO/IEC 18009 and any applicable ACAA procedures.
--*
-- OBJECTIVE:
-- Check that an implementation supports the functionality defined
-- in package Ada.Containers.Bounded_Ordered_Sets.
--
-- TEST DESCRIPTION:
-- This test verifies that an implementation supports the subprograms
-- contained in package Ada.Containers.Bounded_Ordered_Sets.
-- Each of the subprograms is exercised in a general sense, to ensure that
-- it is available, and that it provides the expected results in a known
-- test environment.
--
-- CHANGE HISTORY:
-- 23 Sep 13 JAC Initial pre-release version.
-- 6 Dec 13 JAC Second pre-release version.
-- 29 Dec 13 JAC Third pre-release version.
-- 28 Mar 14 RLB Created ACATS 4.0 version, renamed test.
-- Added additional capacity error cases.
-- 3 Apr 14 RLB Merged in tampering checks from fourth pre-release
-- version.
--
--!
with Ada.Containers.Bounded_Ordered_Sets;
with Report;
procedure CXAI015 is
My_Default_Value : constant := 999.0;
type My_Float is new Float
with Default_Value => My_Default_Value;
package My_Bounded_Ordered_Sets is new
Ada.Containers.Bounded_Ordered_Sets
(Element_Type => My_Float); -- Default < and Default =
type My_Key_Type is new Integer;
function My_Key (Element : My_Float) return My_Key_Type is
begin
return My_Key_Type (Element);
end My_Key;
package My_Keys is new My_Bounded_Ordered_Sets.Generic_Keys
(Key_Type => My_Key_Type,
Key => My_Key); -- Predefined <
Num_Tests : constant := 10;
Capacity_Reqd : constant := Num_Tests + 1;
My_Set_1 : My_Bounded_Ordered_Sets.Set (Capacity => Capacity_Reqd);
My_Set_2 : My_Bounded_Ordered_Sets.Set (Capacity => Capacity_Reqd);
My_Set_3 : My_Bounded_Ordered_Sets.Set (Capacity => Capacity_Reqd);
Big_Set : My_Bounded_Ordered_Sets.Set (Capacity => Capacity_Reqd);
subtype Array_Bounds_Type is Ada.Containers.Count_Type range 1 .. Num_Tests;
-- No fractional parts so that can compare values for equality.
-- Values in ascending order as this is what determines the order for a set.
Value_In_Array : constant array (Array_Bounds_Type) of My_Float :=
(1.0, 12.0, 23.0, 34.0, 45.0, 56.0, 67.0, 78.0, 89.0, 99.0);
My_Cursor_1 : My_Bounded_Ordered_Sets.Cursor;
My_Cursor_2 : My_Bounded_Ordered_Sets.Cursor;
My_Cursor_3 : My_Bounded_Ordered_Sets.Cursor;
My_Inserted : Boolean;
procedure Tampering_Check
(Container : in out My_Bounded_Ordered_Sets.Set;
Where : in String)
with Pre => not Container.Is_Empty is
Program_Error_Raised : Boolean := False;
begin
declare
begin
-- Don't try to insert into a full bounded container as it's a grey
-- area as to whether Capacity_Error or Program_Error should be raised
Container.Delete (Item => Value_In_Array (1));
exception
when Program_Error =>
Program_Error_Raised := True;
end;
if not Program_Error_Raised then
Report.Failed ("Tampering should have raised error in " & Where);
end if;
end Tampering_Check;
use type Ada.Containers.Count_Type;
use type My_Bounded_Ordered_Sets.Cursor;
use type My_Bounded_Ordered_Sets.Set;
begin
Report.Test
("CXAI015",
"Check that an implementation supports the functionality defined in " &
"package Ada.Containers.Bounded_Ordered_Sets");
-- Test empty using Empty_Set, Is_Empty and Length
if My_Set_1 /= My_Bounded_Ordered_Sets.Empty_Set then
Report.Failed ("Not initially empty #1");
end if;
if not My_Set_1.Is_Empty then
Report.Failed ("Not initially empty #2");
end if;
if My_Set_1.Length /= 0 then
Report.Failed ("Not initially empty #3");
end if;
-- Test Insert, First, Element (cursor form), Equivalent_Elements,
-- Query_Element, Next (two forms) and First_Element
for I in Array_Bounds_Type loop
My_Set_1.Insert (New_Item => Value_In_Array (I));
if My_Set_1.Length /= I then
Report.Failed ("Wrong Length after inserting");
end if;
end loop;
My_Cursor_1 := My_Set_1.First;
for I in Array_Bounds_Type loop
declare
procedure My_Query (Element : in My_Float) is
begin
Tampering_Check
(Container => My_Set_1,
Where => "Query_Element");
if Element /= Value_In_Array (I) then
Report.Failed
("Mismatch between element and what was inserted #1");
end if;
end My_Query;
begin
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_1) /=
Value_In_Array (I) then
Report.Failed ("Mismatch between element and what was inserted #2");
end if;
if not My_Bounded_Ordered_Sets.Equivalent_Elements
(Left => My_Bounded_Ordered_Sets.Element
(Position => My_Cursor_1),
Right => Value_In_Array (I)) then
Report.Failed ("Elements not equivalent");
end if;
My_Bounded_Ordered_Sets.Query_Element
(Position => My_Cursor_1,
Process => My_Query'Access);
end;
-- Toggle between alternative methods for incrementing cursor
if I mod 2 = 0 then
My_Cursor_1 := My_Bounded_Ordered_Sets.Next
(Position => My_Cursor_1);
else
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_1);
end if;
end loop;
if My_Set_1.First_Element /= Value_In_Array (Value_In_Array'First) then
Report.Failed ("Mismatch between first element and first inserted");
end if;
-- Test Insert, Last, Element, Previous (two forms) and Last_Element
for I in reverse Array_Bounds_Type loop
My_Set_2.Insert (New_Item => Value_In_Array (I));
if My_Set_2.Length /= Num_Tests - I + 1 then
Report.Failed ("Wrong Length after inserting");
end if;
end loop;
My_Cursor_2 := My_Set_2.Last;
for I in reverse Array_Bounds_Type loop
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
Value_In_Array (I) then
Report.Failed ("Mismatch between element and what was inserted #3");
end if;
-- Toggle between alternative methods for decrementing cursor
if I mod 2 = 0 then
My_Cursor_2 := My_Bounded_Ordered_Sets.Previous
(Position => My_Cursor_2);
else
My_Bounded_Ordered_Sets.Previous (Position => My_Cursor_2);
end if;
end loop;
if My_Set_2.Last_Element /= Value_In_Array (Value_In_Array'Last) then
Report.Failed ("Mismatch between last element and last inserted");
end if;
-- Test equality and Equivalent_Sets
if My_Set_1 /= My_Set_2 then
Report.Failed ("Bounded_Ordered_Sets not equal");
end if;
if not My_Bounded_Ordered_Sets.Equivalent_Sets
(Left => My_Set_1,
Right => My_Set_2) then
Report.Failed ("Bounded_Ordered_Sets not equivalent");
end if;
-- Test assignment, Iterate and Reverse_Iterate
declare
My_Set_3 : My_Bounded_Ordered_Sets.Set := My_Set_1;
I : Array_Bounds_Type := Array_Bounds_Type'First;
procedure My_Process
(Position : in My_Bounded_Ordered_Sets.Cursor) is
begin
Tampering_Check
(Container => My_Set_3,
Where => "Iterate");
if My_Bounded_Ordered_Sets.Element (Position) /=
Value_In_Array (I) then
Report.Failed ("Iterate hasn't found the expected value");
end if;
if I < Array_Bounds_Type'Last then
I := I + 1;
end if;
end My_Process;
procedure My_Reverse_Process
(Position : in My_Bounded_Ordered_Sets.Cursor) is
begin
if My_Bounded_Ordered_Sets.Element (Position) /=
Value_In_Array (I) then
Report.Failed ("Reverse_Iterate hasn't found the expected value");
end if;
if I > Array_Bounds_Type'First then
I := I - 1;
end if;
end My_Reverse_Process;
begin
My_Set_3.Iterate (Process => My_Process'Access);
My_Set_3.Reverse_Iterate (Process => My_Reverse_Process'Access);
end;
-- Test Replace_Element
-- Increment the values of the two Bounded_Ordered_Sets and check
-- still equal. Only a small adjustment made so as not to change the order
My_Cursor_1 := My_Set_1.First;
My_Cursor_2 := My_Set_2.First;
for I in Array_Bounds_Type loop
My_Set_1.Replace_Element
(Position => My_Cursor_1,
New_Item => Value_In_Array (I) + 1.0);
My_Set_2.Replace_Element
(Position => My_Cursor_2,
New_Item => Value_In_Array (I) + 1.0);
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_1);
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_2);
end loop;
if My_Set_1 /= My_Set_2 then
Report.Failed ("Incremented Bounded_Ordered_Sets not equal");
end if;
-- Test Clear and inequality
My_Set_1.Clear;
if not My_Set_1.Is_Empty then
Report.Failed ("Failed to clear");
end if;
for I in Array_Bounds_Type loop
My_Set_1.Insert (New_Item => Value_In_Array (I));
end loop;
if My_Set_1 = My_Set_2 then
Report.Failed ("Different Bounded_Ordered_Sets equal");
end if;
-- Test Move. Target has the test values in reverse order, after Move these
-- should be replaced (not appended) by the test values in forward order
My_Set_2.Clear;
for I in Array_Bounds_Type loop
My_Set_2.Insert (New_Item => Value_In_Array (I));
end loop;
My_Set_1.Move (Source => My_Set_2);
if not My_Set_2.Is_Empty then
Report.Failed ("Moved source not empty");
end if;
My_Cursor_1 := My_Set_1.First;
for I in Array_Bounds_Type loop
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_1) /=
Value_In_Array (I) then
Report.Failed ("Target Set not as expected after move");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_1);
end loop;
-- Test Insert (two forms), Include and Replace (element form)
-- My_Set_2 should initially be empty
-- Insert in fairly mixed order to check that order is determined by the
-- element, not the order of insertion
declare
begin
My_Set_2.Insert (New_Item => Value_In_Array (1));
exception
when Constraint_Error =>
Report.Failed ("Not inserted #1");
end;
declare
Constraint_Error_Raised : Boolean := False;
begin
declare
begin
My_Set_2.Insert (New_Item => Value_In_Array (1));
exception
when Constraint_Error =>
Constraint_Error_Raised := True;
end;
if not Constraint_Error_Raised then
Report.Failed ("Insert with duplicate element should have failed #1");
end if;
end;
My_Set_2.Insert
(New_Item => Value_In_Array (2),
Position => My_Cursor_2, -- Added element
Inserted => My_Inserted);
if not My_Inserted then
Report.Failed ("Not inserted #2");
end if;
My_Set_2.Insert
(New_Item => Value_In_Array (2),
Position => My_Cursor_2, -- Added element
Inserted => My_Inserted);
if My_Inserted then
Report.Failed ("Insert with duplicate element should have failed #2");
end if;
-- Element with Default_Value
My_Set_2.Insert
(New_Item => My_Default_Value,
Position => My_Cursor_2, -- Added element
Inserted => My_Inserted);
if not My_Inserted then
Report.Failed ("Not inserted #3");
end if;
-- Element with Default_Value
My_Set_2.Insert
(New_Item => My_Default_Value,
Position => My_Cursor_2, -- Added element
Inserted => My_Inserted);
if My_Inserted then
Report.Failed ("Insert with duplicate element should have failed #3");
end if;
declare
begin
My_Set_2.Insert (New_Item => Value_In_Array (7));
exception
when Constraint_Error =>
Report.Failed ("Not inserted #4");
end;
declare
begin
My_Set_2.Include (New_Item => Value_In_Array (2));
exception
when Constraint_Error =>
Report.Failed
("Include should replace instead of raising Constraint_Error");
end;
My_Set_2.Insert
(New_Item => Value_In_Array (9),
Position => My_Cursor_2, -- Added element
Inserted => My_Inserted);
if not My_Inserted then
Report.Failed ("Not inserted #5");
end if;
declare
begin
My_Set_2.Replace (New_Item => Value_In_Array (1));
exception
when Constraint_Error =>
Report.Failed
("Replace should not raise Constraint_Error for existing element");
end;
-- Element with double Default_Value (double to avoid clash with existing
-- element with that value). Should insert at end.
My_Set_2.Insert
(New_Item => My_Default_Value * 2.0,
Position => My_Cursor_2, -- Added element
Inserted => My_Inserted);
if not My_Inserted then
Report.Failed ("Not inserted #6");
end if;
-- The order should now be Value_In_Array (1), Value_In_Array (2),
-- Value_In_Array (7), Value_In_Array (9), Default_Value,
-- Default_Value * 2.0
My_Cursor_2 := My_Set_2.First;
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
Value_In_Array (1) then
Report.Failed ("Inserted value not as expected #1");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_2);
-- Check = Default_Value
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
Value_In_Array (2) then
Report.Failed ("Inserted value not as expected #2");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_2);
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
Value_In_Array (7) then
Report.Failed ("Inserted value not as expected #3");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_2);
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
Value_In_Array (9) then
Report.Failed ("Inserted value not as expected #4");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_2);
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
My_Default_Value then
Report.Failed ("Inserted value not as expected #5");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_2);
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
My_Default_Value * 2.0 then
Report.Failed ("Inserted value not as expected #6");
end if;
-- Test Delete (cursor and element forms), Exclude (element form),
-- Delete_First and Delete_Last
-- My_Cursor_2 should initially be pointing to the last element of
-- My_Set_2
My_Set_2.Delete (Position => My_Cursor_2);
My_Set_2.Delete (Item => Value_In_Array (7));
My_Set_2.Exclude (Item => Value_In_Array (9));
declare
begin
My_Set_2.Exclude (Item => Value_In_Array (9));
exception
when Constraint_Error =>
Report.Failed
("Exclude should not raise Constraint_Error for absent element");
end;
My_Set_2.Delete_First;
My_Set_2.Delete_Last;
if My_Set_2.Length /= 1 then
Report.Failed ("Wrong Length after deleting");
end if;
if My_Bounded_Ordered_Sets.Element (My_Set_2.First) /=
Value_In_Array (2) then
Report.Failed ("Remaining value not as expected");
end if;
-- Test Find (element form), Floor (element form), Ceiling (element form), <
-- (3 forms) and > (3 forms)
-- My_Set_1 should still contain the test values (in forward order)
My_Cursor_1 := My_Set_1.Find (Item => Value_In_Array (9));
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_1) /=
Value_In_Array (9) then
Report.Failed ("Found value not as expected");
end if;
My_Cursor_2 := My_Set_1.Floor (Item => Value_In_Array (8));
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_2) /=
Value_In_Array (8) then
Report.Failed ("Floor (element form) value not as expected");
end if;
if not (My_Cursor_2 < My_Cursor_1) then
Report.Failed ("< of cursors not as expected");
end if;
if My_Cursor_2 > My_Cursor_1 then
Report.Failed ("> of cursors not as expected");
end if;
My_Cursor_1 := My_Set_1.Ceiling (Item => Value_In_Array (10));
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_1) /=
Value_In_Array (10) then
Report.Failed ("Ceiling (element form) value not as expected");
end if;
if not (Value_In_Array (5) < My_Cursor_1) then
Report.Failed ("< of element and cursor not as expected");
end if;
if Value_In_Array (6) > My_Cursor_1 then
Report.Failed ("> of element and cursor not as expected");
end if;
if not (My_Bounded_Ordered_Sets.Element
(My_Bounded_Ordered_Sets.Previous (My_Cursor_1)) <
My_Cursor_1) then
Report.Failed ("< of cursor and element not as expected");
end if;
if My_Bounded_Ordered_Sets.Element
(My_Bounded_Ordered_Sets.Previous (My_Cursor_1)) >
My_Cursor_1 then
Report.Failed ("> of cursor and element not as expected");
end if;
-- Test Contains (element form)
if not My_Set_1.Contains (Item => Value_In_Array (3)) then
Report.Failed ("Contains (element form) failed to find");
end if;
if My_Set_1.Contains (Item => 0.0) then
Report.Failed ("Contains (element form) found when shouldn't have");
end if;
-- Test Has_Element
-- My_Cursor_1 should still be pointing to the last element
if not My_Bounded_Ordered_Sets.Has_Element (Position => My_Cursor_1)
then
Report.Failed ("Has_Element failed to find");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_1);
-- My_Cursor_1 should now be pointing off the end
if My_Bounded_Ordered_Sets.Has_Element (Position => My_Cursor_1) then
Report.Failed ("Has_Element found when shouldn't have");
end if;
-- Test Union, Overlap and Is_Subset
-- My_Set_1 should still contain the test values (in forward order).
-- My_Set_2 should still contain test value Value_In_Array (2).
-- My_Set_3 should initially be empty
My_Set_3.Insert (New_Item => My_Default_Value);
if My_Bounded_Ordered_Sets.Overlap
(Left => My_Set_3,
Right => My_Set_2) then
Report.Failed ("Erroneously thinks has overlap");
end if;
if not My_Bounded_Ordered_Sets.Is_Subset
(Subset => My_Set_2,
Of_Set => My_Set_1) then
Report.Failed ("Erroneously doesn't think is subset");
end if;
if My_Bounded_Ordered_Sets.Is_Subset
(Subset => My_Set_3,
Of_Set => My_Set_1) then
Report.Failed ("Erroneously thinks is subset");
end if;
My_Set_3.Union (Source => My_Set_2);
-- My_Set_3 should contain Value_In_Array (2), followed by Default_Value
if My_Set_3.Length /= 2 then
Report.Failed ("Length not as expected after Union #1");
end if;
My_Cursor_3 := My_Set_3.First;
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (2) then
Report.Failed ("Element not as expected after Union #1");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_3);
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
My_Default_Value then
Report.Failed ("Element not as expected after Union #2");
end if;
if not My_Bounded_Ordered_Sets.Overlap
(Left => My_Set_1,
Right => My_Set_2) then
Report.Failed ("Erroneously doesn't think has overlap");
end if;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Bounded_Ordered_Sets.Union
(Left => My_Set_1,
Right => My_Set_2),
Capacity => Capacity_Reqd);
-- My_Set_3 should contain the test values (in forward order)
if My_Set_3.Length /= Num_Tests then
Report.Failed ("Length not as expected after Union #2");
end if;
My_Cursor_3 := My_Set_3.First;
for I in Array_Bounds_Type loop
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (I) then
Report.Failed ("Element not as expected after Union #3");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_3);
end loop;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Set_1 or My_Set_2,
Capacity => Capacity_Reqd);
-- My_Set_3 should contain the test values (in forward order)
if My_Set_3.Length /= Num_Tests then
Report.Failed ("Length not as expected after Union #3");
end if;
My_Cursor_3 := My_Set_3.First;
for I in Array_Bounds_Type loop
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (I) then
Report.Failed ("Element not as expected after Union #4");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_3);
end loop;
-- Test Intersection
-- My_Set_1 should still contain the test values (in forward order).
-- My_Set_2 should still contain test value Value_In_Array (2)
My_Set_3.Clear;
My_Set_3.Insert (New_Item => My_Default_Value);
My_Set_3.Intersection (Source => My_Set_2);
if My_Set_3.Length /= 0 then
Report.Failed ("Length not as expected after Intersection #1");
end if;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Bounded_Ordered_Sets.Intersection
(Left => My_Set_1,
Right => My_Set_2),
Capacity => Capacity_Reqd);
-- My_Set_3 should contain Value_In_Array (2)
if My_Set_3.Length /= 1 then
Report.Failed ("Length not as expected after Intersection #2");
end if;
My_Cursor_3 := My_Set_3.First;
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (2) then
Report.Failed ("Element not as expected after Intersection #1");
end if;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Set_1 and My_Set_2,
Capacity => Capacity_Reqd);
-- My_Set_3 should contain Value_In_Array (2)
if My_Set_3.Length /= 1 then
Report.Failed ("Length not as expected after Intersection #3");
end if;
My_Cursor_3 := My_Set_3.First;
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (2) then
Report.Failed ("Element not as expected after Intersection #2");
end if;
-- Test Difference
-- My_Set_1 should still contain the test values (in forward order).
-- My_Set_2 should still contain test value Value_In_Array (2)
My_Set_3.Clear;
My_Set_3.Insert (New_Item => My_Default_Value);
My_Set_3.Difference (Source => My_Set_2);
-- My_Set_3 should contain Default_Value
if My_Set_3.Length /= 1 then
Report.Failed ("Length not as expected after Difference #1");
end if;
My_Cursor_3 := My_Set_3.First;
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
My_Default_Value then
Report.Failed ("Element not as expected after Difference #1");
end if;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Bounded_Ordered_Sets.Difference
(Left => My_Set_1,
Right => My_Set_2),
Capacity => Capacity_Reqd);
-- My_Set_3 should contain the test values (in forward order) except for
-- Value_In_Array (2)
if My_Set_3.Length /= Num_Tests - 1 then
Report.Failed ("Length not as expected after Difference #2");
end if;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Set_1 - My_Set_2,
Capacity => Capacity_Reqd);
-- My_Set_3 should contain the test values (in forward order) except for
-- Value_In_Array (2)
if My_Set_3.Length /= Num_Tests - 1 then
Report.Failed ("Length not as expected after Difference #2");
end if;
-- Test Symmetric_Difference
-- My_Set_1 should still contain the test values (in forward order).
-- My_Set_2 should still contain test value Value_In_Array (2)
My_Set_3.Clear;
My_Set_3.Insert (New_Item => My_Default_Value);
My_Set_3.Symmetric_Difference (Source => My_Set_2);
-- My_Set_3 should contain Value_In_Array (2), followed by Default_Value
if My_Set_3.Length /= 2 then
Report.Failed ("Length not as expected after Symmetric_Difference #1");
end if;
My_Cursor_3 := My_Set_3.First;
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (2) then
Report.Failed ("Element not as expected after Symmetric_Difference #1");
end if;
My_Bounded_Ordered_Sets.Next (Position => My_Cursor_3);
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
My_Default_Value then
Report.Failed ("Element not as expected after Symmetric_Difference #2");
end if;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Bounded_Ordered_Sets.Symmetric_Difference
(Left => My_Set_1,
Right => My_Set_3),
Capacity => Capacity_Reqd);
-- My_Set_3 should contain the test values (in forward order) except for
-- Value_In_Array (2), followed by Default_Value
if My_Set_3.Length /= Num_Tests then
Report.Failed ("Length not as expected after Symmetric_Difference #2");
end if;
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Set_3 xor My_Set_2,
Capacity => Capacity_Reqd);
-- My_Set_3 should contain the test values (in forward order), followed by
-- Default_Value
if My_Set_3.Length /= Num_Tests + 1 then
Report.Failed ("Length not as expected after Symmetric_Difference #3");
end if;
-- Tests for Capacity_Error
-- Fill up the big set with values not in the usual test data
for I in Ada.Containers.Count_Type range 0 .. Capacity_Reqd - 1 loop
Big_Set.Insert
(New_Item => My_Float (I) * Value_In_Array ((I mod Num_Tests) + 1));
end loop;
declare
Capacity_Error_Raised : Boolean := False;
begin
declare
begin
Big_Set.Insert
(New_Item => My_Float (Capacity_Reqd) * Value_In_Array (1));
exception
when Ada.Containers.Capacity_Error =>
Capacity_Error_Raised := True;
end;
if not Capacity_Error_Raised then
Report.Failed
("Inserting beyond capacity should have failed with Capacity_Error");
end if;
end;
declare
Capacity_Error_Raised : Boolean := False;
begin
declare
begin
Big_Set.Include
(New_Item => My_Float (Capacity_Reqd) * Value_In_Array (1));
exception
when Ada.Containers.Capacity_Error =>
Capacity_Error_Raised := True;
end;
if not Capacity_Error_Raised then
Report.Failed
("Including beyond capacity should have failed with Capacity_Error");
end if;
end;
declare
Capacity_Error_Raised : Boolean := False;
begin
declare
begin
My_Set_3 := My_Bounded_Ordered_Sets.Copy
(Source => My_Set_3 xor Big_Set,
Capacity => Capacity_Reqd);
exception
when Ada.Containers.Capacity_Error =>
Capacity_Error_Raised := True;
end;
if not Capacity_Error_Raised then
Report.Failed ("xor-ing beyond capacity should have failed");
end if;
end;
declare
Inserted : Boolean;
A_Cursor : My_Bounded_Ordered_Sets.Cursor;
begin
declare
begin
Big_Set.Insert
(New_Item => My_Float (2) * Value_In_Array (3), -- A value in the set.
Position => A_Cursor,
Inserted => Inserted);
if Inserted then
Report.Failed
("4 parameter Insert inserted existing element into full Set");
-- else expected.
end if;
exception
when Ada.Containers.Capacity_Error =>
Report.Failed
("4 parameter Insert raised Capacity_Error on full container " &
"with existing element");
end;
declare
begin
Big_Set.Insert
(New_Item => 555.0, -- A value not in the Set.
Position => A_Cursor,
Inserted => Inserted);
if Inserted then
Report.Failed
("4 parameter Insert inserted new element into full Set " &
"without raising Capacity_Error");
else
Report.Failed
("4 parameter Insert did not insert new element");
end if;
exception
when Ada.Containers.Capacity_Error =>
null; -- Expected.
end;
end;
-- Test Key, Element (key form), Replace (key form), Exclude (key form),
-- Delete (key form), Find (key form), Contains (key form) and
-- Update_Element_Preserving_Key
-- My_Set_3 should still contain the test values (in forward order), followed
-- by Default_Value
My_Cursor_3 := My_Set_3.First;
if My_Keys.Key (Position => My_Cursor_3) /= My_Key_Type (Value_In_Array (1))
then
Report.Failed ("Wrong key for cursor");
end if;
if My_Keys.Element
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (1))) /= Value_In_Array (1) then
Report.Failed ("Wrong element for key");
end if;
declare
begin
My_Keys.Replace
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (4)),
New_Item => Value_In_Array (4));
exception
when Constraint_Error =>
Report.Failed
("Replace should not raise Constraint_Error for existing key");
end;
if My_Set_3.Length /= Num_Tests + 1 then
Report.Failed ("Length not as expected after Replace (key form)");
end if;
My_Keys.Exclude
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (4)));
if My_Set_3.Length /= Num_Tests then
Report.Failed ("Length not as expected after Exclude (key form) #1");
end if;
declare
begin
My_Keys.Exclude
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (4)));
exception
when Constraint_Error =>
Report.Failed
("Exclude (key form) should not raise Constraint_Error for absent" &
"key");
end;
if My_Set_3.Length /= Num_Tests then
Report.Failed ("Length not as expected after Exclude (key form) #2");
end if;
My_Keys.Delete
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (3)));
if My_Set_3.Length /= Num_Tests - 1 then
Report.Failed ("Length not as expected after Delete (key form)");
end if;
My_Cursor_3 := My_Keys.Find
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (9)));
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (9) then
Report.Failed ("Found (key form) value not as expected");
end if;
if not My_Keys.Contains
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (2))) then
Report.Failed ("Contains (key form) failed to find");
end if;
if My_Keys.Contains
(Container => My_Set_3,
Key => 0) then
Report.Failed ("Contains (key form) found when shouldn't have");
end if;
-- My_Cursor_3 should still be pointing to Value_In_Array (9)
declare
procedure My_Update (Element : in out My_Float) is
begin
Tampering_Check
(Container => My_Set_3,
Where => "Update_Element");
Element := Element + 0.1; -- Some small amount that doesn't change key
end My_Update;
begin
My_Keys.Update_Element_Preserving_Key
(Container => My_Set_3,
Position => My_Cursor_3,
Process => My_Update'Access);
end;
-- Nasty checking of approximate floating point equality, but if change
-- value by a whole number the key will change
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) <
Value_In_Array (9) or
My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) >
Value_In_Array (9) + 0.2
then
Report.Failed ("Updated element not as expected");
end if;
if not My_Keys.Equivalent_Keys
(Left => My_Keys.Key (Position => My_Cursor_3),
Right => My_Key_Type (Value_In_Array (9))) then
Report.Failed ("Keys not equivalent");
end if;
My_Cursor_3 := My_Keys.Floor
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (8)));
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (8) then
Report.Failed ("Floor (key Form) value not as expected");
end if;
My_Cursor_3 := My_Keys.Ceiling
(Container => My_Set_3,
Key => My_Key_Type (Value_In_Array (10)));
if My_Bounded_Ordered_Sets.Element (Position => My_Cursor_3) /=
Value_In_Array (10) then
Report.Failed ("Ceiling (key Form) value not as expected");
end if;
-- Test Assign and Copy
My_Set_2.Assign (Source => My_Set_1);
if My_Set_2.Length /= Num_Tests then
Report.Failed ("Target set length not as expected after Assign");
end if;
if My_Set_1.Length /= Num_Tests then
Report.Failed ("Source set length not left alone by Assign");
end if;
My_Set_2 := My_Bounded_Ordered_Sets.Copy
(Source => My_Set_1,
Capacity => Capacity_Reqd);
if My_Set_2.Length /= Num_Tests then
Report.Failed ("Result set length not as expected after Copy");
end if;
if My_Set_1.Length /= Num_Tests then
Report.Failed ("Source set length not left alone by Copy");
end if;
Report.Result;
end CXAI015;
|