[oleaut32] Move varformat conformance tests to new c file varformat.c

Benjamin Arai me at benjaminarai.com
Mon Jul 31 02:25:32 CDT 2006


Skipped content of type multipart/alternative-------------- next part --------------

diff --git a/dlls/oleaut32/tests/Makefile.in b/dlls/oleaut32/tests/Makefile.in
index c0ad326..4a0f5cd 100644
--- a/dlls/oleaut32/tests/Makefile.in
+++ b/dlls/oleaut32/tests/Makefile.in
@@ -13,7 +13,8 @@ CTESTS = \
 	typelib.c \
 	usrmarshal.c \
 	vartest.c \
-	vartype.c
+	vartype.c \
+	varformat.c
 
 @MAKE_TEST_RULES@
 
diff --git a/dlls/oleaut32/tests/varformat.c b/dlls/oleaut32/tests/varformat.c
new file mode 100644
index 0000000..9df22e0
--- /dev/null
+++ b/dlls/oleaut32/tests/varformat.c
@@ -0,0 +1,401 @@
+/*
+ * VARFORMAT test program
+ *
+ * Copyright 1998 Jean-Claude Cote
+ * Copyright 2006 Google (Benjamin Arai)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include <stdarg.h>
+#include <stdio.h>
+#include <math.h>
+#include <float.h>
+#include <time.h>
+
+#include "windef.h"
+#include "winbase.h"
+#include "winsock.h"
+#include "wine/test.h"
+#include "winuser.h"
+#include "wingdi.h"
+#include "winnls.h"
+#include "winerror.h"
+#include "winnt.h"
+
+#include "wtypes.h"
+#include "oleauto.h"
+
+static HMODULE hOleaut32;
+
+static HRESULT (WINAPI *pVarFormatNumber)(LPVARIANT,int,int,int,int,ULONG,BSTR*);
+static HRESULT (WINAPI *pVarFormat)(LPVARIANT,LPOLESTR,int,int,ULONG,BSTR*);
+
+/* Have I8/UI8 data type? */
+#define HAVE_OLEAUT32_I8      HAVE_FUNC(VarI8FromI1)
+
+/* Is a given function exported from oleaut32? */
+#define HAVE_FUNC(func) ((void*)GetProcAddress(hOleaut32, #func) != NULL)
+
+/* Get a conversion function ptr, return if function not available */
+#define CHECKPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func); \
+  if (!p##func) { trace("function " # func " not available, not testing it\n"); return; }
+
+static inline int strcmpW( const WCHAR *str1, const WCHAR *str2 )
+{
+    while (*str1 && (*str1 == *str2)) { str1++; str2++; }
+    return *str1 - *str2;
+}
+
+#define FMT_NUMBER(vt,val) \
+  VariantInit(&v); V_VT(&v) = vt; val(&v) = 1; \
+  hres = pVarFormatNumber(&v,2,0,0,0,0,&str); \
+  ok(hres == S_OK, "VarFormatNumber (vt %d): returned %8lx\n", vt, hres); \
+  if (hres == S_OK) \
+    ok(str && strcmpW(str,szResult1) == 0, \
+       "VarFormatNumber (vt %d): string different\n", vt)
+
+static void test_VarFormatNumber(void)
+{
+  static const WCHAR szSrc1[] = { '1','\0' };
+  static const WCHAR szResult1[] = { '1','.','0','0','\0' };
+  static const WCHAR szSrc2[] = { '-','1','\0' };
+  static const WCHAR szResult2[] = { '(','1','.','0','0',')','\0' };
+  char buff[8];
+  HRESULT hres;
+  VARIANT v;
+  BSTR str = NULL;
+
+  CHECKPTR(VarFormatNumber);
+
+  GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, buff, sizeof(buff)/sizeof(char));
+  if (buff[0] != '.' || buff[1])
+  {
+    trace("Skipping VarFormatNumber tests as decimal separator is '%s'\n", buff);
+    return;
+  }
+
+  FMT_NUMBER(VT_I1, V_I1);
+  FMT_NUMBER(VT_UI1, V_UI1);
+  FMT_NUMBER(VT_I2, V_I2);
+  FMT_NUMBER(VT_UI2, V_UI2);
+  FMT_NUMBER(VT_I4, V_I4);
+  FMT_NUMBER(VT_UI4, V_UI4);
+  if (HAVE_OLEAUT32_I8)
+  {
+    FMT_NUMBER(VT_I8, V_I8);
+    FMT_NUMBER(VT_UI8, V_UI8);
+  }
+  FMT_NUMBER(VT_R4, V_R4);
+  FMT_NUMBER(VT_R8, V_R8);
+  FMT_NUMBER(VT_BOOL, V_BOOL);
+
+  V_VT(&v) = VT_BSTR;
+  V_BSTR(&v) = SysAllocString(szSrc1);
+
+  hres = pVarFormatNumber(&v,2,0,0,0,0,&str);
+  ok(hres == S_OK, "VarFormatNumber (bstr): returned %8lx\n", hres);
+  if (hres == S_OK)
+    ok(str && strcmpW(str, szResult1) == 0, "VarFormatNumber (bstr): string different\n");
+  SysFreeString(V_BSTR(&v));
+  SysFreeString(str);
+
+  V_BSTR(&v) = SysAllocString(szSrc2);
+  hres = pVarFormatNumber(&v,2,0,-1,0,0,&str);
+  ok(hres == S_OK, "VarFormatNumber (bstr): returned %8lx\n", hres);
+  if (hres == S_OK)
+    ok(str && strcmpW(str, szResult2) == 0, "VarFormatNumber (-bstr): string different\n");
+  SysFreeString(V_BSTR(&v));
+  SysFreeString(str);
+}
+
+#define SIGNED_VTBITS (VTBIT_I1|VTBIT_I2|VTBIT_I4|VTBIT_I8|VTBIT_R4|VTBIT_R8)
+
+static const char *szVarFmtFail = "VT %d|0x%04x Format %s: expected 0x%08lx, '%s', got 0x%08lx, '%s'\n";
+#define VARFMT(vt,v,val,fmt,ret,str) do { \
+  if (out) SysFreeString(out); out = NULL; \
+  V_VT(&in) = (vt); v(&in) = val; \
+  if (fmt) MultiByteToWideChar(CP_ACP, 0, fmt, -1, buffW, sizeof(buffW)/sizeof(WCHAR)); \
+  hres = pVarFormat(&in,fmt ? buffW : NULL,fd,fw,flags,&out); \
+  if (SUCCEEDED(hres)) WideCharToMultiByte(CP_ACP, 0, out, -1, buff, sizeof(buff),0,0); \
+  else buff[0] = '\0'; \
+  ok(hres == ret && (FAILED(ret) || !strcmp(buff, str)), \
+     szVarFmtFail, \
+     (vt)&VT_TYPEMASK,(vt)&~VT_TYPEMASK,fmt?fmt:"<null>",ret,str,hres,buff); \
+  } while(0)
+
+typedef struct tagFMTRES
+{
+  LPCSTR fmt;
+  LPCSTR one_res;
+  LPCSTR zero_res;
+} FMTRES;
+
+static const FMTRES VarFormat_results[] =
+{
+  { NULL, "1", "0" },
+  { "", "1", "0" },
+  { "General Number", "1", "0" },
+  { "Percent", "100.00%", "0.00%" },
+  { "Standard", "1.00", "0.00" },
+  { "Scientific","1.00E+00", "0.00E+00" },
+  { "True/False", "True", "False" },
+  { "On/Off", "On", "Off" },
+  { "Yes/No", "Yes", "No" },
+  { "#", "1", "" },
+  { "##", "1", "" },
+  { "#.#", "1.", "." },
+  { "0", "1", "0" },
+  { "00", "01", "00" },
+  { "0.0", "1.0", "0.0" },
+  { "00\\c\\o\\p\\y", "01copy","00copy" },
+  { "\"pos\";\"neg\"", "pos", "pos" },
+  { "\"pos\";\"neg\";\"zero\"","pos", "zero" }
+};
+
+typedef struct tagFMTDATERES
+{
+  DATE   val;
+  LPCSTR fmt;
+  LPCSTR res;
+} FMTDATERES;
+
+static const FMTDATERES VarFormat_date_results[] =
+{
+  { 0.0, "w", "7" },
+  { 0.0, "w", "6" },
+  { 0.0, "w", "5" },
+  { 0.0, "w", "4" },
+  { 0.0, "w", "3" },
+  { 0.0, "w", "2" },
+  { 0.0, "w", "1" }, /* First 7 entries must remain in this order! */
+  { 2.525, "am/pm", "pm" },
+  { 2.525, "AM/PM", "PM" },
+  { 2.525, "A/P", "P" },
+  { 2.525, "a/p", "p" },
+  { 2.525, "q", "1" },
+  { 2.525, "d", "1" },
+  { 2.525, "dd", "01" },
+  { 2.525, "ddd", "Mon" },
+  { 2.525, "dddd", "Monday" },
+  { 2.525, "mmm", "Jan" },
+  { 2.525, "mmmm", "January" },
+  { 2.525, "y", "1" },
+  { 2.525, "yy", "00" },
+  { 2.525, "yyy", "001" },
+  { 2.525, "yyyy", "1900" },
+  { 2.525, "dd mm yyyy hh:mm:ss", "01 01 1900 12:36:00" },
+  { 2.525, "dd mm yyyy mm", "01 01 1900 01" },
+  { 2.525, "dd mm yyyy :mm", "01 01 1900 :01" },
+  { 2.525, "dd mm yyyy hh:mm", "01 01 1900 12:36" },
+  { 2.525, "mm mm", "01 01" },
+  { 2.525, "mm :mm:ss", "01 :01:00" },
+  { 2.525, "mm :ss:mm", "01 :00:01" },
+  { 2.525, "hh:mm :ss:mm", "12:36 :00:01" },
+  { 2.525, "hh:dd :mm:mm", "12:01 :01:01" },
+  { 2.525, "dd:hh :mm:mm", "01:12 :36:01" },
+  { 2.525, "hh :mm:mm", "12 :36:01" },
+  { 2.525, "dd :mm:mm", "01 :01:01" },
+  { 2.525, "dd :mm:nn", "01 :01:36" },
+  { 2.725, "hh:nn:ss A/P", "05:24:00 P" }
+};
+
+#define VNUMFMT(vt,v) \
+  for (i = 0; i < sizeof(VarFormat_results)/sizeof(FMTRES); i++) \
+  { \
+    VARFMT(vt,v,1,VarFormat_results[i].fmt,S_OK,VarFormat_results[i].one_res); \
+    VARFMT(vt,v,0,VarFormat_results[i].fmt,S_OK,VarFormat_results[i].zero_res); \
+  } \
+  if ((1 << vt) & SIGNED_VTBITS) \
+  { \
+    VARFMT(vt,v,-1,"\"pos\";\"neg\"",S_OK,"neg"); \
+    VARFMT(vt,v,-1,"\"pos\";\"neg\";\"zero\"",S_OK,"neg"); \
+  }
+
+static void test_VarFormat(void)
+{
+  static const WCHAR szTesting[] = { 't','e','s','t','i','n','g','\0' };
+  size_t i;
+  WCHAR buffW[256];
+  char buff[256];
+  VARIANT in;
+  VARIANT_BOOL bTrue = VARIANT_TRUE, bFalse = VARIANT_FALSE;
+  int fd = 0, fw = 0;
+  ULONG flags = 0;
+  BSTR bstrin, out = NULL;
+  HRESULT hres;
+
+  CHECKPTR(VarFormat);
+
+  if (PRIMARYLANGID(LANGIDFROMLCID(GetUserDefaultLCID())) != LANG_ENGLISH)
+  {
+    trace("Skipping VarFormat tests for non english language\n");
+    return;
+  }
+  GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, buff, sizeof(buff)/sizeof(char));
+  if (buff[0] != '.' || buff[1])
+  {
+    trace("Skipping VarFormat tests as decimal separator is '%s'\n", buff);
+    return;
+  }
+  GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_IDIGITS, buff, sizeof(buff)/sizeof(char));
+  if (buff[0] != '2' || buff[1])
+  {
+    trace("Skipping VarFormat tests as decimal places is '%s'\n", buff);
+    return;
+  }
+
+  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"True/False",S_OK,"True");
+  VARFMT(VT_BOOL,V_BOOL,VARIANT_FALSE,"True/False",S_OK,"False");
+
+  VNUMFMT(VT_I1,V_I1);
+  VNUMFMT(VT_I2,V_I2);
+  VNUMFMT(VT_I4,V_I4);
+  if (HAVE_OLEAUT32_I8)
+  {
+    VNUMFMT(VT_I8,V_I8);
+  }
+  VNUMFMT(VT_INT,V_INT);
+  VNUMFMT(VT_UI1,V_UI1);
+  VNUMFMT(VT_UI2,V_UI2);
+  VNUMFMT(VT_UI4,V_UI4);
+  if (HAVE_OLEAUT32_I8)
+  {
+    VNUMFMT(VT_UI8,V_UI8);
+  }
+  VNUMFMT(VT_UINT,V_UINT);
+  VNUMFMT(VT_R4,V_R4);
+  VNUMFMT(VT_R8,V_R8);
+
+  /* Reference types are dereferenced */
+  VARFMT(VT_BOOL|VT_BYREF,V_BOOLREF,&bTrue,"True/False",S_OK,"True");
+  VARFMT(VT_BOOL|VT_BYREF,V_BOOLREF,&bFalse,"True/False",S_OK,"False");
+
+  /* Dates */
+  for (i = 0; i < sizeof(VarFormat_date_results)/sizeof(FMTDATERES); i++)
+  {
+    if (i < 7)
+      fd = i + 1; /* Test first day */
+    else
+      fd = 0;
+    VARFMT(VT_DATE,V_DATE,VarFormat_date_results[i].val,
+           VarFormat_date_results[i].fmt,S_OK,
+           VarFormat_date_results[i].res);
+  }
+
+  /* Strings */
+  bstrin = SysAllocString(szTesting);
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"",S_OK,"testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"@",S_OK,"testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"&",S_OK,"testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"\\x@\\x@",S_OK,"xtxesting");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"\\x&\\x&",S_OK,"xtxesting");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"@\\x",S_OK,"txesting");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"@@@@@@@@",S_OK," testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"@\\x@@@@@@@",S_OK," xtesting");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"&&&&&&&&",S_OK,"testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"!&&&&&&&",S_OK,"testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"&&&&&&&!",S_OK,"testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,">&&",S_OK,"TESTING");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"<&&",S_OK,"testing");
+  VARFMT(VT_BSTR,V_BSTR,bstrin,"<&>&",S_OK,"testing");
+  SysFreeString(bstrin);
+  /* Numeric values are converted to strings then output */
+  VARFMT(VT_I1,V_I1,1,"<&>&",S_OK,"1");
+
+  /* Number formats */
+  VARFMT(VT_I4,V_I4,1,"#00000000",S_OK,"00000001");
+  VARFMT(VT_I4,V_I4,1,"000###",S_OK,"000001");
+  VARFMT(VT_I4,V_I4,1,"#00##00#0",S_OK,"00000001");
+  VARFMT(VT_I4,V_I4,1,"1#####0000",S_OK,"10001");
+  todo_wine {
+  VARFMT(VT_I4,V_I4,100000,"#,###,###,###",S_OK,"100,000");
+  }
+  VARFMT(VT_R8,V_R8,1.23456789,"0#.0#0#0#0#0",S_OK,"01.234567890");
+  VARFMT(VT_R8,V_R8,1.2,"0#.0#0#0#0#0",S_OK,"01.200000000");
+  VARFMT(VT_R8,V_R8,9.87654321,"#0.#0#0#0#0#",S_OK,"9.87654321");
+  VARFMT(VT_R8,V_R8,9.8,"#0.#0#0#0#0#",S_OK,"9.80000000");
+  VARFMT(VT_R8,V_R8,0.00000008,"#0.#0#0#0#0#0",S_OK,"0.0000000800");
+  VARFMT(VT_R8,V_R8,0.00010705,"#0.##########",S_OK,"0.00010705");
+  VARFMT(VT_I4,V_I4,17,"#0",S_OK,"17");
+  VARFMT(VT_I4,V_I4,4711,"#0",S_OK,"4711");
+  VARFMT(VT_I4,V_I4,17,"#00",S_OK,"17");
+  VARFMT(VT_I4,V_I4,100,"0##",S_OK,"100");
+  VARFMT(VT_I4,V_I4,17,"#000",S_OK,"017");
+  VARFMT(VT_I4,V_I4,17,"#0.00",S_OK,"17.00");
+  VARFMT(VT_I4,V_I4,17,"#0000.00",S_OK,"0017.00");
+  VARFMT(VT_I4,V_I4,17,"#.00",S_OK,"17.00");
+  VARFMT(VT_R8,V_R8,1.7,"#.00",S_OK,"1.70");
+  VARFMT(VT_R8,V_R8,.17,"#.00",S_OK,".17");
+  VARFMT(VT_I4,V_I4,17,"#3",S_OK,"173");
+  VARFMT(VT_I4,V_I4,17,"#33",S_OK,"1733");
+  VARFMT(VT_I4,V_I4,17,"#3.33",S_OK,"173.33");
+  VARFMT(VT_I4,V_I4,17,"#3333.33",S_OK,"173333.33");
+  VARFMT(VT_I4,V_I4,17,"#.33",S_OK,"17.33");
+  VARFMT(VT_R8,V_R8,.17,"#.33",S_OK,".33");
+  VARFMT(VT_R8,V_R8,1.7,"0.0000E-000",S_OK,"1.7000E000");
+  VARFMT(VT_R8,V_R8,1.7,"0.0000e-1",S_OK,"1.7000e01");
+  VARFMT(VT_R8,V_R8,86.936849,"#0.000000000000e-000",S_OK,"86.936849000000e000");
+  VARFMT(VT_R8,V_R8,1.7,"#0",S_OK,"2");
+  VARFMT(VT_R8,V_R8,1.7,"#.33",S_OK,"2.33");
+  VARFMT(VT_R8,V_R8,1.7,"#3",S_OK,"23");
+  VARFMT(VT_R8,V_R8,1.73245,"0.0000E+000",S_OK,"1.7325E+000");
+  VARFMT(VT_R8,V_R8,9.9999999,"#0.000000",S_OK,"10.000000");
+  VARFMT(VT_R8,V_R8,1.7,"0.0000e+0#",S_OK,"1.7000e+0");
+  VARFMT(VT_R8,V_R8,100.0001e+0,"0.0000E+0",S_OK,"1.0000E+2");
+  VARFMT(VT_R8,V_R8,1000001,"0.0000e+1",S_OK,"1.0000e+61");
+  VARFMT(VT_R8,V_R8,100.0001e+25,"0.0000e+0",S_OK,"1.0000e+27");
+  VARFMT(VT_R8,V_R8,450.0001e+43,"#000.0000e+0",S_OK,"4500.0010e+42");
+  VARFMT(VT_R8,V_R8,0.0001e-11,"##00.0000e-0",S_OK,"1000.0000e-18");
+  VARFMT(VT_R8,V_R8,0.0317e-11,"0000.0000e-0",S_OK,"3170.0000e-16");
+  VARFMT(VT_R8,V_R8,0.0021e-11,"00##.0000e-0",S_OK,"2100.0000e-17");
+  VARFMT(VT_R8,V_R8,1.0001e-27,"##00.0000e-0",S_OK,"1000.1000e-30");
+  VARFMT(VT_R8,V_R8,47.11,".0000E+0",S_OK,".4711E+2");
+  VARFMT(VT_R8,V_R8,3.0401e-13,"#####.####e-0%",S_OK,"30401.e-15%");
+
+
+  /* 'out' is not cleared */
+  out = (BSTR)0x1;
+  pVarFormat(&in,NULL,fd,fw,flags,&out); /* Would crash if out is cleared */
+  out = NULL;
+
+  /* VT_NULL */
+  V_VT(&in) = VT_NULL;
+  hres = pVarFormat(&in,NULL,fd,fw,0,&out);
+  ok(hres == S_OK, "VarFormat failed with 0x%08lx\n", hres);
+  ok(out == NULL, "expected NULL formatted string\n");
+
+  /* Invalid args */
+  hres = pVarFormat(&in,NULL,fd,fw,flags,NULL);
+  ok(hres == E_INVALIDARG, "Null out: expected E_INVALIDARG, got 0x%08lx\n", hres);
+  hres = pVarFormat(NULL,NULL,fd,fw,flags,&out);
+  ok(hres == E_INVALIDARG, "Null in: expected E_INVALIDARG, got 0x%08lx\n", hres);
+  fd = -1;
+  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
+  fd = 8;
+  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
+  fd = 0; fw = -1;
+  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
+  fw = 4;
+  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
+}
+
+START_TEST(varformat)
+{
+  hOleaut32 = LoadLibraryA("oleaut32.dll");
+
+  test_VarFormatNumber();
+  test_VarFormat();
+}
diff --git a/dlls/oleaut32/tests/vartest.c b/dlls/oleaut32/tests/vartest.c
index 3bbcd66..5a0afd0 100644
--- a/dlls/oleaut32/tests/vartest.c
+++ b/dlls/oleaut32/tests/vartest.c
@@ -46,8 +46,6 @@ static INT (WINAPI *pSystemTimeToVariant
 static INT (WINAPI *pVariantTimeToSystemTime)(double,LPSYSTEMTIME);
 static INT (WINAPI *pDosDateTimeToVariantTime)(USHORT,USHORT,double*);
 static INT (WINAPI *pVariantTimeToDosDateTime)(double,USHORT*,USHORT *);
-static HRESULT (WINAPI *pVarFormatNumber)(LPVARIANT,int,int,int,int,ULONG,BSTR*);
-static HRESULT (WINAPI *pVarFormat)(LPVARIANT,LPOLESTR,int,int,ULONG,BSTR*);
 
 /* Get a conversion function ptr, return if function not available */
 #define CHECKPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func); \
@@ -1601,339 +1599,6 @@ static void test_VariantTimeToDosDateTim
   DT2DOS(29221.95833333333,1,1,1,1980,23,0,0); /* 1/1/1980 11:00:00 PM */
 }
 
