73 lines
2.2 KiB
C
73 lines
2.2 KiB
C
/*
|
|
* Copyright (c) 2018 Alistair Leslie-Hughes
|
|
*
|
|
* 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 <stdarg.h>
|
|
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winerror.h"
|
|
#include "winstring.h"
|
|
|
|
#include "initguid.h"
|
|
#include "roapi.h"
|
|
|
|
#include "wine/test.h"
|
|
|
|
static void test_ActivationFactories(void)
|
|
{
|
|
HRESULT hr;
|
|
HSTRING str, str2;
|
|
IActivationFactory *factory = NULL;
|
|
IInspectable *inspect = NULL;
|
|
|
|
hr = WindowsCreateString(L"Windows.Data.Xml.Dom.XmlDocument",
|
|
ARRAY_SIZE(L"Windows.Data.Xml.Dom.XmlDocument") - 1, &str);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
|
|
hr = WindowsCreateString(L"Does.Not.Exist", ARRAY_SIZE(L"Does.Not.Exist") - 1, &str2);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
|
|
hr = RoInitialize(RO_INIT_MULTITHREADED);
|
|
ok(hr == S_OK, "got %08x\n", hr);
|
|
|
|
hr = RoGetActivationFactory(str2, &IID_IActivationFactory, (void **)&factory);
|
|
ok(hr == REGDB_E_CLASSNOTREG, "got %08x\n", hr);
|
|
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
|
todo_wine ok(hr == S_OK, "got %08x\n", hr);
|
|
if(factory)
|
|
IActivationFactory_Release(factory);
|
|
|
|
hr = RoActivateInstance(str2, &inspect);
|
|
ok(hr == REGDB_E_CLASSNOTREG, "got %08x\n", hr);
|
|
|
|
hr = RoActivateInstance(str, &inspect);
|
|
todo_wine ok(hr == S_OK, "got %08x\n", hr);
|
|
if(inspect)
|
|
IInspectable_Release(inspect);
|
|
|
|
WindowsDeleteString(str2);
|
|
WindowsDeleteString(str);
|
|
RoUninitialize();
|
|
}
|
|
|
|
START_TEST(roapi)
|
|
{
|
|
test_ActivationFactories();
|
|
}
|