132 lines
4.7 KiB
C
132 lines
4.7 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 load_resource(const WCHAR *filename)
|
|
{
|
|
DWORD written;
|
|
HANDLE file;
|
|
HRSRC res;
|
|
void *ptr;
|
|
|
|
file = CreateFileW(filename, GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0);
|
|
ok(file != INVALID_HANDLE_VALUE, "failed to create %s, error %lu\n", debugstr_w(filename), GetLastError());
|
|
|
|
res = FindResourceW(NULL, filename, L"TESTDLL");
|
|
ok(res != 0, "couldn't find resource\n");
|
|
ptr = LockResource(LoadResource(GetModuleHandleW(NULL), res));
|
|
WriteFile(file, ptr, SizeofResource(GetModuleHandleW(NULL), res), &written, NULL);
|
|
ok(written == SizeofResource(GetModuleHandleW(NULL), res), "couldn't write resource\n");
|
|
CloseHandle(file);
|
|
}
|
|
|
|
static void test_ActivationFactories(void)
|
|
{
|
|
HRESULT hr;
|
|
HSTRING str, str2;
|
|
IActivationFactory *factory = NULL;
|
|
IInspectable *inspect = NULL;
|
|
ULONG ref;
|
|
|
|
hr = WindowsCreateString(L"Windows.Data.Xml.Dom.XmlDocument",
|
|
ARRAY_SIZE(L"Windows.Data.Xml.Dom.XmlDocument") - 1, &str);
|
|
ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
|
|
|
|
hr = WindowsCreateString(L"Does.Not.Exist", ARRAY_SIZE(L"Does.Not.Exist") - 1, &str2);
|
|
ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
|
|
|
|
hr = RoInitialize(RO_INIT_MULTITHREADED);
|
|
ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
|
|
|
|
hr = RoGetActivationFactory(str2, &IID_IActivationFactory, (void **)&factory);
|
|
ok(hr == REGDB_E_CLASSNOTREG, "Unexpected hr %#lx.\n", hr);
|
|
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
|
todo_wine ok(hr == S_OK, "Unexpected hr %#lx.\n", hr);
|
|
if(factory)
|
|
IActivationFactory_Release(factory);
|
|
|
|
hr = RoActivateInstance(str2, &inspect);
|
|
ok(hr == REGDB_E_CLASSNOTREG, "Unexpected hr %#lx.\n", hr);
|
|
|
|
hr = RoActivateInstance(str, &inspect);
|
|
todo_wine ok(hr == S_OK, "UNexpected hr %#lx.\n", hr);
|
|
if(inspect)
|
|
IInspectable_Release(inspect);
|
|
|
|
WindowsDeleteString(str2);
|
|
WindowsDeleteString(str);
|
|
|
|
hr = WindowsCreateString(L"Wine.Test.Missing", ARRAY_SIZE(L"Wine.Test.Missing") - 1, &str);
|
|
ok(hr == S_OK, "WindowsCreateString returned %#lx.\n", hr);
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
|
ok(hr == REGDB_E_CLASSNOTREG, "RoGetActivationFactory returned %#lx.\n", hr);
|
|
ok(factory == NULL, "got factory %p.\n", factory);
|
|
WindowsDeleteString(str);
|
|
hr = WindowsCreateString(L"Wine.Test.Class", ARRAY_SIZE(L"Wine.Test.Class") - 1, &str);
|
|
ok(hr == S_OK, "WindowsCreateString returned %#lx.\n", hr);
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
|
todo_wine
|
|
ok(hr == E_NOTIMPL || broken(hr == REGDB_E_CLASSNOTREG) /* <= w1064v1809 */,
|
|
"RoGetActivationFactory returned %#lx.\n", hr);
|
|
ok(factory == NULL, "got factory %p.\n", factory);
|
|
WindowsDeleteString(str);
|
|
hr = WindowsCreateString(L"Wine.Test.Trusted", ARRAY_SIZE(L"Wine.Test.Trusted") - 1, &str);
|
|
ok(hr == S_OK, "WindowsCreateString returned %#lx.\n", hr);
|
|
hr = RoGetActivationFactory(str, &IID_IActivationFactory, (void **)&factory);
|
|
todo_wine
|
|
ok(hr == S_OK || broken(hr == REGDB_E_CLASSNOTREG) /* <= w1064v1809 */,
|
|
"RoGetActivationFactory returned %#lx.\n", hr);
|
|
if (hr == REGDB_E_CLASSNOTREG)
|
|
ok(!factory, "got factory %p.\n", factory);
|
|
else
|
|
{
|
|
todo_wine
|
|
ok(!!factory, "got factory %p.\n", factory);
|
|
}
|
|
if (!factory) ref = 0;
|
|
else ref = IActivationFactory_Release(factory);
|
|
ok(ref == 0, "Release returned %lu\n", ref);
|
|
WindowsDeleteString(str);
|
|
|
|
RoUninitialize();
|
|
}
|
|
|
|
START_TEST(roapi)
|
|
{
|
|
BOOL ret;
|
|
|
|
load_resource(L"wine.combase.test.dll");
|
|
|
|
test_ActivationFactories();
|
|
|
|
ret = DeleteFileW(L"wine.combase.test.dll");
|
|
ok(ret, "Failed to delete file, error %lu\n", GetLastError());
|
|
}
|