Overview
Comment: | s_expressions-interpreter_tests: fully-covering test suite for interpreter package |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
67ed4dd9af20925ff327136feaaecace |
User & Date: | nat on 2014-03-14 20:58:42 |
Other Links: | manifest | tags |
Context
2014-03-15
| ||
20:20 | s_expressions-interpreters: add inspection functions Has_Command and Is_Empty check-in: 2ee5aec7e2 user: nat tags: trunk | |
2014-03-14
| ||
20:58 | s_expressions-interpreter_tests: fully-covering test suite for interpreter package check-in: 67ed4dd9af user: nat tags: trunk | |
2014-03-13
| ||
21:12 | Add missing Preelaborate pragmas check-in: d53403fc11 user: nat tags: trunk | |
Changes
Added tests/natools-s_expressions-interpreter_tests.adb version [bb3b982bef].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- 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 Natools.S_Expressions.Caches; with Natools.S_Expressions.Test_Tools; package body Natools.S_Expressions.Interpreter_Tests is function Test_Interpreter return Test_Interpreters.Interpreter; function Invalid_Commands return Caches.Reference; ------------------------ -- Helper Subprograms -- ------------------------ function Invalid_Commands return Caches.Reference is Cache : Caches.Reference; Short : constant Atom := To_Atom ("not-cmd"); Long : constant Atom := To_Atom ("not-a-command"); begin Cache.Append_Atom (Short); Cache.Open_List; Cache.Append_Atom (Short); Cache.Append_Atom (To_Atom ("arg")); Cache.Close_List; Cache.Append_Atom (Long); Cache.Open_List; Cache.Append_Atom (Long); Cache.Open_List; Cache.Close_List; Cache.Close_List; return Cache; end Invalid_Commands; function Test_Interpreter return Test_Interpreters.Interpreter is Template : Recorder; begin return Inter : Test_Interpreters.Interpreter do Inter.Add_Command (To_Atom ("cmd"), Template); Inter.Add_Command (To_Atom ("command"), Template); end return; end Test_Interpreter; ---------------------- -- Recorder Command -- ---------------------- overriding procedure Execute (Self : in out Recorder; State : in out Printers.Printer'Class; Context : in Boolean; Name : in Atom) is pragma Unreferenced (Self); begin if Context then State.Append_Atom (Name); end if; end Execute; overriding procedure Execute (Self : in out Recorder; State : in out Printers.Printer'Class; Context : in Boolean; Cmd : in out Lockable.Descriptor'Class) is pragma Unreferenced (Self); begin if not Context then return; end if; declare Buffer : aliased Test_Tools.Memory_Stream; Serializer : Printers.Canonical (Buffer'Access); begin Printers.Transfer (Cmd, Serializer); State.Open_List; State.Append_Atom (Buffer.Get_Data); State.Close_List; end; end Execute; -------------------- -- Raiser Command -- -------------------- overriding procedure Execute (Self : in out Raiser; State : in out Printers.Printer'Class; Context : in Boolean; Name : in Atom) is pragma Unreferenced (Self, State, Context, Name); begin raise Special_Exception; end Execute; overriding procedure Execute (Self : in out Raiser; State : in out Printers.Printer'Class; Context : in Boolean; Cmd : in out Lockable.Descriptor'Class) is pragma Unreferenced (Self, State, Context, Cmd); begin raise Special_Exception; end Execute; ------------------------- -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Test_Basic_Usage (Report); Test_Unknown_Commands (Report); Test_Premanent_Fallback (Report); Test_Local_Fallback (Report); Test_Exception_Fallback (Report); end All_Tests; ---------------------- -- Individual Tests -- ---------------------- procedure Test_Basic_Usage (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Basic usage"); begin declare Inter : Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : Caches.Reference; Cursor : Caches.Cursor; begin Input.Append_Atom (To_Atom ("cmd")); Input.Open_List; Input.Append_Atom (To_Atom ("cmd")); Input.Append_Atom (To_Atom ("foo")); Input.Append_Atom (To_Atom ("bar")); Input.Close_List; Input.Append_Atom (To_Atom ("command")); Input.Open_List; Input.Open_List; Input.Append_Atom (To_Atom ("comment")); Input.Close_List; Input.Close_List; Input.Open_List; Input.Append_Atom (To_Atom ("command")); Input.Open_List; Input.Close_List; Input.Close_List; Cursor := Input.First; Buffer.Set_Expected (To_Atom ("3:cmd(15:3:cmd3:foo3:bar)7:command(11:7:command())")); Inter.Execute (Cursor, Printer, True); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Basic_Usage; procedure Test_Exception_Fallback (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Local fallback raising an exception"); begin declare Inter : Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : Caches.Reference; Cursor : Caches.Cursor; Fallback : Raiser; begin Input.Append_Atom (To_Atom ("cmd")); Input.Open_List; Input.Append_Atom (To_Atom ("unknown")); Input.Append_Atom (To_Atom ("argument")); Input.Close_List; Input.Close_List; Input.Open_List; Input.Append_Atom (To_Atom ("command")); Input.Close_List; Cursor := Input.First; Buffer.Set_Expected (To_Atom ("3:cmd")); begin Inter.Execute (Fallback, Cursor, Printer, True); Test.Fail ("No exception raised"); exception when Special_Exception => null; when Error : others => Test.Fail ("Wrong exception raised:"); Test.Report_Exception (Error, NT.Fail); end; Buffer.Check_Stream (Test); Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("argument"), 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 1); Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("command"), 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, Events.End_Of_Input, 0); end; exception when Error : others => Test.Report_Exception (Error); end Test_Exception_Fallback; procedure Test_Local_Fallback (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Local fallback"); begin declare Inter : Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : Caches.Reference := Invalid_Commands; Cursor : Caches.Cursor := Input.First; Fallback : Recorder; begin Input.Append_Atom (To_Atom ("cmd")); Buffer.Set_Expected (To_Atom ("7:not-cmd(14:7:not-cmd3:arg)13:not-a-command" & "(18:13:not-a-command())3:cmd")); Inter.Execute (Fallback, Cursor, Printer, True); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Local_Fallback; procedure Test_Premanent_Fallback (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Permanent fallback"); begin declare Inter : Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : constant Caches.Reference := Invalid_Commands; Cursor : Caches.Cursor := Input.First; begin Buffer.Set_Expected (To_Atom ("7:not-cmd(14:7:not-cmd3:arg)13:not-a-command" & "(18:13:not-a-command())")); Inter.Set_Fallback (To_Atom ("cmd")); Inter.Execute (Cursor, Printer, True); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Premanent_Fallback; procedure Test_Unknown_Commands (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Unknown commands"); begin declare Inter : Test_Interpreters.Interpreter := Test_Interpreter; Buffer : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Buffer'Access); Input : constant Caches.Reference := Invalid_Commands; Cursor : Caches.Cursor := Input.First; begin Inter.Set_Fallback (To_Atom ("cmd")); Inter.Reset_Fallback; begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after not-cmd"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after not-cmd"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 1); begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after (not-cmd)"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after (not-cmd)"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("arg"), 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, To_Atom ("not-a-command"), 0); begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after not-a-command"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after not-a-command"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 1); begin Inter.Execute (Cursor, Printer, True); Test.Fail ("No exception raised after not-a-command"); exception when Test_Interpreters.Command_Not_Found => null; when Error : others => Test.Fail ("Unexpected exception raised after not-a-command"); Test.Report_Exception (Error, NT.Fail); end; Test_Tools.Next_And_Check (Test, Cursor, Events.Open_List, 2); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 1); Test_Tools.Next_And_Check (Test, Cursor, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Cursor, Events.End_Of_Input, 0); Buffer.Check_Stream (Test); end; exception when Error : others => Test.Report_Exception (Error); end Test_Unknown_Commands; end Natools.S_Expressions.Interpreter_Tests; |
Added tests/natools-s_expressions-interpreter_tests.ads version [7f959bf8ab].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- 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.Interpreter_Tests provides a test suite for -- -- S-expression interpreters. -- ------------------------------------------------------------------------------ with Natools.Tests; private with Natools.S_Expressions.Interpreters; private with Natools.S_Expressions.Lockable; private with Natools.S_Expressions.Printers; package Natools.S_Expressions.Interpreter_Tests is pragma Preelaborate (Interpreter_Tests); package NT renames Natools.Tests; procedure All_Tests (Report : in out NT.Reporter'Class); procedure Test_Basic_Usage (Report : in out NT.Reporter'Class); procedure Test_Exception_Fallback (Report : in out NT.Reporter'Class); procedure Test_Local_Fallback (Report : in out NT.Reporter'Class); procedure Test_Premanent_Fallback (Report : in out NT.Reporter'Class); procedure Test_Unknown_Commands (Report : in out NT.Reporter'Class); private package Test_Interpreters is new Natools.S_Expressions.Interpreters (Printers.Printer'Class, Boolean); type Recorder is new Test_Interpreters.Command with null record; overriding procedure Execute (Self : in out Recorder; State : in out Printers.Printer'Class; Context : in Boolean; Name : in Atom); overriding procedure Execute (Self : in out Recorder; State : in out Printers.Printer'Class; Context : in Boolean; Cmd : in out Lockable.Descriptor'Class); Special_Exception : exception; type Raiser is new Test_Interpreters.Command with null record; overriding procedure Execute (Self : in out Raiser; State : in out Printers.Printer'Class; Context : in Boolean; Name : in Atom); overriding procedure Execute (Self : in out Raiser; State : in out Printers.Printer'Class; Context : in Boolean; Cmd : in out Lockable.Descriptor'Class); end Natools.S_Expressions.Interpreter_Tests; |
Modified tests/test_all.adb from [70641a698b] to [72f64a4811].
︙ | ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | with Ada.Text_IO; 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.Cache_Tests; with Natools.S_Expressions.Encodings.Tests; with Natools.S_Expressions.Lockable.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; | > | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | with Ada.Text_IO; 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.Cache_Tests; with Natools.S_Expressions.Encodings.Tests; with Natools.S_Expressions.Interpreter_Tests; with Natools.S_Expressions.Lockable.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; |
︙ | ︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 95 | Report.Section ("S_Expressions.Caches"); Natools.S_Expressions.Cache_Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Encodings"); Natools.S_Expressions.Encodings.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Lockable"); Natools.S_Expressions.Lockable.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Parsers"); Natools.S_Expressions.Parsers.Tests.All_Tests (Report); | > > > > | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | Report.Section ("S_Expressions.Caches"); Natools.S_Expressions.Cache_Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Encodings"); Natools.S_Expressions.Encodings.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Interpreters"); Natools.S_Expressions.Interpreter_Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Lockable"); Natools.S_Expressions.Lockable.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Parsers"); Natools.S_Expressions.Parsers.Tests.All_Tests (Report); |
︙ | ︙ |