[GDI32_APITEST] Add GetTextMetrics tests to gdi32_apitest (#307)

CORE-13840
This commit is contained in:
Katayama Hirofumi MZ 2018-01-27 06:23:00 +09:00 committed by Alexander Shaposhnikov
parent b5a7765068
commit 19f8ed2b7a
3 changed files with 521 additions and 0 deletions

View file

@ -53,6 +53,7 @@ list(APPEND SOURCE
GetStockObject.c
GetTextExtentExPoint.c
GetTextFace.c
GetTextMetrics.c
MaskBlt.c
NtGdiAddFontResource.c
OffsetClipRgn.c

View file

@ -0,0 +1,518 @@
/*
* PROJECT: ReactOS api tests
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Test for GetTextMetrics and GetTextExtentPoint32
* COPYRIGHT: Copyright 2018 Katayama Hirofumi MZ (katayama.hirofumi.mz@gmail.com)
*/
#include "precomp.h"
/* #define EMIT_TESTCASES */
typedef struct TEST_ENTRY
{
int line;
LONG lfHeight;
LONG lfWidth;
LONG cxText;
LONG cyText;
LONG tmHeight;
LONG tmAscent;
LONG tmDescent;
LONG tmInternalLeading;
LONG tmExternalLeading;
} TEST_ENTRY;
#ifdef EMIT_TESTCASES
static const TEST_ENTRY g_test_entries[] =
{
{ __LINE__, 400, 0 },
{ __LINE__, 300, 0 },
{ __LINE__, 200, 0 },
{ __LINE__, 100, 0 },
{ __LINE__, 64, 0 },
{ __LINE__, 32, 0 },
{ __LINE__, 16, 0 },
{ __LINE__, 15, 0 },
{ __LINE__, 14, 0 },
{ __LINE__, 13, 0 },
{ __LINE__, 12, 0 },
{ __LINE__, 11, 0 },
{ __LINE__, 10, 0 },
{ __LINE__, 9, 0 },
{ __LINE__, 8, 0 },
{ __LINE__, 7, 0 },
{ __LINE__, 6, 0 },
{ __LINE__, 5, 0 },
{ __LINE__, 4, 0 },
{ __LINE__, 3, 0 },
{ __LINE__, 2, 0 },
{ __LINE__, 1, 0 },
{ __LINE__, 0, 0 },
{ __LINE__, -1, 0 },
{ __LINE__, -2, 0 },
{ __LINE__, -3, 0 },
{ __LINE__, -4, 0 },
{ __LINE__, -5, 0 },
{ __LINE__, -6, 0 },
{ __LINE__, -7, 0 },
{ __LINE__, -8, 0 },
{ __LINE__, -9, 0 },
{ __LINE__, -10, 0 },
{ __LINE__, -11, 0 },
{ __LINE__, -12, 0 },
{ __LINE__, -13, 0 },
{ __LINE__, -14, 0 },
{ __LINE__, -15, 0 },
{ __LINE__, -16, 0 },
{ __LINE__, -32, 0 },
{ __LINE__, -64, 0 },
{ __LINE__, -100, 0 },
{ __LINE__, -200, 0 },
{ __LINE__, -300, 0 },
{ __LINE__, -400, 0 },
};
#define g_test_entry_count _countof(g_test_entries)
#else
static const TEST_ENTRY g_FREEMONO[] =
{
{ __LINE__, 400, 0, 3600, 400, 400, 320, 80, 0, 0 },
{ __LINE__, 300, 0, 2700, 300, 300, 240, 60, 0, 0 },
{ __LINE__, 200, 0, 1800, 200, 200, 160, 40, 0, 0 },
{ __LINE__, 100, 0, 900, 100, 100, 80, 20, 0, 0 },
{ __LINE__, 64, 0, 570, 64, 64, 51, 13, 0, 0 },
{ __LINE__, 32, 0, 285, 32, 32, 26, 6, 0, 0 },
{ __LINE__, 16, 0, 150, 16, 16, 13, 3, 0, 0 },
{ __LINE__, 15, 0, 135, 15, 15, 12, 3, 0, 0 },
{ __LINE__, 14, 0, 120, 14, 14, 11, 3, 0, 0 },
{ __LINE__, 13, 0, 120, 13, 13, 10, 3, 0, 0 },
{ __LINE__, 12, 0, 105, 12, 12, 10, 2, 0, 0 },
{ __LINE__, 11, 0, 105, 11, 11, 9, 2, 0, 0 },
{ __LINE__, 10, 0, 90, 10, 10, 8, 2, 0, 0 },
{ __LINE__, 9, 0, 77, 9, 9, 7, 2, 0, 0 },
{ __LINE__, 8, 0, 75, 8, 8, 6, 2, 0, 0 },
{ __LINE__, 7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, 6, 0, 60, 6, 6, 5, 1, 0, 0 },
{ __LINE__, 5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, 4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, 3, 0, 30, 3, 3, 2, 1, 0, 0 },
{ __LINE__, 2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 0, 0, -165, -18, -18, -14, -4, 0, 0 },
{ __LINE__, -1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -3, 0, 30, 3, 3, 2, 1, 0, 0 },
{ __LINE__, -4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, -5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, -6, 0, 60, 6, 6, 5, 1, 0, 0 },
{ __LINE__, -7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, -8, 0, 75, 8, 8, 6, 2, 0, 0 },
{ __LINE__, -9, 0, 77, 9, 9, 7, 2, 0, 0 },
{ __LINE__, -10, 0, 90, 10, 10, 8, 2, 0, 0 },
{ __LINE__, -11, 0, 105, 11, 11, 9, 2, 0, 0 },
{ __LINE__, -12, 0, 105, 12, 12, 10, 2, 0, 0 },
{ __LINE__, -13, 0, 120, 13, 13, 10, 3, 0, 0 },
{ __LINE__, -14, 0, 120, 14, 14, 11, 3, 0, 0 },
{ __LINE__, -15, 0, 135, 15, 15, 12, 3, 0, 0 },
{ __LINE__, -16, 0, 150, 16, 16, 13, 3, 0, 0 },
{ __LINE__, -32, 0, 285, 32, 32, 26, 6, 0, 0 },
{ __LINE__, -64, 0, 570, 64, 64, 51, 13, 0, 0 },
{ __LINE__, -100, 0, 900, 100, 100, 80, 20, 0, 0 },
{ __LINE__, -200, 0, 1800, 200, 200, 160, 40, 0, 0 },
{ __LINE__, -300, 0, 2700, 300, 300, 240, 60, 0, 0 },
{ __LINE__, -400, 0, 3600, 400, 400, 320, 80, 0, 0 },
};
#define g_FREEMONO_count _countof(g_FREEMONO)
static const TEST_ENTRY g_DEJAVUSERIF[] =
{
{ __LINE__, 400, 0, 2323, 400, 400, 319, 81, 56, 0 },
{ __LINE__, 300, 0, 1743, 300, 300, 239, 61, 42, 0 },
{ __LINE__, 200, 0, 1162, 200, 200, 159, 41, 28, 0 },
{ __LINE__, 100, 0, 580, 100, 100, 80, 20, 14, 0 },
{ __LINE__, 64, 0, 370, 64, 64, 51, 13, 9, 0 },
{ __LINE__, 32, 0, 190, 32, 32, 26, 6, 4, 0 },
{ __LINE__, 16, 0, 91, 16, 16, 13, 3, 2, 0 },
{ __LINE__, 15, 0, 84, 15, 15, 12, 3, 2, 0 },
{ __LINE__, 14, 0, 82, 14, 14, 11, 3, 2, 0 },
{ __LINE__, 13, 0, 77, 13, 13, 10, 3, 2, 0 },
{ __LINE__, 12, 0, 66, 12, 12, 10, 2, 2, 0 },
{ __LINE__, 11, 0, 63, 11, 11, 9, 2, 2, 0 },
{ __LINE__, 10, 0, 63, 10, 10, 8, 2, 1, 0 },
{ __LINE__, 9, 0, 56, 9, 9, 7, 2, 1, 0 },
{ __LINE__, 8, 0, 49, 8, 8, 6, 2, 1, 0 },
{ __LINE__, 7, 0, 42, 7, 7, 6, 1, 1, 0 },
{ __LINE__, 6, 0, 36, 6, 6, 5, 1, 1, 0 },
{ __LINE__, 5, 0, 26, 5, 5, 4, 1, 1, 0 },
{ __LINE__, 4, 0, 22, 4, 4, 3, 1, 1, 0 },
{ __LINE__, 3, 0, 22, 3, 3, 2, 1, 0, 0 },
{ __LINE__, 2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 0, 0, -125, -21, -21, -17, -4, -3, 0 },
{ __LINE__, -1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -3, 0, 22, 4, 4, 3, 1, 1, 0 },
{ __LINE__, -4, 0, 26, 5, 5, 4, 1, 1, 0 },
{ __LINE__, -5, 0, 36, 6, 6, 5, 1, 1, 0 },
{ __LINE__, -6, 0, 42, 7, 7, 6, 1, 1, 0 },
{ __LINE__, -7, 0, 49, 8, 8, 6, 2, 1, 0 },
{ __LINE__, -8, 0, 56, 9, 9, 7, 2, 1, 0 },
{ __LINE__, -9, 0, 63, 10, 10, 8, 2, 1, 0 },
{ __LINE__, -10, 0, 66, 11, 11, 9, 2, 1, 0 },
{ __LINE__, -11, 0, 77, 13, 13, 10, 3, 2, 0 },
{ __LINE__, -12, 0, 82, 14, 14, 11, 3, 2, 0 },
{ __LINE__, -13, 0, 84, 15, 15, 12, 3, 2, 0 },
{ __LINE__, -14, 0, 91, 16, 16, 13, 3, 2, 0 },
{ __LINE__, -15, 0, 103, 18, 18, 14, 4, 3, 0 },
{ __LINE__, -16, 0, 114, 19, 19, 15, 4, 3, 0 },
{ __LINE__, -32, 0, 214, 38, 38, 30, 8, 6, 0 },
{ __LINE__, -64, 0, 431, 74, 74, 59, 15, 10, 0 },
{ __LINE__, -100, 0, 674, 117, 117, 93, 24, 17, 0 },
{ __LINE__, -200, 0, 1352, 233, 233, 186, 47, 33, 0 },
{ __LINE__, -300, 0, 2026, 349, 349, 278, 71, 49, 0 },
{ __LINE__, -400, 0, 2702, 465, 465, 371, 94, 65, 0 },
};
#define g_DEJAVUSERIF_count _countof(g_DEJAVUSERIF)
static const TEST_ENTRY g_DEJAVUSANS[] =
{
{ __LINE__, 400, 0, 2286, 400, 400, 319, 81, 56, 0 },
{ __LINE__, 300, 0, 1715, 300, 300, 239, 61, 42, 0 },
{ __LINE__, 200, 0, 1145, 200, 200, 159, 41, 28, 0 },
{ __LINE__, 100, 0, 573, 100, 100, 80, 20, 14, 0 },
{ __LINE__, 64, 0, 366, 64, 64, 51, 13, 9, 0 },
{ __LINE__, 32, 0, 188, 32, 32, 26, 6, 4, 0 },
{ __LINE__, 16, 0, 91, 16, 16, 13, 3, 2, 0 },
{ __LINE__, 15, 0, 84, 15, 15, 12, 3, 2, 0 },
{ __LINE__, 14, 0, 84, 14, 14, 11, 3, 2, 0 },
{ __LINE__, 13, 0, 79, 13, 13, 10, 3, 2, 0 },
{ __LINE__, 12, 0, 62, 12, 12, 10, 2, 2, 0 },
{ __LINE__, 11, 0, 64, 11, 11, 9, 2, 2, 0 },
{ __LINE__, 10, 0, 64, 10, 10, 8, 2, 1, 0 },
{ __LINE__, 9, 0, 54, 9, 9, 7, 2, 1, 0 },
{ __LINE__, 8, 0, 46, 8, 8, 6, 2, 1, 0 },
{ __LINE__, 7, 0, 41, 7, 7, 6, 1, 1, 0 },
{ __LINE__, 6, 0, 35, 6, 6, 5, 1, 1, 0 },
{ __LINE__, 5, 0, 25, 5, 5, 4, 1, 1, 0 },
{ __LINE__, 4, 0, 22, 4, 4, 3, 1, 1, 0 },
{ __LINE__, 3, 0, 22, 3, 3, 2, 1, 0, 0 },
{ __LINE__, 2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 0, 0, -116, -21, -21, -17, -4, -3, 0 },
{ __LINE__, -1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -3, 0, 22, 4, 4, 3, 1, 1, 0 },
{ __LINE__, -4, 0, 25, 5, 5, 4, 1, 1, 0 },
{ __LINE__, -5, 0, 35, 6, 6, 5, 1, 1, 0 },
{ __LINE__, -6, 0, 41, 7, 7, 6, 1, 1, 0 },
{ __LINE__, -7, 0, 46, 8, 8, 6, 2, 1, 0 },
{ __LINE__, -8, 0, 54, 9, 9, 7, 2, 1, 0 },
{ __LINE__, -9, 0, 64, 10, 10, 8, 2, 1, 0 },
{ __LINE__, -10, 0, 62, 11, 11, 9, 2, 1, 0 },
{ __LINE__, -11, 0, 79, 13, 13, 10, 3, 2, 0 },
{ __LINE__, -12, 0, 84, 14, 14, 11, 3, 2, 0 },
{ __LINE__, -13, 0, 84, 15, 15, 12, 3, 2, 0 },
{ __LINE__, -14, 0, 91, 16, 16, 13, 3, 2, 0 },
{ __LINE__, -15, 0, 98, 18, 18, 14, 4, 3, 0 },
{ __LINE__, -16, 0, 102, 19, 19, 15, 4, 3, 0 },
{ __LINE__, -32, 0, 215, 38, 38, 30, 8, 6, 0 },
{ __LINE__, -64, 0, 423, 74, 74, 59, 15, 10, 0 },
{ __LINE__, -100, 0, 665, 117, 117, 93, 24, 17, 0 },
{ __LINE__, -200, 0, 1331, 233, 233, 186, 47, 33, 0 },
{ __LINE__, -300, 0, 1992, 349, 349, 278, 71, 49, 0 },
{ __LINE__, -400, 0, 2657, 465, 465, 371, 94, 65, 0 },
};
#define g_DEJAVUSANS_count _countof(g_DEJAVUSANS)
static const TEST_ENTRY g_UBUNTUMONO[] =
{
{ __LINE__, 400, 0, 3000, 400, 400, 332, 68, 0, 0 },
{ __LINE__, 300, 0, 2250, 300, 300, 249, 51, 0, 0 },
{ __LINE__, 200, 0, 1500, 200, 200, 166, 34, 1, 0 },
{ __LINE__, 100, 0, 735, 100, 100, 83, 17, 2, 0 },
{ __LINE__, 64, 0, 465, 63, 63, 53, 10, 2, 0 },
{ __LINE__, 32, 0, 240, 31, 31, 26, 5, 0, 0 },
{ __LINE__, 16, 0, 105, 16, 16, 13, 3, 3, 0 },
{ __LINE__, 15, 0, 90, 15, 15, 12, 3, 4, 0 },
{ __LINE__, 14, 0, 75, 14, 14, 11, 3, 5, 0 },
{ __LINE__, 13, 0, 60, 13, 13, 10, 3, 5, 0 },
{ __LINE__, 12, 0, 60, 12, 12, 10, 2, 5, 0 },
{ __LINE__, 11, 0, 60, 11, 11, 9, 2, 4, 0 },
{ __LINE__, 10, 0, 60, 10, 10, 8, 2, 3, 0 },
{ __LINE__, 9, 0, 60, 9, 9, 7, 2, 2, 0 },
{ __LINE__, 8, 0, 60, 8, 8, 7, 1, 1, 0 },
{ __LINE__, 7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, 6, 0, 45, 6, 6, 5, 1, 0, 0 },
{ __LINE__, 5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, 4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, 3, 0, 30, 3, 3, 2, 1, 0, 0 },
{ __LINE__, 2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 0, 0, -135, -19, -19, -16, -3, -1, 0 },
{ __LINE__, -1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -3, 0, 30, 3, 3, 2, 1, 0, 0 },
{ __LINE__, -4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, -5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, -6, 0, 45, 6, 6, 5, 1, 0, 0 },
{ __LINE__, -7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, -8, 0, 60, 13, 13, 10, 3, 5, 0 },
{ __LINE__, -9, 0, 75, 14, 14, 11, 3, 5, 0 },
{ __LINE__, -10, 0, 75, 14, 14, 11, 3, 4, 0 },
{ __LINE__, -11, 0, 90, 15, 15, 12, 3, 4, 0 },
{ __LINE__, -12, 0, 90, 15, 15, 12, 3, 3, 0 },
{ __LINE__, -13, 0, 105, 16, 16, 13, 3, 3, 0 },
{ __LINE__, -14, 0, 105, 17, 17, 14, 3, 3, 0 },
{ __LINE__, -15, 0, 105, 17, 17, 14, 3, 2, 0 },
{ __LINE__, -16, 0, 120, 18, 18, 15, 3, 2, 0 },
{ __LINE__, -32, 0, 240, 33, 33, 28, 5, 1, 0 },
{ __LINE__, -64, 0, 480, 66, 66, 55, 11, 2, 0 },
{ __LINE__, -100, 0, 750, 101, 101, 84, 17, 1, 0 },
{ __LINE__, -200, 0, 1500, 201, 201, 167, 34, 1, 0 },
{ __LINE__, -300, 0, 2250, 300, 300, 249, 51, 0, 0 },
{ __LINE__, -400, 0, 3000, 400, 400, 332, 68, 0, 0 },
};
#define g_UBUNTUMONO_count _countof(g_UBUNTUMONO)
static const TEST_ENTRY g_MSGOTHIC[] =
{
{ __LINE__, 400, 0, 3000, 400, 400, 344, 56, 0, 0 },
{ __LINE__, 300, 0, 2250, 300, 300, 258, 42, 0, 0 },
{ __LINE__, 200, 0, 1500, 200, 200, 172, 28, 0, 0 },
{ __LINE__, 100, 0, 750, 100, 100, 86, 14, 0, 0 },
{ __LINE__, 64, 0, 480, 64, 64, 55, 9, 0, 0 },
{ __LINE__, 32, 0, 240, 33, 33, 28, 5, 1, 0 },
{ __LINE__, 16, 0, 120, 16, 16, 14, 2, 0, 0 },
{ __LINE__, 15, 0, 120, 15, 15, 13, 2, 0, 0 },
{ __LINE__, 14, 0, 105, 14, 14, 12, 2, 0, 0 },
{ __LINE__, 13, 0, 105, 13, 13, 11, 2, 0, 0 },
{ __LINE__, 12, 0, 90, 12, 12, 10, 2, 0, 0 },
{ __LINE__, 11, 0, 90, 11, 11, 9, 2, 0, 0 },
{ __LINE__, 10, 0, 75, 10, 10, 9, 1, 0, 0 },
{ __LINE__, 9, 0, 75, 9, 9, 8, 1, 0, 0 },
{ __LINE__, 8, 0, 60, 8, 8, 7, 1, 0, 0 },
{ __LINE__, 7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, 6, 0, 45, 6, 6, 5, 1, 0, 0 },
{ __LINE__, 5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, 4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, 3, 0, 30, 3, 3, 3, 0, 0, 0 },
{ __LINE__, 2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 0, 0, -135, -18, -18, -15, -3, 0, 0 },
{ __LINE__, -1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -3, 0, 30, 3, 3, 3, 0, 0, 0 },
{ __LINE__, -4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, -5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, -6, 0, 45, 6, 6, 5, 1, 0, 0 },
{ __LINE__, -7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, -8, 0, 60, 8, 8, 7, 1, 0, 0 },
{ __LINE__, -9, 0, 75, 9, 9, 8, 1, 0, 0 },
{ __LINE__, -10, 0, 75, 10, 10, 9, 1, 0, 0 },
{ __LINE__, -11, 0, 90, 11, 11, 9, 2, 0, 0 },
{ __LINE__, -12, 0, 90, 12, 12, 10, 2, 0, 0 },
{ __LINE__, -13, 0, 105, 13, 13, 11, 2, 0, 0 },
{ __LINE__, -14, 0, 105, 14, 14, 12, 2, 0, 0 },
{ __LINE__, -15, 0, 120, 15, 15, 13, 2, 0, 0 },
{ __LINE__, -16, 0, 120, 16, 16, 14, 2, 0, 0 },
{ __LINE__, -32, 0, 240, 33, 33, 28, 5, 1, 0 },
{ __LINE__, -64, 0, 480, 64, 64, 55, 9, 0, 0 },
{ __LINE__, -100, 0, 750, 100, 100, 86, 14, 0, 0 },
{ __LINE__, -200, 0, 1500, 200, 200, 172, 28, 0, 0 },
{ __LINE__, -300, 0, 2250, 300, 300, 258, 42, 0, 0 },
{ __LINE__, -400, 0, 3000, 400, 400, 344, 56, 0, 0 },
};
#define g_MSGOTHIC_count _countof(g_MSGOTHIC)
static const TEST_ENTRY g_MSMINCHO[] =
{
{ __LINE__, 400, 0, 3000, 400, 400, 344, 56, 0, 0 },
{ __LINE__, 300, 0, 2250, 300, 300, 258, 42, 0, 0 },
{ __LINE__, 200, 0, 1500, 200, 200, 172, 28, 0, 0 },
{ __LINE__, 100, 0, 750, 100, 100, 86, 14, 0, 0 },
{ __LINE__, 64, 0, 480, 64, 64, 55, 9, 0, 0 },
{ __LINE__, 32, 0, 240, 33, 33, 28, 5, 1, 0 },
{ __LINE__, 16, 0, 120, 16, 16, 14, 2, 0, 0 },
{ __LINE__, 15, 0, 120, 15, 15, 13, 2, 0, 0 },
{ __LINE__, 14, 0, 105, 14, 14, 12, 2, 0, 0 },
{ __LINE__, 13, 0, 105, 13, 13, 11, 2, 0, 0 },
{ __LINE__, 12, 0, 90, 12, 12, 10, 2, 0, 0 },
{ __LINE__, 11, 0, 90, 11, 11, 9, 2, 0, 0 },
{ __LINE__, 10, 0, 75, 10, 10, 9, 1, 0, 0 },
{ __LINE__, 9, 0, 75, 9, 9, 8, 1, 0, 0 },
{ __LINE__, 8, 0, 60, 8, 8, 7, 1, 0, 0 },
{ __LINE__, 7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, 6, 0, 45, 6, 6, 5, 1, 0, 0 },
{ __LINE__, 5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, 4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, 3, 0, 30, 3, 3, 3, 0, 0, 0 },
{ __LINE__, 2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, 0, 0, -135, -18, -18, -15, -3, 0, 0 },
{ __LINE__, -1, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -2, 0, 15, 2, 2, 2, 0, 0, 0 },
{ __LINE__, -3, 0, 30, 3, 3, 3, 0, 0, 0 },
{ __LINE__, -4, 0, 30, 4, 4, 3, 1, 0, 0 },
{ __LINE__, -5, 0, 45, 5, 5, 4, 1, 0, 0 },
{ __LINE__, -6, 0, 45, 6, 6, 5, 1, 0, 0 },
{ __LINE__, -7, 0, 60, 7, 7, 6, 1, 0, 0 },
{ __LINE__, -8, 0, 60, 8, 8, 7, 1, 0, 0 },
{ __LINE__, -9, 0, 75, 9, 9, 8, 1, 0, 0 },
{ __LINE__, -10, 0, 75, 10, 10, 9, 1, 0, 0 },
{ __LINE__, -11, 0, 90, 11, 11, 9, 2, 0, 0 },
{ __LINE__, -12, 0, 90, 12, 12, 10, 2, 0, 0 },
{ __LINE__, -13, 0, 105, 13, 13, 11, 2, 0, 0 },
{ __LINE__, -14, 0, 105, 14, 14, 12, 2, 0, 0 },
{ __LINE__, -15, 0, 120, 15, 15, 13, 2, 0, 0 },
{ __LINE__, -16, 0, 120, 16, 16, 14, 2, 0, 0 },
{ __LINE__, -32, 0, 240, 33, 33, 28, 5, 1, 0 },
{ __LINE__, -64, 0, 480, 64, 64, 55, 9, 0, 0 },
{ __LINE__, -100, 0, 750, 100, 100, 86, 14, 0, 0 },
{ __LINE__, -200, 0, 1500, 200, 200, 172, 28, 0, 0 },
{ __LINE__, -300, 0, 2250, 300, 300, 258, 42, 0, 0 },
{ __LINE__, -400, 0, 3000, 400, 400, 344, 56, 0, 0 },
};
#define g_MSMINCHO_count _countof(g_MSMINCHO)
#endif
typedef struct FONT_ENTRY
{
const char *entry_name;
const char *font_name;
const char *font_file;
size_t test_count;
const TEST_ENTRY *tests;
} FONT_ENTRY;
static FONT_ENTRY g_font_entries[] =
{
#ifdef EMIT_TESTCASES
{ "FREEMONO", "FreeMono", "FreeMono.ttf" },
{ "DEJAVUSERIF", "DejaVu Serif", "DejaVuSerif.ttf" },
{ "DEJAVUSANS", "DejaVu Sans", "DejaVuSans.ttf" },
{ "UBUNTUMONO", "Ubuntu Mono", "UbuntuMono-R.ttf" },
{ "MSGOTHIC", "MS Gothic", "msgothic.ttc" },
{ "MSMINCHO", "MS Mincho", "msmincho.ttc" },
#else
{ "FREEMONO", "FreeMono", "FreeMono.ttf", g_FREEMONO_count, g_FREEMONO },
{ "DEJAVUSERIF", "DejaVu Serif", "DejaVuSerif.ttf", g_DEJAVUSERIF_count, g_DEJAVUSERIF },
{ "DEJAVUSANS", "DejaVu Sans", "DejaVuSans.ttf", g_DEJAVUSANS_count, g_DEJAVUSANS },
{ "UBUNTUMONO", "Ubuntu Mono", "UbuntuMono-R.ttf", g_UBUNTUMONO_count, g_UBUNTUMONO },
{ "MSGOTHIC", "MS Gothic", "msgothic.ttc", g_MSGOTHIC_count, g_MSGOTHIC },
{ "MSMINCHO", "MS Mincho", "msmincho.ttc", g_MSMINCHO_count, g_MSMINCHO },
#endif
};
static size_t g_font_entry_count = _countof(g_font_entries);
START_TEST(GetTextMetrics)
{
size_t i, k;
LOGFONTA lf;
HFONT hFont;
HDC hDC;
HGDIOBJ hFontOld;
SIZE siz;
TEXTMETRIC tm;
char szPath[MAX_PATH];
static const char *text = "This is a test.";
hDC = CreateCompatibleDC(NULL);
for (i = 0; i < g_font_entry_count; ++i)
{
FONT_ENTRY *font = &g_font_entries[i];
ZeroMemory(&lf, sizeof(lf));
lf.lfCharSet = DEFAULT_CHARSET;
lstrcpyA(lf.lfFaceName, font->font_name);
GetWindowsDirectoryA(szPath, MAX_PATH);
lstrcatA(szPath, "\\Fonts\\");
lstrcatA(szPath, font->font_file);
if (GetFileAttributesA(szPath) == 0xFFFFFFFF)
{
skip("Font file '%s' doesn't exists\n", font->font_file);
continue;
}
#ifdef EMIT_TESTCASES
printf("static const TEST_ENTRY g_%s[] =\n", font->entry_name);
printf("{\n");
for (k = 0; k < g_test_entry_count; ++k)
{
const TEST_ENTRY *test = &g_test_entries[k];
lf.lfHeight = test->lfHeight;
lf.lfWidth = test->lfWidth;
hFont = CreateFontIndirectA(&lf);
hFontOld = SelectObject(hDC, hFont);
{
GetTextExtentPoint32A(hDC, text, lstrlenA(text), &siz);
GetTextMetrics(hDC, &tm);
}
SelectObject(hDC, hFontOld);
DeleteObject(hFont);
printf(" { __LINE__, %ld, %ld, %ld, %ld, %ld, %ld, %ld, %ld, %ld },\n",
lf.lfHeight, lf.lfWidth,
siz.cx, siz.cy,
tm.tmHeight, tm.tmAscent, tm.tmDescent, tm.tmInternalLeading, tm.tmExternalLeading);
}
printf("};\n");
printf("#define g_%s_count _countof(g_%s)\n\n", font->entry_name, font->entry_name);
#else
for (k = 0; k < font->test_count; ++k)
{
const TEST_ENTRY *test = &font->tests[k];
lf.lfHeight = test->lfHeight;
lf.lfWidth = test->lfWidth;
hFont = CreateFontIndirectA(&lf);
hFontOld = SelectObject(hDC, hFont);
{
GetTextExtentPoint32A(hDC, text, lstrlenA(text), &siz);
GetTextMetrics(hDC, &tm);
}
SelectObject(hDC, hFontOld);
DeleteObject(hFont);
if (test->cxText > 0)
{
ok_(__FILE__, test->line)(labs(test->cxText - siz.cx) <= 1, "%s (%ld): cxText: labs(%ld - %ld) > 1\n", font->entry_name, test->lfHeight, test->cxText, siz.cx);
ok_(__FILE__, test->line)(labs(test->cxText - siz.cx) == 0, "%s (%ld): cxText: labs(%ld - %ld) != 0\n", font->entry_name, test->lfHeight, test->cxText, siz.cx);
}
if (test->cyText > 0)
{
ok_(__FILE__, test->line)(labs(test->cyText - siz.cy) <= 1, "%s (%ld): cyText: labs(%ld - %ld) > 1\n", font->entry_name, test->lfHeight, test->cyText, siz.cy);
ok_(__FILE__, test->line)(labs(test->cyText - siz.cy) == 0, "%s (%ld): cyText: labs(%ld - %ld) != 0\n", font->entry_name, test->lfHeight, test->cyText, siz.cy);
}
if (test->tmHeight > 0)
{
ok_(__FILE__, test->line)(labs(test->tmHeight - tm.tmHeight) <= 1, "%s (%ld): tmHeight: labs(%ld - %ld) > 1\n", font->entry_name, test->lfHeight, test->tmHeight, tm.tmHeight);
ok_(__FILE__, test->line)(labs(test->tmHeight - tm.tmHeight) == 0, "%s (%ld): tmHeight: labs(%ld - %ld) != 0\n", font->entry_name, test->lfHeight, test->tmHeight, tm.tmHeight);
}
if (test->tmAscent > 0)
{
ok_(__FILE__, test->line)(labs(test->tmAscent - tm.tmAscent) <= 1, "%s (%ld): tmAscent: labs(%ld - %ld) > 1\n", font->entry_name, test->lfHeight, test->tmAscent, tm.tmAscent);
ok_(__FILE__, test->line)(labs(test->tmAscent - tm.tmAscent) == 0, "%s (%ld): tmAscent: labs(%ld - %ld) != 0\n", font->entry_name, test->lfHeight, test->tmAscent, tm.tmAscent);
}
if (test->tmDescent > 0)
{
ok_(__FILE__, test->line)(labs(test->tmDescent - tm.tmDescent) <= 1, "%s (%ld): tmDescent: labs(%ld - %ld) > 1\n", font->entry_name, test->lfHeight, test->tmDescent, tm.tmDescent);
ok_(__FILE__, test->line)(labs(test->tmDescent - tm.tmDescent) == 0, "%s (%ld): tmDescent: labs(%ld - %ld) != 0\n", font->entry_name, test->lfHeight, test->tmDescent, tm.tmDescent);
}
if (test->tmInternalLeading > 0)
{
ok_(__FILE__, test->line)(labs(test->tmInternalLeading - tm.tmInternalLeading) <= 1, "%s (%ld): tmInternalLeading: labs(%ld - %ld) > 1\n", font->entry_name, test->lfHeight, test->tmInternalLeading, tm.tmInternalLeading);
ok_(__FILE__, test->line)(labs(test->tmInternalLeading - tm.tmInternalLeading) == 0, "%s (%ld): tmInternalLeading: labs(%ld - %ld) != 0\n", font->entry_name, test->lfHeight, test->tmInternalLeading, tm.tmInternalLeading);
}
if (test->tmExternalLeading > 0)
{
ok_(__FILE__, test->line)(labs(test->tmExternalLeading - tm.tmExternalLeading) <= 1, "%s (%ld): tmExternalLeading: labs(%ld - %ld) > 1\n", font->entry_name, test->lfHeight, test->tmExternalLeading, tm.tmExternalLeading);
ok_(__FILE__, test->line)(labs(test->tmExternalLeading - tm.tmExternalLeading) == 0, "%s (%ld): tmExternalLeading: labs(%ld - %ld) != 0\n", font->entry_name, test->lfHeight, test->tmExternalLeading, tm.tmExternalLeading);
}
}
#endif
}
DeleteDC(hDC);
}

View file

@ -54,6 +54,7 @@ extern void func_GetRandomRgn(void);
extern void func_GetStockObject(void);
extern void func_GetTextExtentExPoint(void);
extern void func_GetTextFace(void);
extern void func_GetTextMetrics(void);
extern void func_MaskBlt(void);
extern void func_NtGdiAddFontResource(void);
extern void func_OffsetClipRgn(void);
@ -126,6 +127,7 @@ const struct test winetest_testlist[] =
{ "GetRandomRgn", func_GetRandomRgn },
{ "GetStockObject", func_GetStockObject },
{ "GetTextExtentExPoint", func_GetTextExtentExPoint },
{ "GetTextMetrics", func_GetTextMetrics },
{ "GetTextFace", func_GetTextFace },
{ "MaskBlt", func_MaskBlt },
{ "NtGdiAddFontResource", func_NtGdiAddFontResource},