Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
862684fe
Commit
862684fe
authored
Apr 21, 2021
by
Zebediah Figura
Committed by
Alexandre Julliard
Apr 22, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows.globalization: Link directly to combase.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ac1c3471
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
47 deletions
+19
-47
Makefile.in
dlls/windows.globalization/tests/Makefile.in
+1
-1
globalization.c
dlls/windows.globalization/tests/globalization.c
+18
-46
No files found.
dlls/windows.globalization/tests/Makefile.in
View file @
862684fe
TESTDLL
=
windows.globalization.dll
IMPORTS
=
uuid
IMPORTS
=
combase
uuid
C_SRCS
=
\
globalization.c
dlls/windows.globalization/tests/globalization.c
View file @
862684fe
...
...
@@ -38,14 +38,6 @@
/* kernel32.dll */
static
INT
(
WINAPI
*
pGetUserDefaultGeoName
)(
LPWSTR
,
int
);
/* combase.dll */
static
HRESULT
(
WINAPI
*
pRoGetActivationFactory
)(
HSTRING
,
REFIID
,
void
**
);
static
HRESULT
(
WINAPI
*
pRoInitialize
)(
RO_INIT_TYPE
);
static
void
(
WINAPI
*
pRoUninitialize
)(
void
);
static
HRESULT
(
WINAPI
*
pWindowsCreateString
)(
LPCWSTR
,
UINT32
,
HSTRING
*
);
static
HRESULT
(
WINAPI
*
pWindowsDeleteString
)(
HSTRING
);
static
WCHAR
*
(
WINAPI
*
pWindowsGetStringRawBuffer
)(
HSTRING
,
UINT32
*
);
static
void
test_GlobalizationPreferences
(
void
)
{
...
...
@@ -56,28 +48,29 @@ static void test_GlobalizationPreferences(void)
IActivationFactory
*
factory
=
NULL
;
IInspectable
*
inspectable
=
NULL
,
*
tmp_inspectable
=
NULL
;
IAgileObject
*
agile_object
=
NULL
,
*
tmp_agile_object
=
NULL
;
WCHAR
locale
[
LOCALE_NAME_MAX_LENGTH
];
HSTRING
str
,
tmp_str
;
const
WCHAR
*
buf
;
BOOLEAN
found
;
HRESULT
hr
;
UINT32
len
;
WCHAR
*
buf
,
locale
[
LOCALE_NAME_MAX_LENGTH
];
UINT32
i
,
size
;
GetUserDefaultLocaleName
(
locale
,
LOCALE_NAME_MAX_LENGTH
);
hr
=
p
RoInitialize
(
RO_INIT_MULTITHREADED
);
hr
=
RoInitialize
(
RO_INIT_MULTITHREADED
);
ok
(
hr
==
S_OK
,
"RoInitialize failed, hr %#x
\n
"
,
hr
);
hr
=
p
WindowsCreateString
(
class_name
,
wcslen
(
class_name
),
&
str
);
hr
=
WindowsCreateString
(
class_name
,
wcslen
(
class_name
),
&
str
);
ok
(
hr
==
S_OK
,
"WindowsCreateString failed, hr %#x
\n
"
,
hr
);
hr
=
p
RoGetActivationFactory
(
str
,
&
IID_IActivationFactory
,
(
void
**
)
&
factory
);
hr
=
RoGetActivationFactory
(
str
,
&
IID_IActivationFactory
,
(
void
**
)
&
factory
);
ok
(
hr
==
S_OK
||
broken
(
hr
==
REGDB_E_CLASSNOTREG
),
"RoGetActivationFactory failed, hr %#x
\n
"
,
hr
);
if
(
hr
==
REGDB_E_CLASSNOTREG
)
{
win_skip
(
"%s runtimeclass not registered, skipping tests.
\n
"
,
wine_dbgstr_w
(
class_name
));
p
WindowsDeleteString
(
str
);
p
RoUninitialize
();
WindowsDeleteString
(
str
);
RoUninitialize
();
return
;
}
...
...
@@ -103,7 +96,7 @@ static void test_GlobalizationPreferences(void)
hr
=
IGlobalizationPreferencesStatics_get_HomeGeographicRegion
(
preferences_statics
,
&
tmp_str
);
ok
(
hr
==
S_OK
,
"IGlobalizationPreferencesStatics_get_HomeGeographicRegion failed, hr %#x
\n
"
,
hr
);
buf
=
p
WindowsGetStringRawBuffer
(
tmp_str
,
&
len
);
buf
=
WindowsGetStringRawBuffer
(
tmp_str
,
&
len
);
ok
(
buf
!=
NULL
&&
len
>
0
,
"WindowsGetStringRawBuffer returned buf %p, len %u
\n
"
,
buf
,
len
);
if
(
pGetUserDefaultGeoName
)
{
...
...
@@ -116,7 +109,7 @@ static void test_GlobalizationPreferences(void)
len
,
wine_dbgstr_w
(
buf
),
wine_dbgstr_w
(
country
));
}
p
WindowsDeleteString
(
tmp_str
);
WindowsDeleteString
(
tmp_str
);
hr
=
IGlobalizationPreferencesStatics_get_Languages
(
preferences_statics
,
&
languages
);
ok
(
hr
==
S_OK
,
"IGlobalizationPreferencesStatics_get_Languages failed, hr %#x
\n
"
,
hr
);
...
...
@@ -138,7 +131,7 @@ static void test_GlobalizationPreferences(void)
hr
=
IVectorView_HSTRING_GetAt
(
languages
,
0
,
&
tmp_str
);
ok
(
hr
==
S_OK
,
"IVectorView_HSTRING_GetAt failed, hr %#x
\n
"
,
hr
);
buf
=
p
WindowsGetStringRawBuffer
(
tmp_str
,
&
len
);
buf
=
WindowsGetStringRawBuffer
(
tmp_str
,
&
len
);
ok
(
buf
!=
NULL
&&
len
>
0
,
"WindowsGetStringRawBuffer returned buf %p, len %u
\n
"
,
buf
,
len
);
ok
(
wcslen
(
locale
)
==
len
&&
!
memcmp
(
buf
,
locale
,
len
),
...
...
@@ -151,9 +144,9 @@ static void test_GlobalizationPreferences(void)
ok
(
hr
==
S_OK
,
"IVectorView_HSTRING_IndexOf failed, hr %#x
\n
"
,
hr
);
ok
(
i
==
0
&&
found
==
TRUE
,
"IVectorView_HSTRING_IndexOf returned size %d, found %d
\n
"
,
size
,
found
);
p
WindowsDeleteString
(
tmp_str
);
WindowsDeleteString
(
tmp_str
);
hr
=
p
WindowsCreateString
(
L"deadbeef"
,
8
,
&
tmp_str
);
hr
=
WindowsCreateString
(
L"deadbeef"
,
8
,
&
tmp_str
);
ok
(
hr
==
S_OK
,
"WindowsCreateString failed, hr %#x
\n
"
,
hr
);
i
=
0xdeadbeef
;
...
...
@@ -162,7 +155,7 @@ static void test_GlobalizationPreferences(void)
ok
(
hr
==
S_OK
,
"IVectorView_HSTRING_IndexOf failed, hr %#x
\n
"
,
hr
);
ok
(
i
==
0
&&
found
==
FALSE
,
"IVectorView_HSTRING_IndexOf returned size %d, found %d
\n
"
,
size
,
found
);
p
WindowsDeleteString
(
tmp_str
);
WindowsDeleteString
(
tmp_str
);
tmp_str
=
(
HSTRING
)
0xdeadbeef
;
hr
=
IVectorView_HSTRING_GetAt
(
languages
,
size
,
&
tmp_str
);
...
...
@@ -178,14 +171,14 @@ static void test_GlobalizationPreferences(void)
ok
(
hr
==
S_OK
,
"IVectorView_HSTRING_GetAt failed, hr %#x
\n
"
,
hr
);
ok
(
i
==
1
,
"IVectorView_HSTRING_GetMany returned count %u, expected 1
\n
"
,
i
);
buf
=
p
WindowsGetStringRawBuffer
(
tmp_str
,
&
len
);
buf
=
WindowsGetStringRawBuffer
(
tmp_str
,
&
len
);
ok
(
buf
!=
NULL
&&
len
>
0
,
"WindowsGetStringRawBuffer returned buf %p, len %u
\n
"
,
buf
,
len
);
ok
(
wcslen
(
locale
)
==
len
&&
!
memcmp
(
buf
,
locale
,
len
),
"IGlobalizationPreferencesStatics_get_Languages 0 returned len %u, str %s, expected %s
\n
"
,
len
,
wine_dbgstr_w
(
buf
),
wine_dbgstr_w
(
locale
));
p
WindowsDeleteString
(
tmp_str
);
WindowsDeleteString
(
tmp_str
);
IVectorView_HSTRING_Release
(
languages
);
...
...
@@ -229,35 +222,14 @@ static void test_GlobalizationPreferences(void)
IInspectable_Release
(
inspectable
);
IActivationFactory_Release
(
factory
);
p
WindowsDeleteString
(
str
);
WindowsDeleteString
(
str
);
p
RoUninitialize
();
RoUninitialize
();
}
START_TEST
(
globalization
)
{
HMODULE
combase
,
kernel32
;
if
(
!
(
combase
=
LoadLibraryW
(
L"combase.dll"
)))
{
win_skip
(
"Failed to load combase.dll, skipping tests
\n
"
);
return
;
}
#define LOAD_FUNCPTR(x) \
if (!(p##x = (void*)GetProcAddress(combase, #x))) \
{ \
win_skip("Failed to find %s in combase.dll, skipping tests.\n", #x); \
return; \
}
LOAD_FUNCPTR
(
RoGetActivationFactory
);
LOAD_FUNCPTR
(
RoInitialize
);
LOAD_FUNCPTR
(
RoUninitialize
);
LOAD_FUNCPTR
(
WindowsCreateString
);
LOAD_FUNCPTR
(
WindowsDeleteString
);
LOAD_FUNCPTR
(
WindowsGetStringRawBuffer
);
#undef LOAD_FUNCPTR
HMODULE
kernel32
;
kernel32
=
GetModuleHandleA
(
"kernel32"
);
pGetUserDefaultGeoName
=
(
void
*
)
GetProcAddress
(
kernel32
,
"GetUserDefaultGeoName"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment