summaryrefslogtreecommitdiff
path: root/gcc/testsuite/ada/acats/tests/c3/c390a011.am
blob: b5234e91323c9d68231829c41c33e2513fc0b534 (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
-- C390A011.AM
--
--                             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 a nonprivate tagged type declared in a package specification
--      may be extended with a record extension in a different package
--      specification, and that this record extension may in turn be extended
--      by a record extension.
--
--      Check that each derivative inherits the user-defined primitive
--      subprograms of its parent (including those that its parent inherited),
--      that it may override these inherited primitive subprograms, and that it
--      may also declare its own primitive subprograms.
--
--      Check that predefined equality operators are defined for the tagged
--      type and its derivatives.
--
--      Check that type conversion is defined from a type extension to its
--      parent, and that this parent itself may be a type extension.
--
-- TEST DESCRIPTION:
--      Declare a root tagged type and two associated primitive subprograms
--      in a package specification (foundation code).
-- 
--      Extend the root type with a record extension in a different package
--      specification. Declare a new primitive subprogram for the extension,
--      and override one of the two inherited subprograms. Within the
--      overriding subprogram, utilize type conversion to call the parent's
--      implementation of the same subprogram. Also within the overriding
--      subprogram, call the new primitive subprogram and each inherited
--      subprogram.
--      
--      Extend the extension with a record extension in the same package
--      specification. Declare a new primitive subprogram for this second
--      extension, and override one of the three inherited subprograms.
--      Within the overriding subprogram, utilize type conversion to call the
--      parent's implementation of the same subprogram. Also within the
--      overriding subprogram, call the new primitive subprogram and each
--      inherited subprogram.
-- 
--      In the main program, declare objects of the root tagged type
--      and the two type extensions. For each object, call the overriding
--      subprogram, and verify the correctness of the components by using
--      aggregates and equality operators, or by checking the components
--      directly.
-- 
-- TEST FILES:
--      This test consists of the following files:
--
--         F390A00.A
--         C390A010.A
--      => C390A011.AM
--
--
-- CHANGE HISTORY:
--      06 Dec 94   SAIC    ACVC 2.0
--      04 Jun 96   SAIC    ACVC 2.1: Modified prologue.
--
--!

with Report;

with F390A00;   -- Basic alert abstraction.
with C390A010;  -- Extended alert abstraction.

use  F390A00;   -- Primitive operations of Alert_Type directly visible.

with Ada.Calendar;

procedure C390A011 is
   use type Ada.Calendar.Time;  -- Equality/inequality ops directly visible.
begin

   Report.Test ("C390A01", "Primitive operation inheritance by type " &
                "extensions: all extensions declared in same package, " &
                "but a different package from that of root type");


   ALERT_SUBTEST: -------------------------------------------------------------

      declare
         Alarm : F390A00.Alert_Type;  -- Root tagged type.
      begin

         -- Check "/=" operator availability. Aggregate with positional
         -- associations:
         if Alarm /= (Default_Time, Null_Device) then
            Report.Failed ("Wrong initial values for Alert_Type");
         end if;

         Handle (Alarm);

         -- Check "=" operator availability. Aggregate with named
         -- associations:
         if not (Alarm = (Arrival_Time => Alert_Time,
                          Display_On   => Null_Device))
         then
            Report.Failed ("Wrong values for Alert_Type after Handle");
         end if;

      end Alert_Subtest;


   -- Check intermediate display counts:

   if F390A00.Display_Count_For (Null_Device) /= 1 or
      F390A00.Display_Count_For (Teletype)    /= 0 or
      F390A00.Display_Count_For (Console)     /= 0 or
      F390A00.Display_Count_For (Big_Screen)  /= 0
   then
      Report.Failed ("Wrong display counts after Alert_Type");
   end if;


   LOW_ALERT_SUBTEST: ---------------------------------------------------------

      declare
         Low_Alarm : C390A010.Low_Alert_Type;  -- Extension of tagged type.
         use C390A010; -- Primitive operations of extension directly visible.
      begin

         -- Check "=" operator availability. Aggregate with positional
         -- associations:
         if not (Low_Alarm = (Default_Time, Null_Device, 0)) then
            Report.Failed ("Wrong initial values for Low_Alert_Type");
         end if;

         Handle (Low_Alarm);

         -- Check component availability:
         if Low_Alarm.Arrival_Time /= Alert_Time or
            Low_Alarm.Display_On   /= Teletype   or
            Low_Alarm.Level        /= 1
         then
            Report.Failed ("Wrong values for Low_Alert_Type after Handle");
         end if;

      end Low_Alert_Subtest;


   -- Check intermediate display counts:

   if F390A00.Display_Count_For /= (Null_Device => 2,
                                    Teletype    => 1,
                                    Console     => 0,
                                    Big_Screen  => 0)
   then
      Report.Failed ("Wrong display counts after Low_Alert_Type");
   end if;


   MEDIUM_ALERT_SUBTEST: ------------------------------------------------------

      declare
         Medium_Alarm : C390A010.Medium_Alert_Type; -- Extension of extension.
         use C390A010; -- Primitive operations of extension directly visible.
      begin

         -- Check component availability:
         if Medium_Alarm.Level          /= 0            or
            Medium_Alarm.Arrival_Time   /= Default_Time or
            Medium_Alarm.Action_Officer /= Nobody       or
            Medium_Alarm.Display_On     /= Null_Device
         then
            Report.Failed ("Wrong initial values for Medium_Alert_Type");
         end if;

         Handle (Medium_Alarm);

         -- Check "/=" operator availability. Aggregate with named
         -- associations:
         if Medium_Alarm /= (Arrival_Time   => Alert_Time,
                             Display_On     => Console,
                             Level          => 2,
                             Action_Officer => Duty_Officer)
         then
            Report.Failed ("Wrong values for Medium_Alert_Type after Handle");
         end if;

      end Medium_Alert_Subtest;


   -- Check final display counts:

   if F390A00.Display_Count_For /= (Null_Device => 3,
                                    Teletype    => 2,
                                    Console     => 1,
                                    Big_Screen  => 0)
   then
      Report.Failed ("Wrong display counts after Medium_Alert_Type");
   end if;


   Report.Result;

end C390A011;