Overview
Comment: | s_expressions-test_tools: new test for Descriptor interface of caches |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6608672b76587949bc278fd84537c5a3 |
User & Date: | nat on 2014-02-21 19:39:39 |
Other Links: | manifest | tags |
Context
2014-02-22
| ||
13:46 | s_expressions-generic_caches: fix level compuation of lists that have just been opened check-in: 7ac5ffc727 user: nat tags: trunk | |
2014-02-21
| ||
19:39 | s_expressions-test_tools: new test for Descriptor interface of caches check-in: 6608672b76 user: nat tags: trunk | |
2014-02-20
| ||
21:55 | s_expressions-parsers-tests: use new helper procedures to test Descriptor interface of Subparser objects check-in: 0a35973c17 user: nat tags: trunk | |
Changes
Modified tests/natools-s_expressions-cache_tests.adb from [10f694a2de] to [0c1398f6a4].
︙ | ︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 83 | -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Default_Instantiation (Report); Debug_Instantiation (Report); end All_Tests; ----------------------- -- Inidividual Tests -- ----------------------- | > | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Default_Instantiation (Report); Debug_Instantiation (Report); Descriptor_Interface (Report); end All_Tests; ----------------------- -- Inidividual Tests -- ----------------------- |
︙ | ︙ | |||
224 225 226 227 228 229 230 231 | Output.Check_Stream (Test); end; end; exception when Error : others => Test.Report_Exception (Error); end Default_Instantiation; end Natools.S_Expressions.Cache_Tests; | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | Output.Check_Stream (Test); end; end; exception when Error : others => Test.Report_Exception (Error); end Default_Instantiation; procedure Descriptor_Interface (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Descriptor insterface"); begin declare Cache : Caches.Reference; First, Second : Caches.Cursor; begin Cache.Append_Atom (To_Atom ("begin")); Cache.Open_List; Cache.Append_Atom (To_Atom ("command")); Cache.Open_List; Cache.Append_Atom (To_Atom ("first")); Cache.Append_Atom (To_Atom ("second")); Cache.Close_List; Cache.Close_List; Cache.Append_Atom (To_Atom ("end")); First := Cache.First; Second := First; Test_Tools.Test_Atom_Accessors (Test, First, To_Atom ("begin"), 0); Test_Tools.Test_Atom_Accessors (Test, Second, To_Atom ("begin"), 0); Test_Tools.Next_And_Check (Test, First, Events.Open_List, 1); Test_Tools.Test_Atom_Accessor_Exceptions (Test, First); Test_Tools.Next_And_Check (Test, First, To_Atom ("command"), 1); Test_Tools.Next_And_Check (Test, First, Events.Open_List, 2); Test_Tools.Next_And_Check (Test, Second, Events.Open_List, 1); Test_Tools.Next_And_Check (Test, First, To_Atom ("first"), 2); Test_Tools.Next_And_Check (Test, Second, To_Atom ("command"), 1); Test_Tools.Next_And_Check (Test, First, To_Atom ("second"), 2); Test_Tools.Next_And_Check (Test, First, Events.Close_List, 1); Test_Tools.Next_And_Check (Test, Second, Events.Open_List, 2); Test_Tools.Next_And_Check (Test, Second, To_Atom ("first"), 2); Test_Tools.Next_And_Check (Test, Second, To_Atom ("second"), 2); Test_Tools.Next_And_Check (Test, First, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Second, Events.Close_List, 1); Test_Tools.Test_Atom_Accessor_Exceptions (Test, Second); Test_Tools.Next_And_Check (Test, Second, Events.Close_List, 0); Test_Tools.Next_And_Check (Test, Second, To_Atom ("end"), 0); Test_Tools.Next_And_Check (Test, First, To_Atom ("end"), 0); Test_Tools.Next_And_Check (Test, First, Events.End_Of_Input, 0); Test_Tools.Next_And_Check (Test, Second, Events.End_Of_Input, 0); end; exception when Error : others => Test.Report_Exception (Error); end Descriptor_Interface; end Natools.S_Expressions.Cache_Tests; |
Modified tests/natools-s_expressions-cache_tests.ads from [97580d1761] to [089397de57].
︙ | ︙ | |||
26 27 28 29 30 31 32 33 34 | package NT renames Natools.Tests; procedure All_Tests (Report : in out NT.Reporter'Class); procedure Debug_Instantiation (Report : in out NT.Reporter'Class); procedure Default_Instantiation (Report : in out NT.Reporter'Class); end Natools.S_Expressions.Cache_Tests; | > | 26 27 28 29 30 31 32 33 34 35 | package NT renames Natools.Tests; procedure All_Tests (Report : in out NT.Reporter'Class); procedure Debug_Instantiation (Report : in out NT.Reporter'Class); procedure Default_Instantiation (Report : in out NT.Reporter'Class); procedure Descriptor_Interface (Report : in out NT.Reporter'Class); end Natools.S_Expressions.Cache_Tests; |