370 lines
12 KiB
C
370 lines
12 KiB
C
/*
|
|
* Unit test suite for fonts
|
|
*
|
|
* Copyright (C) 2007 Google (Evan Stade)
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include "windows.h"
|
|
#include "gdiplus.h"
|
|
#include "wine/test.h"
|
|
|
|
#define expect(expected, got) ok(got == expected, "Expected %.8x, got %.8x\n", expected, got)
|
|
|
|
static const WCHAR arial[] = {'A','r','i','a','l','\0'};
|
|
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'};
|
|
static const WCHAR MSSansSerif[] = {'M','S',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
|
|
static const WCHAR MicrosoftSansSerif[] = {'M','i','c','r','o','s','o','f','t',' ','S','a','n','s',' ','S','e','r','i','f','\0'};
|
|
static const WCHAR TimesNewRoman[] = {'T','i','m','e','s',' ','N','e','w',' ','R','o','m','a','n','\0'};
|
|
static const WCHAR CourierNew[] = {'C','o','u','r','i','e','r',' ','N','e','w','\0'};
|
|
|
|
static const char *debugstr_w(LPCWSTR str)
|
|
{
|
|
static char buf[1024];
|
|
WideCharToMultiByte(CP_ACP, 0, str, -1, buf, sizeof(buf), NULL, NULL);
|
|
return buf;
|
|
}
|
|
|
|
|
|
static void test_createfont(void)
|
|
{
|
|
GpFontFamily* fontfamily = NULL, *fontfamily2;
|
|
GpFont* font = NULL;
|
|
GpStatus stat;
|
|
Unit unit;
|
|
UINT i;
|
|
REAL size;
|
|
WCHAR familyname[LF_FACESIZE];
|
|
|
|
stat = GdipCreateFontFamilyFromName(nonexistent, NULL, &fontfamily);
|
|
expect (FontFamilyNotFound, stat);
|
|
stat = GdipDeleteFont(font);
|
|
expect (InvalidParameter, stat);
|
|
stat = GdipCreateFontFamilyFromName(arial, NULL, &fontfamily);
|
|
if(stat == FontFamilyNotFound)
|
|
{
|
|
skip("Arial not installed\n");
|
|
return;
|
|
}
|
|
expect (Ok, stat);
|
|
stat = GdipCreateFont(fontfamily, 12, FontStyleRegular, UnitPoint, &font);
|
|
expect (Ok, stat);
|
|
stat = GdipGetFontUnit (font, &unit);
|
|
expect (Ok, stat);
|
|
expect (UnitPoint, unit);
|
|
|
|
stat = GdipGetFamily(font, &fontfamily2);
|
|
expect(Ok, stat);
|
|
stat = GdipGetFamilyName(fontfamily2, familyname, 0);
|
|
expect(Ok, stat);
|
|
ok (lstrcmpiW(arial, familyname) == 0, "Expected arial, got %s\n",
|
|
debugstr_w(familyname));
|
|
stat = GdipDeleteFontFamily(fontfamily2);
|
|
expect(Ok, stat);
|
|
|
|
/* Test to see if returned size is based on unit (its not) */
|
|
GdipGetFontSize(font, &size);
|
|
ok (size == 12, "Expected 12, got %f\n", size);
|
|
GdipDeleteFont(font);
|
|
|
|
/* Make sure everything is converted correctly for all Units */
|
|
for (i = UnitWorld; i <=UnitMillimeter; i++)
|
|
{
|
|
if (i == UnitDisplay) continue; /* Crashes WindowsXP, wtf? */
|
|
GdipCreateFont(fontfamily, 24, FontStyleRegular, i, &font);
|
|
GdipGetFontSize (font, &size);
|
|
ok (size == 24, "Expected 24, got %f (with unit: %d)\n", size, i);
|
|
GdipGetFontUnit (font, &unit);
|
|
expect (i, unit);
|
|
GdipDeleteFont(font);
|
|
}
|
|
|
|
GdipDeleteFontFamily(fontfamily);
|
|
}
|
|
|
|
static void test_logfont(void)
|
|
{
|
|
LOGFONTW lfw, lfw2;
|
|
GpFont *font;
|
|
GpStatus stat;
|
|
GpGraphics *graphics;
|
|
HDC hdc = GetDC(0);
|
|
INT style;
|
|
|
|
GdipCreateFromHDC(hdc, &graphics);
|
|
memset(&lfw, 0, sizeof(LOGFONTW));
|
|
memset(&lfw2, 0xff, sizeof(LOGFONTW));
|
|
|
|
/* empty FaceName */
|
|
lfw.lfFaceName[0] = 0;
|
|
stat = GdipCreateFontFromLogfontW(hdc, &lfw, &font);
|
|
|
|
expect(NotTrueTypeFont, stat);
|
|
|
|
memcpy(&lfw.lfFaceName, arial, 6 * sizeof(WCHAR));
|
|
|
|
stat = GdipCreateFontFromLogfontW(hdc, &lfw, &font);
|
|
if (stat == FileNotFound)
|
|
{
|
|
skip("Arial not installed.\n");
|
|
return;
|
|
}
|
|
expect(Ok, stat);
|
|
stat = GdipGetLogFontW(font, graphics, &lfw2);
|
|
expect(Ok, stat);
|
|
|
|
ok(lfw2.lfHeight < 0, "Expected negative height\n");
|
|
expect(0, lfw2.lfWidth);
|
|
expect(0, lfw2.lfEscapement);
|
|
expect(0, lfw2.lfOrientation);
|
|
ok((lfw2.lfWeight >= 100) && (lfw2.lfWeight <= 900), "Expected weight to be set\n");
|
|
expect(0, lfw2.lfItalic);
|
|
expect(0, lfw2.lfUnderline);
|
|
expect(0, lfw2.lfStrikeOut);
|
|
expect(0, lfw2.lfCharSet);
|
|
expect(0, lfw2.lfOutPrecision);
|
|
expect(0, lfw2.lfClipPrecision);
|
|
expect(0, lfw2.lfQuality);
|
|
expect(0, lfw2.lfPitchAndFamily);
|
|
|
|
GdipDeleteFont(font);
|
|
|
|
memset(&lfw, 0, sizeof(LOGFONTW));
|
|
lfw.lfHeight = 25;
|
|
lfw.lfWidth = 25;
|
|
lfw.lfEscapement = lfw.lfOrientation = 50;
|
|
lfw.lfItalic = lfw.lfUnderline = lfw.lfStrikeOut = TRUE;
|
|
|
|
memset(&lfw2, 0xff, sizeof(LOGFONTW));
|
|
memcpy(&lfw.lfFaceName, arial, 6 * sizeof(WCHAR));
|
|
|
|
stat = GdipCreateFontFromLogfontW(hdc, &lfw, &font);
|
|
expect(Ok, stat);
|
|
stat = GdipGetLogFontW(font, graphics, &lfw2);
|
|
expect(Ok, stat);
|
|
|
|
ok(lfw2.lfHeight < 0, "Expected negative height\n");
|
|
expect(0, lfw2.lfWidth);
|
|
expect(0, lfw2.lfEscapement);
|
|
expect(0, lfw2.lfOrientation);
|
|
ok((lfw2.lfWeight >= 100) && (lfw2.lfWeight <= 900), "Expected weight to be set\n");
|
|
expect(TRUE, lfw2.lfItalic);
|
|
expect(TRUE, lfw2.lfUnderline);
|
|
expect(TRUE, lfw2.lfStrikeOut);
|
|
expect(0, lfw2.lfCharSet);
|
|
expect(0, lfw2.lfOutPrecision);
|
|
expect(0, lfw2.lfClipPrecision);
|
|
expect(0, lfw2.lfQuality);
|
|
expect(0, lfw2.lfPitchAndFamily);
|
|
|
|
stat = GdipGetFontStyle(font, &style);
|
|
expect(Ok, stat);
|
|
ok (style == (FontStyleItalic | FontStyleUnderline | FontStyleStrikeout),
|
|
"Expected , got %d\n", style);
|
|
|
|
GdipDeleteFont(font);
|
|
|
|
GdipDeleteGraphics(graphics);
|
|
ReleaseDC(0, hdc);
|
|
}
|
|
|
|
static void test_fontfamily (void)
|
|
{
|
|
GpFontFamily *family, *clonedFontFamily;
|
|
WCHAR itsName[LF_FACESIZE];
|
|
GpStatus stat;
|
|
|
|
/* FontFamily cannot be NULL */
|
|
stat = GdipCreateFontFamilyFromName (arial , NULL, NULL);
|
|
expect (InvalidParameter, stat);
|
|
|
|
/* FontFamily must be able to actually find the family.
|
|
* If it can't, any subsequent calls should fail.
|
|
*/
|
|
stat = GdipCreateFontFamilyFromName (nonexistent, NULL, &family);
|
|
expect (FontFamilyNotFound, stat);
|
|
|
|
/* Bitmap fonts are not found */
|
|
todo_wine
|
|
{
|
|
stat = GdipCreateFontFamilyFromName (MSSansSerif, NULL, &family);
|
|
expect (FontFamilyNotFound, stat);
|
|
}
|
|
|
|
stat = GdipCreateFontFamilyFromName (arial, NULL, &family);
|
|
if(stat == FontFamilyNotFound)
|
|
{
|
|
skip("Arial not installed\n");
|
|
return;
|
|
}
|
|
expect (Ok, stat);
|
|
|
|
stat = GdipGetFamilyName (family, itsName, LANG_NEUTRAL);
|
|
expect (Ok, stat);
|
|
expect (0, lstrcmpiW(itsName, arial));
|
|
|
|
if (0)
|
|
{
|
|
/* Crashes on Windows XP SP2, Vista, and so Wine as well */
|
|
stat = GdipGetFamilyName (family, NULL, LANG_NEUTRAL);
|
|
expect (Ok, stat);
|
|
}
|
|
|
|
/* Make sure we don't read old data */
|
|
ZeroMemory (itsName, sizeof(itsName));
|
|
stat = GdipCloneFontFamily(family, &clonedFontFamily);
|
|
expect (Ok, stat);
|
|
GdipDeleteFontFamily(family);
|
|
stat = GdipGetFamilyName(clonedFontFamily, itsName, LANG_NEUTRAL);
|
|
expect(Ok, stat);
|
|
expect(0, lstrcmpiW(itsName, arial));
|
|
|
|
GdipDeleteFontFamily(clonedFontFamily);
|
|
}
|
|
|
|
static void test_fontfamily_properties (void)
|
|
{
|
|
GpFontFamily* FontFamily = NULL;
|
|
GpStatus stat;
|
|
UINT16 result = 0;
|
|
|
|
stat = GdipCreateFontFamilyFromName(arial, NULL, &FontFamily);
|
|
if(stat == FontFamilyNotFound)
|
|
skip("Arial not installed\n");
|
|
else
|
|
{
|
|
todo_wine
|
|
{
|
|
stat = GdipGetLineSpacing(FontFamily, FontStyleRegular, &result);
|
|
expect(Ok, stat);
|
|
ok (result == 2355, "Expected 2355, got %d\n", result);
|
|
}
|
|
result = 0;
|
|
stat = GdipGetEmHeight(FontFamily, FontStyleRegular, &result);
|
|
expect(Ok, stat);
|
|
ok(result == 2048, "Expected 2048, got %d\n", result);
|
|
result = 0;
|
|
stat = GdipGetCellAscent(FontFamily, FontStyleRegular, &result);
|
|
expect(Ok, stat);
|
|
ok(result == 1854, "Expected 1854, got %d\n", result);
|
|
result = 0;
|
|
stat = GdipGetCellDescent(FontFamily, FontStyleRegular, &result);
|
|
ok(result == 434, "Expected 434, got %d\n", result);
|
|
GdipDeleteFontFamily(FontFamily);
|
|
}
|
|
|
|
stat = GdipCreateFontFamilyFromName(TimesNewRoman, NULL, &FontFamily);
|
|
if(stat == FontFamilyNotFound)
|
|
skip("Times New Roman not installed\n");
|
|
else
|
|
{
|
|
result = 0;
|
|
todo_wine
|
|
{
|
|
stat = GdipGetLineSpacing(FontFamily, FontStyleRegular, &result);
|
|
expect(Ok, stat);
|
|
ok(result == 2355, "Expected 2355, got %d\n", result);
|
|
}
|
|
result = 0;
|
|
stat = GdipGetEmHeight(FontFamily, FontStyleRegular, &result);
|
|
expect(Ok, stat);
|
|
ok(result == 2048, "Expected 2048, got %d\n", result);
|
|
result = 0;
|
|
stat = GdipGetCellAscent(FontFamily, FontStyleRegular, &result);
|
|
expect(Ok, stat);
|
|
ok(result == 1825, "Expected 1825, got %d\n", result);
|
|
result = 0;
|
|
stat = GdipGetCellDescent(FontFamily, FontStyleRegular, &result);
|
|
ok(result == 443, "Expected 443 got %d\n", result);
|
|
GdipDeleteFontFamily(FontFamily);
|
|
}
|
|
}
|
|
|
|
static void test_getgenerics (void)
|
|
{
|
|
GpStatus stat;
|
|
GpFontFamily* family;
|
|
WCHAR familyName[LF_FACESIZE];
|
|
ZeroMemory(familyName, sizeof(familyName)/sizeof(WCHAR));
|
|
|
|
stat = GdipGetGenericFontFamilySansSerif (&family);
|
|
if (stat == FontFamilyNotFound)
|
|
{
|
|
skip("Microsoft Sans Serif not installed\n");
|
|
goto serif;
|
|
}
|
|
expect (Ok, stat);
|
|
stat = GdipGetFamilyName (family, familyName, LANG_NEUTRAL);
|
|
expect (Ok, stat);
|
|
ok ((lstrcmpiW(familyName, MicrosoftSansSerif) == 0) ||
|
|
(lstrcmpiW(familyName,MSSansSerif) == 0),
|
|
"Expected Microsoft Sans Serif or MS Sans Serif, got %s\n",
|
|
debugstr_w(familyName));
|
|
stat = GdipDeleteFontFamily (family);
|
|
expect (Ok, stat);
|
|
|
|
serif:
|
|
stat = GdipGetGenericFontFamilySerif (&family);
|
|
if (stat == FontFamilyNotFound)
|
|
{
|
|
skip("Times New Roman not installed\n");
|
|
goto monospace;
|
|
}
|
|
expect (Ok, stat);
|
|
stat = GdipGetFamilyName (family, familyName, LANG_NEUTRAL);
|
|
expect (Ok, stat);
|
|
ok (lstrcmpiW(familyName, TimesNewRoman) == 0,
|
|
"Expected Times New Roman, got %s\n", debugstr_w(familyName));
|
|
stat = GdipDeleteFontFamily (family);
|
|
expect (Ok, stat);
|
|
|
|
monospace:
|
|
stat = GdipGetGenericFontFamilyMonospace (&family);
|
|
if (stat == FontFamilyNotFound)
|
|
{
|
|
skip("Courier New not installed\n");
|
|
return;
|
|
}
|
|
expect (Ok, stat);
|
|
stat = GdipGetFamilyName (family, familyName, LANG_NEUTRAL);
|
|
expect (Ok, stat);
|
|
ok (lstrcmpiW(familyName, CourierNew) == 0,
|
|
"Expected Courier New, got %s\n", debugstr_w(familyName));
|
|
stat = GdipDeleteFontFamily (family);
|
|
expect (Ok, stat);
|
|
}
|
|
|
|
START_TEST(font)
|
|
{
|
|
struct GdiplusStartupInput gdiplusStartupInput;
|
|
ULONG_PTR gdiplusToken;
|
|
|
|
gdiplusStartupInput.GdiplusVersion = 1;
|
|
gdiplusStartupInput.DebugEventCallback = NULL;
|
|
gdiplusStartupInput.SuppressBackgroundThread = 0;
|
|
gdiplusStartupInput.SuppressExternalCodecs = 0;
|
|
|
|
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
|
|
|
|
test_createfont();
|
|
test_logfont();
|
|
test_fontfamily();
|
|
test_fontfamily_properties();
|
|
test_getgenerics();
|
|
|
|
GdiplusShutdown(gdiplusToken);
|
|
}
|