123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- -module(erlydtl_dateformat_tests).
- -export([run_tests/0]).
- -define(DISPLAY_PASSES, false).
- run_tests() ->
- test_group_runner([
- {
- "date 1",
- {1979, 7, 8}, % just a date
- [{"a", "a.m."}, {"A", "AM"}, {"d", "08"},
- {"D", "Sun"}, {"f", "12"}, {"F", "July"},
- {"g", "12"}, {"G", "0"},
- {"j", "8"}, {"l", "Sunday"}, {"L", "False"},
- {"m", "07"}, {"M", "Jul"}, {"b", "jul"},
- {"n", "7"}, {"N", "July"}, {"P", "midnight"},
- {"s", "00"}, {"S", "th"}, {"t", "31"},
- {"w", "0"}, {"W", "27"}, {"y", "79"}, {"z", "189"},
- {"r", "Sun, 8 Jul 1979 00:00:00 +0000"},
- {"jS F Y H:i", "8th July 1979 00:00"},
- {"jS o\\f F", "8th of July"},
- % We expect these to come back verbatim
- {"x", "x"}, {"C", "C"}, {";", ";"}, {"%", "%"}
- % TODO : timzeone related tests.
- %{"O", "0000"},
- %{"T", "CET"},
- %{"U", "300531600"},
- %{"Z", "3600"}
- ]
- },
- {
- "datetime 1",
- {{1979, 7, 8}, {22, 7, 12}}, % date/time tuple
- [{"a", "p.m."}, {"A", "PM"}, {"d", "08"},
- {"D", "Sun"}, {"f", "10:07"}, {"F", "July"},
- {"g", "10"}, {"G", "22"},
- {"j", "8"}, {"l", "Sunday"}, {"L", "False"},
- {"m", "07"}, {"M", "Jul"}, {"b", "jul"},
- {"n", "7"}, {"N", "July"}, {"P", "10:07 p.m."},
- {"s", "12"}, {"S", "th"}, {"t", "31"},
- {"w", "0"}, {"W", "27"}, {"y", "79"}, {"z", "189"},
- {"r", "Sun, 8 Jul 1979 22:07:12 +0000"},
- {"jS F Y H:i", "8th July 1979 22:07"},
- {"jS o\\f F", "8th of July"},
- % We expect these to come back verbatim
- {"x", "x"}, {"C", "C"}, {";", ";"}, {"%", "%"}
- % TODO : timzeone related tests.
- %{"O", "0000"},
- %{"T", "CET"},
- %{"U", "300531600"},
- %{"Z", "3600"}
- ]
- },
- {
- "datetime 2",
- {{2008, 12, 25}, {7, 0, 9}}, % date/time tuple
- [{"a", "a.m."}, {"A", "AM"}, {"d", "25"},
- {"D", "Thu"}, {"f", "7"}, {"F", "December"},
- {"g", "7"}, {"G", "7"},
- {"j", "25"}, {"l", "Thursday"}, {"L", "True"},
- {"m", "12"}, {"M", "Dec"}, {"b", "dec"},
- {"n", "12"}, {"N", "Dec."}, {"P", "7 a.m."},
- {"s", "09"}, {"S", "th"}, {"t", "31"},
- {"w", "4"}, {"W", "52"}, {"y", "08"}, {"z", "360"},
- {"r", "Thu, 25 Dec 2008 07:00:09 +0000"},
- {"jS F Y H:i", "25th December 2008 07:00"},
- {"jS o\\f F", "25th of December"},
- % We expect these to come back verbatim
- {"x", "x"}, {"C", "C"}, {";", ";"}, {"%", "%"}
- % TODO : timzeone related tests.
- %{"O", "0000"},
- %{"T", "CET"},
- %{"U", "300531600"},
- %{"Z", "3600"}
- ]
- },
- {
- "datetime 3",
- {{2004, 2, 29}, {12, 0, 59}}, % date/time tuple
- [{"a", "p.m."}, {"A", "PM"}, {"d", "29"},
- {"D", "Sun"}, {"f", "12"}, {"F", "February"},
- {"g", "12"}, {"G", "12"},
- {"j", "29"}, {"l", "Sunday"}, {"L", "True"},
- {"m", "02"}, {"M", "Feb"}, {"b", "feb"},
- {"n", "2"}, {"N", "Feb."}, {"P", "noon"},
- {"s", "59"}, {"S", "th"}, {"t", "29"},
- {"w", "0"}, {"W", "9"}, {"y", "04"}, {"z", "58"},
- {"r", "Sun, 29 Feb 2004 12:00:59 +0000"},
- {"jS F Y H:i", "29th February 2004 12:00"},
- {"jS o\\f F", "29th of February"},
- % We expect these to come back verbatim
- {"x", "x"}, {"C", "C"}, {";", ";"}, {"%", "%"}
- % TODO : timzeone related tests.
- %{"O", "0000"},
- %{"T", "CET"},
- %{"U", "300531600"},
- %{"Z", "3600"}
- ]
- },
- % Weeknum tests. Largely based on examples from :
- % http://en.wikipedia.org/wiki/ISO_week_date
- { "weeknum 1.1", {2005, 1, 1}, [{"W", "53"}] },
- { "weeknum 1.2", {2005, 1, 2}, [{"W", "53"}] },
- { "weeknum 1.3", {2005, 12, 31}, [{"W", "52"}] },
- { "weeknum 1.4", {2007, 1, 1}, [{"W", "1"}] },
- { "weeknum 1.5", {2007, 12, 30}, [{"W", "52"}] },
- { "weeknum 1.6", {2007, 12, 31}, [{"W", "1"}] },
- { "weeknum 1.6", {2008, 1, 1}, [{"W", "1"}] },
- { "weeknum 1.7", {2008, 12, 29}, [{"W", "1"}] },
- { "weeknum 1.8", {2008, 12, 31}, [{"W", "1"}] },
- { "weeknum 1.9", {2009, 1, 1}, [{"W", "1"}] },
- { "weeknum 1.10", {2009, 12, 31}, [{"W", "53"}] },
- { "weeknum 1.11", {2010, 1, 3}, [{"W", "53"}] },
- % Examples where the ISO year is three days into
- % the next Gregorian year
- { "weeknum 2.1", {2009, 12, 31}, [{"W", "53"}] },
- { "weeknum 2.2", {2010, 1, 1}, [{"W", "53"}] },
- { "weeknum 2.3", {2010, 1, 2}, [{"W", "53"}] },
- { "weeknum 2.4", {2010, 1, 3}, [{"W", "53"}] },
- { "weeknum 2.5", {2010, 1, 5}, [{"W", "1"}] },
- % Example where the ISO year is three days into
- % the previous Gregorian year
- { "weeknum 3.1", {2008, 12, 28}, [{"W", "52"}] },
- { "weeknum 3.2", {2008, 12, 29}, [{"W", "1"}] },
- { "weeknum 3.3", {2008, 12, 30}, [{"W", "1"}] },
- { "weeknum 3.4", {2008, 12, 31}, [{"W", "1"}] },
- { "weeknum 3.5", {2009, 1, 1}, [{"W", "1"}] },
- % freeform tests
- { "weeknum 4.1", {2008, 2, 28}, [{"W", "9"}] },
- { "weeknum 4.2", {1975, 7, 24}, [{"W","30"}] },
- % Ordinal suffix tests.
- { "Ordinal suffix 1", {1984,1,1}, [{"S", "st"}] },
- { "Ordinal suffix 2", {1984,2,2}, [{"S", "nd"}] },
- { "Ordinal suffix 3", {1984,3,3}, [{"S", "rd"}] },
- { "Ordinal suffix 4", {1984,4,4}, [{"S", "th"}] },
- { "Ordinal suffix 5", {1984,6,5}, [{"S", "th"}] },
- { "Ordinal suffix 7", {1984,2,9}, [{"S", "th"}] },
- { "Ordinal suffix 8", {1984,9,9}, [{"S", "th"}] },
- { "Ordinal suffix 9", {1984,11,10}, [{"S", "th"}] },
- { "Ordinal suffix 10", {1984,12,11}, [{"S", "th"}] },
- { "Ordinal suffix 11", {1984,8,12}, [{"S", "th"}] },
- { "Ordinal suffix 12", {1984,1,19}, [{"S", "th"}] },
- { "Ordinal suffix 13", {1984,2,20}, [{"S", "th"}] },
- { "Ordinal suffix 14", {1984,2,21}, [{"S", "st"}] },
- { "Ordinal suffix 15", {1984,7,22}, [{"S", "nd"}] },
- { "Ordinal suffix 16", {1984,6,23}, [{"S", "rd"}] },
- { "Ordinal suffix 17", {1984,5,24}, [{"S", "th"}] },
- { "Ordinal suffix 18", {1984,1,29}, [{"S", "th"}] },
- { "Ordinal suffix 19", {1984,3,30}, [{"S", "th"}] },
- { "Ordinal suffix 20", {1984,1,31}, [{"S", "st"}] },
- { "Ordinal suffix 21", {1984,1,310}, [{"S", "th"}] },
- { "Ordinal suffix 22", {1984,1,121}, [{"S", "st"}] }
- ]),
- ok.
- test_group_runner([]) -> ok;
- test_group_runner([{Info, DateParam, Tests} | Rest]) ->
- io:format("Running ~p -> ", [Info]),
- PassCount = test_runner(DateParam, Tests),
- case PassCount =:= length(Tests) of
- true ->
- io:format("Passed ~p/~p~n", [PassCount, length(Tests)]);
- _ ->
- io:format("~nFailed ~p/~p~n", [length(Tests) - PassCount, length(Tests)])
- end,
- test_group_runner(Rest).
- test_runner(DateParam, Tests) ->
- test_runner(DateParam, Tests, 1, 0).
- test_runner(_DateParam, [], _TestNum, PassCount) ->
- PassCount;
- test_runner(DateParam, [{Input, Expect} | Rest], TestNum, PassCount) ->
- Text = "'" ++ Input ++ "' -> '" ++ Expect ++ "'",
- IsPass = is(TestNum, Text, erlydtl_dateformat:format(DateParam, Input), Expect),
- test_runner(DateParam, Rest, TestNum + 1, PassCount + IsPass).
-
- is(TestNum, Text, Input1, Input2) when Input1 =:= Input2, ?DISPLAY_PASSES ->
- io:format("~nok ~p - ~s", [TestNum, Text]),
- 1;
- is(_TestNum, _Text, Input1, Input2) when Input1 =:= Input2 ->
- 1;
- is(TestNum, Text, Input1, Input2) ->
- io:format("~nnot ok ~p - ~s~n got : ~p~n expcted : ~p", [
- TestNum, Text, Input1, Input2]),
- 0.
|