Commit 173b834b authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

ntdll/tests: Tests for RtlHashUnicodeString().

parent 9f90ec8d
...@@ -30,6 +30,9 @@ ...@@ -30,6 +30,9 @@
#include "winnls.h" #include "winnls.h"
#include "guiddef.h" #include "guiddef.h"
#define HASH_STRING_ALGORITHM_X65599 1
#define HASH_STRING_ALGORITHM_INVALID 0xffffffff
/* Function ptrs for ntdll calls */ /* Function ptrs for ntdll calls */
static HMODULE hntdll = 0; static HMODULE hntdll = 0;
static NTSTATUS (WINAPI *pRtlAnsiStringToUnicodeString)(PUNICODE_STRING, PCANSI_STRING, BOOLEAN); static NTSTATUS (WINAPI *pRtlAnsiStringToUnicodeString)(PUNICODE_STRING, PCANSI_STRING, BOOLEAN);
...@@ -64,6 +67,7 @@ static NTSTATUS (WINAPI *pRtlValidateUnicodeString)(LONG, UNICODE_STRING *); ...@@ -64,6 +67,7 @@ static NTSTATUS (WINAPI *pRtlValidateUnicodeString)(LONG, UNICODE_STRING *);
static NTSTATUS (WINAPI *pRtlGUIDFromString)(const UNICODE_STRING*,GUID*); static NTSTATUS (WINAPI *pRtlGUIDFromString)(const UNICODE_STRING*,GUID*);
static NTSTATUS (WINAPI *pRtlStringFromGUID)(const GUID*, UNICODE_STRING*); static NTSTATUS (WINAPI *pRtlStringFromGUID)(const GUID*, UNICODE_STRING*);
static BOOLEAN (WINAPI *pRtlIsTextUnicode)(LPVOID, INT, INT *); static BOOLEAN (WINAPI *pRtlIsTextUnicode)(LPVOID, INT, INT *);
static NTSTATUS (WINAPI *pRtlHashUnicodeString)(PCUNICODE_STRING,BOOLEAN,ULONG,ULONG*);
/*static VOID (WINAPI *pRtlFreeOemString)(PSTRING);*/ /*static VOID (WINAPI *pRtlFreeOemString)(PSTRING);*/
/*static VOID (WINAPI *pRtlCopyUnicodeString)(UNICODE_STRING *, const UNICODE_STRING *);*/ /*static VOID (WINAPI *pRtlCopyUnicodeString)(UNICODE_STRING *, const UNICODE_STRING *);*/
...@@ -132,10 +136,10 @@ static void InitFunctionPtrs(void) ...@@ -132,10 +136,10 @@ static void InitFunctionPtrs(void)
pRtlGUIDFromString = (void *)GetProcAddress(hntdll, "RtlGUIDFromString"); pRtlGUIDFromString = (void *)GetProcAddress(hntdll, "RtlGUIDFromString");
pRtlStringFromGUID = (void *)GetProcAddress(hntdll, "RtlStringFromGUID"); pRtlStringFromGUID = (void *)GetProcAddress(hntdll, "RtlStringFromGUID");
pRtlIsTextUnicode = (void *)GetProcAddress(hntdll, "RtlIsTextUnicode"); pRtlIsTextUnicode = (void *)GetProcAddress(hntdll, "RtlIsTextUnicode");
pRtlHashUnicodeString = (void*)GetProcAddress(hntdll, "RtlHashUnicodeString");
} }
} }
static void test_RtlInitString(void) static void test_RtlInitString(void)
{ {
static const char teststring[] = "Some Wild String"; static const char teststring[] = "Some Wild String";
...@@ -1867,6 +1871,70 @@ static void test_RtlStringFromGUID(void) ...@@ -1867,6 +1871,70 @@ static void test_RtlStringFromGUID(void)
pRtlFreeUnicodeString(&str); pRtlFreeUnicodeString(&str);
} }
struct hash_unicodestring_test {
WCHAR str[50];
BOOLEAN case_insensitive;
ULONG hash;
};
static const struct hash_unicodestring_test hash_test[] = {
{ {'T',0}, FALSE, 0x00000054 },
{ {'T','e','s','t',0}, FALSE, 0x766bb952 },
{ {'T','e','S','t',0}, FALSE, 0x764bb172 },
{ {'t','e','s','t',0}, FALSE, 0x4745d132 },
{ {'t','e','s','t',0}, TRUE, 0x6689c132 },
{ {'T','E','S','T',0}, TRUE, 0x6689c132 },
{ {'T','E','S','T',0}, FALSE, 0x6689c132 },
{ {'a','b','c','d','e','f',0}, FALSE, 0x971318c3 },
{ { 0 } }
};
static void test_RtlHashUnicodeString(void)
{
static const WCHAR strW[] = {'T','e','s','t',0,'1',0};
const struct hash_unicodestring_test *ptr;
UNICODE_STRING str;
NTSTATUS status;
ULONG hash;
if (!pRtlHashUnicodeString)
{
skip("RtlHashUnicodeString is not available\n");
return;
}
status = pRtlHashUnicodeString(NULL, FALSE, HASH_STRING_ALGORITHM_X65599, &hash);
ok(status == STATUS_INVALID_PARAMETER, "got status 0x%08x\n", status);
RtlInitUnicodeString(&str, strW);
status = pRtlHashUnicodeString(&str, FALSE, HASH_STRING_ALGORITHM_X65599, NULL);
ok(status == STATUS_INVALID_PARAMETER, "got status 0x%08x\n", status);
status = pRtlHashUnicodeString(&str, FALSE, HASH_STRING_ALGORITHM_INVALID, &hash);
ok(status == STATUS_INVALID_PARAMETER, "got status 0x%08x\n", status);
/* embedded null */
str.Buffer = (PWSTR)strW;
str.Length = sizeof(strW) - sizeof(WCHAR);
str.MaximumLength = sizeof(strW);
status = pRtlHashUnicodeString(&str, FALSE, HASH_STRING_ALGORITHM_X65599, &hash);
ok(status == STATUS_SUCCESS, "got status 0x%08x\n", status);
ok(hash == 0x32803083, "got 0x%08x\n", hash);
ptr = hash_test;
while (*ptr->str)
{
RtlInitUnicodeString(&str, ptr->str);
hash = 0;
status = pRtlHashUnicodeString(&str, ptr->case_insensitive, HASH_STRING_ALGORITHM_X65599, &hash);
ok(status == STATUS_SUCCESS, "got status 0x%08x for %s\n", status, wine_dbgstr_w(ptr->str));
ok(hash == ptr->hash, "got wrong hash 0x%08x, expected 0x%08x, for %s, mode %d\n", hash, ptr->hash,
wine_dbgstr_w(ptr->str), ptr->case_insensitive);
ptr++;
}
}
START_TEST(rtlstr) START_TEST(rtlstr)
{ {
InitFunctionPtrs(); InitFunctionPtrs();
...@@ -1905,4 +1973,5 @@ START_TEST(rtlstr) ...@@ -1905,4 +1973,5 @@ START_TEST(rtlstr)
test_RtlUpcaseUnicodeString(); test_RtlUpcaseUnicodeString();
test_RtlDowncaseUnicodeString(); test_RtlDowncaseUnicodeString();
} }
test_RtlHashUnicodeString();
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment