Overview
Comment: | time_io-tests: test suite for Time_IO subprograms, checking time interval images |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
830bf444c4e5f14fb7a7f07b4c243cd4 |
User & Date: | nat on 2014-08-16 17:33:39 |
Other Links: | manifest | tags |
Context
2014-08-17
| ||
21:58 | time_io-rfc_3339: new package for time I/O according to RFC-3339 check-in: 0e268efe7a user: nat tags: trunk | |
2014-08-16
| ||
17:33 | time_io-tests: test suite for Time_IO subprograms, checking time interval images check-in: 830bf444c4 user: nat tags: trunk | |
2014-08-15
| ||
17:27 | time_io-human: new package for human-friendly I/O of time-related types check-in: 576830db63 user: nat tags: trunk | |
Changes
Added tests/natools-time_io-tests.adb version [1ca443fdfc].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- 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.Calendar.Arithmetic; with Ada.Calendar.Formatting; with Ada.Calendar.Time_Zones; with Natools.Time_IO.Human; package body Natools.Time_IO.Tests is use type Ada.Calendar.Time; use type Ada.Calendar.Time_Zones.Time_Offset; ------------------------------ -- Local Helper Subprograms -- ------------------------------ function Quote (Original : String) return String is ('"' & Original & '"'); procedure Check is new NT.Generic_Check (String, "=", Quote); ------------------------- -- Complete Test Suite -- ------------------------- procedure All_Tests (Report : in out NT.Reporter'Class) is begin Human_Duration (Report); Human_Time_Difference (Report); end All_Tests; ----------------------- -- Inidividual Tests -- ----------------------- procedure Human_Duration (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Human-readable time intervals"); function Compose (Second : Ada.Calendar.Formatting.Second_Number; Minute : Ada.Calendar.Formatting.Minute_Number := 0; Hour : Ada.Calendar.Formatting.Hour_Number := 0) return Duration is (Second * 1.0 + Minute * 60.0 + Hour * 3600.0); begin Check (Test, "-1d", Human.Image (-86400.0), "-1d"); Check (Test, "0s", Human.Image (0.0), "0"); Check (Test, "1d", Human.Image (86400.0), "1d"); Check (Test, "1d", Human.Image (Compose (1, 30, 23)), "23h 30m 1s"); Check (Test, "23h", Human.Image (Compose (59, 29, 23)), "23h 29m 59s"); Check (Test, "15h", Human.Image (Compose (0, 20, 15)), "15h 20m"); Check (Test, "10h", Human.Image (Compose (0, 0, 10)), "10h"); Check (Test, "10h", Human.Image (Compose (31, 59, 9)), "9h 59m 31s"); Check (Test, "9h 59m", Human.Image (Compose (29, 59, 9)), "9h 59m 29s"); Check (Test, "2h", Human.Image (Compose (45, 59, 1)), "1h 59m 45s"); Check (Test, "1h 2m", Human.Image (Compose (45, 1, 1)), "1h 1m 45s"); Check (Test, "1h", Human.Image (Compose (31, 59)), "59m 31s"); Check (Test, "59 min", Human.Image (Compose (28, 59)), "59m 28s"); Check (Test, "10 min", Human.Image (600.1), "10m 0.1s"); Check (Test, "10 min", Human.Image (599.7), "9m 59.7s"); Check (Test, "9 min 59s", Human.Image (599.4), "9m 59.4s"); Check (Test, "1 min", Human.Image (60.4), "1m 0.4s"); Check (Test, "1 min", Human.Image (59.6), "59.6s"); Check (Test, "59s", Human.Image (59.4), "59.4s"); Check (Test, "10s", Human.Image (10.3), "10.3s"); Check (Test, "6 s", Human.Image (6.0), "6s"); Check (Test, "5.400 s", Human.Image (5.4), "5.4s"); Check (Test, "1 s", Human.Image (1.0), "1s"); Check (Test, "980 ms", Human.Image (0.98), "980ms"); Check (Test, "40 ms", Human.Image (0.04), "40ms"); Check (Test, "20 ms", Human.Image (0.02), "20ms"); pragma Warnings (Off, "condition is always *"); if 89999.0 in Duration then Check (Test, "1d 1h", Human.Image (89999.0), "1d 59m 59s"); end if; -- The tests below require a smaller Duration'Small than what is -- guaranteed by the standard. Further conditions should be added -- to prevent a check from failing because of lack of Duration precision Check (Test, "2 s", Human.Image (2.0002), "2.0002s"); Check (Test, "2 s", Human.Image (1.9997), "1.9997s"); Check (Test, "1.999 s", Human.Image (1.999), "1.999s"); Check (Test, "1 s", Human.Image (1.0), "1s"); Check (Test, "999 ms", Human.Image (0.999), "999 ms"); Check (Test, "2 s", Human.Image (2.000_4), "2.0004"); Check (Test, "10 ms", Human.Image (0.0104), "10.4 ms"); Check (Test, "9.990 ms", Human.Image (0.009_99), "9.990 ms"); Check (Test, "1.001 ms", Human.Image (0.001_001), "1.001 ms"); Check (Test, "1 ms", Human.Image (0.001), "1.000 ms"); Check (Test, "999 us", Human.Image (0.000_999), "999 us"); Check (Test, "10 us", Human.Image (0.000_01), "10 us"); Check (Test, "9.500 us", Human.Image (0.000_009_5), "9.5 us"); Check (Test, "1.100 us", Human.Image (0.000_001_1), "1.1 us"); Check (Test, "1 us", Human.Image (0.000_001), "1 us"); Check (Test, "900 ns", Human.Image (0.000_000_9), "900 ns"); pragma Warnings (On, "condition is always *"); exception when Error : others => Test.Report_Exception (Error); end Human_Duration; procedure Human_Time_Difference (Report : in out NT.Reporter'Class) is Test : NT.Test := Report.Item ("Human-readable time differences"); Now : constant Ada.Calendar.Time := Ada.Calendar.Clock; function Add (Base : Ada.Calendar.Time; Days : Ada.Calendar.Arithmetic.Day_Count; Seconds : Duration) return Ada.Calendar.Time is (Ada.Calendar."+" (Ada.Calendar.Arithmetic."+" (Base, Days), Seconds)); function Test_Image (Days : Ada.Calendar.Arithmetic.Day_Count; Seconds : Duration; Use_Weeks : Boolean) return String is (Human.Difference_Image (Add (Now, Days, Seconds), Now, Use_Weeks)); begin Check (Test, "-1d", Human.Difference_Image (Now, Add (Now, 1, 900.0))); Check (Test, "71d", Test_Image (71, 36_000.0, False)); Check (Test, "10w", Test_Image (70, 3_600.0, True)); Check (Test, "5w 1d", Test_Image (35, 60_000.0, True)); Check (Test, "1w 2d", Test_Image (8, 54_000.0, True)); Check (Test, "8d 15h", Test_Image (8, 54_000.0, False)); Check (Test, "8d", Test_Image (7, 23 * 3600.0 + 35 * 60.0, False)); Check (Test, "5d", Test_Image (5, 900.0, True)); Check (Test, "10h", Test_Image (0, 36_598.0, True)); exception when Error : others => Test.Report_Exception (Error); end Human_Time_Difference; end Natools.Time_IO.Tests; |
Added tests/natools-time_io-tests.ads version [cfc1ea2988].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- 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.Time_IO.Tests provides a test suite for all child packages for -- -- serialization and deserialization of time. -- ------------------------------------------------------------------------------ with Natools.Tests; package Natools.Time_IO.Tests is package NT renames Natools.Tests; procedure All_Tests (Report : in out NT.Reporter'Class); procedure Human_Duration (Report : in out NT.Reporter'Class); procedure Human_Time_Difference (Report : in out NT.Reporter'Class); end Natools.Time_IO.Tests; |
Modified tests/test_all.adb from [174617a942] to [6a63b6c2bf].
︙ | ︙ | |||
35 36 37 38 39 40 41 42 43 44 45 46 47 48 | with Natools.S_Expressions.Parsers.Tests; with Natools.S_Expressions.Printers.Tests; with Natools.S_Expressions.Printers.Pretty.Tests; with Natools.S_Expressions.Printers.Pretty.Config.Tests; with Natools.Static_Hash_Maps.S_Expressions.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, Default_Chunk_Size => 15); package Uneven_Chunked_Strings_Tests is new Uneven_Chunked_Strings.Tests; | > | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | with Natools.S_Expressions.Parsers.Tests; with Natools.S_Expressions.Printers.Tests; with Natools.S_Expressions.Printers.Pretty.Tests; with Natools.S_Expressions.Printers.Pretty.Config.Tests; with Natools.Static_Hash_Maps.S_Expressions.Tests; with Natools.String_Slice_Set_Tests; with Natools.String_Slice_Tests; with Natools.Time_IO.Tests; with Natools.Tests.Text_IO; procedure Test_All is package Uneven_Chunked_Strings is new Natools.Chunked_Strings (Default_Allocation_Unit => 7, Default_Chunk_Size => 15); package Uneven_Chunked_Strings_Tests is new Uneven_Chunked_Strings.Tests; |
︙ | ︙ | |||
142 143 144 145 146 147 148 149 150 151 152 153 154 155 | 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); Report.End_Section; Natools.Tests.Text_IO.Print_Results (Report.Total_Results); declare Results : constant Natools.Tests.Result_Summary := Report.Total_Results; begin if Results (Natools.Tests.Fail) > 0 or | > > > > | 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | 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); Report.End_Section; Report.Section ("Time_IO"); Natools.Time_IO.Tests.All_Tests (Report); Report.End_Section; Natools.Tests.Text_IO.Print_Results (Report.Total_Results); declare Results : constant Natools.Tests.Result_Summary := Report.Total_Results; begin if Results (Natools.Tests.Fail) > 0 or |
︙ | ︙ |