ReactOS 0.4.15-dev-8058-ga7cbb60
xmlparser.c
Go to the documentation of this file.
1/*
2 * XML Parser implementation
3 *
4 * Copyright 2011 Alistair Leslie-Hughes
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20#define COBJMACROS
21#define CONST_VTABLE
22
23#include <stdio.h>
24#include <assert.h>
25
26#include "windows.h"
27#include "ole2.h"
28#include "xmlparser.h"
29#include "wine/test.h"
30
31
32static HRESULT WINAPI nodefact_QueryInterface(IXMLNodeFactory *iface,
33 REFIID riid, void **ppvObject)
34{
35 *ppvObject = NULL;
36
37 if (IsEqualGUID(riid, &IID_IXMLNodeFactory) ||
39 *ppvObject = iface;
40 else
41 return E_NOINTERFACE;
42
43 return S_OK;
44}
45
46static ULONG WINAPI nodefact_AddRef(IXMLNodeFactory *iface)
47{
48 return 2;
49}
50
51static ULONG WINAPI nodefact_Release(IXMLNodeFactory *iface)
52{
53 return 1;
54}
55
56static HRESULT WINAPI nodefact_NotifyEvent(IXMLNodeFactory *iface,
57 IXMLNodeSource *pSource, XML_NODEFACTORY_EVENT iEvt)
58{
59 return E_NOTIMPL;
60}
61
62static HRESULT WINAPI nodefact_BeginChildren(IXMLNodeFactory *iface,
63 IXMLNodeSource *pSource, XML_NODE_INFO *pNodeInfo)
64{
65 return E_NOTIMPL;
66}
67
68static HRESULT WINAPI nodefact_EndChildren(IXMLNodeFactory *iface,
69 IXMLNodeSource *pSource, BOOL fEmpty, XML_NODE_INFO *pNodeInfo)
70{
71 return E_NOTIMPL;
72}
73
74static HRESULT WINAPI nodefact_Error(IXMLNodeFactory *iface,
75 IXMLNodeSource *pSource, HRESULT hrErrorCode, USHORT cNumRecs,
76 XML_NODE_INFO **ppNodeInfo)
77{
78 return E_NOTIMPL;
79}
80
81static HRESULT WINAPI nodefact_CreateNode(IXMLNodeFactory *iface, IXMLNodeSource *pSource,
82 PVOID pNodeParent, USHORT cNumRecs, XML_NODE_INFO **ppNodeInfo)
83{
84 return E_NOTIMPL;
85}
86
87static const IXMLNodeFactoryVtbl nodefactoryVtbl =
88{
97};
98
99static IXMLNodeFactory thenodefactory = { &nodefactoryVtbl };
100
101static void create_test(void)
102{
103 HRESULT hr;
104 IXMLParser *parser;
105 IXMLNodeFactory *nodefactory;
106 DWORD flags;
107
108 hr = CoCreateInstance(&CLSID_XMLParser30, NULL, CLSCTX_INPROC_SERVER, &IID_IXMLParser, (void**)&parser);
109 if (FAILED(hr))
110 {
111 win_skip("IXMLParser is not available (0x%08x)\n", hr);
112 return;
113 }
114
115 flags = IXMLParser_GetFlags(parser);
116 ok(flags == 0, "Expected 0 got %d\n", flags);
117
118 hr = IXMLParser_SetFlags(parser, XMLFLAG_SAX);
119 ok(hr == S_OK, "Expected S_OK got 0x%08x\n", hr);
120
121 flags = IXMLParser_GetFlags(parser);
122 ok(flags == XMLFLAG_SAX, "Expected 0 got %d\n", flags);
123
124 hr = IXMLParser_GetFactory(parser, NULL);
125 ok(hr == E_INVALIDARG, "Expected S_OK got 0x%08x\n", hr);
126
127 hr = IXMLParser_GetFactory(parser, &nodefactory);
128 ok(hr == S_OK, "Expected S_OK got 0x%08x\n", hr);
129 ok(nodefactory == NULL, "expected NULL\n");
130
131 hr = IXMLParser_SetFactory(parser, &thenodefactory);
132 ok(hr == S_OK, "Expected S_OK got 0x%08x\n", hr);
133
134 hr = IXMLParser_GetFactory(parser, &nodefactory);
135 ok(hr == S_OK, "Expected S_OK got 0x%08x\n", hr);
136 ok(nodefactory == &thenodefactory, "expected NULL\n");
137
138 hr = IXMLParser_SetInput(parser, NULL);
139 ok(hr == E_INVALIDARG, "Expected S_OK got 0x%08x\n", hr);
140
141 hr = IXMLParser_SetFactory(parser, NULL);
142 ok(hr == S_OK, "Expected S_OK got 0x%08x\n", hr);
143
144 hr = IXMLParser_SetFlags(parser, 0);
145 ok(hr == S_OK, "Expected S_OK got 0x%08x\n", hr);
146
147 hr = IXMLParser_GetParserState(parser);
148 ok(hr == XMLPARSER_IDLE, "got 0x%08x\n", hr);
149
150 IXMLParser_Release(parser);
151}
152
154{
155 HRESULT hr;
156
157 hr = CoInitialize( NULL );
158 ok( hr == S_OK, "failed to init com\n");
159 if (hr != S_OK)
160 return;
161
162 create_test();
163
165}
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
const GUID IID_IUnknown
#define E_INVALIDARG
Definition: ddrawi.h:101
#define E_NOTIMPL
Definition: ddrawi.h:99
#define NULL
Definition: types.h:112
XML_NODEFACTORY_EVENT
Definition: xmlparser.idl:224
@ XMLPARSER_IDLE
Definition: xmlparser.idl:195
@ XMLFLAG_SAX
Definition: xmlparser.idl:214
HRESULT WINAPI DECLSPEC_HOTPATCH CoCreateInstance(REFCLSID rclsid, LPUNKNOWN pUnkOuter, DWORD dwClsContext, REFIID iid, LPVOID *ppv)
Definition: compobj.c:3325
HRESULT WINAPI CoInitialize(LPVOID lpReserved)
Definition: compobj.c:1964
void WINAPI DECLSPEC_HOTPATCH CoUninitialize(void)
Definition: compobj.c:2067
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLbitfield flags
Definition: glext.h:7161
REFIID riid
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define FAILED(hr)
Definition: intsafe.h:51
static HRESULT WINAPI nodefact_QueryInterface(IXMLNodeFactory *iface, REFIID riid, void **ppvObject)
Definition: xmlparser.c:32
static HRESULT WINAPI nodefact_BeginChildren(IXMLNodeFactory *iface, IXMLNodeSource *pSource, XML_NODE_INFO *pNodeInfo)
Definition: xmlparser.c:62
static HRESULT WINAPI nodefact_NotifyEvent(IXMLNodeFactory *iface, IXMLNodeSource *pSource, XML_NODEFACTORY_EVENT iEvt)
Definition: xmlparser.c:56
static IXMLNodeFactory thenodefactory
Definition: xmlparser.c:99
static ULONG WINAPI nodefact_AddRef(IXMLNodeFactory *iface)
Definition: xmlparser.c:46
static HRESULT WINAPI nodefact_CreateNode(IXMLNodeFactory *iface, IXMLNodeSource *pSource, PVOID pNodeParent, USHORT cNumRecs, XML_NODE_INFO **ppNodeInfo)
Definition: xmlparser.c:81
static ULONG WINAPI nodefact_Release(IXMLNodeFactory *iface)
Definition: xmlparser.c:51
static const IXMLNodeFactoryVtbl nodefactoryVtbl
Definition: xmlparser.c:87
static HRESULT WINAPI nodefact_Error(IXMLNodeFactory *iface, IXMLNodeSource *pSource, HRESULT hrErrorCode, USHORT cNumRecs, XML_NODE_INFO **ppNodeInfo)
Definition: xmlparser.c:74
static HRESULT WINAPI nodefact_EndChildren(IXMLNodeFactory *iface, IXMLNodeSource *pSource, BOOL fEmpty, XML_NODE_INFO *pNodeInfo)
Definition: xmlparser.c:68
static void create_test(void)
Definition: xmlparser.c:101
unsigned short USHORT
Definition: pedump.c:61
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define REFIID
Definition: guiddef.h:118
#define win_skip
Definition: test.h:163
HRESULT hr
Definition: shlfolder.c:183
Definition: import.c:81
uint32_t ULONG
Definition: typedefs.h:59
_In_ void _In_ PCCERT_CONTEXT _In_opt_ LPFILETIME _In_ DWORD _In_ DWORD _Outptr_opt_ void ** ppvObject
Definition: wincrypt.h:6082
#define WINAPI
Definition: msvc.h:6
#define E_NOINTERFACE
Definition: winerror.h:2364