2003-10-01 05:10:56 +02:00
|
|
|
/* Unit test suite for SHLWAPI string functions
|
|
|
|
*
|
|
|
|
* Copyright 2003 Jon Griffiths
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-10-01 05:10:56 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "wine/test.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winerror.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
#define NO_SHLWAPI_REG
|
|
|
|
#define NO_SHLWAPI_PATH
|
|
|
|
#define NO_SHLWAPI_GDI
|
|
|
|
#define NO_SHLWAPI_STREAM
|
|
|
|
#include "shlwapi.h"
|
2004-02-10 03:22:53 +01:00
|
|
|
#include "shtypes.h"
|
|
|
|
|
2007-02-04 23:55:35 +01:00
|
|
|
#define expect_eq(expr, val, type, fmt) do { \
|
|
|
|
type ret = expr; \
|
|
|
|
ok(ret == val, "Unexpected value of '" #expr "': " #fmt " instead of " #val "\n", ret); \
|
|
|
|
} while (0);
|
|
|
|
|
2008-08-04 10:26:06 +02:00
|
|
|
#define expect_eq2(expr, val1, val2, type, fmt) do { \
|
|
|
|
type ret = expr; \
|
|
|
|
ok(ret == val1 || ret == val2, "Unexpected value of '" #expr "': " #fmt " instead of " #val1 " or " #val2 "\n", ret); \
|
|
|
|
} while (0);
|
|
|
|
|
2010-01-30 16:25:05 +01:00
|
|
|
static BOOL (WINAPI *pChrCmpIA)(CHAR, CHAR);
|
|
|
|
static BOOL (WINAPI *pChrCmpIW)(WCHAR, WCHAR);
|
2008-03-05 12:03:29 +01:00
|
|
|
static BOOL (WINAPI *pIntlStrEqWorkerA)(BOOL,LPCSTR,LPCSTR,int);
|
|
|
|
static BOOL (WINAPI *pIntlStrEqWorkerW)(BOOL,LPCWSTR,LPCWSTR,int);
|
2004-09-13 20:11:56 +02:00
|
|
|
static DWORD (WINAPI *pSHAnsiToAnsi)(LPCSTR,LPSTR,int);
|
|
|
|
static DWORD (WINAPI *pSHUnicodeToUnicode)(LPCWSTR,LPWSTR,int);
|
2008-03-05 12:03:45 +01:00
|
|
|
static LPSTR (WINAPI *pStrCatBuffA)(LPSTR,LPCSTR,INT);
|
|
|
|
static LPWSTR (WINAPI *pStrCatBuffW)(LPWSTR,LPCWSTR,INT);
|
2008-03-05 12:03:29 +01:00
|
|
|
static LPSTR (WINAPI *pStrCpyNXA)(LPSTR,LPCSTR,int);
|
|
|
|
static LPWSTR (WINAPI *pStrCpyNXW)(LPWSTR,LPCWSTR,int);
|
2008-03-05 12:03:45 +01:00
|
|
|
static LPSTR (WINAPI *pStrFormatByteSize64A)(LONGLONG,LPSTR,UINT);
|
|
|
|
static LPSTR (WINAPI *pStrFormatKBSizeA)(LONGLONG,LPSTR,UINT);
|
|
|
|
static LPWSTR (WINAPI *pStrFormatKBSizeW)(LONGLONG,LPWSTR,UINT);
|
2005-01-25 11:56:23 +01:00
|
|
|
static BOOL (WINAPI *pStrIsIntlEqualA)(BOOL,LPCSTR,LPCSTR,int);
|
|
|
|
static BOOL (WINAPI *pStrIsIntlEqualW)(BOOL,LPCWSTR,LPCWSTR,int);
|
2010-07-20 06:14:11 +02:00
|
|
|
static LPWSTR (WINAPI *pStrPBrkW)(LPCWSTR,LPCWSTR);
|
2010-07-20 06:14:20 +02:00
|
|
|
static LPSTR (WINAPI *pStrRChrA)(LPCSTR,LPCSTR,WORD);
|
2010-07-20 06:14:48 +02:00
|
|
|
static HRESULT (WINAPI *pStrRetToBSTR)(STRRET*,LPCITEMIDLIST,BSTR*);
|
2008-03-05 12:03:45 +01:00
|
|
|
static HRESULT (WINAPI *pStrRetToBufA)(STRRET*,LPCITEMIDLIST,LPSTR,UINT);
|
|
|
|
static HRESULT (WINAPI *pStrRetToBufW)(STRRET*,LPCITEMIDLIST,LPWSTR,UINT);
|
2010-07-19 02:35:27 +02:00
|
|
|
static LPWSTR (WINAPI *pStrStrNW)(LPCWSTR,LPCWSTR,UINT);
|
2010-07-19 02:35:43 +02:00
|
|
|
static LPWSTR (WINAPI *pStrStrNIW)(LPCWSTR,LPCWSTR,UINT);
|
2008-03-05 12:03:45 +01:00
|
|
|
static INT (WINAPIV *pwnsprintfA)(LPSTR,INT,LPCSTR, ...);
|
|
|
|
static INT (WINAPIV *pwnsprintfW)(LPWSTR,INT,LPCWSTR, ...);
|
2009-09-24 14:31:17 +02:00
|
|
|
static LPWSTR (WINAPI *pStrChrNW)(LPWSTR,WCHAR,UINT);
|
2012-03-08 14:35:56 +01:00
|
|
|
static BOOL (WINAPI *pStrToInt64ExA)(LPCSTR,DWORD,LONGLONG*);
|
|
|
|
static BOOL (WINAPI *pStrToInt64ExW)(LPCWSTR,DWORD,LONGLONG*);
|
2004-05-05 03:07:41 +02:00
|
|
|
|
2006-10-22 19:37:42 +02:00
|
|
|
static int strcmpW(const WCHAR *str1, const WCHAR *str2)
|
2004-02-10 03:22:53 +01:00
|
|
|
{
|
|
|
|
while (*str1 && (*str1 == *str2)) { str1++; str2++; }
|
|
|
|
return *str1 - *str2;
|
|
|
|
}
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
/* StrToInt/StrToIntEx results */
|
|
|
|
typedef struct tagStrToIntResult
|
|
|
|
{
|
|
|
|
const char* string;
|
|
|
|
int str_to_int;
|
2012-03-08 14:35:56 +01:00
|
|
|
LONGLONG str_to_int64_ex;
|
|
|
|
LONGLONG str_to_int64_hex;
|
2003-10-01 05:10:56 +02:00
|
|
|
} StrToIntResult;
|
|
|
|
|
|
|
|
static const StrToIntResult StrToInt_results[] = {
|
|
|
|
{ "1099", 1099, 1099, 1099 },
|
2012-03-08 14:35:56 +01:00
|
|
|
{ "4294967319", 23, ((LONGLONG)1 << 32) | 23, ((LONGLONG)1 << 32) | 23 },
|
2003-10-01 05:10:56 +02:00
|
|
|
{ "+88987", 0, 88987, 88987 },
|
|
|
|
{ "012", 12, 12, 12 },
|
|
|
|
{ "-55", -55, -55, -55 },
|
|
|
|
{ "-0", 0, 0, 0 },
|
|
|
|
{ "0x44ff", 0, 0, 0x44ff },
|
2012-03-08 14:35:56 +01:00
|
|
|
{ "0x2bdc546291f4b1", 0, 0, ((LONGLONG)0x2bdc54 << 32) | 0x6291f4b1 },
|
2003-10-01 05:10:56 +02:00
|
|
|
{ "+0x44f4", 0, 0, 0x44f4 },
|
|
|
|
{ "-0x44fd", 0, 0, 0x44fd },
|
|
|
|
{ "+ 88987", 0, 0, 0 },
|
|
|
|
{ "- 55", 0, 0, 0 },
|
|
|
|
{ "- 0", 0, 0, 0 },
|
|
|
|
{ "+ 0x44f4", 0, 0, 0 },
|
|
|
|
{ "--0x44fd", 0, 0, 0 },
|
|
|
|
{ " 1999", 0, 1999, 1999 },
|
|
|
|
{ " +88987", 0, 88987, 88987 },
|
|
|
|
{ " 012", 0, 12, 12 },
|
|
|
|
{ " -55", 0, -55, -55 },
|
|
|
|
{ " 0x44ff", 0, 0, 0x44ff },
|
|
|
|
{ " +0x44f4", 0, 0, 0x44f4 },
|
|
|
|
{ " -0x44fd", 0, 0, 0x44fd },
|
|
|
|
{ NULL, 0, 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* pStrFormatByteSize64/StrFormatKBSize results */
|
|
|
|
typedef struct tagStrFormatSizeResult
|
|
|
|
{
|
|
|
|
LONGLONG value;
|
|
|
|
const char* byte_size_64;
|
|
|
|
const char* kb_size;
|
2010-07-19 02:33:14 +02:00
|
|
|
int kb_size_broken;
|
|
|
|
const char* kb_size2;
|
2003-10-01 05:10:56 +02:00
|
|
|
} StrFormatSizeResult;
|
|
|
|
|
|
|
|
|
|
|
|
static const StrFormatSizeResult StrFormatSize_results[] = {
|
|
|
|
{ -1023, "-1023 bytes", "0 KB"},
|
|
|
|
{ -24, "-24 bytes", "0 KB"},
|
|
|
|
{ 309, "309 bytes", "1 KB"},
|
|
|
|
{ 10191, "9.95 KB", "10 KB"},
|
|
|
|
{ 100353, "98.0 KB", "99 KB"},
|
|
|
|
{ 1022286, "998 KB", "999 KB"},
|
2010-07-19 02:33:14 +02:00
|
|
|
{ 1046862, "0.99 MB", "1,023 KB", 1, "1023 KB"},
|
|
|
|
{ 1048574619, "999 MB", "1,023,999 KB", 1, "1023999 KB"},
|
|
|
|
{ 1073741775, "0.99 GB", "1,048,576 KB", 1, "1048576 KB"},
|
|
|
|
{ ((LONGLONG)0x000000f9 << 32) | 0xfffff94e, "999 GB", "1,048,575,999 KB", 1, "1048575999 KB"},
|
|
|
|
{ ((LONGLONG)0x000000ff << 32) | 0xfffffa9b, "0.99 TB", "1,073,741,823 KB", 1, "1073741823 KB"},
|
|
|
|
{ ((LONGLONG)0x0003e7ff << 32) | 0xfffffa9b, "999 TB", "1,073,741,823,999 KB", 1, "4294967295 KB"},
|
|
|
|
{ ((LONGLONG)0x0003ffff << 32) | 0xfffffbe8, "0.99 PB", "1,099,511,627,775 KB", 1, "4294967295 KB"},
|
|
|
|
{ ((LONGLONG)0x0f9fffff << 32) | 0xfffffd35, "999 PB", "1,099,511,627,776,000 KB", 1, "0 KB"},
|
|
|
|
{ ((LONGLONG)0x0fffffff << 32) | 0xfffffa9b, "0.99 EB", "1,125,899,906,842,623 KB", 1, "4294967295 KB"},
|
2003-10-01 05:10:56 +02:00
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
|
|
|
|
2011-08-23 15:51:31 +02:00
|
|
|
/* StrFromTimeIntervalA/StrFromTimeIntervalW results */
|
2003-10-01 05:10:56 +02:00
|
|
|
typedef struct tagStrFromTimeIntervalResult
|
|
|
|
{
|
|
|
|
DWORD ms;
|
|
|
|
int digits;
|
|
|
|
const char* time_interval;
|
|
|
|
} StrFromTimeIntervalResult;
|
|
|
|
|
|
|
|
|
|
|
|
static const StrFromTimeIntervalResult StrFromTimeInterval_results[] = {
|
|
|
|
{ 1, 1, " 0 sec" },
|
|
|
|
{ 1, 2, " 0 sec" },
|
|
|
|
{ 1, 3, " 0 sec" },
|
|
|
|
{ 1, 4, " 0 sec" },
|
|
|
|
{ 1, 5, " 0 sec" },
|
|
|
|
{ 1, 6, " 0 sec" },
|
|
|
|
{ 1, 7, " 0 sec" },
|
|
|
|
|
|
|
|
{ 1000000, 1, " 10 min" },
|
|
|
|
{ 1000000, 2, " 16 min" },
|
|
|
|
{ 1000000, 3, " 16 min 40 sec" },
|
|
|
|
{ 1000000, 4, " 16 min 40 sec" },
|
|
|
|
{ 1000000, 5, " 16 min 40 sec" },
|
|
|
|
{ 1000000, 6, " 16 min 40 sec" },
|
|
|
|
{ 1000000, 7, " 16 min 40 sec" },
|
|
|
|
|
|
|
|
{ 1999999, 1, " 30 min" },
|
|
|
|
{ 1999999, 2, " 33 min" },
|
|
|
|
{ 1999999, 3, " 33 min 20 sec" },
|
|
|
|
{ 1999999, 4, " 33 min 20 sec" },
|
|
|
|
{ 1999999, 5, " 33 min 20 sec" },
|
|
|
|
{ 1999999, 6, " 33 min 20 sec" },
|
|
|
|
{ 1999999, 7, " 33 min 20 sec" },
|
|
|
|
|
|
|
|
{ 3999997, 1, " 1 hr" },
|
|
|
|
{ 3999997, 2, " 1 hr 6 min" },
|
|
|
|
{ 3999997, 3, " 1 hr 6 min 40 sec" },
|
|
|
|
{ 3999997, 4, " 1 hr 6 min 40 sec" },
|
|
|
|
{ 3999997, 5, " 1 hr 6 min 40 sec" },
|
|
|
|
{ 3999997, 6, " 1 hr 6 min 40 sec" },
|
|
|
|
{ 3999997, 7, " 1 hr 6 min 40 sec" },
|
|
|
|
|
|
|
|
{ 149999851, 7, " 41 hr 40 min 0 sec" },
|
|
|
|
{ 150999850, 1, " 40 hr" },
|
|
|
|
{ 150999850, 2, " 41 hr" },
|
|
|
|
{ 150999850, 3, " 41 hr 50 min" },
|
|
|
|
{ 150999850, 4, " 41 hr 56 min" },
|
|
|
|
{ 150999850, 5, " 41 hr 56 min 40 sec" },
|
|
|
|
{ 150999850, 6, " 41 hr 56 min 40 sec" },
|
|
|
|
{ 150999850, 7, " 41 hr 56 min 40 sec" },
|
|
|
|
|
|
|
|
{ 493999507, 1, " 100 hr" },
|
|
|
|
{ 493999507, 2, " 130 hr" },
|
|
|
|
{ 493999507, 3, " 137 hr" },
|
|
|
|
{ 493999507, 4, " 137 hr 10 min" },
|
|
|
|
{ 493999507, 5, " 137 hr 13 min" },
|
|
|
|
{ 493999507, 6, " 137 hr 13 min 20 sec" },
|
|
|
|
{ 493999507, 7, " 137 hr 13 min 20 sec" },
|
|
|
|
|
|
|
|
{ 0, 0, NULL }
|
|
|
|
};
|
|
|
|
|
2011-09-15 09:36:43 +02:00
|
|
|
|
|
|
|
/* Returns true if the user interface is in English. Note that this does not
|
|
|
|
* presume of the formatting of dates, numbers, etc.
|
|
|
|
*/
|
|
|
|
static BOOL is_lang_english(void)
|
|
|
|
{
|
|
|
|
static HMODULE hkernel32 = NULL;
|
|
|
|
static LANGID (WINAPI *pGetThreadUILanguage)(void) = NULL;
|
|
|
|
static LANGID (WINAPI *pGetUserDefaultUILanguage)(void) = NULL;
|
|
|
|
|
|
|
|
if (!hkernel32)
|
|
|
|
{
|
|
|
|
hkernel32 = GetModuleHandleA("kernel32.dll");
|
|
|
|
pGetThreadUILanguage = (void*)GetProcAddress(hkernel32, "GetThreadUILanguage");
|
|
|
|
pGetUserDefaultUILanguage = (void*)GetProcAddress(hkernel32, "GetUserDefaultUILanguage");
|
|
|
|
}
|
|
|
|
if (pGetThreadUILanguage)
|
|
|
|
return PRIMARYLANGID(pGetThreadUILanguage()) == LANG_ENGLISH;
|
|
|
|
if (pGetUserDefaultUILanguage)
|
|
|
|
return PRIMARYLANGID(pGetUserDefaultUILanguage()) == LANG_ENGLISH;
|
|
|
|
|
|
|
|
return PRIMARYLANGID(GetUserDefaultLangID()) == LANG_ENGLISH;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns true if the dates, numbers, etc. are formatted using English
|
|
|
|
* conventions.
|
|
|
|
*/
|
|
|
|
static BOOL is_locale_english(void)
|
|
|
|
{
|
|
|
|
/* Surprisingly GetThreadLocale() is irrelevant here */
|
|
|
|
return PRIMARYLANGID(GetUserDefaultLangID()) == LANG_ENGLISH;
|
|
|
|
}
|
|
|
|
|
2003-10-01 05:10:56 +02:00
|
|
|
static void test_StrChrA(void)
|
|
|
|
{
|
|
|
|
char string[129];
|
2003-11-22 01:00:53 +01:00
|
|
|
WORD count;
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
/* this test crashes on win2k SP4 */
|
2004-01-27 21:13:03 +01:00
|
|
|
/*ok(!StrChrA(NULL,'\0'), "found a character in a NULL string!\n");*/
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
2003-11-22 01:00:53 +01:00
|
|
|
string[count] = (char)count;
|
2003-10-01 05:10:56 +02:00
|
|
|
string[128] = '\0';
|
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
|
|
|
{
|
|
|
|
LPSTR result = StrChrA(string+32, count);
|
2009-01-08 13:02:46 +01:00
|
|
|
INT pos = result - string;
|
|
|
|
ok(pos == count, "found char '%c' in wrong place: got %d, expected %d\n", count, pos, count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
|
|
|
{
|
|
|
|
LPSTR result = StrChrA(string+count+1, count);
|
2003-11-22 01:00:53 +01:00
|
|
|
ok(!result, "found char '%c' not in the string\n", count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrChrW(void)
|
|
|
|
{
|
|
|
|
WCHAR string[16385];
|
2003-11-22 01:00:53 +01:00
|
|
|
WORD count;
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
/* this test crashes on win2k SP4 */
|
2004-01-27 21:13:03 +01:00
|
|
|
/*ok(!StrChrW(NULL,'\0'), "found a character in a NULL string!\n");*/
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
for (count = 32; count < 16384; count++)
|
|
|
|
string[count] = count;
|
|
|
|
string[16384] = '\0';
|
|
|
|
|
|
|
|
for (count = 32; count < 16384; count++)
|
|
|
|
{
|
|
|
|
LPWSTR result = StrChrW(string+32, count);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok((result - string) == count, "found char %d in wrong place\n", count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 32; count < 16384; count++)
|
|
|
|
{
|
|
|
|
LPWSTR result = StrChrW(string+count+1, count);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!result, "found char not in the string\n");
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrChrIA(void)
|
|
|
|
{
|
|
|
|
char string[129];
|
2003-11-22 01:00:53 +01:00
|
|
|
WORD count;
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
/* this test crashes on win2k SP4 */
|
2004-01-27 21:13:03 +01:00
|
|
|
/*ok(!StrChrIA(NULL,'\0'), "found a character in a NULL string!\n");*/
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
2003-11-22 01:00:53 +01:00
|
|
|
string[count] = (char)count;
|
2003-10-01 05:10:56 +02:00
|
|
|
string[128] = '\0';
|
|
|
|
|
|
|
|
for (count = 'A'; count <= 'X'; count++)
|
|
|
|
{
|
|
|
|
LPSTR result = StrChrIA(string+32, count);
|
|
|
|
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(result - string == count, "found char '%c' in wrong place\n", count);
|
|
|
|
ok(StrChrIA(result, count)!=NULL, "didn't find lowercase '%c'\n", count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 'a'; count < 'z'; count++)
|
|
|
|
{
|
|
|
|
LPSTR result = StrChrIA(string+count+1, count);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!result, "found char not in the string\n");
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrChrIW(void)
|
|
|
|
{
|
|
|
|
WCHAR string[129];
|
2003-11-22 01:00:53 +01:00
|
|
|
WORD count;
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
/* this test crashes on win2k SP4 */
|
2004-01-27 21:13:03 +01:00
|
|
|
/*ok(!StrChrIA(NULL,'\0'), "found a character in a NULL string!\n");*/
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
|
|
|
string[count] = count;
|
|
|
|
string[128] = '\0';
|
|
|
|
|
|
|
|
for (count = 'A'; count <= 'X'; count++)
|
|
|
|
{
|
|
|
|
LPWSTR result = StrChrIW(string+32, count);
|
|
|
|
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(result - string == count, "found char '%c' in wrong place\n", count);
|
|
|
|
ok(StrChrIW(result, count)!=NULL, "didn't find lowercase '%c'\n", count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 'a'; count < 'z'; count++)
|
|
|
|
{
|
|
|
|
LPWSTR result = StrChrIW(string+count+1, count);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!result, "found char not in the string\n");
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrRChrA(void)
|
|
|
|
{
|
|
|
|
char string[129];
|
2003-11-22 01:00:53 +01:00
|
|
|
WORD count;
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
/* this test crashes on win2k SP4 */
|
2004-01-27 21:13:03 +01:00
|
|
|
/*ok(!StrRChrA(NULL, NULL,'\0'), "found a character in a NULL string!\n");*/
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
2003-11-22 01:00:53 +01:00
|
|
|
string[count] = (char)count;
|
2003-10-01 05:10:56 +02:00
|
|
|
string[128] = '\0';
|
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
|
|
|
{
|
|
|
|
LPSTR result = StrRChrA(string+32, NULL, count);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(result - string == count, "found char %d in wrong place\n", count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
|
|
|
{
|
|
|
|
LPSTR result = StrRChrA(string+count+1, NULL, count);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!result, "found char not in the string\n");
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (count = 32; count < 128; count++)
|
|
|
|
{
|
|
|
|
LPSTR result = StrRChrA(string+count+1, string + 127, count);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!result, "found char not in the string\n");
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrRChrW(void)
|
|
|
|
{
|
2003-11-22 01:00:53 +01:00
|
|
|
WCHAR string[129];
|
|
|
|
WORD count;
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
/* this test crashes on win2k SP4 */
|
2004-01-27 21:13:03 +01:00
|
|
|
/*ok(!StrRChrW(NULL, NULL,'\0'), "found a character in a NULL string!\n");*/
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
for (count = 32; count < 128; count++)
|
2003-10-01 05:10:56 +02:00
|
|
|
string[count] = count;
|
2003-11-22 01:00:53 +01:00
|
|
|
string[128] = '\0';
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
for (count = 32; count < 128; count++)
|
2003-10-01 05:10:56 +02:00
|
|
|
{
|
|
|
|
LPWSTR result = StrRChrW(string+32, NULL, count);
|
2009-01-08 13:02:46 +01:00
|
|
|
INT pos = result - string;
|
|
|
|
ok(pos == count, "found char %d in wrong place: got %d, expected %d\n", count, pos, count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
for (count = 32; count < 128; count++)
|
2003-10-01 05:10:56 +02:00
|
|
|
{
|
|
|
|
LPWSTR result = StrRChrW(string+count+1, NULL, count);
|
2003-11-22 01:00:53 +01:00
|
|
|
ok(!result, "found char %d not in the string\n", count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
for (count = 32; count < 128; count++)
|
2003-10-01 05:10:56 +02:00
|
|
|
{
|
|
|
|
LPWSTR result = StrRChrW(string+count+1, string + 127, count);
|
2003-11-22 01:00:53 +01:00
|
|
|
ok(!result, "found char %d not in the string\n", count);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrCpyW(void)
|
|
|
|
{
|
|
|
|
WCHAR szSrc[256];
|
|
|
|
WCHAR szBuff[256];
|
|
|
|
const StrFormatSizeResult* result = StrFormatSize_results;
|
2012-04-18 21:51:05 +02:00
|
|
|
LPWSTR lpRes;
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
while(result->value)
|
|
|
|
{
|
|
|
|
MultiByteToWideChar(0,0,result->byte_size_64,-1,szSrc,sizeof(szSrc)/sizeof(WCHAR));
|
|
|
|
|
2012-04-18 21:51:05 +02:00
|
|
|
lpRes = StrCpyW(szBuff, szSrc);
|
|
|
|
ok(!StrCmpW(szSrc, szBuff) && lpRes == szBuff, "Copied string %s wrong\n", result->byte_size_64);
|
2003-10-01 05:10:56 +02:00
|
|
|
result++;
|
|
|
|
}
|
2012-04-18 21:51:05 +02:00
|
|
|
|
|
|
|
/* this test crashes on win2k SP4 */
|
|
|
|
/*lpRes = StrCpyW(szBuff, NULL);*/
|
|
|
|
/*ok(lpRes == szBuff, "Wrong return value: got %p expected %p\n", lpRes, szBuff);*/
|
|
|
|
|
|
|
|
/* this test crashes on win2k SP4 */
|
|
|
|
/*lpRes = StrCpyW(NULL, szSrc);*/
|
|
|
|
/*ok(lpRes == NULL, "Wrong return value: got %p expected NULL\n", lpRes);*/
|
|
|
|
|
|
|
|
/* this test crashes on win2k SP4 */
|
|
|
|
/*lpRes = StrCpyW(NULL, NULL);*/
|
|
|
|
/*ok(lpRes == NULL, "Wrong return value: got %p expected NULL\n", lpRes);*/
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
2009-09-24 14:31:17 +02:00
|
|
|
static void test_StrChrNW(void)
|
|
|
|
{
|
|
|
|
static WCHAR string[] = {'T','e','s','t','i','n','g',' ','S','t','r','i','n','g',0};
|
|
|
|
LPWSTR p;
|
|
|
|
|
|
|
|
if (!pStrChrNW)
|
|
|
|
{
|
|
|
|
win_skip("StrChrNW not available\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = pStrChrNW(string,'t',10);
|
|
|
|
ok(*p=='t',"Found wrong 't'\n");
|
|
|
|
ok(*(p+1)=='i',"next should be 'i'\n");
|
|
|
|
|
|
|
|
p = pStrChrNW(string,'S',10);
|
|
|
|
ok(*p=='S',"Found wrong 'S'\n");
|
|
|
|
|
|
|
|
p = pStrChrNW(string,'r',10);
|
|
|
|
ok(p==NULL,"Should not have found 'r'\n");
|
|
|
|
}
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
static void test_StrToIntA(void)
|
|
|
|
{
|
|
|
|
const StrToIntResult *result = StrToInt_results;
|
|
|
|
int return_val;
|
|
|
|
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = StrToIntA(result->string);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(return_val == result->str_to_int, "converted '%s' wrong (%d)\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string, return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrToIntW(void)
|
|
|
|
{
|
|
|
|
WCHAR szBuff[256];
|
|
|
|
const StrToIntResult *result = StrToInt_results;
|
|
|
|
int return_val;
|
|
|
|
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
MultiByteToWideChar(0,0,result->string,-1,szBuff,sizeof(szBuff)/sizeof(WCHAR));
|
|
|
|
return_val = StrToIntW(szBuff);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(return_val == result->str_to_int, "converted '%s' wrong (%d)\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string, return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrToIntExA(void)
|
|
|
|
{
|
|
|
|
const StrToIntResult *result = StrToInt_results;
|
|
|
|
int return_val;
|
|
|
|
BOOL bRet;
|
|
|
|
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
bRet = StrToIntExA(result->string,0,&return_val);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string);
|
|
|
|
if (bRet)
|
2012-03-08 14:35:56 +01:00
|
|
|
ok(return_val == (int)result->str_to_int64_ex, "converted '%s' wrong (%d)\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string, return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = StrToInt_results;
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
bRet = StrToIntExA(result->string,STIF_SUPPORT_HEX,&return_val);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string);
|
|
|
|
if (bRet)
|
2012-03-08 14:35:56 +01:00
|
|
|
ok(return_val == (int)result->str_to_int64_hex, "converted '%s' wrong (%d)\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string, return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrToIntExW(void)
|
|
|
|
{
|
|
|
|
WCHAR szBuff[256];
|
|
|
|
const StrToIntResult *result = StrToInt_results;
|
|
|
|
int return_val;
|
|
|
|
BOOL bRet;
|
|
|
|
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
MultiByteToWideChar(0,0,result->string,-1,szBuff,sizeof(szBuff)/sizeof(WCHAR));
|
|
|
|
bRet = StrToIntExW(szBuff, 0, &return_val);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string);
|
|
|
|
if (bRet)
|
2012-03-08 14:35:56 +01:00
|
|
|
ok(return_val == (int)result->str_to_int64_ex, "converted '%s' wrong (%d)\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string, return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = StrToInt_results;
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
MultiByteToWideChar(0,0,result->string,-1,szBuff,sizeof(szBuff)/sizeof(WCHAR));
|
|
|
|
bRet = StrToIntExW(szBuff, STIF_SUPPORT_HEX, &return_val);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string);
|
|
|
|
if (bRet)
|
2012-03-08 14:35:56 +01:00
|
|
|
ok(return_val == (int)result->str_to_int64_hex, "converted '%s' wrong (%d)\n",
|
2003-10-01 05:10:56 +02:00
|
|
|
result->string, return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-08 14:35:56 +01:00
|
|
|
static void test_StrToInt64ExA(void)
|
|
|
|
{
|
|
|
|
const StrToIntResult *result = StrToInt_results;
|
|
|
|
LONGLONG return_val;
|
|
|
|
BOOL bRet;
|
|
|
|
|
|
|
|
if (!pStrToInt64ExA)
|
|
|
|
{
|
|
|
|
win_skip("StrToInt64ExA() is not available\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
bRet = pStrToInt64ExA(result->string,0,&return_val);
|
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
|
|
|
result->string);
|
|
|
|
if (bRet)
|
|
|
|
ok(return_val == result->str_to_int64_ex, "converted '%s' wrong (%08x%08x)\n",
|
|
|
|
result->string, (DWORD)(return_val >> 32), (DWORD)return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = StrToInt_results;
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
bRet = pStrToInt64ExA(result->string,STIF_SUPPORT_HEX,&return_val);
|
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
|
|
|
result->string);
|
|
|
|
if (bRet)
|
|
|
|
ok(return_val == result->str_to_int64_hex, "converted '%s' wrong (%08x%08x)\n",
|
|
|
|
result->string, (DWORD)(return_val >> 32), (DWORD)return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrToInt64ExW(void)
|
|
|
|
{
|
|
|
|
WCHAR szBuff[256];
|
|
|
|
const StrToIntResult *result = StrToInt_results;
|
|
|
|
LONGLONG return_val;
|
|
|
|
BOOL bRet;
|
|
|
|
|
|
|
|
if (!pStrToInt64ExW)
|
|
|
|
{
|
|
|
|
win_skip("StrToInt64ExW() is not available\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
MultiByteToWideChar(0,0,result->string,-1,szBuff,sizeof(szBuff)/sizeof(WCHAR));
|
|
|
|
bRet = pStrToInt64ExW(szBuff, 0, &return_val);
|
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
|
|
|
result->string);
|
|
|
|
if (bRet)
|
|
|
|
ok(return_val == result->str_to_int64_ex, "converted '%s' wrong (%08x%08x)\n",
|
|
|
|
result->string, (DWORD)(return_val >> 32), (DWORD)return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = StrToInt_results;
|
|
|
|
while (result->string)
|
|
|
|
{
|
|
|
|
return_val = -1;
|
|
|
|
MultiByteToWideChar(0,0,result->string,-1,szBuff,sizeof(szBuff)/sizeof(WCHAR));
|
|
|
|
bRet = pStrToInt64ExW(szBuff, STIF_SUPPORT_HEX, &return_val);
|
|
|
|
ok(!bRet || return_val != -1, "No result returned from '%s'\n",
|
|
|
|
result->string);
|
|
|
|
if (bRet)
|
|
|
|
ok(return_val == result->str_to_int64_hex, "converted '%s' wrong (%08x%08x)\n",
|
|
|
|
result->string, (DWORD)(return_val >> 32), (DWORD)return_val);
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-27 11:57:28 +02:00
|
|
|
static void test_StrDupA(void)
|
2003-10-01 05:10:56 +02:00
|
|
|
{
|
|
|
|
LPSTR lpszStr;
|
|
|
|
const StrFormatSizeResult* result = StrFormatSize_results;
|
|
|
|
|
|
|
|
while(result->value)
|
|
|
|
{
|
|
|
|
lpszStr = StrDupA(result->byte_size_64);
|
|
|
|
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(lpszStr != NULL, "Dup failed\n");
|
2003-10-01 05:10:56 +02:00
|
|
|
if (lpszStr)
|
|
|
|
{
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(!strcmp(result->byte_size_64, lpszStr), "Copied string wrong\n");
|
2008-11-05 23:04:51 +01:00
|
|
|
LocalFree(lpszStr);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Later versions of shlwapi return NULL for this, but earlier versions
|
|
|
|
* returned an empty string (as Wine does).
|
|
|
|
*/
|
|
|
|
lpszStr = StrDupA(NULL);
|
2004-01-27 21:13:03 +01:00
|
|
|
ok(lpszStr == NULL || *lpszStr == '\0', "NULL string returned %p\n", lpszStr);
|
2008-11-05 23:04:51 +01:00
|
|
|
LocalFree(lpszStr);
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrFormatByteSize64A(void)
|
|
|
|
{
|
|
|
|
char szBuff[256];
|
|
|
|
const StrFormatSizeResult* result = StrFormatSize_results;
|
|
|
|
|
2008-03-05 12:03:45 +01:00
|
|
|
if (!pStrFormatByteSize64A)
|
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrFormatByteSize64A() is not available\n");
|
2008-03-05 12:03:45 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-10-01 05:10:56 +02:00
|
|
|
while(result->value)
|
|
|
|
{
|
2008-03-05 12:03:45 +01:00
|
|
|
pStrFormatByteSize64A(result->value, szBuff, 256);
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2003-11-22 01:00:53 +01:00
|
|
|
ok(!strcmp(result->byte_size_64, szBuff),
|
2006-10-06 12:43:34 +02:00
|
|
|
"Formatted %x%08x wrong: got %s, expected %s\n",
|
2003-11-22 01:00:53 +01:00
|
|
|
(LONG)(result->value >> 32), (LONG)result->value, szBuff, result->byte_size_64);
|
2003-10-01 05:10:56 +02:00
|
|
|
|
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrFormatKBSizeW(void)
|
|
|
|
{
|
|
|
|
WCHAR szBuffW[256];
|
|
|
|
char szBuff[256];
|
|
|
|
const StrFormatSizeResult* result = StrFormatSize_results;
|
|
|
|
|
2008-03-05 12:03:45 +01:00
|
|
|
if (!pStrFormatKBSizeW)
|
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrFormatKBSizeW() is not available\n");
|
2008-03-05 12:03:45 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-10-01 05:10:56 +02:00
|
|
|
while(result->value)
|
|
|
|
{
|
2008-03-05 12:03:45 +01:00
|
|
|
pStrFormatKBSizeW(result->value, szBuffW, 256);
|
2003-10-01 05:10:56 +02:00
|
|
|
WideCharToMultiByte(0,0,szBuffW,-1,szBuff,sizeof(szBuff)/sizeof(WCHAR),0,0);
|
2010-07-19 02:33:14 +02:00
|
|
|
|
2011-02-28 23:28:29 +01:00
|
|
|
ok(!strcmp(result->kb_size, szBuff), "Formatted %x%08x wrong: got %s, expected %s\n",
|
2003-11-22 01:00:53 +01:00
|
|
|
(LONG)(result->value >> 32), (LONG)result->value, szBuff, result->kb_size);
|
2003-10-01 05:10:56 +02:00
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrFormatKBSizeA(void)
|
|
|
|
{
|
|
|
|
char szBuff[256];
|
|
|
|
const StrFormatSizeResult* result = StrFormatSize_results;
|
|
|
|
|
2008-03-05 12:03:45 +01:00
|
|
|
if (!pStrFormatKBSizeA)
|
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrFormatKBSizeA() is not available\n");
|
2008-03-05 12:03:45 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-10-01 05:10:56 +02:00
|
|
|
while(result->value)
|
|
|
|
{
|
2008-03-05 12:03:45 +01:00
|
|
|
pStrFormatKBSizeA(result->value, szBuff, 256);
|
2003-10-01 05:10:56 +02:00
|
|
|
|
2010-07-19 02:33:14 +02:00
|
|
|
/* shlwapi on Win98 SE does not appear to apply delimiters to the output
|
|
|
|
* and does not correctly handle extremely large values. */
|
|
|
|
ok(!strcmp(result->kb_size, szBuff) ||
|
|
|
|
(result->kb_size_broken && !strcmp(result->kb_size2, szBuff)),
|
2006-10-06 12:43:34 +02:00
|
|
|
"Formatted %x%08x wrong: got %s, expected %s\n",
|
2003-11-22 01:00:53 +01:00
|
|
|
(LONG)(result->value >> 32), (LONG)result->value, szBuff, result->kb_size);
|
2003-10-01 05:10:56 +02:00
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-14 19:21:18 +02:00
|
|
|
static void test_StrFromTimeIntervalA(void)
|
2003-10-01 05:10:56 +02:00
|
|
|
{
|
|
|
|
char szBuff[256];
|
|
|
|
const StrFromTimeIntervalResult* result = StrFromTimeInterval_results;
|
|
|
|
|
|
|
|
while(result->ms)
|
|
|
|
{
|
|
|
|
StrFromTimeIntervalA(szBuff, 256, result->ms, result->digits);
|
|
|
|
|
2011-09-15 08:53:40 +02:00
|
|
|
ok(!strcmp(result->time_interval, szBuff), "Formatted %d %d wrong: %s\n",
|
|
|
|
result->ms, result->digits, szBuff);
|
2003-10-01 05:10:56 +02:00
|
|
|
result++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-06-14 19:21:18 +02:00
|
|
|
static void test_StrCmpA(void)
|
2004-02-17 21:24:50 +01:00
|
|
|
{
|
|
|
|
static const char str1[] = {'a','b','c','d','e','f'};
|
|
|
|
static const char str2[] = {'a','B','c','d','e','f'};
|
|
|
|
ok(0 != StrCmpNA(str1, str2, 6), "StrCmpNA is case-insensitive\n");
|
|
|
|
ok(0 == StrCmpNIA(str1, str2, 6), "StrCmpNIA is case-sensitive\n");
|
2010-01-30 16:25:05 +01:00
|
|
|
if (pChrCmpIA) {
|
|
|
|
ok(!pChrCmpIA('a', 'a'), "ChrCmpIA doesn't work at all!\n");
|
|
|
|
ok(!pChrCmpIA('b', 'B'), "ChrCmpIA is not case-insensitive\n");
|
|
|
|
ok(pChrCmpIA('a', 'z'), "ChrCmpIA believes that a == z!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
win_skip("ChrCmpIA() is not available\n");
|
2004-02-17 21:24:50 +01:00
|
|
|
|
2008-03-05 12:02:13 +01:00
|
|
|
if (pStrIsIntlEqualA)
|
|
|
|
{
|
|
|
|
ok(pStrIsIntlEqualA(FALSE, str1, str2, 5), "StrIsIntlEqualA(FALSE,...) isn't case-insensitive\n");
|
|
|
|
ok(!pStrIsIntlEqualA(TRUE, str1, str2, 5), "StrIsIntlEqualA(TRUE,...) isn't case-sensitive\n");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrIsIntlEqualA() is not available\n");
|
2005-01-25 11:56:23 +01:00
|
|
|
|
2008-03-05 12:02:13 +01:00
|
|
|
if (pIntlStrEqWorkerA)
|
|
|
|
{
|
|
|
|
ok(pIntlStrEqWorkerA(FALSE, str1, str2, 5), "IntlStrEqWorkerA(FALSE,...) isn't case-insensitive\n");
|
|
|
|
ok(!pIntlStrEqWorkerA(TRUE, str1, str2, 5), "pIntlStrEqWorkerA(TRUE,...) isn't case-sensitive\n");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("IntlStrEqWorkerA() is not available\n");
|
2004-02-17 21:24:50 +01:00
|
|
|
}
|
|
|
|
|
2005-06-14 19:21:18 +02:00
|
|
|
static void test_StrCmpW(void)
|
2004-02-17 21:24:50 +01:00
|
|
|
{
|
|
|
|
static const WCHAR str1[] = {'a','b','c','d','e','f'};
|
|
|
|
static const WCHAR str2[] = {'a','B','c','d','e','f'};
|
|
|
|
ok(0 != StrCmpNW(str1, str2, 5), "StrCmpNW is case-insensitive\n");
|
|
|
|
ok(0 == StrCmpNIW(str1, str2, 5), "StrCmpNIW is case-sensitive\n");
|
2010-01-30 16:25:05 +01:00
|
|
|
if (pChrCmpIW) {
|
|
|
|
ok(!pChrCmpIW('a', 'a'), "ChrCmpIW doesn't work at all!\n");
|
|
|
|
ok(!pChrCmpIW('b', 'B'), "ChrCmpIW is not case-insensitive\n");
|
|
|
|
ok(pChrCmpIW('a', 'z'), "ChrCmpIW believes that a == z!\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
win_skip("ChrCmpIW() is not available\n");
|
2004-02-17 21:24:50 +01:00
|
|
|
|
2008-03-05 12:02:13 +01:00
|
|
|
if (pStrIsIntlEqualW)
|
|
|
|
{
|
|
|
|
ok(pStrIsIntlEqualW(FALSE, str1, str2, 5), "StrIsIntlEqualW(FALSE,...) isn't case-insensitive\n");
|
|
|
|
ok(!pStrIsIntlEqualW(TRUE, str1, str2, 5), "StrIsIntlEqualW(TRUE,...) isn't case-sensitive\n");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrIsIntlEqualW() is not available\n");
|
2004-02-17 21:24:50 +01:00
|
|
|
|
2008-03-05 12:02:13 +01:00
|
|
|
if (pIntlStrEqWorkerW)
|
|
|
|
{
|
|
|
|
ok(pIntlStrEqWorkerW(FALSE, str1, str2, 5), "IntlStrEqWorkerW(FALSE,...) isn't case-insensitive\n");
|
|
|
|
ok(!pIntlStrEqWorkerW(TRUE, str1, str2, 5), "IntlStrEqWorkerW(TRUE,...) isn't case-sensitive\n");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("IntlStrEqWorkerW() is not available\n");
|
2004-02-17 21:24:50 +01:00
|
|
|
}
|
|
|
|
|
2004-02-10 03:22:53 +01:00
|
|
|
static WCHAR *CoDupStrW(const char* src)
|
|
|
|
{
|
|
|
|
INT len = MultiByteToWideChar(CP_ACP, 0, src, -1, NULL, 0);
|
2007-06-27 00:16:11 +02:00
|
|
|
WCHAR* szTemp = CoTaskMemAlloc(len * sizeof(WCHAR));
|
2004-02-10 03:22:53 +01:00
|
|
|
MultiByteToWideChar(CP_ACP, 0, src, -1, szTemp, len);
|
|
|
|
return szTemp;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrRetToBSTR(void)
|
|
|
|
{
|
|
|
|
static const WCHAR szTestW[] = { 'T','e','s','t','\0' };
|
|
|
|
ITEMIDLIST iidl[10];
|
|
|
|
BSTR bstr;
|
|
|
|
STRRET strret;
|
|
|
|
HRESULT ret;
|
|
|
|
|
2008-03-05 12:02:13 +01:00
|
|
|
if (!pStrRetToBSTR)
|
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrRetToBSTR() is not available\n");
|
2008-03-05 12:02:13 +01:00
|
|
|
return;
|
|
|
|
}
|
2004-05-05 03:07:41 +02:00
|
|
|
|
2004-02-10 03:22:53 +01:00
|
|
|
strret.uType = STRRET_WSTR;
|
2006-10-22 19:37:42 +02:00
|
|
|
U(strret).pOleStr = CoDupStrW("Test");
|
2004-02-10 03:22:53 +01:00
|
|
|
bstr = 0;
|
2004-09-13 20:11:56 +02:00
|
|
|
ret = pStrRetToBSTR(&strret, NULL, &bstr);
|
2004-02-10 03:22:53 +01:00
|
|
|
ok(ret == S_OK && bstr && !strcmpW(bstr, szTestW),
|
2006-10-06 12:43:34 +02:00
|
|
|
"STRRET_WSTR: dup failed, ret=0x%08x, bstr %p\n", ret, bstr);
|
2008-09-24 23:05:00 +02:00
|
|
|
SysFreeString(bstr);
|
2004-02-10 03:22:53 +01:00
|
|
|
|
|
|
|
strret.uType = STRRET_CSTR;
|
2006-10-22 19:37:42 +02:00
|
|
|
lstrcpyA(U(strret).cStr, "Test");
|
2004-09-13 20:11:56 +02:00
|
|
|
ret = pStrRetToBSTR(&strret, NULL, &bstr);
|
2004-02-10 03:22:53 +01:00
|
|
|
ok(ret == S_OK && bstr && !strcmpW(bstr, szTestW),
|
2006-10-06 12:43:34 +02:00
|
|
|
"STRRET_CSTR: dup failed, ret=0x%08x, bstr %p\n", ret, bstr);
|
2008-09-24 23:05:00 +02:00
|
|
|
SysFreeString(bstr);
|
2004-02-10 03:22:53 +01:00
|
|
|
|
|
|
|
strret.uType = STRRET_OFFSET;
|
2006-10-22 19:37:42 +02:00
|
|
|
U(strret).uOffset = 1;
|
2004-02-10 03:22:53 +01:00
|
|
|
strcpy((char*)&iidl, " Test");
|
2004-09-13 20:11:56 +02:00
|
|
|
ret = pStrRetToBSTR(&strret, iidl, &bstr);
|
2004-02-10 03:22:53 +01:00
|
|
|
ok(ret == S_OK && bstr && !strcmpW(bstr, szTestW),
|
2006-10-06 12:43:34 +02:00
|
|
|
"STRRET_OFFSET: dup failed, ret=0x%08x, bstr %p\n", ret, bstr);
|
2008-09-24 23:05:00 +02:00
|
|
|
SysFreeString(bstr);
|
2004-02-10 03:22:53 +01:00
|
|
|
|
|
|
|
/* Native crashes if str is NULL */
|
|
|
|
}
|
|
|
|
|
2004-09-13 20:11:56 +02:00
|
|
|
static void test_StrCpyNXA(void)
|
|
|
|
{
|
|
|
|
LPCSTR lpSrc = "hello";
|
|
|
|
LPSTR lpszRes;
|
|
|
|
char dest[8];
|
|
|
|
|
|
|
|
if (!pStrCpyNXA)
|
2008-03-05 12:02:13 +01:00
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrCpyNXA() is not available\n");
|
2004-09-13 20:11:56 +02:00
|
|
|
return;
|
2008-03-05 12:02:13 +01:00
|
|
|
}
|
2004-09-13 20:11:56 +02:00
|
|
|
|
|
|
|
memset(dest, '\n', sizeof(dest));
|
|
|
|
lpszRes = pStrCpyNXA(dest, lpSrc, sizeof(dest)/sizeof(dest[0]));
|
|
|
|
ok(lpszRes == dest + 5 && !memcmp(dest, "hello\0\n\n", sizeof(dest)),
|
|
|
|
"StrCpyNXA: expected %p, \"hello\\0\\n\\n\", got %p, \"%d,%d,%d,%d,%d,%d,%d,%d\"\n",
|
|
|
|
dest + 5, lpszRes, dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_StrCpyNXW(void)
|
|
|
|
{
|
|
|
|
static const WCHAR lpInit[] = { '\n','\n','\n','\n','\n','\n','\n','\n' };
|
|
|
|
static const WCHAR lpSrc[] = { 'h','e','l','l','o','\0' };
|
|
|
|
static const WCHAR lpRes[] = { 'h','e','l','l','o','\0','\n','\n' };
|
|
|
|
LPWSTR lpszRes;
|
|
|
|
WCHAR dest[8];
|
|
|
|
|
|
|
|
if (!pStrCpyNXW)
|
2008-03-05 12:02:13 +01:00
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrCpyNXW() is not available\n");
|
2004-09-13 20:11:56 +02:00
|
|
|
return;
|
2008-03-05 12:02:13 +01:00
|
|
|
}
|
2004-09-13 20:11:56 +02:00
|
|
|
|
|
|
|
memcpy(dest, lpInit, sizeof(lpInit));
|
|
|
|
lpszRes = pStrCpyNXW(dest, lpSrc, sizeof(dest)/sizeof(dest[0]));
|
|
|
|
ok(lpszRes == dest + 5 && !memcmp(dest, lpRes, sizeof(dest)),
|
2008-03-05 12:03:29 +01:00
|
|
|
"StrCpyNXW: expected %p, \"hello\\0\\n\\n\", got %p, \"%d,%d,%d,%d,%d,%d,%d,%d\"\n",
|
2004-09-13 20:11:56 +02:00
|
|
|
dest + 5, lpszRes, dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
|
|
|
|
}
|
|
|
|
|
2006-10-22 19:54:18 +02:00
|
|
|
#define check_strrstri(type, str, pos, needle, exp) \
|
|
|
|
ret##type = StrRStrI##type(str, str+pos, needle); \
|
|
|
|
ok(ret##type == (exp), "Type " #type ", expected %p but got %p (string base %p)\n", \
|
|
|
|
(exp), ret##type, str);
|
|
|
|
|
2007-03-10 22:00:47 +01:00
|
|
|
static void test_StrRStrI(void)
|
2006-10-22 19:54:18 +02:00
|
|
|
{
|
|
|
|
static const CHAR szTest[] = "yAxxxxAy";
|
|
|
|
static const CHAR szTest2[] = "ABABABAB";
|
|
|
|
static const WCHAR wszTest[] = {'y','A','x','x','x','x','A','y',0};
|
|
|
|
static const WCHAR wszTest2[] = {'A','B','A','B','A','B','A','B',0};
|
|
|
|
|
|
|
|
static const WCHAR wszPattern1[] = {'A',0};
|
|
|
|
static const WCHAR wszPattern2[] = {'a','X',0};
|
|
|
|
static const WCHAR wszPattern3[] = {'A','y',0};
|
|
|
|
static const WCHAR wszPattern4[] = {'a','b',0};
|
|
|
|
LPWSTR retW;
|
|
|
|
LPSTR retA;
|
2010-07-20 06:14:30 +02:00
|
|
|
|
2006-10-22 19:54:18 +02:00
|
|
|
check_strrstri(A, szTest, 4, "A", szTest+1);
|
|
|
|
check_strrstri(A, szTest, 4, "aX", szTest+1);
|
|
|
|
check_strrstri(A, szTest, 4, "Ay", NULL);
|
|
|
|
check_strrstri(W, wszTest, 4, wszPattern1, wszTest+1);
|
|
|
|
check_strrstri(W, wszTest, 4, wszPattern2, wszTest+1);
|
|
|
|
check_strrstri(W, wszTest, 4, wszPattern3, NULL);
|
|
|
|
|
|
|
|
check_strrstri(A, szTest2, 4, "ab", szTest2+2);
|
|
|
|
check_strrstri(A, szTest2, 3, "ab", szTest2+2);
|
|
|
|
check_strrstri(A, szTest2, 2, "ab", szTest2);
|
|
|
|
check_strrstri(A, szTest2, 1, "ab", szTest2);
|
|
|
|
check_strrstri(A, szTest2, 0, "ab", NULL);
|
|
|
|
check_strrstri(W, wszTest2, 4, wszPattern4, wszTest2+2);
|
|
|
|
check_strrstri(W, wszTest2, 3, wszPattern4, wszTest2+2);
|
|
|
|
check_strrstri(W, wszTest2, 2, wszPattern4, wszTest2);
|
|
|
|
check_strrstri(W, wszTest2, 1, wszPattern4, wszTest2);
|
|
|
|
check_strrstri(W, wszTest2, 0, wszPattern4, NULL);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2004-09-13 20:11:56 +02:00
|
|
|
static void test_SHAnsiToAnsi(void)
|
|
|
|
{
|
|
|
|
char dest[8];
|
|
|
|
DWORD dwRet;
|
|
|
|
|
|
|
|
if (!pSHAnsiToAnsi)
|
2008-03-05 12:02:13 +01:00
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("SHAnsiToAnsi() is not available\n");
|
2004-09-13 20:11:56 +02:00
|
|
|
return;
|
2008-03-05 12:02:13 +01:00
|
|
|
}
|
2004-09-13 20:11:56 +02:00
|
|
|
|
2010-07-20 06:14:11 +02:00
|
|
|
if (pSHAnsiToAnsi == (void *)pStrPBrkW)
|
|
|
|
{
|
|
|
|
win_skip("Ordinal 345 corresponds to StrPBrkW, skipping SHAnsiToAnsi tests\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-09-13 20:11:56 +02:00
|
|
|
memset(dest, '\n', sizeof(dest));
|
|
|
|
dwRet = pSHAnsiToAnsi("hello", dest, sizeof(dest)/sizeof(dest[0]));
|
|
|
|
ok(dwRet == 6 && !memcmp(dest, "hello\0\n\n", sizeof(dest)),
|
2006-10-06 12:43:34 +02:00
|
|
|
"SHAnsiToAnsi: expected 6, \"hello\\0\\n\\n\", got %d, \"%d,%d,%d,%d,%d,%d,%d,%d\"\n",
|
2004-09-13 20:11:56 +02:00
|
|
|
dwRet, dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_SHUnicodeToUnicode(void)
|
|
|
|
{
|
|
|
|
static const WCHAR lpInit[] = { '\n','\n','\n','\n','\n','\n','\n','\n' };
|
|
|
|
static const WCHAR lpSrc[] = { 'h','e','l','l','o','\0' };
|
|
|
|
static const WCHAR lpRes[] = { 'h','e','l','l','o','\0','\n','\n' };
|
|
|
|
WCHAR dest[8];
|
|
|
|
DWORD dwRet;
|
|
|
|
|
|
|
|
if (!pSHUnicodeToUnicode)
|
2008-03-05 12:02:13 +01:00
|
|
|
{
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("SHUnicodeToUnicode() is not available\n");
|
2004-09-13 20:11:56 +02:00
|
|
|
return;
|
2008-03-05 12:02:13 +01:00
|
|
|
}
|
2004-09-13 20:11:56 +02:00
|
|
|
|
2010-07-20 06:14:20 +02:00
|
|
|
if (pSHUnicodeToUnicode == (void *)pStrRChrA)
|
|
|
|
{
|
|
|
|
win_skip("Ordinal 346 corresponds to StrRChrA, skipping SHUnicodeToUnicode tests\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-09-13 20:11:56 +02:00
|
|
|
memcpy(dest, lpInit, sizeof(lpInit));
|
|
|
|
dwRet = pSHUnicodeToUnicode(lpSrc, dest, sizeof(dest)/sizeof(dest[0]));
|
|
|
|
ok(dwRet == 6 && !memcmp(dest, lpRes, sizeof(dest)),
|
2006-10-06 12:43:34 +02:00
|
|
|
"SHUnicodeToUnicode: expected 6, \"hello\\0\\n\\n\", got %d, \"%d,%d,%d,%d,%d,%d,%d,%d\"\n",
|
2004-09-13 20:11:56 +02:00
|
|
|
dwRet, dest[0], dest[1], dest[2], dest[3], dest[4], dest[5], dest[6], dest[7]);
|
|
|
|
}
|
|
|
|
|
2007-03-10 22:00:47 +01:00
|
|
|
static void test_StrXXX_overflows(void)
|
2007-02-04 23:55:35 +01:00
|
|
|
{
|
|
|
|
CHAR str1[2*MAX_PATH+1], buf[2*MAX_PATH];
|
|
|
|
WCHAR wstr1[2*MAX_PATH+1], wbuf[2*MAX_PATH];
|
|
|
|
const WCHAR fmt[] = {'%','s',0};
|
|
|
|
STRRET strret;
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; i<2*MAX_PATH; i++)
|
|
|
|
{
|
|
|
|
str1[i] = '0'+(i%10);
|
|
|
|
wstr1[i] = '0'+(i%10);
|
|
|
|
}
|
|
|
|
str1[2*MAX_PATH] = 0;
|
|
|
|
wstr1[2*MAX_PATH] = 0;
|
|
|
|
|
|
|
|
memset(buf, 0xbf, sizeof(buf));
|
|
|
|
expect_eq(StrCpyNA(buf, str1, 10), buf, PCHAR, "%p");
|
|
|
|
expect_eq(buf[9], 0, CHAR, "%x");
|
|
|
|
expect_eq(buf[10], '\xbf', CHAR, "%x");
|
2008-03-05 12:03:45 +01:00
|
|
|
|
|
|
|
if (pStrCatBuffA)
|
|
|
|
{
|
|
|
|
expect_eq(pStrCatBuffA(buf, str1, 100), buf, PCHAR, "%p");
|
|
|
|
expect_eq(buf[99], 0, CHAR, "%x");
|
|
|
|
expect_eq(buf[100], '\xbf', CHAR, "%x");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrCatBuffA() is not available\n");
|
2007-02-04 23:55:35 +01:00
|
|
|
|
2010-03-18 16:42:28 +01:00
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
/* crashes on XP */
|
|
|
|
StrCpyNW(wbuf, (LPCWSTR)0x1, 10);
|
|
|
|
StrCpyNW((LPWSTR)0x1, wstr1, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
memset(wbuf, 0xbf, sizeof(wbuf));
|
|
|
|
expect_eq(StrCpyNW(wbuf, (LPCWSTR)0x1, 1), wbuf, PWCHAR, "%p");
|
|
|
|
expect_eq(wbuf[0], 0, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[1], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
|
2011-02-28 23:28:29 +01:00
|
|
|
memset(wbuf, 0xbf, sizeof(wbuf));
|
|
|
|
expect_eq(StrCpyNW(wbuf, 0, 10), wbuf, PWCHAR, "%p");
|
|
|
|
expect_eq(wbuf[0], 0, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[1], (WCHAR)0xbfbf, WCHAR, "%x");
|
2010-03-18 16:42:28 +01:00
|
|
|
|
|
|
|
memset(wbuf, 0xbf, sizeof(wbuf));
|
|
|
|
expect_eq(StrCpyNW(wbuf, 0, 0), wbuf, PWCHAR, "%p");
|
|
|
|
expect_eq(wbuf[0], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[1], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
|
|
|
|
memset(wbuf, 0xbf, sizeof(wbuf));
|
|
|
|
expect_eq(StrCpyNW(wbuf, wstr1, 0), wbuf, PWCHAR, "%p");
|
|
|
|
expect_eq(wbuf[0], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[1], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
|
2007-02-04 23:55:35 +01:00
|
|
|
memset(wbuf, 0xbf, sizeof(wbuf));
|
|
|
|
expect_eq(StrCpyNW(wbuf, wstr1, 10), wbuf, PWCHAR, "%p");
|
|
|
|
expect_eq(wbuf[9], 0, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[10], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
|
2008-03-05 12:03:45 +01:00
|
|
|
if (pStrCatBuffW)
|
|
|
|
{
|
|
|
|
expect_eq(pStrCatBuffW(wbuf, wstr1, 100), wbuf, PWCHAR, "%p");
|
|
|
|
expect_eq(wbuf[99], 0, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[100], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrCatBuffW() is not available\n");
|
2007-02-04 23:55:35 +01:00
|
|
|
|
2008-03-05 12:03:45 +01:00
|
|
|
if (pStrRetToBufW)
|
|
|
|
{
|
|
|
|
memset(wbuf, 0xbf, sizeof(wbuf));
|
|
|
|
strret.uType = STRRET_WSTR;
|
|
|
|
U(strret).pOleStr = StrDupW(wstr1);
|
2008-08-04 10:26:06 +02:00
|
|
|
expect_eq2(pStrRetToBufW(&strret, NULL, wbuf, 10), S_OK, HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER) /* Vista */, HRESULT, "%x");
|
2008-03-05 12:03:45 +01:00
|
|
|
expect_eq(wbuf[9], 0, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[10], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrRetToBufW() is not available\n");
|
2007-02-04 23:55:35 +01:00
|
|
|
|
2008-03-05 12:03:45 +01:00
|
|
|
if (pStrRetToBufA)
|
|
|
|
{
|
|
|
|
memset(buf, 0xbf, sizeof(buf));
|
|
|
|
strret.uType = STRRET_CSTR;
|
|
|
|
StrCpyN(U(strret).cStr, str1, MAX_PATH);
|
2008-08-04 10:26:06 +02:00
|
|
|
expect_eq2(pStrRetToBufA(&strret, NULL, buf, 10), S_OK, HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER) /* Vista */, HRESULT, "%x");
|
2008-03-05 12:03:45 +01:00
|
|
|
expect_eq(buf[9], 0, CHAR, "%x");
|
|
|
|
expect_eq(buf[10], (CHAR)0xbf, CHAR, "%x");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("StrRetToBufA() is not available\n");
|
2008-03-05 12:03:45 +01:00
|
|
|
|
|
|
|
if (pwnsprintfA)
|
|
|
|
{
|
|
|
|
memset(buf, 0xbf, sizeof(buf));
|
|
|
|
ret = pwnsprintfA(buf, 10, "%s", str1);
|
2011-09-12 23:14:33 +02:00
|
|
|
ok(broken(ret == 9) || ret == -1 /* Vista */, "Unexpected wnsprintfA return %d, expected 9 or -1\n", ret);
|
2008-03-05 12:03:45 +01:00
|
|
|
expect_eq(buf[9], 0, CHAR, "%x");
|
|
|
|
expect_eq(buf[10], (CHAR)0xbf, CHAR, "%x");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("wnsprintfA() is not available\n");
|
2008-03-05 12:03:45 +01:00
|
|
|
|
|
|
|
if (pwnsprintfW)
|
|
|
|
{
|
|
|
|
memset(wbuf, 0xbf, sizeof(wbuf));
|
|
|
|
ret = pwnsprintfW(wbuf, 10, fmt, wstr1);
|
2011-09-12 23:14:33 +02:00
|
|
|
ok(broken(ret == 9) || ret == -1 /* Vista */, "Unexpected wnsprintfW return %d, expected 9 or -1\n", ret);
|
2008-03-05 12:03:45 +01:00
|
|
|
expect_eq(wbuf[9], 0, WCHAR, "%x");
|
|
|
|
expect_eq(wbuf[10], (WCHAR)0xbfbf, WCHAR, "%x");
|
|
|
|
}
|
|
|
|
else
|
2009-02-25 10:28:49 +01:00
|
|
|
win_skip("wnsprintfW() is not available\n");
|
2007-02-04 23:55:35 +01:00
|
|
|
}
|
|
|
|
|
2010-07-19 02:33:27 +02:00
|
|
|
static void test_StrStrA(void)
|
|
|
|
{
|
2010-07-20 06:13:57 +02:00
|
|
|
static const char *deadbeefA = "DeAdBeEf";
|
2010-07-19 02:33:27 +02:00
|
|
|
|
|
|
|
const struct
|
|
|
|
{
|
|
|
|
const char *search;
|
|
|
|
const char *expect;
|
|
|
|
} StrStrA_cases[] =
|
|
|
|
{
|
|
|
|
{"", NULL},
|
2010-07-20 06:13:57 +02:00
|
|
|
{"DeAd", deadbeefA},
|
2010-07-19 02:33:27 +02:00
|
|
|
{"dead", NULL},
|
2010-07-20 06:13:57 +02:00
|
|
|
{"AdBe", deadbeefA + 2},
|
2010-07-19 02:33:27 +02:00
|
|
|
{"adbe", NULL},
|
2010-07-20 06:13:57 +02:00
|
|
|
{"BeEf", deadbeefA + 4},
|
2010-07-19 02:33:27 +02:00
|
|
|
{"beef", NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
LPSTR ret;
|
|
|
|
int i;
|
|
|
|
|
2011-02-28 23:28:29 +01:00
|
|
|
/* Tests crash on Win2k */
|
2010-07-19 02:33:27 +02:00
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
ret = StrStrA(NULL, NULL);
|
|
|
|
ok(!ret, "Expected StrStrA to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrA(NULL, "");
|
|
|
|
ok(!ret, "Expected StrStrA to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrA("", NULL);
|
|
|
|
ok(!ret, "Expected StrStrA to return NULL, got %p\n", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = StrStrA("", "");
|
|
|
|
ok(!ret, "Expected StrStrA to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(StrStrA_cases)/sizeof(StrStrA_cases[0]); i++)
|
|
|
|
{
|
2010-07-20 06:13:57 +02:00
|
|
|
ret = StrStrA(deadbeefA, StrStrA_cases[i].search);
|
2010-07-19 02:33:27 +02:00
|
|
|
ok(ret == StrStrA_cases[i].expect,
|
|
|
|
"[%d] Expected StrStrA to return %p, got %p\n",
|
|
|
|
i, StrStrA_cases[i].expect, ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 02:33:36 +02:00
|
|
|
static void test_StrStrW(void)
|
|
|
|
{
|
|
|
|
static const WCHAR emptyW[] = {0};
|
|
|
|
static const WCHAR deadbeefW[] = {'D','e','A','d','B','e','E','f',0};
|
|
|
|
static const WCHAR deadW[] = {'D','e','A','d',0};
|
|
|
|
static const WCHAR dead_lowerW[] = {'d','e','a','d',0};
|
|
|
|
static const WCHAR adbeW[] = {'A','d','B','e',0};
|
|
|
|
static const WCHAR adbe_lowerW[] = {'a','d','b','e',0};
|
|
|
|
static const WCHAR beefW[] = {'B','e','E','f',0};
|
|
|
|
static const WCHAR beef_lowerW[] = {'b','e','e','f',0};
|
|
|
|
|
|
|
|
const struct
|
|
|
|
{
|
|
|
|
const WCHAR *search;
|
|
|
|
const WCHAR *expect;
|
|
|
|
} StrStrW_cases[] =
|
|
|
|
{
|
|
|
|
{emptyW, NULL},
|
|
|
|
{deadW, deadbeefW},
|
|
|
|
{dead_lowerW, NULL},
|
|
|
|
{adbeW, deadbeefW + 2},
|
|
|
|
{adbe_lowerW, NULL},
|
|
|
|
{beefW, deadbeefW + 4},
|
|
|
|
{beef_lowerW, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
LPWSTR ret;
|
|
|
|
int i;
|
|
|
|
|
2011-02-28 23:28:29 +01:00
|
|
|
/* Tests crash on Win2k */
|
2010-07-19 02:33:36 +02:00
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
ret = StrStrW(NULL, NULL);
|
|
|
|
ok(!ret, "Expected StrStrW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrW(NULL, emptyW);
|
|
|
|
ok(!ret, "Expected StrStrW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrW(emptyW, NULL);
|
|
|
|
ok(!ret, "Expected StrStrW to return NULL, got %p\n", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = StrStrW(emptyW, emptyW);
|
|
|
|
ok(!ret, "Expected StrStrW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(StrStrW_cases)/sizeof(StrStrW_cases[0]); i++)
|
|
|
|
{
|
|
|
|
ret = StrStrW(deadbeefW, StrStrW_cases[i].search);
|
|
|
|
ok(ret == StrStrW_cases[i].expect,
|
|
|
|
"[%d] Expected StrStrW to return %p, got %p\n",
|
|
|
|
i, StrStrW_cases[i].expect, ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 02:33:47 +02:00
|
|
|
static void test_StrStrIA(void)
|
|
|
|
{
|
2010-07-20 06:13:57 +02:00
|
|
|
static const char *deadbeefA = "DeAdBeEf";
|
2010-07-19 02:33:47 +02:00
|
|
|
|
|
|
|
const struct
|
|
|
|
{
|
|
|
|
const char *search;
|
|
|
|
const char *expect;
|
|
|
|
} StrStrIA_cases[] =
|
|
|
|
{
|
|
|
|
{"", NULL},
|
2010-07-20 06:13:57 +02:00
|
|
|
{"DeAd", deadbeefA},
|
|
|
|
{"dead", deadbeefA},
|
|
|
|
{"AdBe", deadbeefA + 2},
|
|
|
|
{"adbe", deadbeefA + 2},
|
|
|
|
{"BeEf", deadbeefA + 4},
|
|
|
|
{"beef", deadbeefA + 4},
|
2010-07-19 02:33:47 +02:00
|
|
|
{"cafe", NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
LPSTR ret;
|
|
|
|
int i;
|
|
|
|
|
2011-02-28 23:28:29 +01:00
|
|
|
/* Tests crash on Win2k */
|
2010-07-19 02:33:47 +02:00
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
ret = StrStrIA(NULL, NULL);
|
|
|
|
ok(!ret, "Expected StrStrIA to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrIA(NULL, "");
|
|
|
|
ok(!ret, "Expected StrStrIA to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrIA("", NULL);
|
|
|
|
ok(!ret, "Expected StrStrIA to return NULL, got %p\n", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = StrStrIA("", "");
|
|
|
|
ok(!ret, "Expected StrStrIA to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(StrStrIA_cases)/sizeof(StrStrIA_cases[0]); i++)
|
|
|
|
{
|
2010-07-20 06:13:57 +02:00
|
|
|
ret = StrStrIA(deadbeefA, StrStrIA_cases[i].search);
|
2010-07-19 02:33:47 +02:00
|
|
|
ok(ret == StrStrIA_cases[i].expect,
|
|
|
|
"[%d] Expected StrStrIA to return %p, got %p\n",
|
|
|
|
i, StrStrIA_cases[i].expect, ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 02:34:00 +02:00
|
|
|
static void test_StrStrIW(void)
|
|
|
|
{
|
|
|
|
static const WCHAR emptyW[] = {0};
|
|
|
|
static const WCHAR deadbeefW[] = {'D','e','A','d','B','e','E','f',0};
|
|
|
|
static const WCHAR deadW[] = {'D','e','A','d',0};
|
|
|
|
static const WCHAR dead_lowerW[] = {'d','e','a','d',0};
|
|
|
|
static const WCHAR adbeW[] = {'A','d','B','e',0};
|
|
|
|
static const WCHAR adbe_lowerW[] = {'a','d','b','e',0};
|
|
|
|
static const WCHAR beefW[] = {'B','e','E','f',0};
|
|
|
|
static const WCHAR beef_lowerW[] = {'b','e','e','f',0};
|
|
|
|
static const WCHAR cafeW[] = {'c','a','f','e',0};
|
|
|
|
|
|
|
|
const struct
|
|
|
|
{
|
|
|
|
const WCHAR *search;
|
|
|
|
const WCHAR *expect;
|
|
|
|
} StrStrIW_cases[] =
|
|
|
|
{
|
|
|
|
{emptyW, NULL},
|
|
|
|
{deadW, deadbeefW},
|
|
|
|
{dead_lowerW, deadbeefW},
|
|
|
|
{adbeW, deadbeefW + 2},
|
|
|
|
{adbe_lowerW, deadbeefW + 2},
|
|
|
|
{beefW, deadbeefW + 4},
|
|
|
|
{beef_lowerW, deadbeefW + 4},
|
|
|
|
{cafeW, NULL},
|
|
|
|
};
|
|
|
|
|
|
|
|
LPWSTR ret;
|
|
|
|
int i;
|
|
|
|
|
2011-02-28 23:28:29 +01:00
|
|
|
/* Tests crash on Win2k */
|
2010-07-19 02:34:00 +02:00
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
ret = StrStrIW(NULL, NULL);
|
|
|
|
ok(!ret, "Expected StrStrIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrIW(NULL, emptyW);
|
|
|
|
ok(!ret, "Expected StrStrIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = StrStrIW(emptyW, NULL);
|
|
|
|
ok(!ret, "Expected StrStrIW to return NULL, got %p\n", ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = StrStrIW(emptyW, emptyW);
|
|
|
|
ok(!ret, "Expected StrStrIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(StrStrIW_cases)/sizeof(StrStrIW_cases[0]); i++)
|
|
|
|
{
|
|
|
|
ret = StrStrIW(deadbeefW, StrStrIW_cases[i].search);
|
|
|
|
ok(ret == StrStrIW_cases[i].expect,
|
|
|
|
"[%d] Expected StrStrIW to return %p, got %p\n",
|
|
|
|
i, StrStrIW_cases[i].expect, ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 02:35:27 +02:00
|
|
|
static void test_StrStrNW(void)
|
|
|
|
{
|
|
|
|
static const WCHAR emptyW[] = {0};
|
|
|
|
static const WCHAR deadbeefW[] = {'D','e','A','d','B','e','E','f',0};
|
|
|
|
static const WCHAR deadW[] = {'D','e','A','d',0};
|
|
|
|
static const WCHAR dead_lowerW[] = {'d','e','a','d',0};
|
|
|
|
static const WCHAR adbeW[] = {'A','d','B','e',0};
|
|
|
|
static const WCHAR adbe_lowerW[] = {'a','d','b','e',0};
|
|
|
|
static const WCHAR beefW[] = {'B','e','E','f',0};
|
|
|
|
static const WCHAR beef_lowerW[] = {'b','e','e','f',0};
|
|
|
|
|
|
|
|
const struct
|
|
|
|
{
|
|
|
|
const WCHAR *search;
|
|
|
|
const UINT count;
|
|
|
|
const WCHAR *expect;
|
|
|
|
} StrStrNW_cases[] =
|
|
|
|
{
|
|
|
|
{emptyW, sizeof(deadbeefW)/sizeof(WCHAR), NULL},
|
|
|
|
{deadW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW},
|
|
|
|
{dead_lowerW, sizeof(deadbeefW)/sizeof(WCHAR), NULL},
|
|
|
|
{adbeW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW + 2},
|
|
|
|
{adbe_lowerW, sizeof(deadbeefW)/sizeof(WCHAR), NULL},
|
|
|
|
{beefW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW + 4},
|
|
|
|
{beef_lowerW, sizeof(deadbeefW)/sizeof(WCHAR), NULL},
|
|
|
|
{beefW, 0, NULL},
|
|
|
|
{beefW, 1, NULL},
|
|
|
|
{beefW, 2, NULL},
|
|
|
|
{beefW, 3, NULL},
|
|
|
|
{beefW, 4, NULL},
|
|
|
|
{beefW, 5, deadbeefW + 4},
|
|
|
|
{beefW, 6, deadbeefW + 4},
|
|
|
|
{beefW, 7, deadbeefW + 4},
|
|
|
|
{beefW, 8, deadbeefW + 4},
|
|
|
|
{beefW, 9, deadbeefW + 4},
|
|
|
|
};
|
|
|
|
|
|
|
|
LPWSTR ret;
|
|
|
|
UINT i;
|
|
|
|
|
|
|
|
if (!pStrStrNW)
|
|
|
|
{
|
|
|
|
win_skip("StrStrNW() is not available\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = pStrStrNW(NULL, NULL, 0);
|
|
|
|
ok(!ret, "Expected StrStrNW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNW(NULL, NULL, 10);
|
|
|
|
ok(!ret, "Expected StrStrNW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNW(NULL, emptyW, 10);
|
|
|
|
ok(!ret, "Expected StrStrNW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNW(emptyW, NULL, 10);
|
|
|
|
ok(!ret, "Expected StrStrNW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNW(emptyW, emptyW, 10);
|
|
|
|
ok(!ret, "Expected StrStrNW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(StrStrNW_cases)/sizeof(StrStrNW_cases[0]); i++)
|
|
|
|
{
|
|
|
|
ret = pStrStrNW(deadbeefW, StrStrNW_cases[i].search, StrStrNW_cases[i].count);
|
|
|
|
ok(ret == StrStrNW_cases[i].expect,
|
|
|
|
"[%d] Expected StrStrNW to return %p, got %p\n",
|
|
|
|
i, StrStrNW_cases[i].expect, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* StrStrNW accepts counts larger than the search string length but rejects
|
|
|
|
* counts larger than around 2G. The limit seems to change based on the
|
|
|
|
* caller executable itself. */
|
|
|
|
ret = pStrStrNW(deadbeefW, beefW, 100);
|
|
|
|
ok(ret == deadbeefW + 4, "Expected StrStrNW to return deadbeefW + 4, got %p\n", ret);
|
|
|
|
|
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
ret = pStrStrNW(deadbeefW, beefW, ~0U);
|
|
|
|
ok(!ret, "Expected StrStrNW to return NULL, got %p\n", ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 02:35:43 +02:00
|
|
|
static void test_StrStrNIW(void)
|
|
|
|
{
|
|
|
|
static const WCHAR emptyW[] = {0};
|
|
|
|
static const WCHAR deadbeefW[] = {'D','e','A','d','B','e','E','f',0};
|
|
|
|
static const WCHAR deadW[] = {'D','e','A','d',0};
|
|
|
|
static const WCHAR dead_lowerW[] = {'d','e','a','d',0};
|
|
|
|
static const WCHAR adbeW[] = {'A','d','B','e',0};
|
|
|
|
static const WCHAR adbe_lowerW[] = {'a','d','b','e',0};
|
|
|
|
static const WCHAR beefW[] = {'B','e','E','f',0};
|
|
|
|
static const WCHAR beef_lowerW[] = {'b','e','e','f',0};
|
|
|
|
static const WCHAR cafeW[] = {'c','a','f','e',0};
|
|
|
|
|
|
|
|
const struct
|
|
|
|
{
|
|
|
|
const WCHAR *search;
|
|
|
|
const UINT count;
|
|
|
|
const WCHAR *expect;
|
|
|
|
} StrStrNIW_cases[] =
|
|
|
|
{
|
|
|
|
{emptyW, sizeof(deadbeefW)/sizeof(WCHAR), NULL},
|
|
|
|
{deadW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW},
|
|
|
|
{dead_lowerW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW},
|
|
|
|
{adbeW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW + 2},
|
|
|
|
{adbe_lowerW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW + 2},
|
|
|
|
{beefW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW + 4},
|
|
|
|
{beef_lowerW, sizeof(deadbeefW)/sizeof(WCHAR), deadbeefW + 4},
|
|
|
|
{cafeW, sizeof(deadbeefW)/sizeof(WCHAR), NULL},
|
|
|
|
{beefW, 0, NULL},
|
|
|
|
{beefW, 1, NULL},
|
|
|
|
{beefW, 2, NULL},
|
|
|
|
{beefW, 3, NULL},
|
|
|
|
{beefW, 4, NULL},
|
|
|
|
{beefW, 5, deadbeefW + 4},
|
|
|
|
{beefW, 6, deadbeefW + 4},
|
|
|
|
{beefW, 7, deadbeefW + 4},
|
|
|
|
{beefW, 8, deadbeefW + 4},
|
|
|
|
{beefW, 9, deadbeefW + 4},
|
|
|
|
{beef_lowerW, 0, NULL},
|
|
|
|
{beef_lowerW, 1, NULL},
|
|
|
|
{beef_lowerW, 2, NULL},
|
|
|
|
{beef_lowerW, 3, NULL},
|
|
|
|
{beef_lowerW, 4, NULL},
|
|
|
|
{beef_lowerW, 5, deadbeefW + 4},
|
|
|
|
{beef_lowerW, 6, deadbeefW + 4},
|
|
|
|
{beef_lowerW, 7, deadbeefW + 4},
|
|
|
|
{beef_lowerW, 8, deadbeefW + 4},
|
|
|
|
{beef_lowerW, 9, deadbeefW + 4},
|
|
|
|
};
|
|
|
|
|
|
|
|
LPWSTR ret;
|
|
|
|
UINT i;
|
|
|
|
|
|
|
|
if (!pStrStrNIW)
|
|
|
|
{
|
|
|
|
win_skip("StrStrNIW() is not available\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = pStrStrNIW(NULL, NULL, 0);
|
|
|
|
ok(!ret, "Expected StrStrNIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNIW(NULL, NULL, 10);
|
|
|
|
ok(!ret, "Expected StrStrNIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNIW(NULL, emptyW, 10);
|
|
|
|
ok(!ret, "Expected StrStrNIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNIW(emptyW, NULL, 10);
|
|
|
|
ok(!ret, "Expected StrStrNIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
ret = pStrStrNIW(emptyW, emptyW, 10);
|
|
|
|
ok(!ret, "Expected StrStrNIW to return NULL, got %p\n", ret);
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(StrStrNIW_cases)/sizeof(StrStrNIW_cases[0]); i++)
|
|
|
|
{
|
|
|
|
ret = pStrStrNIW(deadbeefW, StrStrNIW_cases[i].search, StrStrNIW_cases[i].count);
|
|
|
|
ok(ret == StrStrNIW_cases[i].expect,
|
|
|
|
"[%d] Expected StrStrNIW to return %p, got %p\n",
|
|
|
|
i, StrStrNIW_cases[i].expect, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* StrStrNIW accepts counts larger than the search string length but rejects
|
|
|
|
* counts larger than around 2G. The limit seems to change based on the
|
|
|
|
* caller executable itself. */
|
|
|
|
ret = pStrStrNIW(deadbeefW, beefW, 100);
|
|
|
|
ok(ret == deadbeefW + 4, "Expected StrStrNIW to return deadbeefW + 4, got %p\n", ret);
|
|
|
|
|
|
|
|
if (0)
|
|
|
|
{
|
|
|
|
ret = pStrStrNIW(deadbeefW, beefW, ~0U);
|
|
|
|
ok(!ret, "Expected StrStrNIW to return NULL, got %p\n", ret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-01 05:10:56 +02:00
|
|
|
START_TEST(string)
|
|
|
|
{
|
2008-03-05 12:03:29 +01:00
|
|
|
HMODULE hShlwapi;
|
2006-10-22 19:40:56 +02:00
|
|
|
TCHAR thousandDelim[8];
|
|
|
|
TCHAR decimalDelim[8];
|
2004-02-10 03:22:53 +01:00
|
|
|
CoInitialize(0);
|
|
|
|
|
2006-12-08 12:55:43 +01:00
|
|
|
GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_STHOUSAND, thousandDelim, 8);
|
|
|
|
GetLocaleInfo(LOCALE_USER_DEFAULT, LOCALE_SDECIMAL, decimalDelim, 8);
|
2006-10-22 19:40:56 +02:00
|
|
|
|
2004-09-13 20:11:56 +02:00
|
|
|
hShlwapi = GetModuleHandleA("shlwapi");
|
2010-01-30 16:25:05 +01:00
|
|
|
pChrCmpIA = (void *)GetProcAddress(hShlwapi, "ChrCmpIA");
|
|
|
|
pChrCmpIW = (void *)GetProcAddress(hShlwapi, "ChrCmpIW");
|
2008-03-05 12:03:29 +01:00
|
|
|
pIntlStrEqWorkerA = (void *)GetProcAddress(hShlwapi, "IntlStrEqWorkerA");
|
|
|
|
pIntlStrEqWorkerW = (void *)GetProcAddress(hShlwapi, "IntlStrEqWorkerW");
|
|
|
|
pSHAnsiToAnsi = (void *)GetProcAddress(hShlwapi, (LPSTR)345);
|
|
|
|
pSHUnicodeToUnicode = (void *)GetProcAddress(hShlwapi, (LPSTR)346);
|
2008-03-05 12:03:45 +01:00
|
|
|
pStrCatBuffA = (void *)GetProcAddress(hShlwapi, "StrCatBuffA");
|
|
|
|
pStrCatBuffW = (void *)GetProcAddress(hShlwapi, "StrCatBuffW");
|
2008-03-05 12:03:29 +01:00
|
|
|
pStrCpyNXA = (void *)GetProcAddress(hShlwapi, (LPSTR)399);
|
|
|
|
pStrCpyNXW = (void *)GetProcAddress(hShlwapi, (LPSTR)400);
|
2009-09-24 14:31:17 +02:00
|
|
|
pStrChrNW = (void *)GetProcAddress(hShlwapi, "StrChrNW");
|
2008-03-05 12:03:45 +01:00
|
|
|
pStrFormatByteSize64A = (void *)GetProcAddress(hShlwapi, "StrFormatByteSize64A");
|
|
|
|
pStrFormatKBSizeA = (void *)GetProcAddress(hShlwapi, "StrFormatKBSizeA");
|
|
|
|
pStrFormatKBSizeW = (void *)GetProcAddress(hShlwapi, "StrFormatKBSizeW");
|
2008-03-05 12:03:29 +01:00
|
|
|
pStrIsIntlEqualA = (void *)GetProcAddress(hShlwapi, "StrIsIntlEqualA");
|
|
|
|
pStrIsIntlEqualW = (void *)GetProcAddress(hShlwapi, "StrIsIntlEqualW");
|
2010-07-20 06:14:11 +02:00
|
|
|
pStrPBrkW = (void *)GetProcAddress(hShlwapi, "StrPBrkW");
|
2010-07-20 06:14:20 +02:00
|
|
|
pStrRChrA = (void *)GetProcAddress(hShlwapi, "StrRChrA");
|
2008-03-05 12:03:29 +01:00
|
|
|
pStrRetToBSTR = (void *)GetProcAddress(hShlwapi, "StrRetToBSTR");
|
2008-03-05 12:03:45 +01:00
|
|
|
pStrRetToBufA = (void *)GetProcAddress(hShlwapi, "StrRetToBufA");
|
|
|
|
pStrRetToBufW = (void *)GetProcAddress(hShlwapi, "StrRetToBufW");
|
2010-07-19 02:35:27 +02:00
|
|
|
pStrStrNW = (void *)GetProcAddress(hShlwapi, "StrStrNW");
|
2010-07-19 02:35:43 +02:00
|
|
|
pStrStrNIW = (void *)GetProcAddress(hShlwapi, "StrStrNIW");
|
2008-03-05 12:03:45 +01:00
|
|
|
pwnsprintfA = (void *)GetProcAddress(hShlwapi, "wnsprintfA");
|
|
|
|
pwnsprintfW = (void *)GetProcAddress(hShlwapi, "wnsprintfW");
|
2012-03-08 14:35:56 +01:00
|
|
|
pStrToInt64ExA = (void *)GetProcAddress(hShlwapi, "StrToInt64ExA");
|
|
|
|
pStrToInt64ExW = (void *)GetProcAddress(hShlwapi, "StrToInt64ExW");
|
2004-09-13 20:11:56 +02:00
|
|
|
|
2003-10-01 05:10:56 +02:00
|
|
|
test_StrChrA();
|
|
|
|
test_StrChrW();
|
|
|
|
test_StrChrIA();
|
|
|
|
test_StrChrIW();
|
|
|
|
test_StrRChrA();
|
|
|
|
test_StrRChrW();
|
|
|
|
test_StrCpyW();
|
2009-09-24 14:31:17 +02:00
|
|
|
test_StrChrNW();
|
2003-10-01 05:10:56 +02:00
|
|
|
test_StrToIntA();
|
|
|
|
test_StrToIntW();
|
|
|
|
test_StrToIntExA();
|
|
|
|
test_StrToIntExW();
|
2012-03-08 14:35:56 +01:00
|
|
|
test_StrToInt64ExA();
|
|
|
|
test_StrToInt64ExW();
|
2003-10-01 05:10:56 +02:00
|
|
|
test_StrDupA();
|
2006-12-08 12:55:43 +01:00
|
|
|
|
|
|
|
/* language-dependent test */
|
2011-09-15 09:36:43 +02:00
|
|
|
if (is_lang_english() && is_locale_english())
|
2010-08-13 22:51:44 +02:00
|
|
|
{
|
|
|
|
test_StrFormatByteSize64A();
|
|
|
|
test_StrFormatKBSizeA();
|
|
|
|
test_StrFormatKBSizeW();
|
|
|
|
}
|
2011-09-15 09:36:43 +02:00
|
|
|
else
|
|
|
|
skip("An English UI and locale is required for the StrFormat*Size tests\n");
|
|
|
|
if (is_lang_english())
|
|
|
|
test_StrFromTimeIntervalA();
|
|
|
|
else
|
|
|
|
skip("An English UI is required for the StrFromTimeInterval tests\n");
|
2006-12-08 12:55:43 +01:00
|
|
|
|
2004-02-17 21:24:50 +01:00
|
|
|
test_StrCmpA();
|
|
|
|
test_StrCmpW();
|
2004-02-10 03:22:53 +01:00
|
|
|
test_StrRetToBSTR();
|
2004-09-13 20:11:56 +02:00
|
|
|
test_StrCpyNXA();
|
|
|
|
test_StrCpyNXW();
|
2006-10-22 19:54:18 +02:00
|
|
|
test_StrRStrI();
|
2004-09-13 20:11:56 +02:00
|
|
|
test_SHAnsiToAnsi();
|
|
|
|
test_SHUnicodeToUnicode();
|
2007-02-04 23:55:35 +01:00
|
|
|
test_StrXXX_overflows();
|
2010-07-19 02:33:27 +02:00
|
|
|
test_StrStrA();
|
2010-07-19 02:33:36 +02:00
|
|
|
test_StrStrW();
|
2010-07-19 02:33:47 +02:00
|
|
|
test_StrStrIA();
|
2010-07-19 02:34:00 +02:00
|
|
|
test_StrStrIW();
|
2010-07-19 02:35:27 +02:00
|
|
|
test_StrStrNW();
|
2010-07-19 02:35:43 +02:00
|
|
|
test_StrStrNIW();
|
2008-05-19 17:04:48 +02:00
|
|
|
|
|
|
|
CoUninitialize();
|
2003-10-01 05:10:56 +02:00
|
|
|
}
|