kernel32/tests: Avoid crash on Win95 (GetLongPathNameW).
[wine] / dlls / kernel32 / tests / codepage.c
1 /*
2  * Unit tests for code page to/from unicode translations
3  *
4  * Copyright (c) 2002 Dmitry Timoshkov
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #include <stdarg.h>
22
23 #include "wine/test.h"
24 #include "windef.h"
25 #include "winbase.h"
26 #include "winnls.h"
27
28 static const WCHAR foobarW[] = {'f','o','o','b','a','r',0};
29
30 static void test_destination_buffer(void)
31 {
32     LPSTR   buffer;
33     INT     maxsize;
34     INT     needed;
35     INT     len;
36
37     SetLastError(0xdeadbeef);
38     needed = WideCharToMultiByte(CP_ACP, 0, foobarW, -1, NULL, 0, NULL, NULL);
39     ok( (needed > 0), "returned %d with 0x%x/%d (expected '> 0')\n",
40         needed, GetLastError(), GetLastError());
41
42     maxsize = needed*2;
43     buffer = HeapAlloc(GetProcessHeap(), 0, maxsize);
44     if (buffer == NULL) return;
45
46     maxsize--;
47     memset(buffer, 'x', maxsize);
48     buffer[maxsize] = '\0';
49     SetLastError(0xdeadbeef);
50     len = WideCharToMultiByte(CP_ACP, 0, foobarW, -1, buffer, needed+1, NULL, NULL);
51     ok( (len > 0), "returned %d with 0x%x/%d and '%s' (expected '> 0')\n",
52         len, GetLastError(), GetLastError(), buffer);
53
54     memset(buffer, 'x', maxsize);
55     buffer[maxsize] = '\0';
56     SetLastError(0xdeadbeef);
57     len = WideCharToMultiByte(CP_ACP, 0, foobarW, -1, buffer, needed, NULL, NULL);
58     ok( (len > 0), "returned %d with 0x%x/%d and '%s' (expected '> 0')\n",
59         len, GetLastError(), GetLastError(), buffer);
60
61     memset(buffer, 'x', maxsize);
62     buffer[maxsize] = '\0';
63     SetLastError(0xdeadbeef);
64     len = WideCharToMultiByte(CP_ACP, 0, foobarW, -1, buffer, needed-1, NULL, NULL);
65     ok( !len && (GetLastError() == ERROR_INSUFFICIENT_BUFFER),
66         "returned %d with 0x%x/%d and '%s' (expected '0' with " \
67         "ERROR_INSUFFICIENT_BUFFER)\n", len, GetLastError(), GetLastError(), buffer);
68
69     memset(buffer, 'x', maxsize);
70     buffer[maxsize] = '\0';
71     SetLastError(0xdeadbeef);
72     len = WideCharToMultiByte(CP_ACP, 0, foobarW, -1, buffer, 1, NULL, NULL);
73     ok( !len && (GetLastError() == ERROR_INSUFFICIENT_BUFFER),
74         "returned %d with 0x%x/%d and '%s' (expected '0' with " \
75         "ERROR_INSUFFICIENT_BUFFER)\n", len, GetLastError(), GetLastError(), buffer);
76
77     SetLastError(0xdeadbeef);
78     len = WideCharToMultiByte(CP_ACP, 0, foobarW, -1, buffer, 0, NULL, NULL);
79     ok( (len > 0), "returned %d with 0x%x/%d (expected '> 0')\n",
80         len, GetLastError(), GetLastError());
81
82     SetLastError(0xdeadbeef);
83     len = WideCharToMultiByte(CP_ACP, 0, foobarW, -1, NULL, needed, NULL, NULL);
84     ok( !len && (GetLastError() == ERROR_INVALID_PARAMETER),
85         "returned %d with 0x%x/%d (expected '0' with " \
86         "ERROR_INVALID_PARAMETER)\n", len, GetLastError(), GetLastError());
87
88     HeapFree(GetProcessHeap(), 0, buffer);
89
90 }
91
92
93 static void test_null_source(void)
94 {
95     int len;
96     DWORD GLE;
97
98     SetLastError(0);
99     len = WideCharToMultiByte(CP_ACP, 0, NULL, 0, NULL, 0, NULL, NULL);
100     GLE = GetLastError();
101     ok(!len && GLE == ERROR_INVALID_PARAMETER,
102         "WideCharToMultiByte returned %d with GLE=%d (expected 0 with ERROR_INVALID_PARAMETER)\n",
103         len, GLE);
104 }
105
106 /* lstrcmpW is not supported on Win9x! */
107 static int mylstrcmpW(const WCHAR* str1, const WCHAR* str2)
108 {
109     while (*str1 && *str1==*str2) {
110         str1++;
111         str2++;
112     }
113     return *str1-*str2;
114 }
115
116 static void test_negative_source_length(void)
117 {
118     int len;
119     char buf[10];
120     WCHAR bufW[10];
121
122     /* Test, whether any negative source length works as strlen() + 1 */
123     SetLastError( 0xdeadbeef );
124     memset(buf,'x',sizeof(buf));
125     len = WideCharToMultiByte(CP_ACP, 0, foobarW, -2002, buf, 10, NULL, NULL);
126     ok(len == 7 && !lstrcmpA(buf, "foobar") && GetLastError() == 0xdeadbeef,
127        "WideCharToMultiByte(-2002): len=%d error=%d\n",len,GetLastError());
128
129     SetLastError( 0xdeadbeef );
130     memset(bufW,'x',sizeof(bufW));
131     len = MultiByteToWideChar(CP_ACP, 0, "foobar", -2002, bufW, 10);
132     ok(len == 7 && !mylstrcmpW(bufW, foobarW) && GetLastError() == 0xdeadbeef,
133        "MultiByteToWideChar(-2002): len=%d error=%d\n",len,GetLastError());
134 }
135
136 static void test_overlapped_buffers(void)
137 {
138     static const WCHAR strW[] = {'j','u','s','t',' ','a',' ','t','e','s','t',0};
139     static const char strA[] = "just a test";
140     char buf[256];
141     int ret;
142
143     lstrcpyW((WCHAR *)(buf + 1), strW);
144     ret = WideCharToMultiByte(CP_ACP, 0, (WCHAR *)(buf + 1), -1, buf, sizeof(buf), NULL, NULL);
145     ok(ret == sizeof(strA), "unexpected ret %d\n", ret);
146     ok(!memcmp(buf, strA, sizeof(strA)), "conversion failed: %s\n", buf);
147 }
148
149 START_TEST(codepage)
150 {
151     test_destination_buffer();
152     test_null_source();
153     test_negative_source_length();
154     test_overlapped_buffers();
155 }