aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/ada/acats/tests/cxa/cxa4007.a
blob: fca15d367b547d7cacfcb66664efa7d3816704f8 (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
-- CXA4007.A
--
--                             Grant of Unlimited Rights
--
--     Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
--     F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained 
--     unlimited rights in the software and documentation contained herein.
--     Unlimited rights are defined in DFAR 252.227-7013(a)(19).  By making 
--     this public release, the Government intends to confer upon all 
--     recipients unlimited rights  equal to those held by the Government.  
--     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 GOVERNMENT 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.
--*
--
-- OBJECTIVE:
--      Check that the subprograms defined in package Ada.Strings.Bounded are
--      available, and that they produce correct results. Specifically, check 
--      the subprograms Append, Count, Element, Find_Token, Head, 
--      Index_Non_Blank, Replace_Element, Replicate, Tail, To_Bounded_String, 
--      "&", ">", "<", ">=", "<=", and "*".
--      
-- TEST DESCRIPTION:
--      This test, when taken in conjunction with tests CXA400[6,8,9], will 
--      constitute a test of all the functionality contained in package
--      Ada.Strings.Bounded.  This test uses a variety of the
--      subprograms defined in the bounded string package in ways typical
--      of common usage.  Different combinations of available subprograms
--      are used to accomplish similar bounded string processing goals.
--      
--       
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      22 Dec 94   SAIC    Changed obsolete constant to Ada.Strings.Space.
--
--!

with Ada.Strings;
with Ada.Strings.Bounded;
with Ada.Strings.Maps;
with Report;

procedure CXA4007 is

begin

   Report.Test ("CXA4007", "Check that the subprograms defined in package " &
                           "Ada.Strings.Bounded are available, and that "   &
                           "they produce correct results");

   Test_Block:
   declare

      package BS80 is new Ada.Strings.Bounded.Generic_Bounded_Length(80);
      use type BS80.Bounded_String;

      Part1 : constant String     := "Rum";
      Part2 : Character           := 'p';
      Part3 : BS80.Bounded_String := BS80.To_Bounded_String("el");
      Part4 : Character           := 's';
      Part5 : BS80.Bounded_String := BS80.To_Bounded_String("tilt");
      Part6 : String(1..3)        := "ski";

      Full_Catenate_String,
      Full_Append_String,  
      Constructed_String,   
      Drop_String,
      Replicated_String,     
      Token_String         : BS80.Bounded_String;

      CharA : Character := 'A';          
      CharB : Character := 'B';
      CharC : Character := 'C';   
      CharD : Character := 'D';
      CharE : Character := 'E';
      CharF : Character := 'F';

      ABStr : String(1..15) := "AAAAABBBBBBBBBB";
      StrB  : String(1..2)  := "BB";
      StrE  : String(1..2)  := "EE";


   begin

      -- Evaluation of the overloaded forms of the "&" operator defined
      -- for instantiations of Bounded Strings.

      Full_Catenate_String := 
        BS80."&"(Part2,                            -- Char & Bnd Str
                 BS80."&"(Part3,                   -- Bnd Str & Bnd Str
                          BS80."&"(Part4,          -- Char & Bnd Str
                                   BS80."&"(Part5, -- Bnd Str & Bnd Str
                                           BS80.To_Bounded_String(Part6)))));  
                                                 
      Full_Catenate_String := 
        Part1 &  Full_Catenate_String;             -- Str & Bnd Str
      Full_Catenate_String := 
        Full_Catenate_String & 'n';                -- Bnd Str & Char


      -- Evaluation of the overloaded forms of function Append.

      Full_Append_String := 
        BS80.Append(Part2,                                      -- Char,Bnd
               BS80.Append(Part3,                               -- Bnd, Bnd
                      BS80.Append(Part4,                        -- Char,Bnd
                             BS80.Append(BS80.To_String(Part5), -- Str,Bnd
                                         BS80.To_Bounded_String(Part6)))));

      Full_Append_String := 
        BS80.Append(BS80.To_Bounded_String(Part1),            -- Bnd , Str
                    BS80.To_String(Full_Append_String));

      Full_Append_String := 
        BS80.Append(Left  => Full_Append_String, 
                    Right => 'n');                            -- Bnd, Char


      -- Validate the resulting bounded strings.

      if Full_Catenate_String < Full_Append_String or
         Full_Catenate_String > Full_Append_String or
         not (Full_Catenate_String  = Full_Append_String and
              Full_Catenate_String <= Full_Append_String and
              Full_Catenate_String >= Full_Append_String)
      then
         Report.Failed("Incorrect results from bounded string catenation" &
                       " and comparison");
      end if;


      -- Evaluate the overloaded forms of the Constructor function "*" and 
      -- the Replicate function.

      Constructed_String := 
        (2 * CharA) &                           -- "AA"
        (2 * StrB)  &                           -- "AABBBB"
        (3 * BS80."*"(2, CharC)) &              -- "AABBBBCCCCCC"
        BS80.Replicate(3, 
                   BS80.Replicate(2, CharD)) &  -- "AABBBBCCCCCCDDDDDD"
        BS80.Replicate(2, StrE) &               -- "AABBBBCCCCCCDDDDDDEEEE"
        BS80.Replicate(2, CharF);               -- "AABBBBCCCCCCDDDDDDEEEEFF"


      -- Use of Function Replicate that involves dropping characters.  The
      -- attempt to replicate the 15 character string six times will exceed
      -- the 80 character bound of the string.  Therefore, the result should
      -- be the catenation of 5 copies of the 15 character string, followed
      -- by 5 'A' characters (the first five characters of the 6th
      -- replication) with the remaining characters of the 6th replication 
      -- dropped.

      Drop_String := 
         BS80.Replicate(Count => 6,                   
                        Item  => ABStr,              -- "AAAAABBBBBBBBBB"
                        Drop  => Ada.Strings.Right); 

      if BS80.Element(Drop_String, 1)  /= 'A' or
         BS80.Element(Drop_String, 6)  /= 'B' or
         BS80.Element(Drop_String, 76) /= 'A' or
         BS80.Element(Drop_String, 80) /= 'A' 
      then
         Report.Failed("Incorrect result from Replicate with Drop");
      end if;


      -- Use function Index_Non_Blank in the evaluation of the
      -- Constructed_String.

      if BS80.Index_Non_Blank(Constructed_String, Ada.Strings.Forward)  /=
         BS80.To_String(Constructed_String)'First                         or
         BS80.Index_Non_Blank(Constructed_String, Ada.Strings.Backward) /=
         BS80.Length(Constructed_String)
      then
         Report.Failed("Incorrect results from constructor functions");
      end if;



      declare

         -- Define character set objects for use with the Count function.
         -- Constructed_String = "AABBBBCCCCCCDDDDDDEEEEFF" from above.

         A_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,1));
         B_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,3));
         C_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,7));
         D_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,13));
         E_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,19));
         F_Set : Ada.Strings.Maps.Character_Set :=
                 Ada.Strings.Maps.To_Set(BS80.Element(Constructed_String,23));


         Start : Positive;
         Stop  : Natural  := 0;

      begin

         -- Evaluate the results from function Count by comparing the number
         -- of A's to the number of F's, B's to E's, and C's to D's in the
         -- Constructed_String.  
         -- There should be an equal number of each of the characters that 
         -- are being compared (i.e., 2 A's and F's, 4 B's and E's, etc)

         if BS80.Count(Constructed_String, A_Set)      /= 
            BS80.Count(Constructed_String, F_Set)        or
            BS80.Count(Constructed_String, B_Set)      /= 
            BS80.Count(Constructed_String, E_Set)        or
            not (BS80.Count(Constructed_String, C_Set)  =  
                 BS80.Count(Constructed_String, D_Set))  
         then
            Report.Failed("Incorrect result from function Count");
         end if;


         -- Evaluate the functions Head, Tail, and Find_Token.
         -- Create the Token_String from the Constructed_String above.

         Token_String := 
           BS80.Tail(BS80.Head(Constructed_String,  3), 2) &     -- "AB" &
           BS80.Head(BS80.Tail(Constructed_String, 13), 2) &     -- "CD" &
           BS80.Head(BS80.Tail(Constructed_String,  3), 2);      -- "EF"

         if Token_String /= BS80.To_Bounded_String("ABCDEF") then
            Report.Failed("Incorrect result from Catenation of Token_String");
         end if;


         -- Find the starting/ending position of the first A in the 
         -- Token_String (both should be 1, only one A appears in string).
         -- The Function Head uses the default pad character to return a
         -- bounded string longer than its input parameter bounded string.

         BS80.Find_Token(BS80.Head(Token_String, 10),  -- Default pad.
                         A_Set,
                         Ada.Strings.Inside,
                         Start,
                         Stop);

         if Start /= 1 and Stop /= 1 then
            Report.Failed("Incorrect result from Find_Token - 1");
         end if;


         -- Find the starting/ending position of the first non-AB slice in
         -- the "head" five characters of Token_String (slice CDE at 
         -- positions 3-5)

         BS80.Find_Token(BS80.Head(Token_String, 5),            -- "ABCDE"
                         Ada.Strings.Maps."OR"(A_Set, B_Set),   -- Set (AB)
                         Ada.Strings.Outside,
                         Start,
                         Stop);

         if Start /= 3 and Stop /= 5 then
            Report.Failed("Incorrect result from Find_Token - 2");
         end if;


         -- Find the starting/ending position of the first CD slice in
         -- the "tail" eight characters (including two pad characters) 
         -- of Token_String (slice CD at positions 5-6 of the tail 
         -- portion specified)

         BS80.Find_Token(BS80.Tail(Token_String, 8, 
                                   Ada.Strings.Space),         -- "  ABCDEF"
                         Ada.Strings.Maps."OR"(C_Set, D_Set),  -- Set (CD)
                         Ada.Strings.Inside,
                         Start,
                         Stop);

         if Start /= 5 and Stop /= 6 then
            Report.Failed("Incorrect result from Find_Token - 3");
         end if;


         -- Evaluate the Replace_Element procedure.

         -- Token_String = "ABCDEF"

         BS80.Replace_Element(Token_String, 3, BS80.Element(Token_String,4));

         -- Token_String = "ABDDEF"

         BS80.Replace_Element(Source => Token_String,
                              Index  => 2,
                              By     => BS80.Element(Token_String, 5));

         -- Token_String = "AEDDEF"

         BS80.Replace_Element(Token_String, 
                              1, 
                              BS80.Element(BS80.Tail(Token_String, 2), 2));

         -- Token_String = "FEDDEF"
         -- Evaluate this result.

         if BS80.Element(Token_String, BS80.To_String(Token_String)'First) /=
            BS80.Element(Token_String, BS80.To_String(Token_String)'Last)  or
            BS80.Count(Token_String, D_Set)                                /=
            BS80.Count(Token_String, E_Set)                                or
            BS80.Index_Non_Blank(BS80.Head(Token_String,6))                /=
            BS80.Index_Non_Blank(BS80.Tail(Token_String,6))                or
            BS80.Head(Token_String, 1)                                     /=
            BS80.Tail(Token_String, 1)
         then
            Report.Failed("Incorrect result from operations in combination");
         end if;

      end;

   exception
      when others => Report.Failed ("Exception raised in Test_Block");
   end Test_Block;


   Report.Result;

end CXA4007;