Package: Ahven.Results

Dependencies

with Ahven.SList;
with Ahven.VStrings;
pragma Elaborate_All (Ahven.SList);
Like the name implies, the Results package is used for storing the test results.

Result_Info holds one invidual result and Result_Collection holds multiple Result_Infos.


Description

Copyright (c) 2007, 2008 Tero Koskinen <tero.koskinen@iki.fi>

Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.


Header

package Ahven.Results is
 

Type Summary

Result_Collection (limited type)
Primitive Operations:  Add_Child, Add_Error, Add_Failure, Add_Pass, Child_Depth, Direct_Test_Count, Error_Count, Failure_Count, First_Child, First_Error, First_Failure, First_Pass, Get_Execution_Time, Get_Parent, Get_Test_Name, Pass_Count, Release, Set_Name, Set_Parent, Test_Count
Result_Collection_Access
Result_Collection_Cursor
Primitive Operations:  Data, First_Child, Is_Valid, Next
Result_Info
Primitive Operations:  Add_Error, Add_Failure, Add_Pass, Data, Get_Execution_Time, Get_Long_Message, Get_Message, Get_Output_File, Get_Routine_Name, Get_Test_Name, Set_Execution_Time, Set_Long_Message, Set_Long_Message, Set_Message, Set_Message, Set_Output_File, Set_Output_File, Set_Routine_Name, Set_Routine_Name, Set_Test_Name, Set_Test_Name
Result_Info_Cursor
Primitive Operations:  Data, First_Error, First_Failure, First_Pass, Is_Valid, Next

Constants and Named Numbers

Empty_Result_Info : constant Result_Info;
Result_Info object which holds no result. It can be used to initialize a new Result_Info object.

Other Items:

use Ahven.VStrings;

type Result_Info is private;

procedure Set_Test_Name (Info : in out Result_Info;
                         Name :        VString);
Set a test name for the result.

procedure Set_Routine_Name (Info : in out Result_Info;
                            Name :        VString);
Set a routine name for the result.

procedure Set_Message (Info : in out Result_Info;
                       Message : VString);
Set a message for the result.

procedure Set_Test_Name (Info : in out Result_Info; Name : String);
A helper function, which calls Set_Test_Name (.. ; VString)

procedure Set_Routine_Name (Info : in out Result_Info; Name : String);
A helper function, which calls Set_Routine_Name (.. ; VString)

procedure Set_Message (Info : in out Result_Info; Message : String);
A helper function, which calls Set_Message (.. ; VString)

procedure Set_Long_Message (Info    : in out Result_Info;
                            Message :        VString);
Set a long message for the result

procedure Set_Long_Message (Info : in out Result_Info; Message : String);
A helper function, which calls Set_Long_Message (.. ; VString)

procedure Set_Execution_Time (Info         : in out Result_Info;
                              Elapsed_Time :        Duration);
Set the execution time of the result info (test).

procedure Set_Output_File (Info     : in out Result_Info;
                           Filename :        VString);
Set the name of the test output file.

procedure Set_Output_File (Info     : in out Result_Info;
                           Filename :        String);
Set the name of the test output file.

function Get_Test_Name (Info : Result_Info) return String;
Return the test name of the result info.

function Get_Routine_Name (Info : Result_Info) return String;
Return the routine name of the result info.

function Get_Message (Info : Result_Info) return String;
Return the message of the result info.

function Get_Long_Message (Info : Result_Info) return String;
Return the long message of the result info.

function Get_Execution_Time (Info : Result_Info) return Duration;
Return the execution time of the result info.

function Get_Output_File (Info : Result_Info) return VString;
Return the name of the output file. Empty string is returned in case there is no output file.

type Result_Collection is limited private;
A collection of Result_Info objects. Contains also child collections.

type Result_Collection_Access is access Result_Collection;

procedure Add_Child (Collection : in out Result_Collection;
                     Child      :        Result_Collection_Access);
Add a child collection to the collection.

procedure Add_Error (Collection : in out Result_Collection;
                     Info       :        Result_Info);
Add a test error to the collection.

procedure Add_Failure (Collection : in out Result_Collection;
                       Info       :        Result_Info);
Add a test failure to the collection.

procedure Add_Pass (Collection : in out Result_Collection;
                    Info       :        Result_Info);
Add a passed test to the collection

procedure Release (Collection : in out Result_Collection);
Release resourced held by the collection. Frees also all children added via Add_Child.

procedure Set_Name (Collection : in out Result_Collection;
                    Name       :        VString);
Set a test name for the collection.

procedure Set_Parent (Collection : in out Result_Collection;
                      Parent     :        Result_Collection_Access);
Set a parent collection to the collection.

function Test_Count (Collection : Result_Collection) return Natural;
Return the amount of tests in the collection. Tests in child collections are included.

function Direct_Test_Count (Collection : Result_Collection) return Natural;
Return the amount of tests in the collection. The tests in the child collections are NOT included.

function Pass_Count (Collection : Result_Collection) return Natural;
Return the amount of passed tests in the collection. Tests in child collections are included.

function Error_Count (Collection : Result_Collection) return Natural;
Return the amount of test errors in the collection. Tests in child collections are included.

function Failure_Count (Collection : Result_Collection) return Natural;
Return the amount of test errors in the collection. Tests in child collections are included.

function Get_Test_Name (Collection : Result_Collection)
  return VString;
Return the name of the collection's test.

function Get_Parent (Collection : Result_Collection)
  return Result_Collection_Access;
Return the parent of the collection.

function Get_Execution_Time (Collection : Result_Collection)
  return Duration;
Return the execution time of the whole collection.

type Result_Info_Cursor is private;
A cursor type for Pass, Failure and Error results.

function First_Pass (Collection : Result_Collection)
  return Result_Info_Cursor;
Get the first pass from the collection.

function First_Failure (Collection : Result_Collection)
  return Result_Info_Cursor;
Get the first failure from the collection.

function First_Error (Collection : Result_Collection)
  return Result_Info_Cursor;
Get the first error from the collection.

function Next (Position: Result_Info_Cursor) return Result_Info_Cursor;
Get the next pass/failure/error.

function Data (Position: Result_Info_Cursor) return Result_Info;
Get the data behind the cursor.

function Is_Valid (Position: Result_Info_Cursor) return Boolean;
Is the cursor still valid?

type Result_Collection_Cursor is private;
Cursor for iterating over a set of Result_Collection access objects.

function First_Child (Collection : in Result_Collection)
  return Result_Collection_Cursor;
Get the first child of the collection.

function Next (Position: Result_Collection_Cursor)
  return Result_Collection_Cursor;
Get the next child.

function Is_Valid (Position: Result_Collection_Cursor) return Boolean;
Is the cursor still valid?

function Data (Position: Result_Collection_Cursor)
  return Result_Collection_Access;
Get the data (Result_Collection_Access) behind the cursor.

function Child_Depth (Collection : Result_Collection) return Natural;
Return the maximum depth of children. (a child of a child, etc.)

Examples: Child_Depth is 0 for a collection without children. Collection with a child containing another child has a depth of 2.


private

   --  Implementation-defined ...
end Ahven.Results;