Overview
Comment: | s_expressions-printers-pretty-tests: first draft of a test suite for S-expression pretty printer |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e8c225e03c8dd284a0eb96de965c712b |
User & Date: | nat on 2014-01-27 20:04:55 |
Other Links: | manifest | tags |
Context
2014-01-28
| ||
19:40 | s_expressions-printers-pretty-tests: add test for output width in hexadecimal and base-64 atom encodings check-in: ed46bbdd62 user: nat tags: trunk | |
2014-01-27
| ||
20:04 | s_expressions-printers-pretty-tests: first draft of a test suite for S-expression pretty printer check-in: e8c225e03c user: nat tags: trunk | |
2014-01-26
| ||
13:26 | s_expressions-printers-pretty: new package providing a S-expression pretty printer check-in: 803c3f82a0 user: nat tags: trunk | |
Changes
Added tests/natools-s_expressions-printers-pretty-tests.adb version [8abc99d280].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- 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. -- ------------------------------------------------------------------------------ with Ada.Characters.Latin_1; with Natools.S_Expressions.Encodings; with Natools.S_Expressions.Parsers; with Natools.S_Expressions.Test_Tools; package body Natools.S_Expressions.Printers.Pretty.Tests is package Latin_1 renames Ada.Characters.Latin_1; procedure Check_Stream (Test : in out NT.Test; Stream : in Test_Tools.Memory_Stream); -- On error in Stream, report error and dump relevant information. procedure Parse_Print_Test (Test : in out NT.Test; Param : in Parameters; Expected : in Atom); -- Parse Expected and feed it into a new pretty printer, checking -- the result is identical to Expected. ------------------------------ -- Local Helper Subprograms -- ------------------------------ procedure Check_Stream (Test : in out NT.Test; Stream : in Test_Tools.Memory_Stream) is begin if Stream.Has_Mismatch or else Stream.Unread_Expected /= Null_Atom then if Stream.Has_Mismatch then Test.Fail ("Mismatch at position" & Count'Image (Stream.Mismatch_Index)); declare Stream_Data : Atom renames Stream.Get_Data; begin Test_Tools.Dump_Atom (Test, Stream_Data (Stream_Data'First .. Stream.Mismatch_Index - 1), "Matching data"); Test_Tools.Dump_Atom (Test, Stream_Data (Stream.Mismatch_Index .. Stream_Data'Last), "Mismatching data"); end; end if; if Stream.Unread_Expected /= Null_Atom then Test.Fail; Test_Tools.Dump_Atom (Test, Stream.Unread_Expected, "Left to expect"); end if; end if; end Check_Stream; procedure Parse_Print_Test (Test : in out NT.Test; Param : in Parameters; Expected : in Atom) is begin declare Input, Output : aliased Test_Tools.Memory_Stream; Parser : aliased Parsers.Parser; Subparser : Parsers.Subparser (Parser'Access, Input'Access); Pretty_Printer : Printer (Output'Access); Event : Events.Event; begin Input.Set_Data (Expected); Output.Set_Expected (Expected); Pretty_Printer.Set_Parameters (Param); Subparser.Next (Event); Transfer (Subparser, Pretty_Printer); Check_Stream (Test, Output); end; exception when Error : others => Test.Report_Exception (Error); end Parse_Print_Test; ------------------------- -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Basic_Printing (Report); Atom_Encodings (Report); Separators (Report); end All_Tests; ----------------------- -- Inidividual Tests -- ----------------------- procedure Atom_Encodings (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Atom encodings"); Param : Parameters := Canonical; begin Parse_Print_Test (Test, Param, To_Atom ("17:verbatim" & Latin_1.NUL & "encoding")); Param.Fallback := Hexadecimal; Parse_Print_Test (Test, Param, To_Atom ("#48657861646563696D616C03456E636F64696E670A#")); Param.Hex_Casing := Encodings.Lower; Parse_Print_Test (Test, Param, To_Atom ("#4c6f7765722043617365204865786164" & "6563696d616c03456e636f64696e670a#")); Param.Fallback := Base64; Parse_Print_Test (Test, Param, To_Atom ("|QmFzZS02NAllbmNvZGluZwo=|")); Param.Quoted := Single_Line; Parse_Print_Test (Test, Param, To_Atom ("""quoted\r\nstring\tencoding""")); Param.Token := Standard_Token; Parse_Print_Test (Test, Param, To_Atom ("(standard token ""123""encoding)")); Param.Token := Extended_Token; Parse_Print_Test (Test, Param, To_Atom ("(extended token 123 encoding)")); exception when Error : others => Test.Report_Exception (Error); end Atom_Encodings; procedure Basic_Printing (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Basic printing"); begin declare Output : aliased Test_Tools.Memory_Stream; P : Printer (Output'Access); begin Output.Set_Expected (To_Atom ("(7:command(6:subarg)3:arg)3:end")); P.Set_Parameters (Canonical); P.Open_List; P.Append_Atom (To_Atom ("command")); P.Open_List; P.Append_Atom (To_Atom ("subarg")); P.Close_List; P.Append_Atom (To_Atom ("arg")); P.Close_List; P.Append_Atom (To_Atom ("end")); Check_Stream (Test, Output); end; exception when Error : others => Test.Report_Exception (Error); end Basic_Printing; procedure Separators (Report : in out NT.Reporter'Class) is procedure Test_Exp (Pr : in out Printer); procedure Test_Exp (Pr : in out Printer) is begin Pr.Append_Atom (To_Atom ("begin")); Pr.Open_List; Pr.Open_List; Pr.Close_List; Pr.Open_List; Pr.Append_Atom (To_Atom ("head")); Pr.Append_Atom (To_Atom ("tail")); Pr.Close_List; Pr.Close_List; Pr.Append_Atom (To_Atom ("end")); end Test_Exp; Test : NT.Test := Report.Item ("Separators"); Param : Parameters := Canonical; begin declare Output : aliased Test_Tools.Memory_Stream; Pr : Printer (Output'Access); begin Output.Set_Expected (To_Atom ("5:begin(()(4:head4:tail))3:end")); Pr.Set_Parameters (Param); Test_Exp (Pr); Check_Stream (Test, Output); end; Param.Space_At := (others => (others => True)); declare Output : aliased Test_Tools.Memory_Stream; Pr : Printer (Output'Access); begin Output.Set_Expected (To_Atom ("5:begin ( ( ) ( 4:head 4:tail ) ) 3:end")); Pr.Set_Parameters (Param); Test_Exp (Pr); Check_Stream (Test, Output); end; Param.Newline_At := (others => (others => True)); Param.Newline := LF; declare Output : aliased Test_Tools.Memory_Stream; Pr : Printer (Output'Access); begin Output.Set_Expected (To_Atom ("5:begin" & Latin_1.LF & '(' & Latin_1.LF & '(' & Latin_1.LF & ')' & Latin_1.LF & '(' & Latin_1.LF & "4:head" & Latin_1.LF & "4:tail" & Latin_1.LF & ')' & Latin_1.LF & ')' & Latin_1.LF & "3:end")); Pr.Set_Parameters (Param); Test_Exp (Pr); Check_Stream (Test, Output); end; exception when Error : others => Test.Report_Exception (Error); end Separators; end Natools.S_Expressions.Printers.Pretty.Tests; |
Added tests/natools-s_expressions-printers-pretty-tests.ads version [18ef868bf5].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- Copyright (c) 2014, Natacha Porté -- -- -- -- 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. -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Natools.S_Expressions.Printers.Pretty.Tests provides a test suite for -- -- the S-expression pretty printer. -- ------------------------------------------------------------------------------ with Natools.Tests; package Natools.S_Expressions.Printers.Pretty.Tests is pragma Preelaborate (Tests); package NT renames Natools.Tests; procedure All_Tests (Report : in out NT.Reporter'Class); procedure Atom_Encodings (Report : in out NT.Reporter'Class); procedure Basic_Printing (Report : in out NT.Reporter'Class); procedure Separators (Report : in out NT.Reporter'Class); end Natools.S_Expressions.Printers.Pretty.Tests; |
Modified tests/test_all.adb from [a072a6c2f7] to [b9ea517138].
︙ | ︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 | with Natools.Chunked_Strings.Tests; with Natools.Getopt_Long_Tests; with Natools.Reference_Tests; with Natools.S_Expressions.Atom_Buffers.Tests; with Natools.S_Expressions.Encodings.Tests; with Natools.S_Expressions.Parsers.Tests; with Natools.S_Expressions.Printers.Tests; with Natools.String_Slice_Set_Tests; with Natools.String_Slice_Tests; with Natools.Tests.Text_IO; procedure Test_All is package Uneven_Chunked_Strings is new Natools.Chunked_Strings (Default_Allocation_Unit => 7, | > | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | with Natools.Chunked_Strings.Tests; with Natools.Getopt_Long_Tests; with Natools.Reference_Tests; with Natools.S_Expressions.Atom_Buffers.Tests; with Natools.S_Expressions.Encodings.Tests; with Natools.S_Expressions.Parsers.Tests; with Natools.S_Expressions.Printers.Tests; with Natools.S_Expressions.Printers.Pretty.Tests; with Natools.String_Slice_Set_Tests; with Natools.String_Slice_Tests; with Natools.Tests.Text_IO; procedure Test_All is package Uneven_Chunked_Strings is new Natools.Chunked_Strings (Default_Allocation_Unit => 7, |
︙ | ︙ | |||
83 84 85 86 87 88 89 90 91 92 93 94 95 96 | Report.Section ("S_Expressions.Parsers"); Natools.S_Expressions.Parsers.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Printers"); Natools.S_Expressions.Printers.Tests.All_Tests (Report); Report.End_Section; Report.Section ("String_Slices"); Natools.String_Slice_Tests.All_Tests (Report); Report.End_Section; Report.Section ("String_Slices.Slice_Sets"); Natools.String_Slice_Set_Tests.All_Tests (Report); | > > > > | 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | Report.Section ("S_Expressions.Parsers"); Natools.S_Expressions.Parsers.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Printers"); Natools.S_Expressions.Printers.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Printers.Pretty"); Natools.S_Expressions.Printers.Pretty.Tests.All_Tests (Report); Report.End_Section; Report.Section ("String_Slices"); Natools.String_Slice_Tests.All_Tests (Report); Report.End_Section; Report.Section ("String_Slices.Slice_Sets"); Natools.String_Slice_Set_Tests.All_Tests (Report); |
︙ | ︙ |