mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2025-08-29 18:53:55 +02:00
98 lines
3.5 KiB
C
98 lines
3.5 KiB
C
/*
|
|
* Copyright (C) 2025 Mohamad Al-Jaf
|
|
*
|
|
* 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
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
#define COBJMACROS
|
|
#include "initguid.h"
|
|
#include <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winstring.h"
|
|
|
|
#include "roapi.h"
|
|
|
|
#define WIDL_using_Windows_Foundation
|
|
#define WIDL_using_Windows_Foundation_Collections
|
|
#include "windows.foundation.h"
|
|
#define WIDL_using_Windows_UI
|
|
#include "windows.ui.h"
|
|
|
|
#include "wine/test.h"
|
|
|
|
#define check_interface( obj, iid, is_broken ) check_interface_( __LINE__, obj, iid, is_broken )
|
|
static void check_interface_( unsigned int line, void *obj, const IID *iid, BOOL is_broken )
|
|
{
|
|
IUnknown *iface = obj;
|
|
IUnknown *unk;
|
|
HRESULT hr;
|
|
|
|
hr = IUnknown_QueryInterface( iface, iid, (void **)&unk );
|
|
ok_(__FILE__, line)( hr == S_OK || broken( is_broken && hr == E_NOINTERFACE ), "got hr %#lx.\n", hr );
|
|
if (SUCCEEDED(hr))
|
|
IUnknown_Release( unk );
|
|
}
|
|
|
|
static void test_ColorHelper(void)
|
|
{
|
|
static const WCHAR *color_helper_statics_name = L"Windows.UI.ColorHelper";
|
|
IColorHelperStatics *color_helper_statics = (void *)0xdeadbeef;
|
|
IActivationFactory *factory = (void *)0xdeadbeef;
|
|
Color color;
|
|
HSTRING str;
|
|
HRESULT hr;
|
|
|
|
hr = WindowsCreateString( color_helper_statics_name, wcslen( color_helper_statics_name ), &str );
|
|
ok( hr == S_OK, "got hr %#lx.\n", hr );
|
|
hr = RoGetActivationFactory( str, &IID_IActivationFactory, (void **)&factory );
|
|
WindowsDeleteString( str );
|
|
ok( hr == S_OK || broken( hr == REGDB_E_CLASSNOTREG ), "got hr %#lx.\n", hr );
|
|
if (hr == REGDB_E_CLASSNOTREG)
|
|
{
|
|
win_skip( "%s runtimeclass not registered, skipping tests.\n", wine_dbgstr_w( color_helper_statics_name ) );
|
|
return;
|
|
}
|
|
|
|
check_interface( factory, &IID_IUnknown, FALSE );
|
|
check_interface( factory, &IID_IInspectable, FALSE );
|
|
check_interface( factory, &IID_IAgileObject, TRUE /* Missing on Windows older than 1809v2 */ );
|
|
|
|
hr = IActivationFactory_QueryInterface( factory, &IID_IColorHelperStatics, (void **)&color_helper_statics );
|
|
ok( hr == S_OK, "got hr %#lx.\n", hr );
|
|
|
|
memset( &color, 0, sizeof( color ) );
|
|
hr = IColorHelperStatics_FromArgb( color_helper_statics, 255, 255, 255, 255, NULL );
|
|
ok( hr == E_POINTER, "got hr %#lx.\n", hr );
|
|
hr = IColorHelperStatics_FromArgb( color_helper_statics, 255, 255, 255, 255, &color );
|
|
ok( hr == S_OK, "got hr %#lx.\n", hr );
|
|
ok( color.A == 255 && color.R == 255 && color.G == 255 && color.B == 255,
|
|
"got color.A = %u, color.R = %u, color.G = %u, color.B = %u,\n", color.A, color.R, color.G, color.B );
|
|
|
|
IColorHelperStatics_Release( color_helper_statics );
|
|
IActivationFactory_Release( factory );
|
|
}
|
|
|
|
START_TEST(xaml)
|
|
{
|
|
HRESULT hr;
|
|
|
|
hr = RoInitialize( RO_INIT_MULTITHREADED );
|
|
ok( hr == S_OK, "RoInitialize failed, hr %#lx\n", hr );
|
|
|
|
test_ColorHelper();
|
|
|
|
RoUninitialize();
|
|
}
|