winecoreaudio: Remove some unused structure fields.
[wine] / dlls / ddrawex / tests / ddrawex.c
1 /*
2  * Unit tests for ddrawex specific things
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
20 #include <assert.h>
21 #include "wine/test.h"
22 #include "windef.h"
23 #include "winbase.h"
24 #include "ddraw.h"
25 #include "ddrawex.h"
26 #include "unknwn.h"
27
28 static IDirectDrawFactory *factory;
29 static HRESULT (WINAPI *pDllGetClassObject)(REFCLSID rclsid, REFIID riid, LPVOID *ppv);
30
31 static IDirectDraw *createDD(void)
32 {
33     HRESULT hr;
34     IDirectDraw *dd;
35
36     hr = IDirectDrawFactory_CreateDirectDraw(factory, NULL, NULL, DDSCL_NORMAL, 0,
37                                              0, &dd);
38     ok(hr == DD_OK, "Failed to create an IDirectDraw interface, hr = 0x%08x\n", hr);
39     return SUCCEEDED(hr) ? dd : NULL;
40 }
41
42 static ULONG get_ref(IUnknown *o)
43 {
44     IUnknown_AddRef(o);
45     return IUnknown_Release(o);
46 }
47
48 static void RefCountTest(void)
49 {
50     IDirectDraw *dd1 = createDD();
51     IDirectDraw2 *dd2;
52     IDirectDraw3 *dd3;
53     IDirectDraw4 *dd4;
54     ULONG ref;
55
56     ref = get_ref((IUnknown *) dd1);
57     ok(ref == 1, "A new ddraw object's refcount is %u, expected 1\n", ref);
58
59     IDirectDraw_AddRef(dd1);
60     ref = get_ref((IUnknown *) dd1);
61     if (ref == 1)
62     {
63         win_skip("Refcounting is broken\n");
64         IDirectDraw_Release(dd1);
65         return;
66     }
67     ok(ref == 2, "After AddRef the refcount is %u, expected 2\n", ref);
68     IDirectDraw_Release(dd1);
69     ref = get_ref((IUnknown *) dd1);
70     ok(ref == 1, "After Release the refcount is %u, expected 1\n", ref);
71
72     IDirectDraw_QueryInterface(dd1, &IID_IDirectDraw2, (void **) &dd2);
73     ref = get_ref((IUnknown *) dd2);
74     ok(ref == 2, "IDirectDraw2 refcount is %u, expected 2\n", ref);
75
76     IDirectDraw_QueryInterface(dd1, &IID_IDirectDraw3, (void **) &dd3);
77     ref = get_ref((IUnknown *) dd3);
78     ok(ref == 3, "IDirectDraw3 refcount is %u, expected 3\n", ref);
79
80     IDirectDraw_QueryInterface(dd1, &IID_IDirectDraw4, (void **) &dd4);
81     ref = get_ref((IUnknown *) dd4);
82     ok(ref == 4, "IDirectDraw4 refcount is %u, expected 4\n", ref);
83
84     IDirectDraw_Release(dd1);
85     IDirectDraw2_Release(dd2);
86     IDirectDraw3_Release(dd3);
87
88     ref = get_ref((IUnknown *) dd4);
89     ok(ref == 1, "IDirectDraw4 refcount is %u, expected 1\n", ref);
90
91     IDirectDraw4_Release(dd4);
92 }
93
94 START_TEST(ddrawex)
95 {
96     IClassFactory *classfactory = NULL;
97     ULONG ref;
98     HRESULT hr;
99     HMODULE hmod = LoadLibrary("ddrawex.dll");
100     if(hmod == NULL) {
101         skip("Failed to load ddrawex.dll\n");
102         return;
103     }
104     pDllGetClassObject = (void*)GetProcAddress(hmod, "DllGetClassObject");
105     if(pDllGetClassObject == NULL) {
106         skip("Failed to get DllGetClassObject\n");
107         return;
108     }
109
110     hr = pDllGetClassObject(&CLSID_DirectDrawFactory, &IID_IClassFactory, (void **) &classfactory);
111     ok(hr == S_OK, "Failed to create a IClassFactory\n");
112     hr = IClassFactory_CreateInstance(classfactory, NULL, &IID_IDirectDrawFactory, (void **) &factory);
113     ok(hr == S_OK, "Failed to create a IDirectDrawFactory\n");
114
115     RefCountTest();
116
117     if(factory) {
118         ref = IDirectDrawFactory_Release(factory);
119         ok(ref == 0, "IDirectDrawFactory not cleanly released\n");
120     }
121     if(classfactory) {
122         ref = IClassFactory_Release(classfactory);
123         todo_wine ok(ref == 1, "IClassFactory refcount wrong, ref = %u\n", ref);
124     }
125 }