ReactOS 0.4.15-dev-7961-gdcf9eb0
xmlparser.c File Reference
#include <stdio.h>
#include <assert.h>
#include "windows.h"
#include "ole2.h"
#include "xmlparser.h"
#include "wine/test.h"
Include dependency graph for xmlparser.c:

Go to the source code of this file.

Macros

#define COBJMACROS
 
#define CONST_VTABLE
 

Functions

static HRESULT WINAPI nodefact_QueryInterface (IXMLNodeFactory *iface, REFIID riid, void **ppvObject)
 
static ULONG WINAPI nodefact_AddRef (IXMLNodeFactory *iface)
 
static ULONG WINAPI nodefact_Release (IXMLNodeFactory *iface)
 
static HRESULT WINAPI nodefact_NotifyEvent (IXMLNodeFactory *iface, IXMLNodeSource *pSource, XML_NODEFACTORY_EVENT iEvt)
 
static HRESULT WINAPI nodefact_BeginChildren (IXMLNodeFactory *iface, IXMLNodeSource *pSource, XML_NODE_INFO *pNodeInfo)
 
static HRESULT WINAPI nodefact_EndChildren (IXMLNodeFactory *iface, IXMLNodeSource *pSource, BOOL fEmpty, XML_NODE_INFO *pNodeInfo)
 
static HRESULT WINAPI nodefact_Error (IXMLNodeFactory *iface, IXMLNodeSource *pSource, HRESULT hrErrorCode, USHORT cNumRecs, XML_NODE_INFO **ppNodeInfo)
 
static HRESULT WINAPI nodefact_CreateNode (IXMLNodeFactory *iface, IXMLNodeSource *pSource, PVOID pNodeParent, USHORT cNumRecs, XML_NODE_INFO **ppNodeInfo)
 
static void create_test (void)
 
 START_TEST (xmlparser)
 

Variables

static const IXMLNodeFactoryVtbl nodefactoryVtbl
 
static IXMLNodeFactory thenodefactory = { &nodefactoryVtbl }
 

Macro Definition Documentation

◆ COBJMACROS

#define COBJMACROS

Definition at line 20 of file xmlparser.c.

◆ CONST_VTABLE

#define CONST_VTABLE

Definition at line 21 of file xmlparser.c.

Function Documentation

◆ create_test()

static void create_test ( void  )
static

Definition at line 101 of file xmlparser.c.

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}
#define ok(value,...)
Definition: atltest.h:57
#define E_INVALIDARG
Definition: ddrawi.h:101
#define NULL
Definition: types.h:112
@ 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
unsigned long DWORD
Definition: ntddk_ex.h:95
GLbitfield flags
Definition: glext.h:7161
#define S_OK
Definition: intsafe.h:52
#define FAILED(hr)
Definition: intsafe.h:51
static IXMLNodeFactory thenodefactory
Definition: xmlparser.c:99
#define win_skip
Definition: test.h:160
HRESULT hr
Definition: shlfolder.c:183
Definition: import.c:81

Referenced by START_TEST().

◆ nodefact_AddRef()

static ULONG WINAPI nodefact_AddRef ( IXMLNodeFactory *  iface)
static

Definition at line 46 of file xmlparser.c.

47{
48 return 2;
49}

◆ nodefact_BeginChildren()

static HRESULT WINAPI nodefact_BeginChildren ( IXMLNodeFactory *  iface,
IXMLNodeSource *  pSource,
XML_NODE_INFO pNodeInfo 
)
static

Definition at line 62 of file xmlparser.c.

64{
65 return E_NOTIMPL;
66}
#define E_NOTIMPL
Definition: ddrawi.h:99

◆ nodefact_CreateNode()

static HRESULT WINAPI nodefact_CreateNode ( IXMLNodeFactory *  iface,
IXMLNodeSource *  pSource,
PVOID  pNodeParent,
USHORT  cNumRecs,
XML_NODE_INFO **  ppNodeInfo 
)
static

Definition at line 81 of file xmlparser.c.

83{
84 return E_NOTIMPL;
85}

◆ nodefact_EndChildren()

static HRESULT WINAPI nodefact_EndChildren ( IXMLNodeFactory *  iface,
IXMLNodeSource *  pSource,
BOOL  fEmpty,
XML_NODE_INFO pNodeInfo 
)
static

Definition at line 68 of file xmlparser.c.

70{
71 return E_NOTIMPL;
72}

◆ nodefact_Error()

static HRESULT WINAPI nodefact_Error ( IXMLNodeFactory *  iface,
IXMLNodeSource *  pSource,
HRESULT  hrErrorCode,
USHORT  cNumRecs,
XML_NODE_INFO **  ppNodeInfo 
)
static

Definition at line 74 of file xmlparser.c.

77{
78 return E_NOTIMPL;
79}

◆ nodefact_NotifyEvent()

static HRESULT WINAPI nodefact_NotifyEvent ( IXMLNodeFactory *  iface,
IXMLNodeSource *  pSource,
XML_NODEFACTORY_EVENT  iEvt 
)
static

Definition at line 56 of file xmlparser.c.

58{
59 return E_NOTIMPL;
60}

◆ nodefact_QueryInterface()

static HRESULT WINAPI nodefact_QueryInterface ( IXMLNodeFactory *  iface,
REFIID  riid,
void **  ppvObject 
)
static

Definition at line 32 of file xmlparser.c.

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}
const GUID IID_IUnknown
REFIID riid
Definition: atlbase.h:39
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
_In_ void _In_ PCCERT_CONTEXT _In_opt_ LPFILETIME _In_ DWORD _In_ DWORD _Outptr_opt_ void ** ppvObject
Definition: wincrypt.h:6082
#define E_NOINTERFACE
Definition: winerror.h:2364

◆ nodefact_Release()

static ULONG WINAPI nodefact_Release ( IXMLNodeFactory *  iface)
static

Definition at line 51 of file xmlparser.c.

52{
53 return 1;
54}

◆ START_TEST()

START_TEST ( xmlparser  )

Definition at line 153 of file xmlparser.c.

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}
HRESULT WINAPI CoInitialize(LPVOID lpReserved)
Definition: compobj.c:1964
void WINAPI DECLSPEC_HOTPATCH CoUninitialize(void)
Definition: compobj.c:2067
static void create_test(void)
Definition: xmlparser.c:101

Variable Documentation

◆ nodefactoryVtbl

const IXMLNodeFactoryVtbl nodefactoryVtbl
static
Initial value:
=
{
}
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 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 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

Definition at line 87 of file xmlparser.c.

◆ thenodefactory

IXMLNodeFactory thenodefactory = { &nodefactoryVtbl }
static

Definition at line 99 of file xmlparser.c.

Referenced by create_test().