-#define FMT_NUMBER(vt,val) \
-  VariantInit(&v); V_VT(&v) = vt; val(&v) = 1; \
-  hres = pVarFormatNumber(&v,2,0,0,0,0,&str); \
-  ok(hres == S_OK, "VarFormatNumber (vt %d): returned %8lx\n", vt, hres); \
-  if (hres == S_OK) \
-    ok(str && strcmpW(str,szResult1) == 0, \
-       "VarFormatNumber (vt %d): string different\n", vt)
-
-static void test_VarFormatNumber(void)
-{
-  static const WCHAR szSrc1[] = { '1','\0' };
-  static const WCHAR szResult1[] = { '1','.','0','0','\0' };
-  static const WCHAR szSrc2[] = { '-','1','\0' };
-  static const WCHAR szResult2[] = { '(','1','.','0','0',')','\0' };
-  char buff[8];
-  HRESULT hres;
-  VARIANT v;
-  BSTR str = NULL;
-
-  CHECKPTR(VarFormatNumber);
-
-  GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, buff, sizeof(buff)/sizeof(char));
-  if (buff[0] != '.' || buff[1])
-  {
-    trace("Skipping VarFormatNumber tests as decimal separator is '%s'\n", buff);
-    return;
-  }
-
-  FMT_NUMBER(VT_I1, V_I1);
-  FMT_NUMBER(VT_UI1, V_UI1);
-  FMT_NUMBER(VT_I2, V_I2);
-  FMT_NUMBER(VT_UI2, V_UI2);
-  FMT_NUMBER(VT_I4, V_I4);
-  FMT_NUMBER(VT_UI4, V_UI4);
-  if (HAVE_OLEAUT32_I8)
-  {
-    FMT_NUMBER(VT_I8, V_I8);
-    FMT_NUMBER(VT_UI8, V_UI8);
-  }
-  FMT_NUMBER(VT_R4, V_R4);
-  FMT_NUMBER(VT_R8, V_R8);
-  FMT_NUMBER(VT_BOOL, V_BOOL);
-
-  V_VT(&v) = VT_BSTR;
-  V_BSTR(&v) = SysAllocString(szSrc1);
-
-  hres = pVarFormatNumber(&v,2,0,0,0,0,&str);
-  ok(hres == S_OK, "VarFormatNumber (bstr): returned %8lx\n", hres);
-  if (hres == S_OK)
-    ok(str && strcmpW(str, szResult1) == 0, "VarFormatNumber (bstr): string different\n");
-  SysFreeString(V_BSTR(&v));
-  SysFreeString(str);
-
-  V_BSTR(&v) = SysAllocString(szSrc2);
-  hres = pVarFormatNumber(&v,2,0,-1,0,0,&str);
-  ok(hres == S_OK, "VarFormatNumber (bstr): returned %8lx\n", hres);
-  if (hres == S_OK)
-    ok(str && strcmpW(str, szResult2) == 0, "VarFormatNumber (-bstr): string different\n");
-  SysFreeString(V_BSTR(&v));
-  SysFreeString(str);
-}
-
-#define SIGNED_VTBITS (VTBIT_I1|VTBIT_I2|VTBIT_I4|VTBIT_I8|VTBIT_R4|VTBIT_R8)
-
-static const char *szVarFmtFail = "VT %d|0x%04x Format %s: expected 0x%08lx, '%s', got 0x%08lx, '%s'\n";
-#define VARFMT(vt,v,val,fmt,ret,str) do { \
-  if (out) SysFreeString(out); out = NULL; \
-  V_VT(&in) = (vt); v(&in) = val; \
-  if (fmt) MultiByteToWideChar(CP_ACP, 0, fmt, -1, buffW, sizeof(buffW)/sizeof(WCHAR)); \
-  hres = pVarFormat(&in,fmt ? buffW : NULL,fd,fw,flags,&out); \
-  if (SUCCEEDED(hres)) WideCharToMultiByte(CP_ACP, 0, out, -1, buff, sizeof(buff),0,0); \
-  else buff[0] = '\0'; \
-  ok(hres == ret && (FAILED(ret) || !strcmp(buff, str)), \
-     szVarFmtFail, \
-     (vt)&VT_TYPEMASK,(vt)&~VT_TYPEMASK,fmt?fmt:"<null>",ret,str,hres,buff); \
-  } while(0)
-
-typedef struct tagFMTRES
-{
-  LPCSTR fmt;
-  LPCSTR one_res;
-  LPCSTR zero_res;
-} FMTRES;
-
-static const FMTRES VarFormat_results[] =
-{
-  { NULL, "1", "0" },
-  { "", "1", "0" },
-  { "General Number", "1", "0" },
-  { "Percent", "100.00%", "0.00%" },
-  { "Standard", "1.00", "0.00" },
-  { "Scientific","1.00E+00", "0.00E+00" },
-  { "True/False", "True", "False" },
-  { "On/Off", "On", "Off" },
-  { "Yes/No", "Yes", "No" },
-  { "#", "1", "" },
-  { "##", "1", "" },
-  { "#.#", "1.", "." },
-  { "0", "1", "0" },
-  { "00", "01", "00" },
-  { "0.0", "1.0", "0.0" },
-  { "00\\c\\o\\p\\y", "01copy","00copy" },
-  { "\"pos\";\"neg\"", "pos", "pos" },
-  { "\"pos\";\"neg\";\"zero\"","pos", "zero" }
-};
-
-typedef struct tagFMTDATERES
-{
-  DATE   val;
-  LPCSTR fmt;
-  LPCSTR res;
-} FMTDATERES;
-
-static const FMTDATERES VarFormat_date_results[] =
-{
-  { 0.0, "w", "7" },
-  { 0.0, "w", "6" },
-  { 0.0, "w", "5" },
-  { 0.0, "w", "4" },
-  { 0.0, "w", "3" },
-  { 0.0, "w", "2" },
-  { 0.0, "w", "1" }, /* First 7 entries must remain in this order! */
-  { 2.525, "am/pm", "pm" },
-  { 2.525, "AM/PM", "PM" },
-  { 2.525, "A/P", "P" },
-  { 2.525, "a/p", "p" },
-  { 2.525, "q", "1" },
-  { 2.525, "d", "1" },
-  { 2.525, "dd", "01" },
-  { 2.525, "ddd", "Mon" },
-  { 2.525, "dddd", "Monday" },
-  { 2.525, "mmm", "Jan" },
-  { 2.525, "mmmm", "January" },
-  { 2.525, "y", "1" },
-  { 2.525, "yy", "00" },
-  { 2.525, "yyy", "001" },
-  { 2.525, "yyyy", "1900" },
-  { 2.525, "dd mm yyyy hh:mm:ss", "01 01 1900 12:36:00" },
-  { 2.525, "dd mm yyyy mm", "01 01 1900 01" },
-  { 2.525, "dd mm yyyy :mm", "01 01 1900 :01" },
-  { 2.525, "dd mm yyyy hh:mm", "01 01 1900 12:36" },
-  { 2.525, "mm mm", "01 01" },
-  { 2.525, "mm :mm:ss", "01 :01:00" },
-  { 2.525, "mm :ss:mm", "01 :00:01" },
-  { 2.525, "hh:mm :ss:mm", "12:36 :00:01" },
-  { 2.525, "hh:dd :mm:mm", "12:01 :01:01" },
-  { 2.525, "dd:hh :mm:mm", "01:12 :36:01" },
-  { 2.525, "hh :mm:mm", "12 :36:01" },
-  { 2.525, "dd :mm:mm", "01 :01:01" },
-  { 2.525, "dd :mm:nn", "01 :01:36" },
-  { 2.725, "hh:nn:ss A/P", "05:24:00 P" }
-};
-
-#define VNUMFMT(vt,v) \
-  for (i = 0; i < sizeof(VarFormat_results)/sizeof(FMTRES); i++) \
-  { \
-    VARFMT(vt,v,1,VarFormat_results[i].fmt,S_OK,VarFormat_results[i].one_res); \
-    VARFMT(vt,v,0,VarFormat_results[i].fmt,S_OK,VarFormat_results[i].zero_res); \
-  } \
-  if ((1 << vt) & SIGNED_VTBITS) \
-  { \
-    VARFMT(vt,v,-1,"\"pos\";\"neg\"",S_OK,"neg"); \
-    VARFMT(vt,v,-1,"\"pos\";\"neg\";\"zero\"",S_OK,"neg"); \
-  }
-
-static void test_VarFormat(void)
-{
-  static const WCHAR szTesting[] = { 't','e','s','t','i','n','g','\0' };
-  size_t i;
-  WCHAR buffW[256];
-  char buff[256];
-  VARIANT in;
-  VARIANT_BOOL bTrue = VARIANT_TRUE, bFalse = VARIANT_FALSE;
-  int fd = 0, fw = 0;
-  ULONG flags = 0;
-  BSTR bstrin, out = NULL;
-  HRESULT hres;
-
-  CHECKPTR(VarFormat);
-
-  if (PRIMARYLANGID(LANGIDFROMLCID(GetUserDefaultLCID())) != LANG_ENGLISH)
-  {
-    trace("Skipping VarFormat tests for non english language\n");
-    return;
-  }
-  GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, buff, sizeof(buff)/sizeof(char));
-  if (buff[0] != '.' || buff[1])
-  {
-    trace("Skipping VarFormat tests as decimal separator is '%s'\n", buff);
-    return;
-  }
-  GetLocaleInfoA(LOCALE_USER_DEFAULT, LOCALE_IDIGITS, buff, sizeof(buff)/sizeof(char));
-  if (buff[0] != '2' || buff[1])
-  {
-    trace("Skipping VarFormat tests as decimal places is '%s'\n", buff);
-    return;
-  }
-
-  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"True/False",S_OK,"True");
-  VARFMT(VT_BOOL,V_BOOL,VARIANT_FALSE,"True/False",S_OK,"False");
-
-  VNUMFMT(VT_I1,V_I1);
-  VNUMFMT(VT_I2,V_I2);
-  VNUMFMT(VT_I4,V_I4);
-  if (HAVE_OLEAUT32_I8)
-  {
-    VNUMFMT(VT_I8,V_I8);
-  }
-  VNUMFMT(VT_INT,V_INT);
-  VNUMFMT(VT_UI1,V_UI1);
-  VNUMFMT(VT_UI2,V_UI2);
-  VNUMFMT(VT_UI4,V_UI4);
-  if (HAVE_OLEAUT32_I8)
-  {
-    VNUMFMT(VT_UI8,V_UI8);
-  }
-  VNUMFMT(VT_UINT,V_UINT);
-  VNUMFMT(VT_R4,V_R4);
-  VNUMFMT(VT_R8,V_R8);
-
-  /* Reference types are dereferenced */
-  VARFMT(VT_BOOL|VT_BYREF,V_BOOLREF,&bTrue,"True/False",S_OK,"True");
-  VARFMT(VT_BOOL|VT_BYREF,V_BOOLREF,&bFalse,"True/False",S_OK,"False");
-
-  /* Dates */
-  for (i = 0; i < sizeof(VarFormat_date_results)/sizeof(FMTDATERES); i++)
-  {
-    if (i < 7)
-      fd = i + 1; /* Test first day */
-    else
-      fd = 0;
-    VARFMT(VT_DATE,V_DATE,VarFormat_date_results[i].val,
-           VarFormat_date_results[i].fmt,S_OK,
-           VarFormat_date_results[i].res);
-  }
-
-  /* Strings */
-  bstrin = SysAllocString(szTesting);
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"",S_OK,"testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"@",S_OK,"testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"&",S_OK,"testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"\\x@\\x@",S_OK,"xtxesting");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"\\x&\\x&",S_OK,"xtxesting");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"@\\x",S_OK,"txesting");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"@@@@@@@@",S_OK," testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"@\\x@@@@@@@",S_OK," xtesting");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"&&&&&&&&",S_OK,"testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"!&&&&&&&",S_OK,"testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"&&&&&&&!",S_OK,"testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,">&&",S_OK,"TESTING");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"<&&",S_OK,"testing");
-  VARFMT(VT_BSTR,V_BSTR,bstrin,"<&>&",S_OK,"testing");
-  SysFreeString(bstrin);
-  /* Numeric values are converted to strings then output */
-  VARFMT(VT_I1,V_I1,1,"<&>&",S_OK,"1");
-
-  /* Number formats */
-  VARFMT(VT_I4,V_I4,1,"#00000000",S_OK,"00000001");
-  VARFMT(VT_I4,V_I4,1,"000###",S_OK,"000001");
-  VARFMT(VT_I4,V_I4,1,"#00##00#0",S_OK,"00000001");
-  VARFMT(VT_I4,V_I4,1,"1#####0000",S_OK,"10001");
-  todo_wine {
-  VARFMT(VT_I4,V_I4,100000,"#,###,###,###",S_OK,"100,000");
-  }
-  VARFMT(VT_R8,V_R8,1.23456789,"0#.0#0#0#0#0",S_OK,"01.234567890");
-  VARFMT(VT_R8,V_R8,1.2,"0#.0#0#0#0#0",S_OK,"01.200000000");
-  VARFMT(VT_R8,V_R8,9.87654321,"#0.#0#0#0#0#",S_OK,"9.87654321");
-  VARFMT(VT_R8,V_R8,9.8,"#0.#0#0#0#0#",S_OK,"9.80000000");
-  VARFMT(VT_R8,V_R8,0.00000008,"#0.#0#0#0#0#0",S_OK,"0.0000000800");
-  VARFMT(VT_R8,V_R8,0.00010705,"#0.##########",S_OK,"0.00010705");
-  VARFMT(VT_I4,V_I4,17,"#0",S_OK,"17");
-  VARFMT(VT_I4,V_I4,4711,"#0",S_OK,"4711");
-  VARFMT(VT_I4,V_I4,17,"#00",S_OK,"17");
-  VARFMT(VT_I4,V_I4,100,"0##",S_OK,"100");
-  VARFMT(VT_I4,V_I4,17,"#000",S_OK,"017");
-  VARFMT(VT_I4,V_I4,17,"#0.00",S_OK,"17.00");
-  VARFMT(VT_I4,V_I4,17,"#0000.00",S_OK,"0017.00");
-  VARFMT(VT_I4,V_I4,17,"#.00",S_OK,"17.00");
-  VARFMT(VT_R8,V_R8,1.7,"#.00",S_OK,"1.70");
-  VARFMT(VT_R8,V_R8,.17,"#.00",S_OK,".17");
-  VARFMT(VT_I4,V_I4,17,"#3",S_OK,"173");
-  VARFMT(VT_I4,V_I4,17,"#33",S_OK,"1733");
-  VARFMT(VT_I4,V_I4,17,"#3.33",S_OK,"173.33");
-  VARFMT(VT_I4,V_I4,17,"#3333.33",S_OK,"173333.33");
-  VARFMT(VT_I4,V_I4,17,"#.33",S_OK,"17.33");
-  VARFMT(VT_R8,V_R8,.17,"#.33",S_OK,".33");
-  VARFMT(VT_R8,V_R8,1.7,"0.0000E-000",S_OK,"1.7000E000");
-  VARFMT(VT_R8,V_R8,1.7,"0.0000e-1",S_OK,"1.7000e01");
-  VARFMT(VT_R8,V_R8,86.936849,"#0.000000000000e-000",S_OK,"86.936849000000e000");
-  VARFMT(VT_R8,V_R8,1.7,"#0",S_OK,"2");
-  VARFMT(VT_R8,V_R8,1.7,"#.33",S_OK,"2.33");
-  VARFMT(VT_R8,V_R8,1.7,"#3",S_OK,"23");
-  VARFMT(VT_R8,V_R8,1.73245,"0.0000E+000",S_OK,"1.7325E+000");
-  VARFMT(VT_R8,V_R8,9.9999999,"#0.000000",S_OK,"10.000000");
-  VARFMT(VT_R8,V_R8,1.7,"0.0000e+0#",S_OK,"1.7000e+0");
-  VARFMT(VT_R8,V_R8,100.0001e+0,"0.0000E+0",S_OK,"1.0000E+2");
-  VARFMT(VT_R8,V_R8,1000001,"0.0000e+1",S_OK,"1.0000e+61");
-  VARFMT(VT_R8,V_R8,100.0001e+25,"0.0000e+0",S_OK,"1.0000e+27");
-  VARFMT(VT_R8,V_R8,450.0001e+43,"#000.0000e+0",S_OK,"4500.0010e+42");
-  VARFMT(VT_R8,V_R8,0.0001e-11,"##00.0000e-0",S_OK,"1000.0000e-18");
-  VARFMT(VT_R8,V_R8,0.0317e-11,"0000.0000e-0",S_OK,"3170.0000e-16");
-  VARFMT(VT_R8,V_R8,0.0021e-11,"00##.0000e-0",S_OK,"2100.0000e-17");
-  VARFMT(VT_R8,V_R8,1.0001e-27,"##00.0000e-0",S_OK,"1000.1000e-30");
-  VARFMT(VT_R8,V_R8,47.11,".0000E+0",S_OK,".4711E+2");
-  VARFMT(VT_R8,V_R8,3.0401e-13,"#####.####e-0%",S_OK,"30401.e-15%");
-
-
-  /* 'out' is not cleared */
-  out = (BSTR)0x1;
-  pVarFormat(&in,NULL,fd,fw,flags,&out); /* Would crash if out is cleared */
-  out = NULL;
-
-  /* VT_NULL */
-  V_VT(&in) = VT_NULL;
-  hres = pVarFormat(&in,NULL,fd,fw,0,&out);
-  ok(hres == S_OK, "VarFormat failed with 0x%08lx\n", hres);
-  ok(out == NULL, "expected NULL formatted string\n");
-
-  /* Invalid args */
-  hres = pVarFormat(&in,NULL,fd,fw,flags,NULL);
-  ok(hres == E_INVALIDARG, "Null out: expected E_INVALIDARG, got 0x%08lx\n", hres);
-  hres = pVarFormat(NULL,NULL,fd,fw,flags,&out);
-  ok(hres == E_INVALIDARG, "Null in: expected E_INVALIDARG, got 0x%08lx\n", hres);
-  fd = -1;
-  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
-  fd = 8;
-  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
-  fd = 0; fw = -1;
-  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
-  fw = 4;
-  VARFMT(VT_BOOL,V_BOOL,VARIANT_TRUE,"",E_INVALIDARG,"");
-}
-
 static HRESULT (WINAPI *pVarAbs)(LPVARIANT,LPVARIANT);
 
 static const char *szVarAbsFail = "VarAbs: expected 0x0,%d,%d, got 0x%lX,%d,%d\n";
@@ -5901,8 +5566,6 @@ START_TEST(vartest)
   test_VariantTimeToSystemTime();
   test_DosDateTimeToVariantTime();
   test_VariantTimeToDosDateTime();
-  test_VarFormatNumber();
-  test_VarFormat();
   test_VarAbs();
   test_VarNot();
   test_VarSub();
-- 
1.4.0


More information about the wine-patches mailing list