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
|
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
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
-- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF --
-- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. --
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Natools.S_Expressions.Test_Tools provides tools used in S-expression --
-- test suites. --
-- Memory_Stream is a stream implementation around a memory buffer where --
-- written data can be subsequently read. A secondary buffer of expected --
-- data can be optionally used, and the mismatch marker is set when written --
-- data does not match expected data. --
------------------------------------------------------------------------------
with Ada.Streams;
with Natools.Tests;
with Natools.S_Expressions.Atom_Buffers;
package Natools.S_Expressions.Test_Tools is
pragma Preelaborate (Test_Tools);
package NT renames Natools.Tests;
procedure Dump_Atom
(Report : in out NT.Reporter'Class;
Data : in Atom;
Label : in String := "");
-- Dump contents on Data as info in Report
procedure Test_Atom
(Report : in out NT.Reporter'Class;
Test_Name : in String;
Expected : in Atom;
Found : in Atom);
-- Report success when Found is equal to Expected, and failure
-- with diagnostics otherwise.
type Memory_Stream is new Ada.Streams.Root_Stream_Type with private;
overriding procedure Read
(Stream : in out Memory_Stream;
Item : out Ada.Streams.Stream_Element_Array;
Last : out Ada.Streams.Stream_Element_Offset);
-- Consume data from the beginning of internal buffer
overriding procedure Write
(Stream : in out Memory_Stream;
Item : in Ada.Streams.Stream_Element_Array);
-- Append data at the end of internal buffer
function Get_Data (Stream : Memory_Stream) return Atom;
-- Return internal buffer
function Unread_Data (Stream : Memory_Stream) return Atom;
-- Return part of internal buffer that has not yet been read
procedure Set_Data
(Stream : in out Memory_Stream;
Data : in Atom);
-- Replace whole internal buffer with Data
function Unread_Expected (Stream : Memory_Stream) return Atom;
-- Return part of expected buffer that has not been matched yet
procedure Set_Expected
(Stream : in out Memory_Stream;
Data : in Atom;
Reset_Mismatch : in Boolean := True);
-- Replace buffer of expected data
function Has_Mismatch (Stream : Memory_Stream) return Boolean;
procedure Reset_Mismatch (Stream : in out Memory_Stream);
-- Accessor and mutator of the mismatch flag
function Mismatch_Index (Stream : Memory_Stream) return Count;
-- Return the position of the first mismatching octet,
-- or 0 when there has been no mismatch.
private
type Memory_Stream is new Ada.Streams.Root_Stream_Type with record
Internal : Atom_Buffers.Atom_Buffer;
Expected : Atom_Buffers.Atom_Buffer;
Read_Pointer : Count := 0;
Expect_Pointer : Count := 0;
Mismatch : Boolean := False;
end record;
end Natools.S_Expressions.Test_Tools;
|