2 * VARFORMAT test program
4 * Copyright 1998 Jean-Claude Cote
5 * Copyright 2006 Google (Benjamin Arai)
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/test.h"
40 static HMODULE hOleaut32
;
42 static HRESULT (WINAPI
*pVarBstrCmp
)(BSTR
,BSTR
,LCID
,ULONG
);
43 static HRESULT (WINAPI
*pVarFormatNumber
)(LPVARIANT
,int,int,int,int,ULONG
,BSTR
*);
44 static HRESULT (WINAPI
*pVarFormat
)(LPVARIANT
,LPOLESTR
,int,int,ULONG
,BSTR
*);
45 static HRESULT (WINAPI
*pVarWeekdayName
)(int,int,int,ULONG
,BSTR
*);
47 /* Have I8/UI8 data type? */
48 #define HAVE_OLEAUT32_I8 HAVE_FUNC(VarI8FromI1)
50 /* Is a given function exported from oleaut32? */
51 #define HAVE_FUNC(func) ((void*)GetProcAddress(hOleaut32, #func) != NULL)
53 /* Get a conversion function ptr, return if function not available */
54 #define CHECKPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func); \
55 if (!p##func) { win_skip("function " # func " not available, not testing it\n"); return; }
57 static inline int strcmpW( const WCHAR
*str1
, const WCHAR
*str2
)
59 while (*str1
&& (*str1
== *str2
)) { str1
++; str2
++; }
63 #define FMT_NUMBER(vt,val) \
64 VariantInit(&v); V_VT(&v) = vt; val(&v) = 1; \
65 hres = pVarFormatNumber(&v,2,0,0,0,0,&str); \
66 ok(hres == S_OK, "VarFormatNumber (vt %d): returned %8x\n", vt, hres); \
68 ok(str && strcmpW(str,szResult1) == 0, \
69 "VarFormatNumber (vt %d): string different\n", vt); \
73 static void test_VarFormatNumber(void)
75 static const WCHAR szSrc1
[] = { '1','\0' };
76 static const WCHAR szResult1
[] = { '1','.','0','0','\0' };
77 static const WCHAR szSrc2
[] = { '-','1','\0' };
78 static const WCHAR szResult2
[] = { '(','1','.','0','0',')','\0' };
84 CHECKPTR(VarFormatNumber
);
86 GetLocaleInfoA(LOCALE_USER_DEFAULT
, LOCALE_SDECIMAL
, buff
, sizeof(buff
)/sizeof(char));
87 if (buff
[0] != '.' || buff
[1])
89 skip("Skipping VarFormatNumber tests as decimal separator is '%s'\n", buff
);
93 FMT_NUMBER(VT_I1
, V_I1
);
94 FMT_NUMBER(VT_UI1
, V_UI1
);
95 FMT_NUMBER(VT_I2
, V_I2
);
96 FMT_NUMBER(VT_UI2
, V_UI2
);
97 FMT_NUMBER(VT_I4
, V_I4
);
98 FMT_NUMBER(VT_UI4
, V_UI4
);
101 FMT_NUMBER(VT_I8
, V_I8
);
102 FMT_NUMBER(VT_UI8
, V_UI8
);
104 FMT_NUMBER(VT_R4
, V_R4
);
105 FMT_NUMBER(VT_R8
, V_R8
);
106 FMT_NUMBER(VT_BOOL
, V_BOOL
);
109 V_BSTR(&v
) = SysAllocString(szSrc1
);
111 hres
= pVarFormatNumber(&v
,2,0,0,0,0,&str
);
112 ok(hres
== S_OK
, "VarFormatNumber (bstr): returned %8x\n", hres
);
114 ok(str
&& strcmpW(str
, szResult1
) == 0, "VarFormatNumber (bstr): string different\n");
115 SysFreeString(V_BSTR(&v
));
118 V_BSTR(&v
) = SysAllocString(szSrc2
);
119 hres
= pVarFormatNumber(&v
,2,0,-1,0,0,&str
);
120 ok(hres
== S_OK
, "VarFormatNumber (bstr): returned %8x\n", hres
);
122 ok(str
&& strcmpW(str
, szResult2
) == 0, "VarFormatNumber (-bstr): string different\n");
123 SysFreeString(V_BSTR(&v
));
127 #define SIGNED_VTBITS (VTBIT_I1|VTBIT_I2|VTBIT_I4|VTBIT_I8|VTBIT_R4|VTBIT_R8)
129 static const char *szVarFmtFail
= "VT %d|0x%04x Format %s: expected 0x%08x, '%s', got 0x%08x, '%s'\n";
130 #define VARFMT(vt,v,val,fmt,ret,str) do { \
132 V_VT(&in) = (vt); v(&in) = val; \
133 if (fmt) MultiByteToWideChar(CP_ACP, 0, fmt, -1, buffW, sizeof(buffW)/sizeof(WCHAR)); \
134 hres = pVarFormat(&in,fmt ? buffW : NULL,fd,fw,flags,&out); \
135 if (SUCCEEDED(hres)) WideCharToMultiByte(CP_ACP, 0, out, -1, buff, sizeof(buff),0,0); \
136 else buff[0] = '\0'; \
137 ok(hres == ret && (FAILED(ret) || !strcmp(buff, str)), \
139 (vt)&VT_TYPEMASK,(vt)&~VT_TYPEMASK,fmt?fmt:"<null>",ret,str,hres,buff); \
140 SysFreeString(out); \
143 typedef struct tagFMTRES
150 static const FMTRES VarFormat_results
[] =
154 { "General Number", "1", "0" },
155 { "Percent", "100.00%", "0.00%" },
156 { "Standard", "1.00", "0.00" },
157 { "Scientific","1.00E+00", "0.00E+00" },
158 { "True/False", "True", "False" },
159 { "On/Off", "On", "Off" },
160 { "Yes/No", "Yes", "No" },
163 { "#.#", "1.", "." },
165 { "00", "01", "00" },
166 { "0.0", "1.0", "0.0" },
167 { "00\\c\\o\\p\\y", "01copy","00copy" },
168 { "\"pos\";\"neg\"", "pos", "pos" },
169 { "\"pos\";\"neg\";\"zero\"","pos", "zero" }
172 typedef struct tagFMTDATERES
179 static const FMTDATERES VarFormat_date_results
[] =
187 { 0.0, "w", "1" }, /* First 7 entries must remain in this order! */
188 { 2.525, "am/pm", "pm" },
189 { 2.525, "AM/PM", "PM" },
190 { 2.525, "A/P", "P" },
191 { 2.525, "a/p", "p" },
194 { 2.525, "dd", "01" },
195 { 2.525, "ddd", "Mon" },
196 { 2.525, "dddd", "Monday" },
197 { 2.525, "mmm", "Jan" },
198 { 2.525, "mmmm", "January" },
200 { 2.525, "yy", "00" },
201 { 2.525, "yyy", "001" },
202 { 2.525, "yyyy", "1900" },
203 { 2.525, "dd mm yyyy hh:mm:ss", "01 01 1900 12:36:00" },
204 { 2.525, "dd mm yyyy mm", "01 01 1900 01" },
205 { 2.525, "dd mm yyyy :mm", "01 01 1900 :01" },
206 { 2.525, "dd mm yyyy hh:mm", "01 01 1900 12:36" },
207 { 2.525, "mm mm", "01 01" },
208 { 2.525, "mm :mm:ss", "01 :01:00" },
209 { 2.525, "mm :ss:mm", "01 :00:01" },
210 { 2.525, "hh:mm :ss:mm", "12:36 :00:01" },
211 { 2.525, "hh:dd :mm:mm", "12:01 :01:01" },
212 { 2.525, "dd:hh :mm:mm", "01:12 :36:01" },
213 { 2.525, "hh :mm:mm", "12 :36:01" },
214 { 2.525, "dd :mm:mm", "01 :01:01" },
215 { 2.525, "dd :mm:nn", "01 :01:36" },
216 { 2.725, "hh:nn:ss A/P", "05:24:00 P" },
217 { 40531.0, "dddd", "Sunday" },
218 { 40531.0, "ddd", "Sun" }
221 /* The following tests require that the time separator is a colon (:) */
222 static const FMTDATERES VarFormat_namedtime_results
[] =
224 { 2.525, "short time", "12:36" },
225 { 2.525, "medium time", "12:36 PM" },
226 { 2.525, "long time", "12:36:00 PM" }
229 #define VNUMFMT(vt,v) \
230 for (i = 0; i < sizeof(VarFormat_results)/sizeof(FMTRES); i++) \
232 VARFMT(vt,v,1,VarFormat_results[i].fmt,S_OK,VarFormat_results[i].one_res); \
233 VARFMT(vt,v,0,VarFormat_results[i].fmt,S_OK,VarFormat_results[i].zero_res); \
235 if ((1 << vt) & SIGNED_VTBITS) \
237 VARFMT(vt,v,-1,"\"pos\";\"neg\"",S_OK,"neg"); \
238 VARFMT(vt,v,-1,"\"pos\";\"neg\";\"zero\"",S_OK,"neg"); \
241 static void test_VarFormat(void)
243 static const WCHAR szTesting
[] = { 't','e','s','t','i','n','g','\0' };
244 static const WCHAR szNum
[] = { '3','9','6','9','7','.','1','1','\0' };
249 VARIANT_BOOL bTrue
= VARIANT_TRUE
, bFalse
= VARIANT_FALSE
;
252 BSTR bstrin
, out
= NULL
;
257 if (PRIMARYLANGID(LANGIDFROMLCID(GetUserDefaultLCID())) != LANG_ENGLISH
)
259 skip("Skipping VarFormat tests for non English language\n");
262 GetLocaleInfoA(LOCALE_USER_DEFAULT
, LOCALE_SDECIMAL
, buff
, sizeof(buff
)/sizeof(char));
263 if (buff
[0] != '.' || buff
[1])
265 skip("Skipping VarFormat tests as decimal separator is '%s'\n", buff
);
268 GetLocaleInfoA(LOCALE_USER_DEFAULT
, LOCALE_IDIGITS
, buff
, sizeof(buff
)/sizeof(char));
269 if (buff
[0] != '2' || buff
[1])
271 skip("Skipping VarFormat tests as decimal places is '%s'\n", buff
);
275 VARFMT(VT_BOOL
,V_BOOL
,VARIANT_TRUE
,"True/False",S_OK
,"True");
276 VARFMT(VT_BOOL
,V_BOOL
,VARIANT_FALSE
,"True/False",S_OK
,"False");
281 if (HAVE_OLEAUT32_I8
)
285 VNUMFMT(VT_INT
,V_INT
);
286 VNUMFMT(VT_UI1
,V_UI1
);
287 VNUMFMT(VT_UI2
,V_UI2
);
288 VNUMFMT(VT_UI4
,V_UI4
);
289 if (HAVE_OLEAUT32_I8
)
291 VNUMFMT(VT_UI8
,V_UI8
);
293 VNUMFMT(VT_UINT
,V_UINT
);
297 /* Reference types are dereferenced */
298 VARFMT(VT_BOOL
|VT_BYREF
,V_BOOLREF
,&bTrue
,"True/False",S_OK
,"True");
299 VARFMT(VT_BOOL
|VT_BYREF
,V_BOOLREF
,&bFalse
,"True/False",S_OK
,"False");
302 for (i
= 0; i
< sizeof(VarFormat_date_results
)/sizeof(FMTDATERES
); i
++)
305 fd
= i
+ 1; /* Test first day */
308 VARFMT(VT_DATE
,V_DATE
,VarFormat_date_results
[i
].val
,
309 VarFormat_date_results
[i
].fmt
,S_OK
,
310 VarFormat_date_results
[i
].res
);
313 /* Named time formats */
314 GetLocaleInfoA(LOCALE_USER_DEFAULT
, LOCALE_STIMEFORMAT
, buff
, sizeof(buff
)/sizeof(char));
315 if (strcmp(buff
, "h:mm:ss tt"))
317 skip("Skipping named time tests as time format is '%s'\n", buff
);
321 for (i
= 0; i
< sizeof(VarFormat_namedtime_results
)/sizeof(FMTDATERES
); i
++)
324 VARFMT(VT_DATE
,V_DATE
,VarFormat_namedtime_results
[i
].val
,
325 VarFormat_namedtime_results
[i
].fmt
,S_OK
,
326 VarFormat_namedtime_results
[i
].res
);
331 bstrin
= SysAllocString(szTesting
);
332 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"",S_OK
,"testing");
333 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"@",S_OK
,"testing");
334 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"&",S_OK
,"testing");
335 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"\\x@\\x@",S_OK
,"xtxesting");
336 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"\\x&\\x&",S_OK
,"xtxesting");
337 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"@\\x",S_OK
,"txesting");
338 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"@@@@@@@@",S_OK
," testing");
339 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"@\\x@@@@@@@",S_OK
," xtesting");
340 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"&&&&&&&&",S_OK
,"testing");
341 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"!&&&&&&&",S_OK
,"testing");
342 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"&&&&&&&!",S_OK
,"testing");
343 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,">&&",S_OK
,"TESTING");
344 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"<&&",S_OK
,"testing");
345 VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"<&>&",S_OK
,"testing");
346 SysFreeString(bstrin
);
347 bstrin
= SysAllocString(szNum
);
348 todo_wine
VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"hh:mm",S_OK
,"02:38");
349 todo_wine
VARFMT(VT_BSTR
,V_BSTR
,bstrin
,"mm-dd-yy",S_OK
,"09-06-08");
350 SysFreeString(bstrin
);
351 /* Numeric values are converted to strings then output */
352 VARFMT(VT_I1
,V_I1
,1,"<&>&",S_OK
,"1");
355 VARFMT(VT_I4
,V_I4
,1,"#00000000",S_OK
,"00000001");
356 VARFMT(VT_I4
,V_I4
,1,"000###",S_OK
,"000001");
357 VARFMT(VT_I4
,V_I4
,1,"#00##00#0",S_OK
,"00000001");
358 VARFMT(VT_I4
,V_I4
,1,"1#####0000",S_OK
,"10001");
359 VARFMT(VT_I4
,V_I4
,1,"##abcdefghijklmnopqrstuvwxyz",S_OK
,"1abcdefghijklmnopqrstuvwxyz");
360 VARFMT(VT_I4
,V_I4
,100000,"#,###,###,###",S_OK
,"100,000");
361 VARFMT(VT_I4
,V_I4
,1,"0,000,000,000",S_OK
,"0,000,000,001");
362 VARFMT(VT_I4
,V_I4
,123456789,"#,#.#",S_OK
,"123,456,789.");
363 VARFMT(VT_I4
,V_I4
,123456789,"###, ###, ###",S_OK
,"123, 456, 789");
364 VARFMT(VT_I4
,V_I4
,1,"#;-#",S_OK
,"1");
365 VARFMT(VT_I4
,V_I4
,-1,"#;-#",S_OK
,"-1");
366 VARFMT(VT_R8
,V_R8
,1.23456789,"0#.0#0#0#0#0",S_OK
,"01.234567890");
367 VARFMT(VT_R8
,V_R8
,1.2,"0#.0#0#0#0#0",S_OK
,"01.200000000");
368 VARFMT(VT_R8
,V_R8
,9.87654321,"#0.#0#0#0#0#",S_OK
,"9.87654321");
369 VARFMT(VT_R8
,V_R8
,9.8,"#0.#0#0#0#0#",S_OK
,"9.80000000");
370 VARFMT(VT_R8
,V_R8
,0.00000008,"#0.#0#0#0#0#0",S_OK
,"0.0000000800");
371 VARFMT(VT_R8
,V_R8
,0.00010705,"#0.##########",S_OK
,"0.00010705");
372 VARFMT(VT_I4
,V_I4
,17,"#0",S_OK
,"17");
373 VARFMT(VT_I4
,V_I4
,4711,"#0",S_OK
,"4711");
374 VARFMT(VT_I4
,V_I4
,17,"#00",S_OK
,"17");
375 VARFMT(VT_I4
,V_I4
,100,"0##",S_OK
,"100");
376 VARFMT(VT_I4
,V_I4
,17,"#000",S_OK
,"017");
377 VARFMT(VT_I4
,V_I4
,17,"#0.00",S_OK
,"17.00");
378 VARFMT(VT_I4
,V_I4
,17,"#0000.00",S_OK
,"0017.00");
379 VARFMT(VT_I4
,V_I4
,17,"#.00",S_OK
,"17.00");
380 VARFMT(VT_R8
,V_R8
,1.7,"#.00",S_OK
,"1.70");
381 VARFMT(VT_R8
,V_R8
,.17,"#.00",S_OK
,".17");
382 VARFMT(VT_I4
,V_I4
,17,"#3",S_OK
,"173");
383 VARFMT(VT_I4
,V_I4
,17,"#33",S_OK
,"1733");
384 VARFMT(VT_I4
,V_I4
,17,"#3.33",S_OK
,"173.33");
385 VARFMT(VT_I4
,V_I4
,17,"#3333.33",S_OK
,"173333.33");
386 VARFMT(VT_I4
,V_I4
,17,"#.33",S_OK
,"17.33");
387 VARFMT(VT_R8
,V_R8
,.17,"#.33",S_OK
,".33");
388 VARFMT(VT_R8
,V_R8
,1.7,"0.0000E-000",S_OK
,"1.7000E000");
389 VARFMT(VT_R8
,V_R8
,1.7,"0.0000e-1",S_OK
,"1.7000e01");
390 VARFMT(VT_R8
,V_R8
,86.936849,"#0.000000000000e-000",S_OK
,"86.936849000000e000");
391 VARFMT(VT_R8
,V_R8
,1.7,"#0",S_OK
,"2");
392 VARFMT(VT_R8
,V_R8
,1.7,"#.33",S_OK
,"2.33");
393 VARFMT(VT_R8
,V_R8
,1.7,"#3",S_OK
,"23");
394 VARFMT(VT_R8
,V_R8
,1.73245,"0.0000E+000",S_OK
,"1.7325E+000");
395 VARFMT(VT_R8
,V_R8
,9.9999999,"#0.000000",S_OK
,"10.000000");
396 VARFMT(VT_R8
,V_R8
,1.7,"0.0000e+0#",S_OK
,"1.7000e+0");
397 VARFMT(VT_R8
,V_R8
,100.0001e+0,"0.0000E+0",S_OK
,"1.0000E+2");
398 VARFMT(VT_R8
,V_R8
,1000001,"0.0000e+1",S_OK
,"1.0000e+61");
399 VARFMT(VT_R8
,V_R8
,100.0001e+25,"0.0000e+0",S_OK
,"1.0000e+27");
400 VARFMT(VT_R8
,V_R8
,450.0001e+43,"#000.0000e+0",S_OK
,"4500.0010e+42");
401 VARFMT(VT_R8
,V_R8
,0.0001e-11,"##00.0000e-0",S_OK
,"1000.0000e-18");
402 VARFMT(VT_R8
,V_R8
,0.0317e-11,"0000.0000e-0",S_OK
,"3170.0000e-16");
403 VARFMT(VT_R8
,V_R8
,0.0021e-11,"00##.0000e-0",S_OK
,"2100.0000e-17");
404 VARFMT(VT_R8
,V_R8
,1.0001e-27,"##00.0000e-0",S_OK
,"1000.1000e-30");
405 VARFMT(VT_R8
,V_R8
,47.11,".0000E+0",S_OK
,".4711E+2");
406 VARFMT(VT_R8
,V_R8
,3.0401e-13,"#####.####e-0%",S_OK
,"30401.e-15%");
407 VARFMT(VT_R8
,V_R8
,1.57,"0.00",S_OK
,"1.57");
408 VARFMT(VT_R8
,V_R8
,-1.57,"0.00",S_OK
,"-1.57");
409 VARFMT(VT_R8
,V_R8
,-1.57,"#.##",S_OK
,"-1.57");
410 VARFMT(VT_R8
,V_R8
,-0.1,".#",S_OK
,"-.1");
411 VARFMT(VT_R8
,V_R8
,0.099,"#.#",S_OK
,".1");
412 VARFMT(VT_R8
,V_R8
,0.0999,"#.##",S_OK
,".1");
413 VARFMT(VT_R8
,V_R8
,0.099,"#.##",S_OK
,".1");
414 VARFMT(VT_R8
,V_R8
,0.0099,"#.##",S_OK
,".01");
415 VARFMT(VT_R8
,V_R8
,0.0049,"#.##",S_OK
,".");
416 VARFMT(VT_R8
,V_R8
,0.0094,"#.##",S_OK
,".01");
417 VARFMT(VT_R8
,V_R8
,0.00099,"#.##",S_OK
,".");
418 VARFMT(VT_R8
,V_R8
,0.0995,"#.##",S_OK
,".1");
419 VARFMT(VT_R8
,V_R8
,8.0995,"#.##",S_OK
,"8.1");
420 VARFMT(VT_R8
,V_R8
,0.0994,"#.##",S_OK
,".1");
421 VARFMT(VT_R8
,V_R8
,1.00,"#,##0.00",S_OK
,"1.00");
422 VARFMT(VT_R8
,V_R8
,0.0995,"#.###",S_OK
,".1");
425 /* 'out' is not cleared */
427 hres
= pVarFormat(&in
,NULL
,fd
,fw
,flags
,&out
); /* Would crash if out is cleared */
428 ok(hres
== S_OK
, "got %08x\n", hres
);
434 hres
= pVarFormat(&in
,NULL
,fd
,fw
,0,&out
);
435 ok(hres
== S_OK
, "VarFormat failed with 0x%08x\n", hres
);
436 ok(out
== NULL
, "expected NULL formatted string\n");
439 hres
= pVarFormat(&in
,NULL
,fd
,fw
,flags
,NULL
);
440 ok(hres
== E_INVALIDARG
, "Null out: expected E_INVALIDARG, got 0x%08x\n", hres
);
441 hres
= pVarFormat(NULL
,NULL
,fd
,fw
,flags
,&out
);
442 ok(hres
== E_INVALIDARG
, "Null in: expected E_INVALIDARG, got 0x%08x\n", hres
);
444 VARFMT(VT_BOOL
,V_BOOL
,VARIANT_TRUE
,"",E_INVALIDARG
,"");
446 VARFMT(VT_BOOL
,V_BOOL
,VARIANT_TRUE
,"",E_INVALIDARG
,"");
448 VARFMT(VT_BOOL
,V_BOOL
,VARIANT_TRUE
,"",E_INVALIDARG
,"");
450 VARFMT(VT_BOOL
,V_BOOL
,VARIANT_TRUE
,"",E_INVALIDARG
,"");
453 static const char *szVarWdnFail
=
454 "VarWeekdayName (%d, %d, %d, %d, %x): returned %8x, expected %8x\n";
455 #define VARWDN(iWeekday, fAbbrev, iFirstDay, dwFlags, ret, buff, out, freeOut) \
457 hres = pVarWeekdayName(iWeekday, fAbbrev, iFirstDay, dwFlags, &out); \
458 if (SUCCEEDED(hres)) { \
459 WideCharToMultiByte(CP_ACP, 0, out, -1, buff, sizeof(buff), 0, 0); \
460 if (freeOut) SysFreeString(out); \
466 iWeekday, fAbbrev, iFirstDay, dwFlags, &out, hres, ret \
470 #define VARWDN_F(iWeekday, fAbbrev, iFirstDay, dwFlags, ret) \
471 VARWDN(iWeekday, fAbbrev, iFirstDay, dwFlags, ret, buff, out, 1)
473 #define VARWDN_O(iWeekday, fAbbrev, iFirstDay, dwFlags) \
474 VARWDN(iWeekday, fAbbrev, iFirstDay, dwFlags, S_OK, buff, out, 0)
476 static void test_VarWeekdayName(void)
481 int iWeekday
, fAbbrev
, iFirstDay
;
482 BSTR dayNames
[7][2]; /* Monday-Sunday, full/abbr */
483 DWORD defaultFirstDay
;
489 CHECKPTR(VarWeekdayName
);
491 SetLastError(0xdeadbeef);
492 GetLocaleInfoW(LOCALE_USER_DEFAULT
, 0, NULL
, 0);
493 if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
495 win_skip("GetLocaleInfoW is not implemented\n");
499 /* Initialize days' names */
500 for (day
= 0; day
<= 6; ++day
)
502 for (fAbbrev
= 0; fAbbrev
<= 1; ++fAbbrev
)
504 localeValue
= fAbbrev
? LOCALE_SABBREVDAYNAME1
: LOCALE_SDAYNAME1
;
506 size
= GetLocaleInfoW(LOCALE_USER_DEFAULT
, localeValue
, NULL
, 0);
507 dayNames
[day
][fAbbrev
] = SysAllocStringLen(NULL
, size
- 1);
508 GetLocaleInfoW(LOCALE_USER_DEFAULT
, localeValue
,
509 dayNames
[day
][fAbbrev
], size
);
513 /* Get the user's first day of week. 0=Monday, .. */
515 LOCALE_USER_DEFAULT
, LOCALE_IFIRSTDAYOFWEEK
| LOCALE_RETURN_NUMBER
,
516 (LPWSTR
)&defaultFirstDay
, sizeof(defaultFirstDay
) / sizeof(WCHAR
));
518 /* Check invalid arguments */
519 VARWDN_F(0, 0, 4, 0, E_INVALIDARG
);
520 VARWDN_F(8, 0, 4, 0, E_INVALIDARG
);
521 VARWDN_F(4, 0, -1, 0, E_INVALIDARG
);
522 VARWDN_F(4, 0, 8, 0, E_INVALIDARG
);
524 hres
= pVarWeekdayName(1, 0, 0, 0, NULL
);
525 ok(E_INVALIDARG
== hres
,
526 "Null pointer: expected E_INVALIDARG, got 0x%08x\n", hres
);
528 /* Check all combinations */
529 pVarBstrCmp
= (void*)GetProcAddress(hOleaut32
, "VarBstrCmp");
531 for (iWeekday
= 1; iWeekday
<= 7; ++iWeekday
)
533 for (fAbbrev
= 0; fAbbrev
<= 1; ++fAbbrev
)
535 /* 0 = Default, 1 = Sunday, 2 = Monday, .. */
536 for (iFirstDay
= 0; iFirstDay
<= 7; ++iFirstDay
)
538 VARWDN_O(iWeekday
, fAbbrev
, iFirstDay
, 0);
540 firstDay
= defaultFirstDay
;
542 /* Translate from 0=Sunday to 0=Monday in the modulo 7 space */
543 firstDay
= iFirstDay
- 2;
544 day
= (7 + iWeekday
- 1 + firstDay
) % 7;
545 ok(VARCMP_EQ
== pVarBstrCmp(out
, dayNames
[day
][fAbbrev
],
546 LOCALE_USER_DEFAULT
, 0),
547 "VarWeekdayName(%d,%d,%d): got wrong dayname: '%s'\n",
548 iWeekday
, fAbbrev
, iFirstDay
, buff
);
555 for (day
= 0; day
<= 6; ++day
)
557 for (fAbbrev
= 0; fAbbrev
<= 1; ++fAbbrev
)
559 SysFreeString(dayNames
[day
][fAbbrev
]);
564 START_TEST(varformat
)
566 hOleaut32
= GetModuleHandleA("oleaut32.dll");
568 test_VarFormatNumber();
570 test_VarWeekdayName();