push d5e2921572bdd1b7f373ca20793c3334c6a25be1
[wine/hacks.git] / dlls / gdiplus / tests / font.c
blob5f6494bd4edb14ee511030a19bed973223c42135
1 /*
2 * Unit test suite for fonts
4 * Copyright (C) 2007 Google (Evan Stade)
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
21 #include "windows.h"
22 #include "gdiplus.h"
23 #include "wine/test.h"
25 #define expect(expected, got) ok(got == expected, "Expected %.8x, got %.8x\n", expected, got)
27 static const WCHAR arial[] = {'A','r','i','a','l','\0'};
28 static const WCHAR nonexistent[] = {'T','h','i','s','F','o','n','t','s','h','o','u','l','d','N','o','t','E','x','i','s','t','\0'};
29 static const WCHAR MSSansSerif[] = {'M','S',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
30 static const WCHAR MicrosoftSansSerif[] = {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
31 static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
32 static const WCHAR CourierNew[] = {'C','o','u','r','i','e','r',' ','N','e','w','\0'};
34 static const char *debugstr_w(LPCWSTR str)
36 static char buf[1024];
37 WideCharToMultiByte(CP_ACP, 0, str, -1, buf, sizeof(buf), NULL, NULL);
38 return buf;
42 static void test_createfont(void)
44 GpFontFamily* fontfamily = NULL;
45 GpFont* font = NULL;
46 GpStatus stat;
47 Unit unit;
48 UINT i;
49 REAL size;
51 stat = GdipCreateFontFamilyFromName(nonexistent, NULL, &fontfamily);
52 expect (FontFamilyNotFound, stat);
53 stat = GdipDeleteFont(font);
54 expect (InvalidParameter, stat);
55 stat = GdipCreateFontFamilyFromName(arial, NULL, &fontfamily);
56 if(stat == FontFamilyNotFound)
58 skip("Arial not installed\n");
59 return;
61 expect (Ok, stat);
62 stat = GdipCreateFont(fontfamily, 12, FontStyleRegular, UnitPoint, &font);
63 expect (Ok, stat);
64 stat = GdipGetFontUnit (font, &unit);
65 expect (Ok, stat);
66 expect (UnitPoint, unit);
68 /* Test to see if returned size is based on unit (its not) */
69 GdipGetFontSize(font, &size);
70 ok (size == 12, "Expected 12, got %f\n", size);
71 GdipDeleteFont(font);
73 /* Make sure everything is converted correctly for all Units */
74 for (i = UnitWorld; i <=UnitMillimeter; i++)
76 if (i == UnitDisplay) continue; /* Crashes WindowsXP, wtf? */
77 GdipCreateFont(fontfamily, 24, FontStyleRegular, i, &font);
78 GdipGetFontSize (font, &size);
79 ok (size == 24, "Expected 24, got %f (with unit: %d)\n", size, i);
80 GdipGetFontUnit (font, &unit);
81 expect (i, unit);
82 GdipDeleteFont(font);
85 GdipDeleteFontFamily(fontfamily);
88 static void test_logfont(void)
90 LOGFONTW lfw, lfw2;
91 GpFont *font;
92 GpStatus stat;
93 GpGraphics *graphics;
94 HDC hdc = GetDC(0);
96 GdipCreateFromHDC(hdc, &graphics);
97 memset(&lfw, 0, sizeof(LOGFONTW));
98 memset(&lfw2, 0xff, sizeof(LOGFONTW));
99 memcpy(&lfw.lfFaceName, arial, 6 * sizeof(WCHAR));
101 stat = GdipCreateFontFromLogfontW(hdc, &lfw, &font);
102 expect(Ok, stat);
103 stat = GdipGetLogFontW(font, graphics, &lfw2);
104 expect(Ok, stat);
106 ok(lfw2.lfHeight < 0, "Expected negative height\n");
107 expect(0, lfw2.lfWidth);
108 expect(0, lfw2.lfEscapement);
109 expect(0, lfw2.lfOrientation);
110 ok((lfw2.lfWeight >= 100) && (lfw2.lfWeight <= 900), "Expected weight to be set\n");
111 expect(0, lfw2.lfItalic);
112 expect(0, lfw2.lfUnderline);
113 expect(0, lfw2.lfStrikeOut);
114 expect(0, lfw2.lfCharSet);
115 expect(0, lfw2.lfOutPrecision);
116 expect(0, lfw2.lfClipPrecision);
117 expect(0, lfw2.lfQuality);
118 expect(0, lfw2.lfPitchAndFamily);
120 GdipDeleteFont(font);
122 memset(&lfw, 0, sizeof(LOGFONTW));
123 lfw.lfHeight = 25;
124 lfw.lfWidth = 25;
125 lfw.lfEscapement = lfw.lfOrientation = 50;
126 lfw.lfItalic = lfw.lfUnderline = lfw.lfStrikeOut = TRUE;
128 memset(&lfw2, 0xff, sizeof(LOGFONTW));
129 memcpy(&lfw.lfFaceName, arial, 6 * sizeof(WCHAR));
131 stat = GdipCreateFontFromLogfontW(hdc, &lfw, &font);
132 expect(Ok, stat);
133 stat = GdipGetLogFontW(font, graphics, &lfw2);
134 expect(Ok, stat);
136 ok(lfw2.lfHeight < 0, "Expected negative height\n");
137 expect(0, lfw2.lfWidth);
138 expect(0, lfw2.lfEscapement);
139 expect(0, lfw2.lfOrientation);
140 ok((lfw2.lfWeight >= 100) && (lfw2.lfWeight <= 900), "Expected weight to be set\n");
141 expect(TRUE, lfw2.lfItalic);
142 expect(TRUE, lfw2.lfUnderline);
143 expect(TRUE, lfw2.lfStrikeOut);
144 expect(0, lfw2.lfCharSet);
145 expect(0, lfw2.lfOutPrecision);
146 expect(0, lfw2.lfClipPrecision);
147 expect(0, lfw2.lfQuality);
148 expect(0, lfw2.lfPitchAndFamily);
150 GdipDeleteFont(font);
152 GdipDeleteGraphics(graphics);
153 ReleaseDC(0, hdc);
156 static void test_fontfamily (void)
158 GpFontFamily *family, *clonedFontFamily;
159 WCHAR itsName[LF_FACESIZE];
160 GpStatus stat;
162 /* FontFamily cannot be NULL */
163 stat = GdipCreateFontFamilyFromName (arial , NULL, NULL);
164 expect (InvalidParameter, stat);
166 /* FontFamily must be able to actually find the family.
167 * If it can't, any subsequent calls should fail.
169 stat = GdipCreateFontFamilyFromName (nonexistent, NULL, &family);
170 expect (FontFamilyNotFound, stat);
171 ok ((lstrcmpiW(itsName, nonexistent) != 0),
172 "Expected a non-zero value for nonexistent font!\n");
174 /* Bitmap fonts are not found */
175 todo_wine
177 stat = GdipCreateFontFamilyFromName (MSSansSerif, NULL, &family);
178 expect (FontFamilyNotFound, stat);
181 stat = GdipCreateFontFamilyFromName (arial, NULL, &family);
182 if(stat == FontFamilyNotFound)
184 skip("Arial not installed\n");
185 return;
187 expect (Ok, stat);
189 stat = GdipGetFamilyName (family, itsName, LANG_NEUTRAL);
190 expect (Ok, stat);
191 expect (0, lstrcmpiW(itsName, arial));
193 if (0)
195 /* Crashes on Windows XP SP2, Vista, and so Wine as well */
196 stat = GdipGetFamilyName (family, NULL, LANG_NEUTRAL);
197 expect (Ok, stat);
200 /* Make sure we don't read old data */
201 ZeroMemory (itsName, sizeof(itsName));
202 stat = GdipCloneFontFamily(family, &clonedFontFamily);
203 expect (Ok, stat);
204 GdipDeleteFontFamily(family);
205 stat = GdipGetFamilyName(clonedFontFamily, itsName, LANG_NEUTRAL);
206 expect(Ok, stat);
207 expect(0, lstrcmpiW(itsName, arial));
209 GdipDeleteFontFamily(clonedFontFamily);
212 static void test_fontfamily_properties (void)
214 GpFontFamily* FontFamily = NULL;
215 GpStatus stat;
216 UINT16 result = 0;
218 stat = GdipCreateFontFamilyFromName(arial, NULL, &FontFamily);
219 if(stat == FontFamilyNotFound)
220 skip("Arial not installed\n");
221 else
223 todo_wine
225 stat = GdipGetLineSpacing(FontFamily, FontStyleRegular, &result);
226 expect(Ok, stat);
227 ok (result == 2355, "Expected 2355, got %d\n", result);
229 result = 0;
230 stat = GdipGetEmHeight(FontFamily, FontStyleRegular, &result);
231 expect(Ok, stat);
232 ok(result == 2048, "Expected 2048, got %d\n", result);
233 result = 0;
234 stat = GdipGetCellAscent(FontFamily, FontStyleRegular, &result);
235 expect(Ok, stat);
236 ok(result == 1854, "Expected 1854, got %d\n", result);
237 result = 0;
238 stat = GdipGetCellDescent(FontFamily, FontStyleRegular, &result);
239 ok(result == 434, "Expected 434, got %d\n", result);
240 GdipDeleteFontFamily(FontFamily);
243 stat = GdipCreateFontFamilyFromName(TimesNewRoman, NULL, &FontFamily);
244 if(stat == FontFamilyNotFound)
245 skip("Times New Roman not installed\n");
246 else
248 result = 0;
249 todo_wine
251 stat = GdipGetLineSpacing(FontFamily, FontStyleRegular, &result);
252 expect(Ok, stat);
253 ok(result == 2355, "Expected 2355, got %d\n", result);
255 result = 0;
256 stat = GdipGetEmHeight(FontFamily, FontStyleRegular, &result);
257 expect(Ok, stat);
258 ok(result == 2048, "Expected 2048, got %d\n", result);
259 result = 0;
260 stat = GdipGetCellAscent(FontFamily, FontStyleRegular, &result);
261 expect(Ok, stat);
262 ok(result == 1825, "Expected 1825, got %d\n", result);
263 result = 0;
264 stat = GdipGetCellDescent(FontFamily, FontStyleRegular, &result);
265 ok(result == 443, "Expected 443 got %d\n", result);
266 GdipDeleteFontFamily(FontFamily);
270 static void test_getgenerics (void)
272 GpStatus stat;
273 GpFontFamily* family;
274 WCHAR familyName[LF_FACESIZE];
275 ZeroMemory(familyName, sizeof(familyName)/sizeof(WCHAR));
277 stat = GdipGetGenericFontFamilySansSerif (&family);
278 expect (Ok, stat);
279 stat = GdipGetFamilyName (family, familyName, LANG_NEUTRAL);
280 expect (Ok, stat);
281 ok ((lstrcmpiW(familyName, MicrosoftSansSerif) == 0) ||
282 (lstrcmpiW(familyName,MSSansSerif) == 0),
283 "Expected Microsoft Sans Serif or MS Sans Serif, got %s\n",
284 debugstr_w(familyName));
285 stat = GdipDeleteFontFamily (family);
286 expect (Ok, stat);
288 stat = GdipGetGenericFontFamilySerif (&family);
289 expect (Ok, stat);
290 stat = GdipGetFamilyName (family, familyName, LANG_NEUTRAL);
291 expect (Ok, stat);
292 ok (lstrcmpiW(familyName, TimesNewRoman) == 0,
293 "Expected Times New Roman, got %s\n", debugstr_w(familyName));
294 stat = GdipDeleteFontFamily (family);
295 expect (Ok, stat);
297 stat = GdipGetGenericFontFamilyMonospace (&family);
298 expect (Ok, stat);
299 stat = GdipGetFamilyName (family, familyName, LANG_NEUTRAL);
300 expect (Ok, stat);
301 ok (lstrcmpiW(familyName, CourierNew) == 0,
302 "Expected Courier New, got %s\n", debugstr_w(familyName));
303 stat = GdipDeleteFontFamily (family);
304 expect (Ok, stat);
307 START_TEST(font)
309 struct GdiplusStartupInput gdiplusStartupInput;
310 ULONG_PTR gdiplusToken;
312 gdiplusStartupInput.GdiplusVersion = 1;
313 gdiplusStartupInput.DebugEventCallback = NULL;
314 gdiplusStartupInput.SuppressBackgroundThread = 0;
315 gdiplusStartupInput.SuppressExternalCodecs = 0;
317 GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
319 test_createfont();
320 test_logfont();
321 test_fontfamily();
322 test_fontfamily_properties();
323 test_getgenerics();
325 GdiplusShutdown(gdiplusToken);