user32/tests: Define the required Windows version before including anything.
[wine] / dlls / user32 / tests / wsprintf.c
1  /* Unit test suite for the wsprintf functions
2  *
3  * Copyright 2002 Bill Medland
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 #include <stdarg.h>
21
22 #include "wine/test.h"
23 #include "windef.h"
24 #include "winbase.h"
25 #include "winuser.h"
26 #include "winnls.h"
27
28 static const struct
29 {
30     const char *fmt;
31     ULONGLONG value;
32     const char *res;
33 } i64_formats[] =
34 {
35     { "%I64X", ((ULONGLONG)0x12345 << 32) | 0x67890a, "123450067890A" },
36     { "%I32X", ((ULONGLONG)0x12345 << 32) | 0x67890a, "67890A" },
37     { "%I64d", (ULONGLONG)543210 * 1000000, "543210000000" },
38     { "%I64X", (LONGLONG)-0x12345, "FFFFFFFFFFFEDCBB" },
39     { "%I32x", (LONGLONG)-0x12345, "fffedcbb" },
40     { "%I64u", (LONGLONG)-123, "18446744073709551493" },
41     { "%Id",   (LONGLONG)-12345, "-12345" },
42 #ifdef _WIN64
43     { "%Ix",   ((ULONGLONG)0x12345 << 32) | 0x67890a, "123450067890a" },
44     { "%Ix",   (LONGLONG)-0x12345, "fffffffffffedcbb" },
45     { "%p",    (LONGLONG)-0x12345, "FFFFFFFFFFFEDCBB" },
46 #else
47     { "%Ix",   ((ULONGLONG)0x12345 << 32) | 0x67890a, "67890a" },
48     { "%Ix",   (LONGLONG)-0x12345, "fffedcbb" },
49     { "%p",    (LONGLONG)-0x12345, "FFFEDCBB" },
50 #endif
51 };
52
53 static void wsprintfATest(void)
54 {
55     char buf[25];
56     unsigned int i;
57     int rc;
58
59     rc=wsprintfA(buf, "%010ld", -1);
60     ok(rc == 10, "wsprintfA length failure: rc=%d error=%d\n",rc,GetLastError());
61     ok((lstrcmpA(buf, "-000000001") == 0),
62        "wsprintfA zero padded negative value failure: buf=[%s]\n",buf);
63     rc = wsprintfA(buf, "%I64X", (ULONGLONG)0);
64     if (rc == 4 && !lstrcmpA(buf, "I64X"))
65     {
66         win_skip( "I64 formats not supported\n" );
67         return;
68     }
69     for (i = 0; i < sizeof(i64_formats)/sizeof(i64_formats[0]); i++)
70     {
71         rc = wsprintfA(buf, i64_formats[i].fmt, i64_formats[i].value);
72         ok(rc == strlen(i64_formats[i].res), "%u: wsprintfA length failure: rc=%d\n", i, rc);
73         ok(!strcmp(buf, i64_formats[i].res), "%u: wrong result [%s]\n", i, buf);
74     }
75 }
76
77 static void wsprintfWTest(void)
78 {
79     static const WCHAR fmt_010ld[] = {'%','0','1','0','l','d','\0'};
80     static const WCHAR res_010ld[] = {'-','0','0','0','0','0','0','0','0','1', '\0'};
81     static const WCHAR fmt_I64x[] = {'%','I','6','4','x',0};
82     WCHAR buf[25], fmt[25], res[25];
83     unsigned int i;
84     int rc;
85
86     rc=wsprintfW(buf, fmt_010ld, -1);
87     if (rc==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
88     {
89         win_skip("wsprintfW is not implemented\n");
90         return;
91     }
92     ok(rc == 10, "wsPrintfW length failure: rc=%d error=%d\n",rc,GetLastError());
93     ok((lstrcmpW(buf, res_010ld) == 0),
94        "wsprintfW zero padded negative value failure\n");
95     rc = wsprintfW(buf, fmt_I64x, (ULONGLONG)0 );
96     if (rc == 4 && !lstrcmpW(buf, fmt_I64x + 1))
97     {
98         win_skip( "I64 formats not supported\n" );
99         return;
100     }
101     for (i = 0; i < sizeof(i64_formats)/sizeof(i64_formats[0]); i++)
102     {
103         MultiByteToWideChar( CP_ACP, 0, i64_formats[i].fmt, -1, fmt, sizeof(fmt)/sizeof(WCHAR) );
104         MultiByteToWideChar( CP_ACP, 0, i64_formats[i].res, -1, res, sizeof(res)/sizeof(WCHAR) );
105         rc = wsprintfW(buf, fmt, i64_formats[i].value);
106         ok(rc == lstrlenW(res), "%u: wsprintfW length failure: rc=%d\n", i, rc);
107         ok(!lstrcmpW(buf, res), "%u: wrong result [%s]\n", i, wine_dbgstr_w(buf));
108     }
109 }
110
111 /* Test if the CharUpper / CharLower functions return true 16 bit results,
112    if the input is a 16 bit input value. */
113
114 static void CharUpperTest(void)
115 {
116     INT_PTR i,out,failed;
117
118     failed = 0;
119     for (i=0;i<256;i++)
120         {
121         out = (INT_PTR)CharUpper((LPTSTR)i);
122         /* printf("%0x ",out); */
123         if ((out >> 16) != 0)
124            {
125            failed = 1;
126            break;
127            }
128         }
129     ok(!failed,"CharUpper failed - 16bit input (0x%0lx) returned 32bit result (0x%0lx)\n",i,out);
130 }
131
132 static void CharLowerTest(void)
133 {
134     INT_PTR i,out,failed;
135
136     failed = 0;
137     for (i=0;i<256;i++)
138         {
139         out = (INT_PTR)CharLower((LPTSTR)i);
140         /* printf("%0x ",out); */
141         if ((out >> 16) != 0)
142            {
143            failed = 1;
144            break;
145            }
146         }
147     ok(!failed,"CharLower failed - 16bit input (0x%0lx) returned 32bit result (0x%0lx)\n",i,out);
148 }
149
150
151 START_TEST(wsprintf)
152 {
153     wsprintfATest();
154     wsprintfWTest();
155     CharUpperTest();
156     CharLowerTest();
157 }