msxml3/tests: Added XMLView QueryInterface tests.
[wine] / dlls / msxml3 / tests / xmlview.c
1 /*
2  * Copyright 2012 Piotr Caban for CodeWeavers
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 #define COBJMACROS
19 #define CONST_VTABLE
20
21 #include <stdio.h>
22 #include <assert.h>
23
24 #include "windows.h"
25 #include "ole2.h"
26 #include "mshtml.h"
27 #include "initguid.h"
28 #include "perhist.h"
29 #include "docobj.h"
30
31 #include "wine/test.h"
32
33 DEFINE_GUID(CLSID_XMLView, 0x48123bc4, 0x99d9, 0x11d1, 0xa6,0xb3, 0x00,0xc0,0x4f,0xd9,0x15,0x55);
34
35 static void test_QueryInterface(void)
36 {
37     IUnknown *xmlview, *unk;
38     IHTMLDocument *htmldoc;
39     HRESULT hres;
40
41     hres = CoCreateInstance(&CLSID_XMLView, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
42             &IID_IUnknown, (void**)&xmlview);
43     if(hres == REGDB_E_CLASSNOTREG) {
44         win_skip("XMLView class not registered\n");
45         return;
46     }
47     ok(hres == S_OK, "CoCreateInstance returned %x, expected S_OK\n", hres);
48
49     hres = IUnknown_QueryInterface(xmlview, &IID_IPersistMoniker, (void**)&unk);
50     ok(hres == S_OK, "QueryInterface(IID_IPersistMoniker) returned %x, expected S_OK\n", hres);
51     IUnknown_Release(unk);
52
53     hres = IUnknown_QueryInterface(xmlview, &IID_IPersistHistory, (void**)&unk);
54     ok(hres == S_OK, "QueryInterface(IID_IPersistHistory) returned %x, expected S_OK\n", hres);
55     IUnknown_Release(unk);
56
57     hres = IUnknown_QueryInterface(xmlview, &IID_IOleCommandTarget, (void**)&unk);
58     ok(hres == S_OK, "QueryInterface(IID_IOleCommandTarget) returned %x, expected S_OK\n", hres);
59     IUnknown_Release(unk);
60
61     hres = IUnknown_QueryInterface(xmlview, &IID_IOleObject, (void**)&unk);
62     ok(hres == S_OK, "QueryInterface(IID_IOleObject) returned %x, expected S_OK\n", hres);
63     IUnknown_Release(unk);
64
65     hres = IUnknown_QueryInterface(xmlview, &IID_IHTMLDocument, (void**)&htmldoc);
66     ok(hres == S_OK, "QueryInterface(IID_IHTMLDocument) returned %x, expected S_OK\n", hres);
67     hres = IHTMLDocument_QueryInterface(htmldoc, &IID_IUnknown, (void**)&unk);
68     ok(hres == S_OK, "QueryInterface(IID_IUnknown) returned %x, expected S_OK\n", hres);
69     todo_wine ok(unk == xmlview, "Aggregation is not working as expected\n");
70     IUnknown_Release(unk);
71     IHTMLDocument_Release(htmldoc);
72
73     IUnknown_Release(xmlview);
74 }
75
76 START_TEST(xmlview)
77 {
78     CoInitialize(NULL);
79     test_QueryInterface();
80     CoUninitialize();
81 }