gdi32/tests: Add horizontal and vertical solid line tests.
[wine] / dlls / gdi32 / tests / dib.c
1 /*
2  * DIB driver tests.
3  *
4  * Copyright 2011 Huw Davies
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
21 #include <stdarg.h>
22 #include <stdio.h>
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "wingdi.h"
27 #include "winuser.h"
28 #include "wincrypt.h"
29
30 #include "wine/test.h"
31
32 static HCRYPTPROV crypt_prov;
33
34 static const char *sha1_graphics_a8r8g8b8[] =
35 {
36     "a3cadd34d95d3d5cc23344f69aab1c2e55935fcf",
37     "2426172d9e8fec27d9228088f382ef3c93717da9",
38     NULL
39 };
40
41 static inline DWORD get_stride(BITMAPINFO *bmi)
42 {
43     return ((bmi->bmiHeader.biBitCount * bmi->bmiHeader.biWidth + 31) >> 3) & ~3;
44 }
45
46 static inline DWORD get_dib_size(BITMAPINFO *bmi)
47 {
48     return get_stride(bmi) * abs(bmi->bmiHeader.biHeight);
49 }
50
51 static char *hash_dib(BITMAPINFO *bmi, void *bits)
52 {
53     DWORD dib_size = get_dib_size(bmi);
54     HCRYPTHASH hash;
55     char *buf;
56     BYTE hash_buf[20];
57     DWORD hash_size = sizeof(hash_buf);
58     int i;
59     static const char *hex = "0123456789abcdef";
60
61     if(!crypt_prov) return NULL;
62
63     if(!CryptCreateHash(crypt_prov, CALG_SHA1, 0, 0, &hash)) return NULL;
64
65     CryptHashData(hash, bits, dib_size, 0);
66
67     CryptGetHashParam(hash, HP_HASHVAL, NULL, &hash_size, 0);
68     if(hash_size != sizeof(hash_buf)) return NULL;
69
70     CryptGetHashParam(hash, HP_HASHVAL, hash_buf, &hash_size, 0);
71     CryptDestroyHash(hash);
72
73     buf = HeapAlloc(GetProcessHeap(), 0, hash_size * 2 + 1);
74
75     for(i = 0; i < hash_size; i++)
76     {
77         buf[i * 2] = hex[hash_buf[i] >> 4];
78         buf[i * 2 + 1] = hex[hash_buf[i] & 0xf];
79     }
80     buf[i * 2] = '\0';
81
82     return buf;
83 }
84
85 static void compare_hash(BITMAPINFO *bmi, BYTE *bits, const char ***sha1, const char *info)
86 {
87     char *hash = hash_dib(bmi, bits);
88
89     if(!hash)
90     {
91         skip("SHA1 hashing unavailable on this platform\n");
92         return;
93     }
94
95     if(**sha1)
96     {
97         ok(!strcmp(hash, **sha1), "%d: %s: expected hash %s got %s\n",
98            bmi->bmiHeader.biBitCount, info, **sha1, hash);
99         (*sha1)++;
100     }
101     else trace("\"%s\",\n", hash);
102
103     HeapFree(GetProcessHeap(), 0, hash);
104 }
105
106 static void draw_graphics(HDC hdc, BITMAPINFO *bmi, BYTE *bits, const char ***sha1)
107 {
108     DWORD dib_size = get_dib_size(bmi);
109     HPEN solid_pen, orig_pen;
110     INT i;
111
112     memset(bits, 0xcc, dib_size);
113     compare_hash(bmi, bits, sha1, "empty");
114
115     solid_pen = CreatePen(PS_SOLID, 1, RGB(0, 0, 0xff));
116     orig_pen = SelectObject(hdc, solid_pen);
117
118     /* horizontal and vertical lines */
119     for(i = 1; i <= 16; i++)
120     {
121         SetROP2(hdc, i);
122         MoveToEx(hdc, 10, i * 3, NULL);
123         LineTo(hdc, 100, i * 3); /* l -> r */
124         MoveToEx(hdc, 100, 50 + i * 3, NULL);
125         LineTo(hdc, 10, 50 + i * 3); /* r -> l */
126         MoveToEx(hdc, 120 + i * 3, 10, NULL);
127         LineTo(hdc, 120 + i * 3, 100); /* t -> b */
128         MoveToEx(hdc, 170 + i * 3, 100, NULL);
129         LineTo(hdc, 170 + i * 3, 10); /* b -> t */
130     }
131     compare_hash(bmi, bits, sha1, "h and v solid lines");
132
133     SelectObject(hdc, orig_pen);
134     DeleteObject(solid_pen);
135 }
136
137 static void test_simple_graphics(void)
138 {
139     char bmibuf[sizeof(BITMAPINFO) + 256 * sizeof(RGBQUAD)];
140     BITMAPINFO *bmi = (BITMAPINFO *)bmibuf;
141     HDC mem_dc;
142     BYTE *bits;
143     HBITMAP dib, orig_bm;
144     const char **sha1;
145
146     /* a8r8g8b8 */
147     trace("8888\n");
148     memset(bmi, 0, sizeof(bmibuf));
149     bmi->bmiHeader.biSize = sizeof(bmi->bmiHeader);
150     bmi->bmiHeader.biHeight = 512;
151     bmi->bmiHeader.biWidth = 512;
152     bmi->bmiHeader.biBitCount = 32;
153     bmi->bmiHeader.biPlanes = 1;
154     bmi->bmiHeader.biCompression = BI_RGB;
155
156     dib = CreateDIBSection(0, bmi, DIB_RGB_COLORS, (void**)&bits, NULL, 0);
157     ok(dib != NULL, "ret NULL\n");
158     mem_dc = CreateCompatibleDC(NULL);
159     orig_bm = SelectObject(mem_dc, dib);
160
161     sha1 = sha1_graphics_a8r8g8b8;
162     draw_graphics(mem_dc, bmi, bits, &sha1);
163
164     SelectObject(mem_dc, orig_bm);
165     DeleteObject(dib);
166     DeleteDC(mem_dc);
167 }
168
169 START_TEST(dib)
170 {
171     CryptAcquireContextW(&crypt_prov, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
172
173     test_simple_graphics();
174
175     CryptReleaseContext(crypt_prov, 0);
176 }