2 * Some unit tests for d3dxof
4 * Copyright (C) 2008 Christian Costa
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.
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.
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
24 #include "wine/test.h"
28 static inline void debugstr_guid( char* buf
, CONST GUID
*id
)
30 sprintf(buf
, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
31 id
->Data1
, id
->Data2
, id
->Data3
,
32 id
->Data4
[0], id
->Data4
[1], id
->Data4
[2], id
->Data4
[3],
33 id
->Data4
[4], id
->Data4
[5], id
->Data4
[6], id
->Data4
[7] );
36 static HMODULE hd3dxof
;
37 static HRESULT (WINAPI
*pDirectXFileCreate
)(LPDIRECTXFILE
*);
43 "<3D82AB43-62DA-11CF-AB39-0020AF71E433>\n"
56 static void init_function_pointers(void)
58 /* We have to use LoadLibrary as no d3dxof functions are referenced directly */
59 hd3dxof
= LoadLibraryA("d3dxof.dll");
61 pDirectXFileCreate
= (void *)GetProcAddress(hd3dxof
, "DirectXFileCreate");
64 static ULONG
getRefcount(IUnknown
*iface
)
66 IUnknown_AddRef(iface
);
67 return IUnknown_Release(iface
);
70 static void test_refcount(void)
74 LPDIRECTXFILE lpDirectXFile
= NULL
;
75 LPDIRECTXFILEENUMOBJECT lpdxfeo
;
76 LPDIRECTXFILEDATA lpdxfd
;
77 DXFILELOADMEMORY dxflm
;
79 if (!pDirectXFileCreate
)
81 win_skip("DirectXFileCreate is not available\n");
85 hr
= pDirectXFileCreate(&lpDirectXFile
);
86 ok(hr
== DXFILE_OK
, "DirectXFileCreate: %x\n", hr
);
89 skip("Couldn't create DirectXFile interface\n");
93 ref
= getRefcount( (IUnknown
*) lpDirectXFile
);
94 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
95 ref
= IDirectXFile_AddRef(lpDirectXFile
);
96 ok(ref
== 2, "Got refcount %d, expected 1\n", ref
);
97 ref
= IDirectXFile_Release(lpDirectXFile
);
98 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
100 hr
= IDirectXFile_RegisterTemplates(lpDirectXFile
, template, strlen(template));
101 ok(hr
== DXFILE_OK
, "IDirectXFileImpl_RegisterTemplates: %x\n", hr
);
103 dxflm
.lpMemory
= &object
;
104 dxflm
.dSize
= strlen(object
);
105 hr
= IDirectXFile_CreateEnumObject(lpDirectXFile
, &dxflm
, DXFILELOAD_FROMMEMORY
, &lpdxfeo
);
106 ok(hr
== DXFILE_OK
, "IDirectXFile_CreateEnumObject: %x\n", hr
);
107 ref
= getRefcount( (IUnknown
*) lpDirectXFile
);
108 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
109 ref
= getRefcount( (IUnknown
*) lpdxfeo
);
110 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
112 hr
= IDirectXFileEnumObject_GetNextDataObject(lpdxfeo
, &lpdxfd
);
113 ok(hr
== DXFILE_OK
, "IDirectXFileEnumObject_GetNextDataObject: %x\n", hr
);
114 ref
= getRefcount( (IUnknown
*) lpDirectXFile
);
115 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
116 ref
= getRefcount( (IUnknown
*) lpdxfeo
);
117 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
118 /* Enum object gets references to all top level objects */
119 ref
= getRefcount( (IUnknown
*) lpdxfd
);
120 ok(ref
== 2, "Got refcount %d, expected 2\n", ref
);
122 ref
= IDirectXFile_Release(lpDirectXFile
);
123 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
124 /* Nothing changes for all other objects */
125 ref
= getRefcount( (IUnknown
*) lpdxfeo
);
126 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
127 ref
= getRefcount( (IUnknown
*) lpdxfd
);
128 ok(ref
== 2, "Got refcount %d, expected 1\n", ref
);
130 ref
= IDirectXFileEnumObject_Release(lpdxfeo
);
131 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
132 /* Enum object releases references to all top level objects */
133 ref
= getRefcount( (IUnknown
*) lpdxfd
);
134 ok(ref
== 1, "Got refcount %d, expected 1\n", ref
);
136 ref
= IDirectXFileData_Release(lpdxfd
);
137 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
140 static void test_CreateEnumObject(void)
144 LPDIRECTXFILE lpDirectXFile
= NULL
;
145 LPDIRECTXFILEENUMOBJECT lpdxfeo
;
146 LPDIRECTXFILEDATA lpdxfd
;
147 DXFILELOADMEMORY dxflm
;
151 if (!pDirectXFileCreate
)
153 win_skip("DirectXFileCreate is not available\n");
157 hr
= pDirectXFileCreate(&lpDirectXFile
);
158 ok(hr
== DXFILE_OK
, "DirectXFileCreate: %x\n", hr
);
161 skip("Couldn't create DirectXFile interface\n");
165 hr
= IDirectXFile_RegisterTemplates(lpDirectXFile
, template, strlen(template));
166 ok(hr
== DXFILE_OK
, "IDirectXFileImpl_RegisterTemplates: %x\n", hr
);
168 dxflm
.lpMemory
= &object
;
169 dxflm
.dSize
= strlen(object
);
170 /* Check that only lowest 4 bits are relevant in DXFILELOADOPTIONS */
171 hr
= IDirectXFile_CreateEnumObject(lpDirectXFile
, &dxflm
, 0xFFFFFFF0 + DXFILELOAD_FROMMEMORY
, &lpdxfeo
);
172 ok(hr
== DXFILE_OK
, "IDirectXFile_CreateEnumObject: %x\n", hr
);
174 hr
= IDirectXFileEnumObject_GetNextDataObject(lpdxfeo
, &lpdxfd
);
175 ok(hr
== DXFILE_OK
, "IDirectXFileEnumObject_GetNextDataObject: %x\n", hr
);
177 hr
= IDirectXFileData_GetData(lpdxfd
, NULL
, &size
, (void**)&pdata
);
178 ok(hr
== DXFILE_OK
, "IDirectXFileData_GetData: %x\n", hr
);
180 ok(size
== 8, "Retrieved data size is wrong\n");
181 ok((*((WORD
*)pdata
) == 1) && (*((WORD
*)(pdata
+2)) == 2) && (*((DWORD
*)(pdata
+4)) == 3), "Retrieved data is wrong\n");
183 ref
= IDirectXFileEnumObject_Release(lpdxfeo
);
184 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
186 ref
= IDirectXFile_Release(lpDirectXFile
);
187 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
189 ref
= IDirectXFileData_Release(lpdxfd
);
190 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
193 /* Set it to 1 to expand the string when dumping the object. This is useful when there is
194 * only one string in a sub-object (very common). Use with care, this may lead to a crash. */
195 #define EXPAND_STRING 0
197 static void process_data(LPDIRECTXFILEDATA lpDirectXFileData
, int* plevel
)
202 CONST GUID
* clsid_type
= NULL
;
204 char str_clsid_type
[40];
206 LPDIRECTXFILEOBJECT pChildObj
;
212 hr
= IDirectXFileData_GetId(lpDirectXFileData
, &clsid
);
213 ok(hr
== DXFILE_OK
, "IDirectXFileData_GetId: %x\n", hr
);
214 hr
= IDirectXFileData_GetName(lpDirectXFileData
, name
, &len
);
215 ok(hr
== DXFILE_OK
, "IDirectXFileData_GetName: %x\n", hr
);
216 hr
= IDirectXFileData_GetType(lpDirectXFileData
, &clsid_type
);
217 ok(hr
== DXFILE_OK
, "IDirectXFileData_GetType: %x\n", hr
);
218 hr
= IDirectXFileData_GetData(lpDirectXFileData
, NULL
, &size
, (void**)&pData
);
219 ok(hr
== DXFILE_OK
, "IDirectXFileData_GetData: %x\n", hr
);
220 for (i
= 0; i
< *plevel
; i
++)
222 debugstr_guid(str_clsid
, &clsid
);
223 debugstr_guid(str_clsid_type
, clsid_type
);
224 printf("Found object '%s' - %s - %s - %d\n", name
, str_clsid
, str_clsid_type
, size
);
226 if (EXPAND_STRING
&& size
== 4)
228 char * str
= *(char**)pData
;
229 printf("string %s\n", str
);
233 for (k
= 0; k
< size
; k
++)
237 printf("%02x ", pData
[k
]);
242 while (SUCCEEDED(hr
= IDirectXFileData_GetNextObject(lpDirectXFileData
, &pChildObj
)))
244 LPDIRECTXFILEDATA p1
;
245 LPDIRECTXFILEDATAREFERENCE p2
;
246 LPDIRECTXFILEBINARY p3
;
249 hr
= IDirectXFileObject_QueryInterface(pChildObj
, &IID_IDirectXFileData
, (void **) &p1
);
252 for (i
= 0; i
< *plevel
; i
++)
254 printf("Found Data (%d)\n", j
);
255 process_data(p1
, plevel
);
256 IDirectXFileData_Release(p1
);
258 hr
= IDirectXFileObject_QueryInterface(pChildObj
, &IID_IDirectXFileDataReference
, (void **) &p2
);
261 LPDIRECTXFILEDATA pfdo
;
262 for (i
= 0; i
< *plevel
; i
++)
264 printf("Found Data Reference (%d)\n", j
);
266 hr
= IDirectXFileDataReference_GetId(lpDirectXFileData
, &clsid
);
267 ok(hr
== DXFILE_OK
, "IDirectXFileData_GetId: %x\n", hr
);
268 hr
= IDirectXFileDataReference_GetName(lpDirectXFileData
, name
, &len
);
269 ok(hr
== DXFILE_OK
, "IDirectXFileData_GetName: %x\n", hr
);
271 IDirectXFileDataReference_Resolve(p2
, &pfdo
);
272 process_data(pfdo
, plevel
);
273 IDirectXFileData_Release(pfdo
);
274 IDirectXFileDataReference_Release(p2
);
276 hr
= IDirectXFileObject_QueryInterface(pChildObj
, &IID_IDirectXFileBinary
, (void **) &p3
);
279 for (i
= 0; i
< *plevel
; i
++)
281 printf("Found Binary (%d)\n", j
);
282 IDirectXFileBinary_Release(p3
);
286 ok(hr
== DXFILE_OK
|| hr
== DXFILEERR_NOMOREOBJECTS
, "IDirectXFileData_GetNextObject: %x\n", hr
);
289 static void test_dump(void)
293 LPDIRECTXFILE lpDirectXFile
= NULL
;
294 LPDIRECTXFILEENUMOBJECT lpDirectXFileEnumObject
= NULL
;
295 LPDIRECTXFILEDATA lpDirectXFileData
= NULL
;
297 LPVOID pvData
= NULL
;
300 if (!pDirectXFileCreate
)
302 win_skip("DirectXFileCreate is not available\n");
306 /* Dump data only if there is an object and a template */
307 hFile
= CreateFileA("objects.txt", GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
308 if (hFile
== INVALID_HANDLE_VALUE
)
312 hFile
= CreateFileA("templates.txt", GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, NULL
);
313 if (hFile
== INVALID_HANDLE_VALUE
)
316 pvData
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, 10000);
318 if (!ReadFile(hFile
, pvData
, 10000, &cbSize
, NULL
))
320 skip("Template file is too big\n");
324 printf("Load %d bytes\n", cbSize
);
326 hr
= pDirectXFileCreate(&lpDirectXFile
);
327 ok(hr
== DXFILE_OK
, "DirectXFileCreate: %x\n", hr
);
330 skip("Couldn't create DirectXFile interface\n");
334 hr
= IDirectXFile_RegisterTemplates(lpDirectXFile
, pvData
, strlen(pvData
));
335 ok(hr
== DXFILE_OK
, "IDirectXFileImpl_RegisterTemplates: %x\n", hr
);
337 hr
= IDirectXFile_CreateEnumObject(lpDirectXFile
, (LPVOID
)"objects.txt", DXFILELOAD_FROMFILE
, &lpDirectXFileEnumObject
);
338 ok(hr
== DXFILE_OK
, "IDirectXFile_CreateEnumObject: %x\n", hr
);
340 while (SUCCEEDED(hr
= IDirectXFileEnumObject_GetNextDataObject(lpDirectXFileEnumObject
, &lpDirectXFileData
)))
344 process_data(lpDirectXFileData
, &level
);
345 IDirectXFileData_Release(lpDirectXFileData
);
347 ok(hr
== DXFILE_OK
|| hr
== DXFILEERR_NOMOREOBJECTS
, "IDirectXFileEnumObject_GetNextDataObject: %x\n", hr
);
349 ref
= IDirectXFile_Release(lpDirectXFileEnumObject
);
350 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
352 ref
= IDirectXFile_Release(lpDirectXFile
);
353 ok(ref
== 0, "Got refcount %d, expected 0\n", ref
);
358 HeapFree(GetProcessHeap(), 0, pvData
);
363 init_function_pointers();
366 test_CreateEnumObject();
369 FreeLibrary(hd3dxof
);