Overview
Comment: | s_expressions-parsers-tests: basic test suite for S-expression parser |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
50d86c2bfede8db6d587408beebfff4c |
User & Date: | nat on 2014-01-12 16:14:58 |
Other Links: | manifest | tags |
Context
2014-01-13
| ||
19:24 | s_expressions-atom_buffers: rename accessors for less overloading check-in: 16e999a3da user: nat tags: trunk | |
2014-01-12
| ||
16:14 | s_expressions-parsers-tests: basic test suite for S-expression parser check-in: 50d86c2bfe user: nat tags: trunk | |
2014-01-11
| ||
11:40 | s_expressions-printers: new procedure Transfer running a Descriptor into a Printer check-in: f16c5302d7 user: nat tags: trunk | |
Changes
Added tests/natools-s_expressions-parsers-tests.adb version [36b7ad4f5a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- 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.Printers; with Natools.S_Expressions.Test_Tools; package body Natools.S_Expressions.Parsers.Tests is procedure Check_Parsing (Report : in out NT.Reporter'Class; Name : in String; Parser : in Parsers.Parser; Input, Output : in Test_Tools.Memory_Stream); -- Report failure or success depending on Output seeing a mismatch -- or having pending data. Dump stream status if needed. generic Name : String; Source, Expected : Atom; procedure Blackbox_Test (Report : in out NT.Reporter'Class); -- Perform a simple blackbox test, feeding Source to a new parser -- plugged on a canonical printer and comparing with Expected. ------------------------------ -- Local Helper Subprograms -- ------------------------------ procedure Check_Parsing (Report : in out NT.Reporter'Class; Name : in String; Parser : in Parsers.Parser; Input, Output : in Test_Tools.Memory_Stream) is begin if Parser.Current_Event = Events.Error or else Output.Has_Mismatch or else Output.Unread_Expected /= Null_Atom then Report.Item (Name, NT.Fail); if Parser.Current_Event = Events.Error then Report.Info ("Parser in error state"); end if; if Output.Has_Mismatch then Report.Info ("Mismatch at position" & Count'Image (Output.Mismatch_Index)); end if; if Output.Unread_Expected /= Null_Atom then Report.Info ("Left to expect: """ & To_String (Output.Unread_Expected) & '"'); end if; Report.Info ("Remaining unread data: """ & To_String (Input.Unread_Data) & '"'); Report.Info ("Written data: """ & To_String (Output.Get_Data) & '"'); else Report.Item (Name, NT.Success); end if; end Check_Parsing; procedure Blackbox_Test (Report : in out NT.Reporter'Class) is begin declare Input, Output : aliased Test_Tools.Memory_Stream; Printer : Printers.Canonical (Output'Access); Parser : aliased Parsers.Parser; Sub : Subparser (Parser'Access, Input'Access); begin Output.Set_Expected (Expected); Input.Set_Data (Source); Parser.Next_Event (Input'Access); Printers.Transfer (Sub, Printer); Check_Parsing (Report, Name, Parser, Input, Output); end; exception when Error : others => Report.Report_Exception (Name, Error); end Blackbox_Test; ------------------------- -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Canonical_Encoding (Report); Atom_Encodings (Report); end All_Tests; ----------------------- -- Inidividual Tests -- ----------------------- procedure Atom_Encodings (Report : in out NT.Reporter'Class) is procedure Test is new Blackbox_Test (Name => "Basic atom encodings", Source => To_Atom ("17:Verbatim encoding" & """Quoted\040string""" & "#48657861646563696d616c2064756d70#" & "token " & "|QmFzZS02NCBlbmNvZGluZw==|"), Expected => To_Atom ("17:Verbatim encoding" & "13:Quoted string" & "16:Hexadecimal dump" & "5:token" & "16:Base-64 encoding")); begin Test (Report); end Atom_Encodings; procedure Canonical_Encoding (Report : in out NT.Reporter'Class) is Sample_Image : constant String := "3:The(5:quick((5:brown3:fox)5:jumps))9:over3:the()4:lazy0:3:dog"; procedure Test is new Blackbox_Test (Name => "Canonical encoding", Source => To_Atom (Sample_Image), Expected => To_Atom (Sample_Image)); begin Test (Report); end Canonical_Encoding; end Natools.S_Expressions.Parsers.Tests; |
Added tests/natools-s_expressions-parsers-tests.ads version [0d27e0541c].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- 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.Parsers.Tests provides a test suite for the -- -- S-expression stream parser. -- ------------------------------------------------------------------------------ with Natools.Tests; package Natools.S_Expressions.Parsers.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 Canonical_Encoding (Report : in out NT.Reporter'Class); end Natools.S_Expressions.Parsers.Tests; |
Modified tests/test_all.adb from [50a2cb8a3f] to [a072a6c2f7].
︙ | ︙ | |||
21 22 23 24 25 26 27 28 29 30 31 32 33 34 | with Ada.Command_Line; 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.Encodings.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 | > | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | with Ada.Command_Line; 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.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 |
︙ | ︙ | |||
74 75 76 77 78 79 80 81 82 83 84 85 86 87 | Report.Section ("S_Expressions.Atom_Buffers"); Natools.S_Expressions.Atom_Buffers.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.Printers"); Natools.S_Expressions.Printers.Tests.All_Tests (Report); Report.End_Section; Report.Section ("String_Slices"); Natools.String_Slice_Tests.All_Tests (Report); | > > > > | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | Report.Section ("S_Expressions.Atom_Buffers"); Natools.S_Expressions.Atom_Buffers.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.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); |
︙ | ︙ |