Files
gnatcoll-bindings/testsuite/support/test_assert.adb
Nicolas Roche e254fb94f1 Ensure testsuite gcov mode works
Change-Id: Icc59d97c8437e1d7df9803243fcfc2993bb21e91
2018-10-12 15:59:25 -04:00

193 lines
6.5 KiB
Ada

------------------------------------------------------------------------------
-- G N A T C O L L --
-- --
-- Copyright (C) 2018, AdaCore --
-- --
-- This library 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 library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
------------------------------------------------------------------------------
with Ada.Exceptions;
with Ada.Strings.Unbounded;
with Ada.Text_IO;
with GNATCOLL.Iconv;
package body Test_Assert is
package IO renames Ada.Text_IO;
package Iconv renames GNATCOLL.Iconv;
------------
-- Assert --
------------
procedure Assert
(Success : Boolean;
Msg : String := "";
Location : String := SI.Source_Location)
is
begin
IO.Put (Location & ": ");
if Success then
IO.Put ("PASSED:");
else
IO.Put ("FAILED:");
Final_Status := 1;
end if;
if Msg'Length > 0 then
IO.Put (" ");
IO.Put (Msg);
end if;
IO.New_Line;
end Assert;
------------
-- Assert --
------------
procedure Assert
(Left, Right : String;
Msg : String := "";
Location : String := SI.Source_Location)
is
Success : constant Boolean := Left = Right;
begin
Assert (Success, Msg, Location);
if not Success then
if Right'Length > 0 then
IO.Put_Line ("expected: " & Right);
else
IO.Put_Line ("expected empty string");
end if;
if Left'Length > 0 then
IO.Put_Line ("got: " & Left);
else
IO.Put_Line ("got empty string");
end if;
end if;
end Assert;
------------
-- Assert --
------------
function Bytes_Image (Input : String) return String;
function Bytes_Image (Input : String) return String
is
Result : Ada.Strings.Unbounded.Unbounded_String;
begin
for C in Input'Range loop
Ada.Strings.Unbounded.Append (Result, Character'Pos (Input (C))'Img);
end loop;
return Ada.Strings.Unbounded.To_String (Result);
end Bytes_Image;
procedure Assert_Iconv
(Input : String;
Expected : String;
From_Code : String;
To_Code : String;
Transliteration : Boolean := False;
Ignore : Boolean := False;
Msg : String := "";
Location : String := SI.Source_Location)
is
begin
declare
Result : constant String := Iconv.Iconv
(Input => Input,
To_Code => To_Code,
From_Code => From_Code,
Transliteration => Transliteration,
Ignore => Ignore);
Success : constant Boolean := Result = Expected;
begin
Assert (Success, Msg, Location);
if not Success then
IO.Put_Line ("iconv(" & Bytes_Image (Input) &
", to_code => " & To_Code &
", from_code => " & From_code &
", transliteration => " & Transliteration'Img &
", ignore => " & Ignore'Img);
IO.Put_Line ("- expect: " & Bytes_Image (Expected));
IO.Put_Line ("- got: " & Bytes_Image (Result));
end if;
end;
exception
when E : others =>
Assert (False, Msg, Location);
IO.Put_Line ("got exception: " & ASCII.LF &
Ada.Exceptions.Exception_Information (E));
end Assert_Iconv;
procedure Assert_Invalid_Sequence
(Input : String;
From_Code : String;
To_Code : String;
Transliteration : Boolean := False;
Ignore : Boolean := False;
Msg : String := "";
Location : String := SI.Source_Location)
is
begin
declare
Result : constant String := Iconv.Iconv
(Input => Input,
To_Code => To_Code,
From_Code => From_Code,
Transliteration => Transliteration,
Ignore => Ignore);
begin
Assert (False, Msg, Location);
IO.Put_Line ("iconv(" & Input &
", to_code => " & To_Code &
", from_code => " & From_code &
", transliteration => " & Transliteration'Img &
", ignore => " & Ignore'Img);
IO.Put_Line ("- expect: Invalid_Sequence_Error ");
IO.Put ("- got: ");
for C in Result'Range loop
IO.Put (Character'Pos (Result (C))'Img);
end loop;
IO.New_Line;
end;
exception
when Iconv.Invalid_Sequence_Error =>
Assert (True, Msg, Location);
when E : others =>
Assert (False, Msg, Location);
IO.Put_Line ("got exception: " & ASCII.LF &
Ada.Exceptions.Exception_Information (E));
end Assert_Invalid_Sequence;
------------
-- Report --
------------
function Report return Natural is
begin
if Final_Status = 0 then
IO.Put_Line ("<=== TEST PASSED ===>");
else
IO.PUT_Line ("<=== TEST FAILED ===>");
end if;
return Final_Status;
end Report;
end Test_Assert;