ReactOS 0.4.15-dev-7842-g558ab78
metahost.c
Go to the documentation of this file.
1/*
2 * Copyright 2010 Vincent Povirk
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 */
18
19#define COBJMACROS
20
21#include <stdarg.h>
22
23#include "windef.h"
24#include "ole2.h"
25
26#include "corerror.h"
27#include "ocidl.h"
28#include "initguid.h"
29#include "metahost.h"
30#include "wine/test.h"
31
33
34static HRESULT (WINAPI *pCLRCreateInstance)(REFCLSID clsid, REFIID riid, LPVOID *ppInterface);
35
37
38static BOOL init_pointers(void)
39{
41
42 hmscoree = LoadLibraryA("mscoree.dll");
43
44 if (hmscoree)
45 pCLRCreateInstance = (void *)GetProcAddress(hmscoree, "CLRCreateInstance");
46
47 if (pCLRCreateInstance)
48 hr = pCLRCreateInstance(&CLSID_CLRMetaHost, &IID_ICLRMetaHost, (void**)&metahost);
49
50 if (FAILED(hr))
51 {
52 win_skip(".NET 4 is not installed\n");
54 return FALSE;
55 }
56
57 return TRUE;
58}
59
60static void cleanup(void)
61{
62 ICLRMetaHost_Release(metahost);
63
65}
66
67static void test_enumruntimes(void)
68{
69 IEnumUnknown *runtime_enum;
70 IUnknown *unk;
72 ICLRRuntimeInfo *runtime_info;
73 HRESULT hr;
75
76 hr = ICLRMetaHost_EnumerateInstalledRuntimes(metahost, &runtime_enum);
77 ok(hr == S_OK, "EnumerateInstalledRuntimes returned %x\n", hr);
78 if (FAILED(hr)) return;
79
80 while ((hr = IEnumUnknown_Next(runtime_enum, 1, &unk, &count)) == S_OK)
81 {
82 hr = IUnknown_QueryInterface(unk, &IID_ICLRRuntimeInfo, (void**)&runtime_info);
83 ok(hr == S_OK, "QueryInterface returned %x\n", hr);
84
85 count = 1;
86 hr = ICLRRuntimeInfo_GetVersionString(runtime_info, buf, &count);
87 ok(hr == HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER), "GetVersionString returned %x\n", hr);
88 ok(count > 1, "GetVersionString returned count %u\n", count);
89
90 count = 0xdeadbeef;
91 hr = ICLRRuntimeInfo_GetVersionString(runtime_info, NULL, &count);
92 ok(hr == S_OK, "GetVersionString returned %x\n", hr);
93 ok(count > 1 && count != 0xdeadbeef, "GetVersionString returned count %u\n", count);
94
96 hr = ICLRRuntimeInfo_GetVersionString(runtime_info, buf, &count);
97 ok(hr == S_OK, "GetVersionString returned %x\n", hr);
98 ok(count > 1, "GetVersionString returned count %u\n", count);
99
100 trace("runtime found: %s\n", wine_dbgstr_w(buf));
101
102 ICLRRuntimeInfo_Release(runtime_info);
103
104 IUnknown_Release(unk);
105 }
106
107 ok(hr == S_FALSE, "IEnumUnknown_Next returned %x\n", hr);
108
109 IEnumUnknown_Release(runtime_enum);
110}
111
112static void test_getruntime(void)
113{
114 static const WCHAR twodotzero[] = {'v','2','.','0','.','5','0','7','2','7',0};
115 static const WCHAR twodotzerodotzero[] = {'v','2','.','0','.','0',0};
116 HRESULT hr;
118 DWORD count;
120
121 hr = ICLRMetaHost_GetRuntime(metahost, NULL, &IID_ICLRRuntimeInfo, (void**)&info);
122 ok(hr == E_POINTER, "GetVersion failed, hr=%x\n", hr);
123
124 hr = ICLRMetaHost_GetRuntime(metahost, twodotzero, &IID_ICLRRuntimeInfo, (void**)&info);
125 if (hr == CLR_E_SHIM_RUNTIME)
126 /* FIXME: Get Mono properly packaged so we can fail here. */
127 todo_wine ok(hr == S_OK, "GetVersion failed, hr=%x\n", hr);
128 else
129 ok(hr == S_OK, "GetVersion failed, hr=%x\n", hr);
130 if (hr != S_OK) return;
131
132 count = MAX_PATH;
133 hr = ICLRRuntimeInfo_GetVersionString(info, buf, &count);
134 ok(hr == S_OK, "GetVersionString returned %x\n", hr);
135 ok(count == lstrlenW(buf)+1, "GetVersionString returned count %u but string of length %u\n", count, lstrlenW(buf)+1);
136 ok(lstrcmpW(buf, twodotzero) == 0, "got unexpected version %s\n", wine_dbgstr_w(buf));
137
138 ICLRRuntimeInfo_Release(info);
139
140 /* Versions must match exactly. */
141 hr = ICLRMetaHost_GetRuntime(metahost, twodotzerodotzero, &IID_ICLRRuntimeInfo, (void**)&info);
142 ok(hr == CLR_E_SHIM_RUNTIME, "GetVersion failed, hr=%x\n", hr);
143}
144
146{
147 if (!init_pointers())
148 return;
149
151
153
154 cleanup();
155}
#define trace
Definition: atltest.h:70
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
#define CLR_E_SHIM_RUNTIME
Definition: corerror.h:127
#define ERROR_INSUFFICIENT_BUFFER
Definition: dderror.h:10
#define E_FAIL
Definition: ddrawi.h:102
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define GetProcAddress(x, y)
Definition: compat.h:753
#define FreeLibrary(x)
Definition: compat.h:748
#define MAX_PATH
Definition: compat.h:34
#define lstrlenW
Definition: compat.h:750
HINSTANCE WINAPI DECLSPEC_HOTPATCH LoadLibraryA(LPCSTR lpLibFileName)
Definition: loader.c:111
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:7751
#define S_OK
Definition: intsafe.h:52
#define FAILED(hr)
Definition: intsafe.h:51
#define wine_dbgstr_w
Definition: kernel32.h:34
int WINAPI lstrcmpW(LPCWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:170
static ICLRMetaHost * metahost
Definition: metahost.c:36
static REFIID LPVOID * ppInterface
Definition: metahost.c:34
static void cleanup(void)
Definition: metahost.c:60
static void test_getruntime(void)
Definition: metahost.c:112
static HMODULE hmscoree
Definition: metahost.c:32
static void test_enumruntimes(void)
Definition: metahost.c:67
static BOOL init_pointers(void)
Definition: metahost.c:38
static REFIID riid
Definition: metahost.c:34
#define todo_wine
Definition: custom.c:79
REFCLSID clsid
Definition: msctf.c:82
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
#define win_skip
Definition: test.h:160
HRESULT hr
Definition: shlfolder.c:183
#define HRESULT
Definition: msvc.h:7
#define WINAPI
Definition: msvc.h:6
#define S_FALSE
Definition: winerror.h:2357
#define HRESULT_FROM_WIN32(x)
Definition: winerror.h:92
#define E_POINTER
Definition: winerror.h:2365
__wchar_t WCHAR
Definition: xmlstorage.h:180