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
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
);
42 static void test_createfont(void)
44 GpFontFamily
* fontfamily
= NULL
, *fontfamily2
;
50 WCHAR familyname
[LF_FACESIZE
];
52 stat
= GdipCreateFontFamilyFromName(nonexistent
, NULL
, &fontfamily
);
53 expect (FontFamilyNotFound
, stat
);
54 stat
= GdipDeleteFont(font
);
55 expect (InvalidParameter
, stat
);
56 stat
= GdipCreateFontFamilyFromName(arial
, NULL
, &fontfamily
);
57 if(stat
== FontFamilyNotFound
)
59 skip("Arial not installed\n");
63 stat
= GdipCreateFont(fontfamily
, 12, FontStyleRegular
, UnitPoint
, &font
);
65 stat
= GdipGetFontUnit (font
, &unit
);
67 expect (UnitPoint
, unit
);
69 stat
= GdipGetFamily(font
, &fontfamily2
);
71 stat
= GdipGetFamilyName(fontfamily2
, familyname
, 0);
73 ok (lstrcmpiW(arial
, familyname
) == 0, "Expected arial, got %s\n",
74 debugstr_w(familyname
));
75 stat
= GdipDeleteFontFamily(fontfamily2
);
78 /* Test to see if returned size is based on unit (its not) */
79 GdipGetFontSize(font
, &size
);
80 ok (size
== 12, "Expected 12, got %f\n", size
);
83 /* Make sure everything is converted correctly for all Units */
84 for (i
= UnitWorld
; i
<=UnitMillimeter
; i
++)
86 if (i
== UnitDisplay
) continue; /* Crashes WindowsXP, wtf? */
87 GdipCreateFont(fontfamily
, 24, FontStyleRegular
, i
, &font
);
88 GdipGetFontSize (font
, &size
);
89 ok (size
== 24, "Expected 24, got %f (with unit: %d)\n", size
, i
);
90 GdipGetFontUnit (font
, &unit
);
95 GdipDeleteFontFamily(fontfamily
);
98 static void test_logfont(void)
103 GpGraphics
*graphics
;
107 GdipCreateFromHDC(hdc
, &graphics
);
108 memset(&lfw
, 0, sizeof(LOGFONTW
));
109 memset(&lfw2
, 0xff, sizeof(LOGFONTW
));
112 lfw
.lfFaceName
[0] = 0;
113 stat
= GdipCreateFontFromLogfontW(hdc
, &lfw
, &font
);
115 expect(NotTrueTypeFont
, stat
);
117 memcpy(&lfw
.lfFaceName
, arial
, 6 * sizeof(WCHAR
));
119 stat
= GdipCreateFontFromLogfontW(hdc
, &lfw
, &font
);
120 if (stat
== FileNotFound
)
122 skip("Arial not installed.\n");
126 stat
= GdipGetLogFontW(font
, graphics
, &lfw2
);
129 ok(lfw2
.lfHeight
< 0, "Expected negative height\n");
130 expect(0, lfw2
.lfWidth
);
131 expect(0, lfw2
.lfEscapement
);
132 expect(0, lfw2
.lfOrientation
);
133 ok((lfw2
.lfWeight
>= 100) && (lfw2
.lfWeight
<= 900), "Expected weight to be set\n");
134 expect(0, lfw2
.lfItalic
);
135 expect(0, lfw2
.lfUnderline
);
136 expect(0, lfw2
.lfStrikeOut
);
137 expect(GetTextCharset(hdc
), lfw2
.lfCharSet
);
138 expect(0, lfw2
.lfOutPrecision
);
139 expect(0, lfw2
.lfClipPrecision
);
140 expect(0, lfw2
.lfQuality
);
141 expect(0, lfw2
.lfPitchAndFamily
);
143 GdipDeleteFont(font
);
145 memset(&lfw
, 0, sizeof(LOGFONTW
));
148 lfw
.lfEscapement
= lfw
.lfOrientation
= 50;
149 lfw
.lfItalic
= lfw
.lfUnderline
= lfw
.lfStrikeOut
= TRUE
;
151 memset(&lfw2
, 0xff, sizeof(LOGFONTW
));
152 memcpy(&lfw
.lfFaceName
, arial
, 6 * sizeof(WCHAR
));
154 stat
= GdipCreateFontFromLogfontW(hdc
, &lfw
, &font
);
156 stat
= GdipGetLogFontW(font
, graphics
, &lfw2
);
159 ok(lfw2
.lfHeight
< 0, "Expected negative height\n");
160 expect(0, lfw2
.lfWidth
);
161 expect(0, lfw2
.lfEscapement
);
162 expect(0, lfw2
.lfOrientation
);
163 ok((lfw2
.lfWeight
>= 100) && (lfw2
.lfWeight
<= 900), "Expected weight to be set\n");
164 expect(TRUE
, lfw2
.lfItalic
);
165 expect(TRUE
, lfw2
.lfUnderline
);
166 expect(TRUE
, lfw2
.lfStrikeOut
);
167 expect(GetTextCharset(hdc
), lfw2
.lfCharSet
);
168 expect(0, lfw2
.lfOutPrecision
);
169 expect(0, lfw2
.lfClipPrecision
);
170 expect(0, lfw2
.lfQuality
);
171 expect(0, lfw2
.lfPitchAndFamily
);
173 stat
= GdipGetFontStyle(font
, &style
);
175 ok (style
== (FontStyleItalic
| FontStyleUnderline
| FontStyleStrikeout
),
176 "Expected , got %d\n", style
);
178 GdipDeleteFont(font
);
180 GdipDeleteGraphics(graphics
);
184 static void test_fontfamily (void)
186 GpFontFamily
*family
, *clonedFontFamily
;
187 WCHAR itsName
[LF_FACESIZE
];
190 /* FontFamily cannot be NULL */
191 stat
= GdipCreateFontFamilyFromName (arial
, NULL
, NULL
);
192 expect (InvalidParameter
, stat
);
194 /* FontFamily must be able to actually find the family.
195 * If it can't, any subsequent calls should fail.
197 stat
= GdipCreateFontFamilyFromName (nonexistent
, NULL
, &family
);
198 expect (FontFamilyNotFound
, stat
);
200 /* Bitmap fonts are not found */
203 stat
= GdipCreateFontFamilyFromName (MSSansSerif
, NULL
, &family
);
204 expect (FontFamilyNotFound
, stat
);
207 stat
= GdipCreateFontFamilyFromName (arial
, NULL
, &family
);
208 if(stat
== FontFamilyNotFound
)
210 skip("Arial not installed\n");
215 stat
= GdipGetFamilyName (family
, itsName
, LANG_NEUTRAL
);
217 expect (0, lstrcmpiW(itsName
, arial
));
221 /* Crashes on Windows XP SP2, Vista, and so Wine as well */
222 stat
= GdipGetFamilyName (family
, NULL
, LANG_NEUTRAL
);
226 /* Make sure we don't read old data */
227 ZeroMemory (itsName
, sizeof(itsName
));
228 stat
= GdipCloneFontFamily(family
, &clonedFontFamily
);
230 GdipDeleteFontFamily(family
);
231 stat
= GdipGetFamilyName(clonedFontFamily
, itsName
, LANG_NEUTRAL
);
233 expect(0, lstrcmpiW(itsName
, arial
));
235 GdipDeleteFontFamily(clonedFontFamily
);
238 static void test_fontfamily_properties (void)
240 GpFontFamily
* FontFamily
= NULL
;
244 stat
= GdipCreateFontFamilyFromName(arial
, NULL
, &FontFamily
);
245 if(stat
== FontFamilyNotFound
)
246 skip("Arial not installed\n");
249 stat
= GdipGetLineSpacing(FontFamily
, FontStyleRegular
, &result
);
251 ok (result
== 2355, "Expected 2355, got %d\n", result
);
253 stat
= GdipGetEmHeight(FontFamily
, FontStyleRegular
, &result
);
255 ok(result
== 2048, "Expected 2048, got %d\n", result
);
257 stat
= GdipGetCellAscent(FontFamily
, FontStyleRegular
, &result
);
259 ok(result
== 1854, "Expected 1854, got %d\n", result
);
261 stat
= GdipGetCellDescent(FontFamily
, FontStyleRegular
, &result
);
262 ok(result
== 434, "Expected 434, got %d\n", result
);
263 GdipDeleteFontFamily(FontFamily
);
266 stat
= GdipCreateFontFamilyFromName(TimesNewRoman
, NULL
, &FontFamily
);
267 if(stat
== FontFamilyNotFound
)
268 skip("Times New Roman not installed\n");
272 stat
= GdipGetLineSpacing(FontFamily
, FontStyleRegular
, &result
);
274 ok(result
== 2355, "Expected 2355, got %d\n", result
);
276 stat
= GdipGetEmHeight(FontFamily
, FontStyleRegular
, &result
);
278 ok(result
== 2048, "Expected 2048, got %d\n", result
);
280 stat
= GdipGetCellAscent(FontFamily
, FontStyleRegular
, &result
);
282 ok(result
== 1825, "Expected 1825, got %d\n", result
);
284 stat
= GdipGetCellDescent(FontFamily
, FontStyleRegular
, &result
);
285 ok(result
== 443, "Expected 443 got %d\n", result
);
286 GdipDeleteFontFamily(FontFamily
);
290 static void test_getgenerics (void)
293 GpFontFamily
* family
;
294 WCHAR familyName
[LF_FACESIZE
];
295 ZeroMemory(familyName
, sizeof(familyName
)/sizeof(WCHAR
));
297 stat
= GdipGetGenericFontFamilySansSerif (&family
);
298 if (stat
== FontFamilyNotFound
)
300 skip("Microsoft Sans Serif not installed\n");
304 stat
= GdipGetFamilyName (family
, familyName
, LANG_NEUTRAL
);
306 ok ((lstrcmpiW(familyName
, MicrosoftSansSerif
) == 0) ||
307 (lstrcmpiW(familyName
,MSSansSerif
) == 0),
308 "Expected Microsoft Sans Serif or MS Sans Serif, got %s\n",
309 debugstr_w(familyName
));
310 stat
= GdipDeleteFontFamily (family
);
314 stat
= GdipGetGenericFontFamilySerif (&family
);
315 if (stat
== FontFamilyNotFound
)
317 skip("Times New Roman not installed\n");
321 stat
= GdipGetFamilyName (family
, familyName
, LANG_NEUTRAL
);
323 ok (lstrcmpiW(familyName
, TimesNewRoman
) == 0,
324 "Expected Times New Roman, got %s\n", debugstr_w(familyName
));
325 stat
= GdipDeleteFontFamily (family
);
329 stat
= GdipGetGenericFontFamilyMonospace (&family
);
330 if (stat
== FontFamilyNotFound
)
332 skip("Courier New not installed\n");
336 stat
= GdipGetFamilyName (family
, familyName
, LANG_NEUTRAL
);
338 ok (lstrcmpiW(familyName
, CourierNew
) == 0,
339 "Expected Courier New, got %s\n", debugstr_w(familyName
));
340 stat
= GdipDeleteFontFamily (family
);
346 struct GdiplusStartupInput gdiplusStartupInput
;
347 ULONG_PTR gdiplusToken
;
349 gdiplusStartupInput
.GdiplusVersion
= 1;
350 gdiplusStartupInput
.DebugEventCallback
= NULL
;
351 gdiplusStartupInput
.SuppressBackgroundThread
= 0;
352 gdiplusStartupInput
.SuppressExternalCodecs
= 0;
354 GdiplusStartup(&gdiplusToken
, &gdiplusStartupInput
, NULL
);
359 test_fontfamily_properties();
362 GdiplusShutdown(gdiplusToken
);