stephes_ada_library_3.7.3_08b48307/test/test-config_files-extra_key.adb

  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
--  Abstract :
--
--  See spec
--
--  Copyright (C) 2004 - 2006, 2008, 2009, 2015, 2018 Stephen Leake.  All Rights Reserved.
--
--  This program is free software; you can redistribute it and/or
--  modify it under terms of the GNU General Public License as
--  published by the Free Software Foundation; either version 3, or (at
--  your option) any later version. This program is distributed in the
--  hope that it will be useful, but WITHOUT ANY WARRANTY; without even
--  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
--  PURPOSE. See the GNU General Public License for more details. You
--  should have received a copy of the GNU General Public License
--  distributed with this program; see file COPYING. If not, write to
--  the Free Software Foundation, 59 Temple Place - Suite 330, Boston,
--  MA 02111-1307, USA.

pragma License (GPL);

with AUnit.Assertions;
with Ada.Exceptions;
with Ada.Text_IO;
with Interfaces;
with AUnit.Checks;
with SAL.Config_Files.Boolean;
with SAL.Config_Files.Duration;
with SAL.Config_Files.Integer;
with SAL.Config_Files; use SAL.Config_Files;
package body Test.Config_Files.Extra_Key is

   function Read is new Read_Modular (Interfaces.Unsigned_8);
   function Read is new Read_Iterator_Modular (Interfaces.Unsigned_8);

   function Read is new Read_Float (Float);
   function Read is new Read_Iterator_Float (Float);

   Config    : Configuration_Type;
   Iterator  : Iterator_Type;
   File_Name : constant String := "test-config_files-extra_key.config";

   ----------
   --  Local subprograms

   procedure Test_String (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);
      use AUnit.Assertions;

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         --  Check sibling/child traversal in Check_Unread_Key; only
         --  need to do this for one value type.
         Put_Line (File, "Card.1.Slot = 9");
         Put_Line (File, "Card.1.Channels.5 = RWA_Tor_Cmd");
         Put_Line (File, "Card.1.Channel.1 = GCE_Floating_Ground");
         Close (File);
      end Create_Config;

   begin
      Create_Config;

      Open (Config, File_Name);
      declare
         Temp_1 : constant String := SAL.Config_Files.Read (Config, "Card.1.Slot");
         Temp_2 : constant String := SAL.Config_Files.Read (Config, "Card.1.Channel.1");
         pragma Unreferenced (Temp_1);
         pragma Unreferenced (Temp_2);
      begin
         Close (Config, Unread_Key => Raise_Exception);
         Assert (False, "no exception");
      exception
      when E : SAL.Config_File_Error =>
         AUnit.Checks.Check ("", Ada.Exceptions.Exception_Message (E), File_Name & ":2:15: unread key");
      end;

      --  This time, verify that Is_Present sets the 'read' flag.
      Open (Config, File_Name);
      declare
         Temp_1 : constant Boolean := SAL.Config_Files.Is_Present (Config, "Card.1.Slot");
         Temp_2 : constant Boolean := SAL.Config_Files.Is_Present (Config, "Card.1.Channels.5");
         Temp_3 : constant Boolean := SAL.Config_Files.Is_Present (Config, "Card.1.Channel.1");
         pragma Unreferenced (Temp_1);
         pragma Unreferenced (Temp_2);
         pragma Unreferenced (Temp_3);
      begin
         null;
      end;
      Close (Config, Unread_Key => Raise_Exception);
   end Test_String;

   procedure Test_Enum (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);
      use AUnit.Assertions;

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Enum = True");
         Close (File);
      end Create_Config;

      Temp : Boolean;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      begin
         Close (Config, Unread_Key => Raise_Exception);
         Assert (False, "no exception");
      exception
      when E : SAL.Config_File_Error =>
         AUnit.Checks.Check ("", Ada.Exceptions.Exception_Message (E), File_Name & ":1:7: unread key");
      end;

      Open (Config, File_Name);
      Temp := SAL.Config_Files.Boolean.Read (Config, "Enum");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Enum;

   procedure Test_Integer (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);
      use AUnit.Assertions;

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Integer = 1");
         Close (File);
      end Create_Config;

      Temp : Integer;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      begin
         Close (Config, Unread_Key => Raise_Exception);
         Assert (False, "no exception");
      exception
      when E : SAL.Config_File_Error =>
         AUnit.Checks.Check ("", Ada.Exceptions.Exception_Message (E), File_Name & ":1:10: unread key");
      end;

      Open (Config, File_Name);
      Temp := SAL.Config_Files.Integer.Read (Config, "Integer");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Integer;

   procedure Test_Modular (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);
      use AUnit.Assertions;

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Modular = 10");
         Close (File);
      end Create_Config;

      Temp : Interfaces.Unsigned_8;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      begin
         Close (Config, Unread_Key => Raise_Exception);
         Assert (False, "no exception");
      exception
      when E : SAL.Config_File_Error =>
         AUnit.Checks.Check ("", Ada.Exceptions.Exception_Message (E), File_Name & ":1:10: unread key");
      end;

      Open (Config, File_Name);
      Temp := Read (Config, "Modular");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Modular;

   procedure Test_Float (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);
      use AUnit.Assertions;

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Float = 1.0");
         Close (File);
      end Create_Config;

      Temp : Float;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      begin
         Close (Config, Unread_Key => Raise_Exception);
         Assert (False, "no exception");
      exception
      when E : SAL.Config_File_Error =>
         AUnit.Checks.Check ("", Ada.Exceptions.Exception_Message (E), File_Name & ":1:8: unread key");
      end;

      Open (Config, File_Name);
      Temp := Read (Config, "Float");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Float;

   procedure Test_Fixed (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);
      use AUnit.Assertions;

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Fixed = 1");
         Close (File);
      end Create_Config;

      Temp : Duration;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      begin
         Close (Config, Unread_Key => Raise_Exception);
         Assert (False, "no exception");
      exception
      when E : SAL.Config_File_Error =>
         AUnit.Checks.Check ("", Ada.Exceptions.Exception_Message (E), File_Name & ":1:8: unread key");
      end;

      Open (Config, File_Name);
      Temp := SAL.Config_Files.Duration.Read (Config, "Fixed");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Fixed;

   ----------
   --  Iterators

   procedure Test_Iterator_String (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Iterator.String = foo");
         Close (File);
      end Create_Config;

   begin
      Create_Config;

      Open (Config, File_Name);
      Iterator := First (Config, "Iterator");
      declare
         Temp : constant String := SAL.Config_Files.Read_Value (Config, Iterator);
         pragma Unreferenced (Temp);
      begin
         null;
      end;
      Close (Config, Unread_Key => Raise_Exception);

      Open (Config, File_Name);
      Iterator := First (Config);
      declare
         Temp : constant String := SAL.Config_Files.Read (Config, Iterator, "String");
         pragma Unreferenced (Temp);
      begin
         null;
      end;
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Iterator_String;

   procedure Test_Iterator_Enum (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Iterator.Enum = True");
         Close (File);
      end Create_Config;

      Temp : Boolean;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      Iterator := First (Config);
      Temp := SAL.Config_Files.Boolean.Read (Config, Iterator, "Enum");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Iterator_Enum;

   procedure Test_Iterator_Integer (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Iterator.Integer = 1");
         Close (File);
      end Create_Config;

      Temp : Integer;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      Iterator := First (Config);
      Temp := SAL.Config_Files.Integer.Read (Config, Iterator, "Integer");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Iterator_Integer;

   procedure Test_Iterator_Modular (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Iterator.Modular = 10");
         Close (File);
      end Create_Config;

      Temp : Interfaces.Unsigned_8;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      Iterator := First (Config);
      Temp := Read (Config, Iterator, "Modular");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Iterator_Modular;

   procedure Test_Iterator_Float (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Iterator.Float = 1.0");
         Close (File);
      end Create_Config;

      Temp : Float;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      Iterator := First (Config);
      Temp := Read (Config, Iterator, "Float");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Iterator_Float;

   procedure Test_Iterator_Fixed (T : in out AUnit.Test_Cases.Test_Case'Class)
   is
      pragma Unreferenced (T);

      procedure Create_Config
      is
         use Ada.Text_IO;
         File : File_Type;
      begin
         Delete_File (File_Name);

         Create (File, Out_File, File_Name);
         Put_Line (File, "Iterator.Fixed = 1");
         Close (File);
      end Create_Config;

      Temp : Duration;
      pragma Unreferenced (Temp);
   begin
      Create_Config;

      Open (Config, File_Name);
      Iterator := First (Config);
      Temp := SAL.Config_Files.Duration.Read (Config, Iterator, "Fixed");
      Close (Config, Unread_Key => Raise_Exception);
   end Test_Iterator_Fixed;

   ----------
   --  Public subprograms

   overriding procedure Register_Tests (T : in out Test_Case)
   is
      use AUnit.Test_Cases.Registration;
   begin
      Register_Routine (T, Test_String'Access, "Test_String");
      Register_Routine (T, Test_Enum'Access, "Test_Enum");
      Register_Routine (T, Test_Integer'Access, "Test_Integer");
      Register_Routine (T, Test_Modular'Access, "Test_Modular");
      Register_Routine (T, Test_Float'Access, "Test_Float");
      Register_Routine (T, Test_Fixed'Access, "Test_Fixed");

      Register_Routine (T, Test_Iterator_String'Access, "Test_Iterator_String");
      Register_Routine (T, Test_Iterator_Enum'Access, "Test_Iterator_Enum");
      Register_Routine (T, Test_Iterator_Integer'Access, "Test_Iterator_Integer");
      Register_Routine (T, Test_Iterator_Modular'Access, "Test_Iterator_Modular");
      Register_Routine (T, Test_Iterator_Float'Access, "Test_Iterator_Float");
      Register_Routine (T, Test_Iterator_Fixed'Access, "Test_Iterator_Fixed");
   end Register_Tests;

   overriding function Name (T : Test_Case) return AUnit.Message_String
   is
      pragma Unreferenced (T);
   begin
      return new String'("Test.Config_Files.Extra_Key");
   end Name;

end Test.Config_Files.Extra_Key;