comctl32/tests: Fix some test failures.
[wine] / dlls / comctl32 / tests / v6util.h
1 /*
2  * Utility routines for comctl32 v6 tests
3  *
4  * Copyright 2006 Mike McCormack for CodeWeavers
5  * Copyright 2007 George Gov
6  * Copyright 2009 Owen Rudge for CodeWeavers
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21  */
22
23 #define expect(expected, got) ok(got == expected, "Expected %d, got %d\n", expected, got)
24
25 #ifdef __i386__
26 #define ARCH "x86"
27 #elif defined __x86_64__
28 #define ARCH "amd64"
29 #else
30 #define ARCH "none"
31 #endif
32
33 static const CHAR manifest_name[] = "cc6.manifest";
34
35 static const CHAR manifest[] =
36     "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n"
37     "<assembly xmlns=\"urn:schemas-microsoft-com:asm.v1\" manifestVersion=\"1.0\">\n"
38     "  <assemblyIdentity\n"
39     "      type=\"win32\"\n"
40     "      name=\"Wine.ComCtl32.Tests\"\n"
41     "      version=\"1.0.0.0\"\n"
42     "      processorArchitecture=\"" ARCH "\"\n"
43     "  />\n"
44     "<description>Wine comctl32 test suite</description>\n"
45     "<dependency>\n"
46     "  <dependentAssembly>\n"
47     "    <assemblyIdentity\n"
48     "        type=\"win32\"\n"
49     "        name=\"microsoft.windows.common-controls\"\n"
50     "        version=\"6.0.0.0\"\n"
51     "        processorArchitecture=\"" ARCH "\"\n"
52     "        publicKeyToken=\"6595b64144ccf1df\"\n"
53     "        language=\"*\"\n"
54     "    />\n"
55     "</dependentAssembly>\n"
56     "</dependency>\n"
57     "</assembly>\n";
58
59 static void unload_v6_module(ULONG_PTR cookie)
60 {
61     HANDLE hKernel32;
62     BOOL (WINAPI *pDeactivateActCtx)(DWORD, ULONG_PTR);
63
64     hKernel32 = GetModuleHandleA("kernel32.dll");
65     pDeactivateActCtx = (void*)GetProcAddress(hKernel32, "DeactivateActCtx");
66     if (!pDeactivateActCtx)
67     {
68         win_skip("Activation contexts unsupported\n");
69         return;
70     }
71
72     pDeactivateActCtx(0, cookie);
73
74     DeleteFileA(manifest_name);
75 }
76
77 static BOOL load_v6_module(ULONG_PTR *pcookie)
78 {
79     HANDLE hKernel32;
80     HANDLE (WINAPI *pCreateActCtxA)(ACTCTXA*);
81     BOOL (WINAPI *pActivateActCtx)(HANDLE, ULONG_PTR*);
82
83     ACTCTXA ctx;
84     HANDLE hCtx;
85     BOOL ret;
86     HANDLE file;
87     DWORD written;
88
89     hKernel32 = GetModuleHandleA("kernel32.dll");
90     pCreateActCtxA = (void*)GetProcAddress(hKernel32, "CreateActCtxA");
91     pActivateActCtx = (void*)GetProcAddress(hKernel32, "ActivateActCtx");
92     if (!(pCreateActCtxA && pActivateActCtx))
93     {
94         win_skip("Activation contexts unsupported. No version 6 tests possible.\n");
95         return FALSE;
96     }
97
98     /* create manifest */
99     file = CreateFileA( manifest_name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL );
100     if (file != INVALID_HANDLE_VALUE)
101     {
102         ret = (WriteFile( file, manifest, sizeof(manifest)-1, &written, NULL ) &&
103                written == sizeof(manifest)-1);
104         CloseHandle( file );
105         if (!ret)
106         {
107             DeleteFileA( manifest_name );
108             skip("Failed to fill manifest file. Skipping comctl32 V6 tests.\n");
109             return FALSE;
110         }
111         else
112             trace("created %s\n", manifest_name);
113     }
114     else
115     {
116         skip("Failed to create manifest file. Skipping comctl32 V6 tests.\n");
117         return FALSE;
118     }
119
120     memset(&ctx, 0, sizeof(ctx));
121     ctx.cbSize = sizeof(ctx);
122     ctx.lpSource = manifest_name;
123
124     hCtx = pCreateActCtxA(&ctx);
125     ok(hCtx != 0, "Expected context handle\n");
126
127     ret = pActivateActCtx(hCtx, pcookie);
128     expect(TRUE, ret);
129
130     if (!ret)
131     {
132         win_skip("A problem during context activation occurred.\n");
133         DeleteFileA(manifest_name);
134     }
135
136     return ret;
137 }
138
139 #undef expect
140 #undef ARCH