Commit 23ee2543 authored by Jeff Smith's avatar Jeff Smith Committed by Alexandre Julliard

ucrtbase: Add strftime format range tests.

parent e2596255
......@@ -928,11 +928,30 @@ static void test_strftime(void)
const char *ret;
struct tm tm;
BOOL todo;
BOOL todo_handler;
} tests[] = {
{"%C", "", { 0, 0, 0, 1, 0, -2000, 4, 0, 0 }, FALSE, TRUE},
{"%C", "", { 0, 0, 0, 1, 0, -1901, 4, 0, 0 }, TRUE},
{"%C", "00", { 0, 0, 0, 1, 0, -1900, 4, 0, 0 }},
{"%C", "18", { 0, 0, 0, 1, 0, -1, 4, 0, 0 }},
{"%C", "19", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%C", "99", { 0, 0, 0, 1, 0, 8099, 4, 0, 0 }},
{"%C", "", { 0, 0, 0, 1, 0, 8100, 4, 0, 0 }, FALSE, TRUE},
{"%d", "", { 0, 0, 0, 0, 0, 70, 4, 0, 0 }, TRUE},
{"%d", "01", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%d", "31", { 0, 0, 0, 31, 0, 70, 4, 0, 0 }},
{"%d", "", { 0, 0, 0, 32, 0, 70, 4, 0, 0 }, FALSE, TRUE},
{"%D", "", { 0, 0, 0, 1, 0, -1901, 4, 0, 0 }, FALSE, TRUE},
{"%D", "01/01/00", { 0, 0, 0, 1, 0, -1900, 4, 0, 0 }},
{"%D", "01/01/99", { 0, 0, 0, 1, 0, -1, 4, 0, 0 }, TRUE},
{"%D", "01/01/70", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%D", "01/01/99", { 0, 0, 0, 1, 0, 8099, 4, 0, 0 }},
{"%D", "", { 0, 0, 0, 1, 0, 8100, 4, 0, 0 }, TRUE},
{"%#D", "1/1/70", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%e", "", { 0, 0, 0, 0, 0, 70, 4, 0, 0 }, TRUE},
{"%e", " 1", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%e", "31", { 0, 0, 0, 31, 0, 70, 4, 0, 0 }},
{"%e", "", { 0, 0, 0, 32, 0, 70, 4, 0, 0 }, FALSE, TRUE},
{"%#e", "1", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%F", "1970-01-01", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%#F", "1970-1-1", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
......@@ -940,8 +959,20 @@ static void test_strftime(void)
{"%#R", "0:0", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%T", "00:00:00", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%#T", "0:0:0", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%u", "", { 0, 0, 0, 1, 0, 117, -1, 0, 0 }, FALSE, TRUE},
{"%u", "7", { 0, 0, 0, 1, 0, 117, 0, 0, 0 }},
{"%u", "1", { 0, 0, 0, 1, 0, 117, 1, 0, 0 }},
{"%u", "6", { 0, 0, 0, 1, 0, 117, 6, 0, 0 }},
{"%u", "", { 0, 0, 0, 1, 0, 117, 7, 0, 0 }, TRUE},
{"%h", "Jan", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%I", "", { 0, 0, -1, 1, 0, 70, 4, 0, 0 }, FALSE, TRUE},
{"%I", "12", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%I", "01", { 0, 0, 1, 1, 0, 70, 4, 0, 0 }},
{"%I", "11", { 0, 0, 11, 1, 0, 70, 4, 0, 0 }},
{"%I", "12", { 0, 0, 12, 1, 0, 70, 4, 0, 0 }},
{"%I", "01", { 0, 0, 13, 1, 0, 70, 4, 0, 0 }},
{"%I", "11", { 0, 0, 23, 1, 0, 70, 4, 0, 0 }},
{"%I", "", { 0, 0, 24, 1, 0, 70, 4, 0, 0 }, TRUE},
{"%n", "\n", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }},
{"%r", "12:00:00 AM", { 0, 0, 0, 1, 0, 70, 4, 0, 0 }, TRUE},
{"%r", "02:00:00 PM", { 0, 0, 14, 1, 0, 121, 6, 0, 0 }, TRUE},
......@@ -1054,17 +1085,19 @@ static void test_strftime(void)
const struct tm epoch = { 0, 0, 0, 1, 0, 70, 4, 0, 0 };
char buf[256];
int i, ret;
int i, ret=0;
for (i=0; i<ARRAY_SIZE(tests); i++)
{
todo_wine_if(tests[i].todo) {
todo_wine_if(tests[i].todo || tests[i].todo_handler) {
if (!tests[i].ret[0])
SET_EXPECT(global_invalid_parameter_handler);
ret = p_strftime(buf, sizeof(buf), tests[i].format, &tests[i].tm);
if (!tests[i].ret[0])
CHECK_CALLED(global_invalid_parameter_handler);
}
todo_wine_if(tests[i].todo) {
ok(ret == strlen(tests[i].ret), "%d) ret = %d\n", i, ret);
ok(!strcmp(buf, tests[i].ret), "%d) buf = \"%s\", expected \"%s\"\n",
i, buf, tests[i].ret);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment