2006-02-14 17:38:20 +01:00
/*
* Tests for usp10 dll
*
* Copyright 2006 Jeff Latimer
2006-12-23 15:19:30 +01:00
* Copyright 2006 Hans Leidekker
2010-04-13 21:49:07 +02:00
* Copyright 2010 CodeWeavers , Aric Stewart
2006-02-14 17:38:20 +01:00
*
* 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
2006-05-18 14:49:52 +02:00
* Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
2006-02-14 17:38:20 +01:00
*
* Notes :
* Uniscribe allows for processing of complex scripts such as joining
* and filtering characters and bi - directional text with custom line breaks .
*/
# include <assert.h>
# include <stdio.h>
# include <wine/test.h>
2009-12-17 21:30:41 +01:00
# include <windows.h>
2006-02-14 17:38:20 +01:00
# include <usp10.h>
2010-04-28 16:30:12 +02:00
typedef struct _itemTest {
2016-02-05 16:39:14 +01:00
char todo_flag [ 6 ] ;
2010-04-28 16:30:12 +02:00
int iCharPos ;
int fRTL ;
int fLayoutRTL ;
int uBidiLevel ;
2016-02-05 16:39:14 +01:00
int fOverrideDirection ;
2011-05-10 20:09:57 +02:00
ULONG scriptTag ;
2011-11-21 05:04:35 +01:00
BOOL isBroken ;
2016-02-05 16:39:14 +01:00
int broken_value [ 6 ] ;
2010-04-28 16:30:12 +02:00
} itemTest ;
2011-05-17 22:06:10 +02:00
typedef struct _shapeTest_char {
WORD wLogClust ;
SCRIPT_CHARPROP CharProp ;
} shapeTest_char ;
typedef struct _shapeTest_glyph {
int Glyph ;
SCRIPT_GLYPHPROP GlyphProp ;
} shapeTest_glyph ;
2011-05-10 20:09:57 +02:00
/* Uniscribe 1.6 calls */
static HRESULT ( WINAPI * pScriptItemizeOpenType ) ( const WCHAR * pwcInChars , int cInChars , int cMaxItems , const SCRIPT_CONTROL * psControl , const SCRIPT_STATE * psState , SCRIPT_ITEM * pItems , ULONG * pScriptTags , int * pcItems ) ;
2011-05-17 22:05:39 +02:00
static HRESULT ( WINAPI * pScriptShapeOpenType ) ( HDC hdc , SCRIPT_CACHE * psc , SCRIPT_ANALYSIS * psa , OPENTYPE_TAG tagScript , OPENTYPE_TAG tagLangSys , int * rcRangeChars , TEXTRANGE_PROPERTIES * * rpRangeProperties , int cRanges , const WCHAR * pwcChars , int cChars , int cMaxGlyphs , WORD * pwLogClust , SCRIPT_CHARPROP * pCharProps , WORD * pwOutGlyphs , SCRIPT_GLYPHPROP * pOutGlyphProps , int * pcGlyphs ) ;
2011-05-10 20:09:57 +02:00
2011-05-27 12:19:35 +02:00
static DWORD ( WINAPI * pGetGlyphIndicesW ) ( HDC hdc , LPCWSTR lpstr , INT count , LPWORD pgi , DWORD flags ) ;
2011-12-22 17:46:34 +01:00
static HRESULT ( WINAPI * pScriptGetFontScriptTags ) ( HDC hdc , SCRIPT_CACHE * psc , SCRIPT_ANALYSIS * psa , int cMaxTags , OPENTYPE_TAG * pScriptTags , int * pcTags ) ;
2012-01-03 13:51:07 +01:00
static HRESULT ( WINAPI * pScriptGetFontLanguageTags ) ( HDC hdc , SCRIPT_CACHE * psc , SCRIPT_ANALYSIS * psa , OPENTYPE_TAG tagScript , int cMaxTags , OPENTYPE_TAG * pLangSysTags , int * pcTags ) ;
2012-01-03 13:51:23 +01:00
static HRESULT ( WINAPI * pScriptGetFontFeatureTags ) ( HDC hdc , SCRIPT_CACHE * psc , SCRIPT_ANALYSIS * psa , OPENTYPE_TAG tagScript , OPENTYPE_TAG tagLangSys , int cMaxTags , OPENTYPE_TAG * pFeatureTags , int * pcTags ) ;
2011-12-22 17:46:34 +01:00
2010-04-28 16:30:12 +02:00
static inline void _test_items_ok ( LPCWSTR string , DWORD cchString ,
SCRIPT_CONTROL * Control , SCRIPT_STATE * State ,
2010-09-09 18:47:04 +02:00
DWORD nItems , const itemTest * items , BOOL nItemsToDo ,
2011-12-14 14:27:47 +01:00
const INT nItemsBroken [ 2 ] )
2010-04-28 16:30:12 +02:00
{
HRESULT hr ;
int x , outnItems ;
SCRIPT_ITEM outpItems [ 15 ] ;
2011-05-10 20:09:57 +02:00
ULONG tags [ 15 ] = { - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 , - 1 } ;
if ( pScriptItemizeOpenType )
hr = pScriptItemizeOpenType ( string , cchString , 15 , Control , State , outpItems , tags , & outnItems ) ;
else
hr = ScriptItemize ( string , cchString , 15 , Control , State , outpItems , & outnItems ) ;
2010-04-28 16:30:12 +02:00
2014-08-28 21:44:24 +02:00
winetest_ok ( hr = = S_OK , " ScriptItemize should return S_OK not %08x \n " , hr ) ;
2011-12-14 14:27:47 +01:00
if ( nItemsBroken & & ( broken ( nItemsBroken [ 0 ] = = outnItems ) | | broken ( nItemsBroken [ 1 ] = = outnItems ) ) )
2010-09-09 18:47:04 +02:00
{
2017-01-26 10:23:03 +01:00
winetest_win_skip ( " This test broken on this platform: nitems %d \n " , outnItems ) ;
2010-09-09 18:47:04 +02:00
return ;
}
2016-02-17 00:22:21 +01:00
todo_wine_if ( nItemsToDo )
2016-06-07 21:18:33 +02:00
winetest_ok ( outnItems = = nItems , " Wrong number of items (%u) \n " , outnItems ) ;
outnItems = min ( outnItems , nItems ) ;
2010-04-28 16:30:12 +02:00
for ( x = 0 ; x < = outnItems ; x + + )
{
2011-11-21 05:04:35 +01:00
if ( items [ x ] . isBroken & & broken ( outpItems [ x ] . iCharPos = = items [ x ] . broken_value [ 0 ] ) )
2017-01-26 10:23:03 +01:00
winetest_win_skip ( " This test broken on this platform: item %d CharPos %d \n " , x , outpItems [ x ] . iCharPos ) ;
2016-02-17 00:22:21 +01:00
else todo_wine_if ( items [ x ] . todo_flag [ 0 ] )
2010-04-28 16:30:12 +02:00
winetest_ok ( outpItems [ x ] . iCharPos = = items [ x ] . iCharPos , " %i:Wrong CharPos (%i) \n " , x , outpItems [ x ] . iCharPos ) ;
2011-11-21 05:04:35 +01:00
if ( items [ x ] . isBroken & & broken ( outpItems [ x ] . a . fRTL = = items [ x ] . broken_value [ 1 ] ) )
2017-01-26 10:23:03 +01:00
winetest_win_skip ( " This test broken on this platform: item %d fRTL %d \n " , x , outpItems [ x ] . a . fRTL ) ;
2016-02-17 00:22:21 +01:00
else todo_wine_if ( items [ x ] . todo_flag [ 1 ] )
2010-04-28 16:30:12 +02:00
winetest_ok ( outpItems [ x ] . a . fRTL = = items [ x ] . fRTL , " %i:Wrong fRTL(%i) \n " , x , outpItems [ x ] . a . fRTL ) ;
2011-11-21 05:04:35 +01:00
if ( items [ x ] . isBroken & & broken ( outpItems [ x ] . a . fLayoutRTL = = items [ x ] . broken_value [ 2 ] ) )
2017-01-26 10:23:03 +01:00
winetest_win_skip ( " This test broken on this platform: item %d fLayoutRTL %d \n " , x , outpItems [ x ] . a . fLayoutRTL ) ;
2016-02-17 00:22:21 +01:00
else todo_wine_if ( items [ x ] . todo_flag [ 2 ] )
2010-04-28 16:30:12 +02:00
winetest_ok ( outpItems [ x ] . a . fLayoutRTL = = items [ x ] . fLayoutRTL , " %i:Wrong fLayoutRTL(%i) \n " , x , outpItems [ x ] . a . fLayoutRTL ) ;
2011-11-21 05:04:35 +01:00
if ( items [ x ] . isBroken & & broken ( outpItems [ x ] . a . s . uBidiLevel = = items [ x ] . broken_value [ 3 ] ) )
2017-01-26 10:23:03 +01:00
winetest_win_skip ( " This test broken on this platform: item %d BidiLevel %d \n " , x , outpItems [ x ] . a . s . uBidiLevel ) ;
2016-02-17 00:22:21 +01:00
else todo_wine_if ( items [ x ] . todo_flag [ 3 ] )
2010-04-28 16:30:12 +02:00
winetest_ok ( outpItems [ x ] . a . s . uBidiLevel = = items [ x ] . uBidiLevel , " %i:Wrong BidiLevel(%i) \n " , x , outpItems [ x ] . a . s . uBidiLevel ) ;
2017-01-26 10:23:03 +01:00
if ( items [ x ] . isBroken & & broken ( outpItems [ x ] . a . s . fOverrideDirection = = items [ x ] . broken_value [ 4 ] ) )
winetest_win_skip ( " This test broken on this platform: item %d fOverrideDirection %d \n " , x , outpItems [ x ] . a . s . fOverrideDirection ) ;
else todo_wine_if ( items [ x ] . todo_flag [ 4 ] )
winetest_ok ( outpItems [ x ] . a . s . fOverrideDirection = = items [ x ] . fOverrideDirection , " %i:Wrong fOverrideDirection(%i) \n " , x , outpItems [ x ] . a . s . fOverrideDirection ) ;
2010-09-09 22:27:43 +02:00
if ( x ! = outnItems )
winetest_ok ( outpItems [ x ] . a . eScript ! = SCRIPT_UNDEFINED , " %i: Undefined script \n " , x ) ;
2011-05-10 20:09:57 +02:00
if ( pScriptItemizeOpenType )
{
2017-01-26 10:23:03 +01:00
if ( items [ x ] . isBroken & & broken ( tags [ x ] = = items [ x ] . broken_value [ 5 ] ) )
winetest_win_skip ( " This test broken on this platform: item %d Script Tag %x \n " , x , tags [ x ] ) ;
else todo_wine_if ( items [ x ] . todo_flag [ 5 ] )
2011-05-10 20:09:57 +02:00
winetest_ok ( tags [ x ] = = items [ x ] . scriptTag , " %i:Incorrect Script Tag %x != %x \n " , x , tags [ x ] , items [ x ] . scriptTag ) ;
}
2016-02-05 16:39:14 +01:00
2010-04-28 16:30:12 +02:00
}
}
2010-09-09 18:47:04 +02:00
# define test_items_ok(a,b,c,d,e,f,g,h) (winetest_set_location(__FILE__,__LINE__), 0) ? 0 : _test_items_ok(a,b,c,d,e,f,g,h)
2010-04-28 16:30:12 +02:00
2011-05-10 20:09:57 +02:00
# define MS_MAKE_TAG( _x1, _x2, _x3, _x4 ) \
( ( ( ULONG ) _x4 < < 24 ) | \
( ( ULONG ) _x3 < < 16 ) | \
( ( ULONG ) _x2 < < 8 ) | \
( ULONG ) _x1 )
# define latn_tag MS_MAKE_TAG('l','a','t','n')
# define arab_tag MS_MAKE_TAG('a','r','a','b')
# define thai_tag MS_MAKE_TAG('t','h','a','i')
# define hebr_tag MS_MAKE_TAG('h','e','b','r')
# define syrc_tag MS_MAKE_TAG('s','y','r','c')
2017-03-02 09:38:43 +01:00
# define thaa_tag MS_MAKE_TAG('t','h','a','a')
2011-06-02 21:56:17 +02:00
# define deva_tag MS_MAKE_TAG('d','e','v','a')
2011-06-02 21:56:23 +02:00
# define beng_tag MS_MAKE_TAG('b','e','n','g')
2011-06-02 21:56:30 +02:00
# define guru_tag MS_MAKE_TAG('g','u','r','u')
2011-06-02 21:56:37 +02:00
# define gujr_tag MS_MAKE_TAG('g','u','j','r')
2011-06-02 21:56:43 +02:00
# define orya_tag MS_MAKE_TAG('o','r','y','a')
2011-06-02 21:56:49 +02:00
# define taml_tag MS_MAKE_TAG('t','a','m','l')
2011-06-02 21:56:55 +02:00
# define telu_tag MS_MAKE_TAG('t','e','l','u')
# define knda_tag MS_MAKE_TAG('k','n','d','a')
2011-06-02 21:57:09 +02:00
# define mlym_tag MS_MAKE_TAG('m','l','y','m')
2011-12-09 18:02:30 +01:00
# define mymr_tag MS_MAKE_TAG('m','y','m','r')
2011-12-12 14:31:56 +01:00
# define tale_tag MS_MAKE_TAG('t','a','l','e')
2011-12-12 14:32:10 +01:00
# define talu_tag MS_MAKE_TAG('t','a','l','u')
2011-12-12 14:32:15 +01:00
# define khmr_tag MS_MAKE_TAG('k','h','m','r')
2011-12-12 21:50:12 +01:00
# define hani_tag MS_MAKE_TAG('h','a','n','i')
2011-12-12 21:50:20 +01:00
# define bopo_tag MS_MAKE_TAG('b','o','p','o')
2011-12-12 21:50:29 +01:00
# define kana_tag MS_MAKE_TAG('k','a','n','a')
2011-12-12 21:50:34 +01:00
# define hang_tag MS_MAKE_TAG('h','a','n','g')
2011-12-12 21:50:40 +01:00
# define yi_tag MS_MAKE_TAG('y','i',' ',' ')
2011-12-14 14:27:38 +01:00
# define ethi_tag MS_MAKE_TAG('e','t','h','i')
2011-12-14 14:27:56 +01:00
# define mong_tag MS_MAKE_TAG('m','o','n','g')
2011-12-14 14:28:46 +01:00
# define tfng_tag MS_MAKE_TAG('t','f','n','g')
2011-12-14 14:28:56 +01:00
# define nko_tag MS_MAKE_TAG('n','k','o',' ')
2011-12-14 14:29:03 +01:00
# define vai_tag MS_MAKE_TAG('v','a','i',' ')
2011-12-14 14:29:10 +01:00
# define cher_tag MS_MAKE_TAG('c','h','e','r')
2011-12-14 14:29:19 +01:00
# define cans_tag MS_MAKE_TAG('c','a','n','s')
2011-12-14 14:29:28 +01:00
# define ogam_tag MS_MAKE_TAG('o','g','a','m')
2011-12-14 14:29:39 +01:00
# define runr_tag MS_MAKE_TAG('r','u','n','r')
2011-12-14 14:29:48 +01:00
# define brai_tag MS_MAKE_TAG('b','r','a','i')
2011-12-18 04:27:02 +01:00
# define dsrt_tag MS_MAKE_TAG('d','s','r','t')
2011-12-18 04:27:15 +01:00
# define osma_tag MS_MAKE_TAG('o','s','m','a')
2011-12-19 14:25:17 +01:00
# define math_tag MS_MAKE_TAG('m','a','t','h')
2010-04-28 16:30:12 +02:00
2010-04-13 21:49:07 +02:00
static void test_ScriptItemize ( void )
{
static const WCHAR test1 [ ] = { ' t ' , ' e ' , ' s ' , ' t ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t11 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 } } ;
static const itemTest t12 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-04-28 16:30:12 +02:00
2010-09-09 22:27:43 +02:00
static const WCHAR test1b [ ] = { ' ' , ' ' , ' ' , ' ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t1b1 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t1b2 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-09-09 22:27:43 +02:00
2011-10-21 18:28:54 +02:00
static const WCHAR test1c [ ] = { ' ' , ' ' , ' ' , ' 1 ' , ' 2 ' , ' ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t1c1 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t1c2 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-10-21 18:28:54 +02:00
2010-04-19 14:31:16 +02:00
/* Arabic, English*/
2010-04-13 21:49:07 +02:00
static const WCHAR test2 [ ] = { ' 1 ' , ' 2 ' , ' 3 ' , ' - ' , ' 5 ' , ' 2 ' , 0x064a , 0x064f , 0x0633 , 0x0627 , 0x0648 , 0x0650 , 0x064a , ' 7 ' , ' 1 ' , ' . ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t21 [ 7 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 15 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 16 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t22 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 15 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 16 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t23 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 15 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 16 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t24 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 15 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 16 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-04-28 16:30:12 +02:00
2010-09-09 18:47:04 +02:00
static const WCHAR test2b [ ] = { ' A ' , ' B ' , ' C ' , ' - ' , ' D ' , ' E ' , ' F ' , ' ' , 0x0621 , 0x0623 , 0x0624 , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t2b1 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2b2 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2b3 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2b4 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:47 +01:00
static const int b2 [ 2 ] = { 4 , 4 } ;
2010-09-09 18:47:04 +02:00
2010-09-09 22:27:43 +02:00
/* leading space */
static const WCHAR test2c [ ] = { ' ' , 0x0621 , 0x0623 , 0x0624 , ' A ' , ' B ' , ' C ' , ' - ' , ' D ' , ' E ' , ' F ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t2c1 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2c2 [ 6 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 1 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2c3 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2c4 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2c5 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-09-09 22:27:43 +02:00
/* trailing space */
static const WCHAR test2d [ ] = { ' A ' , ' B ' , ' C ' , ' - ' , ' D ' , ' E ' , ' F ' , 0x0621 , 0x0623 , 0x0624 , ' ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t2d1 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2d2 [ 6 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2d3 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2d4 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t2d5 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-09-09 22:27:43 +02:00
2010-04-19 14:31:16 +02:00
/* Thai */
2010-04-13 21:49:07 +02:00
static const WCHAR test3 [ ] =
{ 0x0e04 , 0x0e27 , 0x0e32 , 0x0e21 , 0x0e1e , 0x0e22 , 0x0e32 , 0x0e22 , 0x0e32 , 0x0e21
, 0x0e2d , 0x0e22 , 0x0e39 , 0x0e48 , 0x0e17 , 0x0e35 , 0x0e48 , 0x0e44 , 0x0e2b , 0x0e19
, 0x0e04 , 0x0e27 , 0x0e32 , 0x0e21 , 0x0e2a , 0x0e33 , 0x0e40 , 0x0e23 , 0x0e47 , 0x0e08 ,
0x0e2d , 0x0e22 , 0x0e39 , 0x0e48 , 0x0e17 , 0x0e35 , 0x0e48 , 0x0e19 , 0x0e31 , 0x0e48 , 0x0e19 , 0 } ;
2010-04-28 16:30:12 +02:00
2016-02-05 16:39:14 +01:00
static const itemTest t31 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , thai_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 41 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t32 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , thai_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 41 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-04-28 16:30:12 +02:00
2010-04-13 21:49:07 +02:00
static const WCHAR test4 [ ] = { ' 1 ' , ' 2 ' , ' 3 ' , ' - ' , ' 5 ' , ' 2 ' , ' ' , ' i ' , ' s ' , ' ' , ' 7 ' , ' 1 ' , ' . ' , 0 } ;
2010-04-28 16:30:12 +02:00
2016-02-05 16:39:14 +01:00
static const itemTest t41 [ 6 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 12 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t42 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 12 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t43 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 12 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:47 +01:00
static const int b43 [ 2 ] = { 4 , 4 } ;
2010-04-28 16:30:12 +02:00
2010-04-19 14:31:16 +02:00
/* Arabic */
2010-04-13 21:49:07 +02:00
static const WCHAR test5 [ ] =
{ 0x0627 , 0x0644 , 0x0635 , 0x0651 , 0x0650 , 0x062d , 0x0629 , 0x064f , ' ' , 0x062a , 0x064e ,
0x0627 , 0x062c , 0x064c , ' ' , 0x0639 , 0x064e , 0x0644 , 0x0649 , ' ' ,
0x0631 , 0x064f , 0x0624 , 0x0648 , 0x0633 , 0x0650 , ' ' , 0x0627 , 0x0644
, 0x0623 , 0x0635 , 0x0650 , 0x062d , 0x0651 , 0x064e , 0x0627 , 0x0621 , 0x0650 , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t51 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 38 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t52 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 38 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-04-19 14:31:16 +02:00
/* Hebrew */
static const WCHAR test6 [ ] = { 0x05e9 , 0x05dc , 0x05d5 , 0x05dd , ' . ' , 0 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t61 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , TRUE , { - 1 , 0 , 0 , 0 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-05 16:39:14 +01:00
static const itemTest t62 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t63 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t64 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:47 +01:00
static const int b63 [ 2 ] = { 2 , 2 } ;
2010-04-19 14:31:16 +02:00
static const WCHAR test7 [ ] = { ' p ' , ' a ' , ' r ' , ' t ' , ' ' , ' o ' , ' n ' , ' e ' , ' ' , 0x05d7 , 0x05dc , 0x05e7 , ' ' , 0x05e9 , 0x05ea , 0x05d9 , 0x05d9 , 0x05dd , ' ' , ' p ' , ' a ' , ' r ' , ' t ' , ' ' , ' t ' , ' h ' , ' r ' , ' e ' , ' e ' , 0 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t71 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 9 , 1 , 1 , 1 , 0 , hebr_tag , TRUE , { - 1 , 0 , 0 , 0 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 19 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 29 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-05 16:39:14 +01:00
static const itemTest t72 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 9 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 18 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 29 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t73 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 19 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 29 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t74 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 9 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 19 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 29 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-04-19 14:31:16 +02:00
static const WCHAR test8 [ ] = { 0x0633 , 0x0644 , 0x0627 , 0x0645 , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t81 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t82 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-04-19 14:31:16 +02:00
2010-04-19 14:31:28 +02:00
/* Syriac (Like Arabic )*/
static const WCHAR test9 [ ] = { 0x0710 , 0x0712 , 0x0712 , 0x0714 , ' . ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t91 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , syrc_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t92 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , syrc_tag } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t93 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , syrc_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t94 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , syrc_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:47 +01:00
static const int b93 [ 2 ] = { 2 , 2 } ;
2010-04-28 16:30:12 +02:00
2010-04-19 14:31:28 +02:00
static const WCHAR test10 [ ] = { 0x0717 , 0x0718 , 0x071a , 0x071b , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t101 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , syrc_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t102 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , syrc_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2010-04-19 14:31:28 +02:00
2011-06-02 21:56:17 +02:00
/* Devanagari */
static const WCHAR test11 [ ] = { 0x0926 , 0x0947 , 0x0935 , 0x0928 , 0x093e , 0x0917 , 0x0930 , 0x0940 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t111 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , deva_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t112 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , deva_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:56:17 +02:00
2011-06-02 21:56:23 +02:00
/* Bengali */
static const WCHAR test12 [ ] = { 0x09ac , 0x09be , 0x0982 , 0x09b2 , 0x09be } ;
2016-02-05 16:39:14 +01:00
static const itemTest t121 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , beng_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t122 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , beng_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:56:23 +02:00
2011-06-02 21:56:30 +02:00
/* Gurmukhi */
static const WCHAR test13 [ ] = { 0x0a17 , 0x0a41 , 0x0a30 , 0x0a2e , 0x0a41 , 0x0a16 , 0x0a40 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t131 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , guru_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t132 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , guru_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:56:30 +02:00
2011-06-02 21:56:37 +02:00
/* Gujarati */
static const WCHAR test14 [ ] = { 0x0a97 , 0x0ac1 , 0x0a9c , 0x0ab0 , 0x0abe , 0x0aa4 , 0x0ac0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t141 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , gujr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t142 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , gujr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:56:37 +02:00
2011-06-02 21:56:43 +02:00
/* Oriya */
static const WCHAR test15 [ ] = { 0x0b13 , 0x0b21 , 0x0b3c , 0x0b3f , 0x0b06 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t151 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , orya_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t152 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , orya_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:56:37 +02:00
2011-06-02 21:56:49 +02:00
/* Tamil */
static const WCHAR test16 [ ] = { 0x0ba4 , 0x0bae , 0x0bbf , 0x0bb4 , 0x0bcd } ;
2016-02-05 16:39:14 +01:00
static const itemTest t161 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , taml_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t162 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , taml_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:56:30 +02:00
2011-06-02 21:56:55 +02:00
/* Telugu */
static const WCHAR test17 [ ] = { 0x0c24 , 0x0c46 , 0x0c32 , 0x0c41 , 0x0c17 , 0x0c41 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t171 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , telu_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t172 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , telu_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:56:55 +02:00
2011-06-02 21:57:04 +02:00
/* Kannada */
static const WCHAR test18 [ ] = { 0x0c95 , 0x0ca8 , 0x0ccd , 0x0ca8 , 0x0ca1 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t181 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , knda_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t182 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , knda_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:57:04 +02:00
2011-06-02 21:57:09 +02:00
/* Malayalam */
static const WCHAR test19 [ ] = { 0x0d2e , 0x0d32 , 0x0d2f , 0x0d3e , 0x0d33 , 0x0d02 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t191 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , mlym_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t192 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , mlym_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-06-02 21:57:09 +02:00
2011-11-21 05:05:00 +01:00
/* Diacritical */
static const WCHAR test20 [ ] = { 0x0309 , ' a ' , ' b ' , ' c ' , ' d ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t201 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0x0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 1 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t202 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , 0 , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 1 , 0 , 0 , 2 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-11-21 05:05:00 +01:00
static const WCHAR test21 [ ] = { 0x0710 , 0x0712 , 0x0308 , 0x0712 , 0x0714 , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t211 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , syrc_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t212 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , syrc_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-11-21 05:05:00 +01:00
2011-11-21 05:05:22 +01:00
/* Latin Punctuation */
static const WCHAR test22 [ ] = { ' # ' , ' $ ' , ' , ' , ' ! ' , ' \" ' , ' * ' , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t221 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t222 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t223 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:47 +01:00
static const int b222 [ 2 ] = { 1 , 1 } ;
static const int b223 [ 2 ] = { 2 , 2 } ;
2011-11-21 05:05:22 +01:00
2011-11-21 05:05:45 +01:00
/* Number 2*/
static const WCHAR test23 [ ] = { ' 1 ' , ' 2 ' , ' 3 ' , 0x00b2 , 0x00b3 , 0x2070 , 0 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t231 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t232 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-11-21 05:05:45 +01:00
2011-12-09 18:02:30 +01:00
/* Myanmar */
static const WCHAR test24 [ ] = { 0x1019 , 0x103c , 0x1014 , 0x103a , 0x1019 , 0x102c , 0x1021 , 0x1000 , 0x1039 , 0x1001 , 0x101b , 0x102c } ;
2016-02-05 16:39:14 +01:00
static const itemTest t241 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , mymr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 12 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t242 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , mymr_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 12 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-09 18:02:30 +01:00
2011-12-12 14:31:56 +01:00
/* Tai Le */
static const WCHAR test25 [ ] = { 0x1956 , 0x196d , 0x1970 , 0x1956 , 0x196c , 0x1973 , 0x1951 , 0x1968 , 0x1952 , 0x1970 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t251 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , tale_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t252 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , tale_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-12 14:31:56 +01:00
2011-12-12 14:32:10 +01:00
/* New Tai Lue */
static const WCHAR test26 [ ] = { 0x1992 , 0x19c4 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t261 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , talu_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t262 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , talu_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-12 14:32:10 +01:00
2011-12-12 14:32:15 +01:00
/* Khmer */
static const WCHAR test27 [ ] = { 0x1781 , 0x17c1 , 0x1798 , 0x179a , 0x1797 , 0x17b6 , 0x179f , 0x17b6 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t271 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , khmr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t272 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , khmr_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-12 14:31:56 +01:00
2011-12-12 21:50:12 +01:00
/* CJK Han */
static const WCHAR test28 [ ] = { 0x8bed , 0x7d20 , 0x6587 , 0x5b57 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t281 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , hani_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t282 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , hani_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-12 21:50:12 +01:00
/* Ideographic */
static const WCHAR test29 [ ] = { 0x2ff0 , 0x2ff3 , 0x2ffb , 0x2ff0 , 0x65e5 , 0x65e5 , 0x5de5 , 0x7f51 , 0x4e02 , 0x4e5e } ;
2016-02-05 16:39:14 +01:00
static const itemTest t291 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , hani_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , hani_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t292 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hani_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 2 , 0 , hani_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-11-21 05:05:22 +01:00
2011-12-12 21:50:20 +01:00
/* Bopomofo */
static const WCHAR test30 [ ] = { 0x3113 , 0x3128 , 0x3127 , 0x3123 , 0x3108 , 0x3128 , 0x310f , 0x3120 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t301 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , bopo_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t302 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , bopo_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-12 21:50:20 +01:00
2011-12-12 21:50:29 +01:00
/* Kana */
static const WCHAR test31 [ ] = { 0x3072 , 0x3089 , 0x304b , 0x306a , 0x30ab , 0x30bf , 0x30ab , 0x30ca } ;
2016-02-05 16:39:14 +01:00
static const itemTest t311 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , kana_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t312 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , kana_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:47 +01:00
static const int b311 [ 2 ] = { 2 , 2 } ;
static const int b312 [ 2 ] = { 2 , 2 } ;
2011-12-12 21:50:29 +01:00
2011-12-12 21:50:34 +01:00
/* Hangul */
static const WCHAR test32 [ ] = { 0xd55c , 0xad6d , 0xc5b4 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t321 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , hang_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t322 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , hang_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-12 21:50:34 +01:00
2011-12-12 21:50:40 +01:00
/* Yi */
static const WCHAR test33 [ ] = { 0xa188 , 0xa320 , 0xa071 , 0xa0b7 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t331 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , yi_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t332 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , yi_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-12 21:50:40 +01:00
2011-12-14 14:27:38 +01:00
/* Ethiopic */
static const WCHAR test34 [ ] = { 0x130d , 0x12d5 , 0x12dd } ;
2016-02-05 16:39:14 +01:00
static const itemTest t341 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , ethi_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t342 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , ethi_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:47 +01:00
static const int b342 [ 2 ] = { 2 , 2 } ;
2011-12-14 14:27:38 +01:00
2011-12-14 14:27:56 +01:00
/* Mongolian */
static const WCHAR test35 [ ] = { 0x182e , 0x1823 , 0x1829 , 0x182d , 0x1823 , 0x182f , 0x0020 , 0x182a , 0x1822 , 0x1834 , 0x1822 , 0x182d , 0x180c } ;
2016-02-05 16:39:14 +01:00
static const itemTest t351 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , mong_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:56 +01:00
static const int b351 [ 2 ] = { 2 , 2 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t352 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , mong_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:56 +01:00
static const int b352 [ 2 ] = { 2 , 3 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t353 [ 2 ] = { { { 0 , 0 , 0 , 0 , 1 , 0 } , 0 , 0 , 0 , 0 , 1 , mong_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , 0 , 0 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:27:56 +01:00
2011-12-14 14:28:46 +01:00
/* Tifinagh */
static const WCHAR test36 [ ] = { 0x2d5c , 0x2d49 , 0x2d3c , 0x2d49 , 0x2d4f , 0x2d30 , 0x2d56 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t361 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , tfng_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t362 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , tfng_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:28:46 +01:00
2011-12-14 14:28:56 +01:00
/* N'Ko */
static const WCHAR test37 [ ] = { 0x07d2 , 0x07de , 0x07cf } ;
2017-01-26 10:23:03 +01:00
static const itemTest t371 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , nko_tag , TRUE , { - 1 , 0 , 0 , 0 , - 1 , arab_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t372 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , nko_tag , TRUE , { - 1 , 0 , 0 , 2 , - 1 , arab_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t373 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , nko_tag , TRUE , { - 1 , - 1 , - 1 , 2 , 0 , arab_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:28:56 +01:00
2011-12-14 14:29:03 +01:00
/* Vai */
static const WCHAR test38 [ ] = { 0xa559 , 0xa524 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t381 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , vai_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t382 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , vai_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , latn_tag } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:29:03 +01:00
2011-12-14 14:29:10 +01:00
/* Cherokee */
static const WCHAR test39 [ ] = { 0x13e3 , 0x13b3 , 0x13a9 , 0x0020 , 0x13a6 , 0x13ec , 0x13c2 , 0x13af , 0x13cd , 0x13d7 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t391 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , cher_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t392 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , cher_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:29:10 +01:00
2011-12-14 14:29:19 +01:00
/* Canadian Aboriginal Syllabics */
static const WCHAR test40 [ ] = { 0x1403 , 0x14c4 , 0x1483 , 0x144e , 0x1450 , 0x1466 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t401 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , cans_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t402 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , cans_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:29:19 +01:00
2011-12-14 14:29:28 +01:00
/* Ogham */
static const WCHAR test41 [ ] = { 0x169b , 0x1691 , 0x168c , 0x1690 , 0x168b , 0x169c } ;
2016-02-05 16:39:14 +01:00
static const itemTest t411 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , ogam_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t412 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , ogam_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 1 , 0 , 0 , 2 , 0 , ogam_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 1 , 1 , 1 , 0 , ogam_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:29:28 +01:00
static const int b412 [ 2 ] = { 1 , 1 } ;
2011-12-14 14:29:39 +01:00
/* Runic */
static const WCHAR test42 [ ] = { 0x16a0 , 0x16a1 , 0x16a2 , 0x16a3 , 0x16a4 , 0x16a5 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t421 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , runr_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t422 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , runr_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:29:39 +01:00
2011-12-14 14:29:48 +01:00
/* Braille */
static const WCHAR test43 [ ] = { 0x280f , 0x2817 , 0x2811 , 0x280d , 0x280a , 0x2811 , 0x2817 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t431 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , brai_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t432 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , brai_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:29:48 +01:00
2011-12-14 14:29:54 +01:00
/* Private and Surrogates Area */
static const WCHAR test44 [ ] = { 0xe000 , 0xe001 , 0xd800 , 0xd801 } ;
2016-02-05 16:39:14 +01:00
static const itemTest t441 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t442 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , 0 , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 2 , 0 , 0 , TRUE , { - 1 , 1 , 1 , 1 , - 1 , - 1 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-14 14:29:54 +01:00
2011-12-18 04:27:02 +01:00
/* Deseret */
static const WCHAR test45 [ ] = { 0xd801 , 0xdc19 , 0xd801 , 0xdc32 , 0xd801 , 0xdc4c , 0xd801 , 0xdc3c , 0xd801 , 0xdc32 , 0xd801 , 0xdc4b , 0xd801 , 0xdc2f , 0xd801 , 0xdc4c , 0xd801 , 0xdc3b , 0xd801 , 0xdc32 , 0xd801 , 0xdc4a , 0xd801 , 0xdc28 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t451 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , dsrt_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , - 1 , 0x0 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 24 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t452 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , dsrt_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , 0x0 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 24 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-18 04:27:02 +01:00
2011-12-18 04:27:15 +01:00
/* Osmanya */
static const WCHAR test46 [ ] = { 0xd801 , 0xdc8b , 0xd801 , 0xdc98 , 0xd801 , 0xdc88 , 0xd801 , 0xdc91 , 0xd801 , 0xdc9b , 0xd801 , 0xdc92 , 0xd801 , 0xdc95 , 0xd801 , 0xdc80 } ;
2017-01-26 10:23:03 +01:00
static const itemTest t461 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , osma_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , - 1 , 0x0 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 16 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t462 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , osma_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , 0x0 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 16 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-18 04:27:15 +01:00
2011-12-19 14:25:17 +01:00
/* Mathematical Alphanumeric Symbols */
static const WCHAR test47 [ ] = { 0xd835 , 0xdc00 , 0xd835 , 0xdc35 , 0xd835 , 0xdc6a , 0xd835 , 0xdc9f , 0xd835 , 0xdcd4 , 0xd835 , 0xdd09 , 0xd835 , 0xdd3e , 0xd835 , 0xdd73 , 0xd835 , 0xdda8 , 0xd835 , 0xdddd , 0xd835 , 0xde12 , 0xd835 , 0xde47 , 0xd835 , 0xde7c } ;
2017-01-26 10:23:03 +01:00
static const itemTest t471 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 0 , math_tag , TRUE , { - 1 , - 1 , - 1 , - 1 , - 1 , 0x0 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 26 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t472 [ 2 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , math_tag , TRUE , { - 1 , 1 , 1 , 1 , - 1 , 0x0 } } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 26 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2011-12-19 14:25:17 +01:00
2016-02-03 19:55:30 +01:00
/* Mathematical and Numeric combinations */
/* These have a leading hebrew character to force complicated itemization */
static const WCHAR test48 [ ] = { 0x05e9 , ' ' , ' 1 ' , ' 2 ' , ' 3 ' , ' . ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t481 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t482 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
static const WCHAR test49 [ ] = { 0x05e9 , ' ' , ' 1 ' , ' 2 ' , ' . ' , ' 1 ' , ' 2 ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t491 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t492 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
static const WCHAR test50 [ ] = { 0x05e9 , ' ' , ' . ' , ' 1 ' , ' 2 ' , ' 3 ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t501 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 2 , 1 , 1 , 1 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 1 , 2 , 0 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t502 [ 4 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
static const WCHAR test51 [ ] = { 0x05e9 , ' ' , ' a ' , ' b ' , ' . ' , ' 1 ' , ' 2 ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t511 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 1 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t512 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
static const WCHAR test52 [ ] = { 0x05e9 , ' ' , ' 1 ' , ' 2 ' , ' . ' , ' a ' , ' b ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t521 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 0 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 0 , latn_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t522 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 5 , 0 , 0 , 0 , 1 , latn_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
static const WCHAR test53 [ ] = { 0x05e9 , ' ' , ' 1 ' , ' 2 ' , ' . ' , ' . ' , ' 1 ' , ' 2 ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t531 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 4 , 1 , 1 , 1 , 0 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t532 [ 5 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 4 , 0 , 0 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
static const WCHAR test54 [ ] = { 0x05e9 , ' ' , ' 1 ' , ' 2 ' , ' + ' , ' 1 ' , ' 2 ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t541 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t542 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
static const WCHAR test55 [ ] = { 0x05e9 , ' ' , ' 1 ' , ' 2 ' , ' + ' , ' + ' , ' 1 ' , ' 2 ' } ;
2016-02-05 16:39:14 +01:00
static const itemTest t551 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , 0 , FALSE } , { { 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t552 [ 3 ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , hebr_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 0 , 1 , 0 , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 8 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-02-03 19:55:30 +01:00
2016-05-18 18:43:18 +02:00
/* ZWNJ */
static const WCHAR test56 [ ] = { 0x0645 , 0x06cc , 0x200c , 0x06a9 , 0x0646 , 0x0645 } ; /* میکنم */
static const itemTest t561 [ ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 1 , 1 , 1 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
static const itemTest t562 [ ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-06-05 20:05:25 +02:00
/* Persian numerals and punctuation. */
static const WCHAR test57 [ ] = { 0x06f1 , 0x06f2 , 0x066c , 0x06f3 , 0x06f4 , 0x06f5 , 0x066c , /* ۱۲٬۳۴۵٬ */
0x06f6 , 0x06f7 , 0x06f8 , 0x066b , 0x06f9 , 0x06f0 } ; /* ۶۷۸٫۹۰ */
2016-06-07 21:18:36 +02:00
static const itemTest t571 [ ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 1 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 1 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 1 , 2 , 0 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 1 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 1 , 2 , 0 , arab_tag , FALSE } ,
2016-06-05 20:05:28 +02:00
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 1 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-06-05 20:05:29 +02:00
static const itemTest t572 [ ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 1 , 0 , 0 , 0 } , 2 , 0 , 1 , 2 , 0 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 1 , 0 , 0 , 0 } , 6 , 0 , 1 , 2 , 0 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 1 , 0 , 0 , 0 } , 10 , 0 , 1 , 2 , 0 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 2 , 0 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-06-05 20:05:26 +02:00
static const itemTest t573 [ ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 0 , 0 , 1 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 2 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 3 , 0 , 0 , 0 , 1 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 6 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 7 , 0 , 0 , 0 , 1 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 10 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 11 , 0 , 0 , 0 , 1 , arab_tag , FALSE } , { { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-06-07 21:18:33 +02:00
/* Arabic numerals and punctuation. */
static const WCHAR test58 [ ] = { 0x0661 , 0x0662 , 0x066c , 0x0663 , 0x0664 , 0x0665 , 0x066c , /* ١٢٬٣٤٥٬ */
0x0666 , 0x0667 , 0x0668 , 0x066b , 0x0669 , 0x0660 } ; /* ٦٧٨٫٩٠ */
2016-06-07 21:18:36 +02:00
static const itemTest t581 [ ] = { { { 0 , 0 , 0 , 0 , 0 , 0 } , 0 , 0 , 1 , 2 , 0 , arab_tag , FALSE } ,
2016-06-07 21:18:34 +02:00
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2017-01-26 10:23:03 +01:00
static const itemTest t582 [ ] = { { { 0 , 0 , 1 , 1 , 1 , 0 } , 0 , 0 , 0 , 0 , 1 , arab_tag , FALSE } ,
2016-06-07 21:18:34 +02:00
{ { 0 , 0 , 0 , 0 , 0 , 0 } , 13 , 0 , 0 , 0 , 0 , - 1 , FALSE } } ;
2016-06-05 20:05:25 +02:00
2010-04-19 14:31:16 +02:00
SCRIPT_ITEM items [ 15 ] ;
2010-04-13 21:49:07 +02:00
SCRIPT_CONTROL Control ;
SCRIPT_STATE State ;
HRESULT hr ;
2011-05-10 20:09:57 +02:00
HMODULE usp10 ;
2010-04-13 21:49:07 +02:00
int nItems ;
2011-05-10 20:09:57 +02:00
usp10 = LoadLibraryA ( " usp10.dll " ) ;
2011-05-15 11:30:44 +02:00
ok ( usp10 ! = 0 , " Unable to LoadLibrary on usp10.dll \n " ) ;
2011-05-10 20:09:57 +02:00
pScriptItemizeOpenType = ( void * ) GetProcAddress ( usp10 , " ScriptItemizeOpenType " ) ;
2011-05-17 22:05:39 +02:00
pScriptShapeOpenType = ( void * ) GetProcAddress ( usp10 , " ScriptShapeOpenType " ) ;
2011-05-27 12:19:35 +02:00
pGetGlyphIndicesW = ( void * ) GetProcAddress ( GetModuleHandleA ( " gdi32.dll " ) , " GetGlyphIndicesW " ) ;
2011-05-10 20:09:57 +02:00
2010-04-13 21:49:07 +02:00
memset ( & Control , 0 , sizeof ( Control ) ) ;
memset ( & State , 0 , sizeof ( State ) ) ;
hr = ScriptItemize ( NULL , 4 , 10 , & Control , & State , items , NULL ) ;
ok ( hr = = E_INVALIDARG , " ScriptItemize should return E_INVALIDARG if pwcInChars is NULL \n " ) ;
hr = ScriptItemize ( test1 , 4 , 10 , & Control , & State , NULL , NULL ) ;
ok ( hr = = E_INVALIDARG , " ScriptItemize should return E_INVALIDARG if pItems is NULL \n " ) ;
hr = ScriptItemize ( test1 , 4 , 1 , & Control , & State , items , NULL ) ;
2010-06-22 17:50:48 +02:00
ok ( hr = = E_INVALIDARG , " ScriptItemize should return E_INVALIDARG if cMaxItems < 2. \n " ) ;
2010-04-13 21:49:07 +02:00
hr = ScriptItemize ( test1 , 0 , 10 , NULL , NULL , items , & nItems ) ;
ok ( hr = = E_INVALIDARG , " ScriptItemize should return E_INVALIDARG if cInChars is 0 \n " ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test1 , 4 , NULL , NULL , 1 , t11 , FALSE , 0 ) ;
2010-09-09 22:27:43 +02:00
test_items_ok ( test1b , 4 , NULL , NULL , 1 , t1b1 , FALSE , 0 ) ;
2011-10-21 18:28:54 +02:00
test_items_ok ( test1c , 6 , NULL , NULL , 1 , t1c1 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test2 , 16 , NULL , NULL , 6 , t21 , FALSE , 0 ) ;
test_items_ok ( test2b , 11 , NULL , NULL , 4 , t2b1 , FALSE , 0 ) ;
2010-09-09 22:27:43 +02:00
test_items_ok ( test2c , 11 , NULL , NULL , 4 , t2c1 , FALSE , 0 ) ;
test_items_ok ( test2d , 11 , NULL , NULL , 4 , t2d1 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test3 , 41 , NULL , NULL , 1 , t31 , FALSE , 0 ) ;
test_items_ok ( test4 , 12 , NULL , NULL , 5 , t41 , FALSE , 0 ) ;
test_items_ok ( test5 , 38 , NULL , NULL , 1 , t51 , FALSE , 0 ) ;
test_items_ok ( test6 , 5 , NULL , NULL , 2 , t61 , FALSE , 0 ) ;
test_items_ok ( test7 , 29 , NULL , NULL , 3 , t71 , FALSE , 0 ) ;
test_items_ok ( test8 , 4 , NULL , NULL , 1 , t81 , FALSE , 0 ) ;
test_items_ok ( test9 , 5 , NULL , NULL , 2 , t91 , FALSE , 0 ) ;
test_items_ok ( test10 , 4 , NULL , NULL , 1 , t101 , FALSE , 0 ) ;
2011-06-02 21:56:17 +02:00
test_items_ok ( test11 , 8 , NULL , NULL , 1 , t111 , FALSE , 0 ) ;
2011-06-02 21:56:23 +02:00
test_items_ok ( test12 , 5 , NULL , NULL , 1 , t121 , FALSE , 0 ) ;
2011-06-02 21:56:30 +02:00
test_items_ok ( test13 , 7 , NULL , NULL , 1 , t131 , FALSE , 0 ) ;
2011-06-02 21:56:37 +02:00
test_items_ok ( test14 , 7 , NULL , NULL , 1 , t141 , FALSE , 0 ) ;
2011-06-02 21:56:43 +02:00
test_items_ok ( test15 , 5 , NULL , NULL , 1 , t151 , FALSE , 0 ) ;
2011-06-02 21:56:49 +02:00
test_items_ok ( test16 , 5 , NULL , NULL , 1 , t161 , FALSE , 0 ) ;
2011-06-02 21:56:55 +02:00
test_items_ok ( test17 , 6 , NULL , NULL , 1 , t171 , FALSE , 0 ) ;
2011-06-02 21:57:04 +02:00
test_items_ok ( test18 , 5 , NULL , NULL , 1 , t181 , FALSE , 0 ) ;
2011-06-02 21:57:09 +02:00
test_items_ok ( test19 , 6 , NULL , NULL , 1 , t191 , FALSE , 0 ) ;
2011-11-21 05:05:00 +01:00
test_items_ok ( test20 , 5 , NULL , NULL , 2 , t201 , FALSE , 0 ) ;
test_items_ok ( test21 , 5 , NULL , NULL , 1 , t211 , FALSE , 0 ) ;
2011-11-21 05:05:22 +01:00
test_items_ok ( test22 , 6 , NULL , NULL , 2 , t221 , FALSE , 0 ) ;
2011-11-21 05:05:45 +01:00
test_items_ok ( test23 , 6 , NULL , NULL , 2 , t231 , FALSE , 0 ) ;
2011-12-09 18:02:30 +01:00
test_items_ok ( test24 , 12 , NULL , NULL , 1 , t241 , FALSE , 0 ) ;
2011-12-12 14:31:56 +01:00
test_items_ok ( test25 , 10 , NULL , NULL , 1 , t251 , FALSE , 0 ) ;
2011-12-12 14:32:10 +01:00
test_items_ok ( test26 , 2 , NULL , NULL , 1 , t261 , FALSE , 0 ) ;
2011-12-12 14:32:15 +01:00
test_items_ok ( test27 , 8 , NULL , NULL , 1 , t271 , FALSE , 0 ) ;
2011-12-12 21:50:12 +01:00
test_items_ok ( test28 , 4 , NULL , NULL , 1 , t281 , FALSE , 0 ) ;
test_items_ok ( test29 , 10 , NULL , NULL , 2 , t291 , FALSE , 0 ) ;
2011-12-12 21:50:20 +01:00
test_items_ok ( test30 , 8 , NULL , NULL , 1 , t301 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test31 , 8 , NULL , NULL , 1 , t311 , FALSE , b311 ) ;
2011-12-12 21:50:34 +01:00
test_items_ok ( test32 , 3 , NULL , NULL , 1 , t321 , FALSE , 0 ) ;
2011-12-12 21:50:40 +01:00
test_items_ok ( test33 , 4 , NULL , NULL , 1 , t331 , FALSE , 0 ) ;
2011-12-14 14:27:38 +01:00
test_items_ok ( test34 , 3 , NULL , NULL , 1 , t341 , FALSE , 0 ) ;
2011-12-14 14:27:56 +01:00
test_items_ok ( test35 , 13 , NULL , NULL , 1 , t351 , FALSE , b351 ) ;
2011-12-14 14:28:46 +01:00
test_items_ok ( test36 , 7 , NULL , NULL , 1 , t361 , FALSE , 0 ) ;
2011-12-14 14:28:56 +01:00
test_items_ok ( test37 , 3 , NULL , NULL , 1 , t371 , FALSE , 0 ) ;
2011-12-14 14:29:03 +01:00
test_items_ok ( test38 , 2 , NULL , NULL , 1 , t381 , FALSE , 0 ) ;
2011-12-14 14:29:10 +01:00
test_items_ok ( test39 , 10 , NULL , NULL , 1 , t391 , FALSE , 0 ) ;
2011-12-14 14:29:19 +01:00
test_items_ok ( test40 , 6 , NULL , NULL , 1 , t401 , FALSE , 0 ) ;
2011-12-14 14:29:28 +01:00
test_items_ok ( test41 , 6 , NULL , NULL , 1 , t411 , FALSE , 0 ) ;
2011-12-14 14:29:39 +01:00
test_items_ok ( test42 , 6 , NULL , NULL , 1 , t421 , FALSE , 0 ) ;
2011-12-14 14:29:48 +01:00
test_items_ok ( test43 , 7 , NULL , NULL , 1 , t431 , FALSE , 0 ) ;
2011-12-14 14:29:54 +01:00
test_items_ok ( test44 , 4 , NULL , NULL , 2 , t441 , FALSE , 0 ) ;
2011-12-18 04:27:02 +01:00
test_items_ok ( test45 , 24 , NULL , NULL , 1 , t451 , FALSE , 0 ) ;
2011-12-18 04:27:15 +01:00
test_items_ok ( test46 , 16 , NULL , NULL , 1 , t461 , FALSE , 0 ) ;
2011-12-19 14:25:17 +01:00
test_items_ok ( test47 , 26 , NULL , NULL , 1 , t471 , FALSE , 0 ) ;
2016-05-18 18:43:18 +02:00
test_items_ok ( test56 , 6 , NULL , NULL , 1 , t561 , FALSE , 0 ) ;
2016-06-05 20:05:25 +02:00
test_items_ok ( test57 , 13 , NULL , NULL , 7 , t571 , FALSE , 0 ) ;
2016-06-07 21:18:34 +02:00
test_items_ok ( test58 , 13 , NULL , NULL , 1 , t581 , FALSE , 0 ) ;
2010-04-19 14:31:28 +02:00
State . uBidiLevel = 0 ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test1 , 4 , & Control , & State , 1 , t11 , FALSE , 0 ) ;
2010-09-09 22:27:43 +02:00
test_items_ok ( test1b , 4 , & Control , & State , 1 , t1b1 , FALSE , 0 ) ;
2011-10-21 18:28:54 +02:00
test_items_ok ( test1c , 6 , & Control , & State , 1 , t1c1 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test2 , 16 , & Control , & State , 4 , t22 , FALSE , 0 ) ;
test_items_ok ( test2b , 11 , & Control , & State , 4 , t2b1 , FALSE , 0 ) ;
2010-09-09 22:27:43 +02:00
test_items_ok ( test2c , 11 , & Control , & State , 5 , t2c2 , FALSE , 0 ) ;
test_items_ok ( test2d , 11 , & Control , & State , 5 , t2d2 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test3 , 41 , & Control , & State , 1 , t31 , FALSE , 0 ) ;
test_items_ok ( test4 , 12 , & Control , & State , 5 , t41 , FALSE , 0 ) ;
test_items_ok ( test5 , 38 , & Control , & State , 1 , t51 , FALSE , 0 ) ;
test_items_ok ( test6 , 5 , & Control , & State , 2 , t61 , FALSE , 0 ) ;
test_items_ok ( test7 , 29 , & Control , & State , 3 , t72 , FALSE , 0 ) ;
test_items_ok ( test8 , 4 , & Control , & State , 1 , t81 , FALSE , 0 ) ;
test_items_ok ( test9 , 5 , & Control , & State , 2 , t91 , FALSE , 0 ) ;
test_items_ok ( test10 , 4 , & Control , & State , 1 , t101 , FALSE , 0 ) ;
2011-06-02 21:56:17 +02:00
test_items_ok ( test11 , 8 , & Control , & State , 1 , t111 , FALSE , 0 ) ;
2011-06-02 21:56:23 +02:00
test_items_ok ( test12 , 5 , & Control , & State , 1 , t121 , FALSE , 0 ) ;
2011-06-02 21:56:30 +02:00
test_items_ok ( test13 , 7 , & Control , & State , 1 , t131 , FALSE , 0 ) ;
2011-06-02 21:56:37 +02:00
test_items_ok ( test14 , 7 , & Control , & State , 1 , t141 , FALSE , 0 ) ;
2011-06-02 21:56:43 +02:00
test_items_ok ( test15 , 5 , & Control , & State , 1 , t151 , FALSE , 0 ) ;
2011-06-02 21:56:49 +02:00
test_items_ok ( test16 , 5 , & Control , & State , 1 , t161 , FALSE , 0 ) ;
2011-06-02 21:56:55 +02:00
test_items_ok ( test17 , 6 , & Control , & State , 1 , t171 , FALSE , 0 ) ;
2011-06-02 21:57:04 +02:00
test_items_ok ( test18 , 5 , & Control , & State , 1 , t181 , FALSE , 0 ) ;
2011-06-02 21:57:09 +02:00
test_items_ok ( test19 , 6 , & Control , & State , 1 , t191 , FALSE , 0 ) ;
2011-11-21 05:05:00 +01:00
test_items_ok ( test20 , 5 , & Control , & State , 2 , t201 , FALSE , 0 ) ;
test_items_ok ( test21 , 5 , & Control , & State , 1 , t211 , FALSE , 0 ) ;
2011-11-21 05:05:22 +01:00
test_items_ok ( test22 , 6 , & Control , & State , 2 , t221 , FALSE , 0 ) ;
2011-11-21 05:05:45 +01:00
test_items_ok ( test23 , 6 , & Control , & State , 2 , t231 , FALSE , 0 ) ;
2011-12-09 18:02:30 +01:00
test_items_ok ( test24 , 12 , & Control , & State , 1 , t241 , FALSE , 0 ) ;
2011-12-12 14:31:56 +01:00
test_items_ok ( test25 , 10 , & Control , & State , 1 , t251 , FALSE , 0 ) ;
2011-12-12 14:32:10 +01:00
test_items_ok ( test26 , 2 , & Control , & State , 1 , t261 , FALSE , 0 ) ;
2011-12-12 14:32:15 +01:00
test_items_ok ( test27 , 8 , & Control , & State , 1 , t271 , FALSE , 0 ) ;
2011-12-12 21:50:12 +01:00
test_items_ok ( test28 , 4 , & Control , & State , 1 , t281 , FALSE , 0 ) ;
test_items_ok ( test29 , 10 , & Control , & State , 2 , t291 , FALSE , 0 ) ;
2011-12-12 21:50:20 +01:00
test_items_ok ( test30 , 8 , & Control , & State , 1 , t301 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test31 , 8 , & Control , & State , 1 , t311 , FALSE , b311 ) ;
2011-12-12 21:50:34 +01:00
test_items_ok ( test32 , 3 , & Control , & State , 1 , t321 , FALSE , 0 ) ;
2011-12-12 21:50:40 +01:00
test_items_ok ( test33 , 4 , & Control , & State , 1 , t331 , FALSE , 0 ) ;
2011-12-14 14:27:38 +01:00
test_items_ok ( test34 , 3 , & Control , & State , 1 , t341 , FALSE , 0 ) ;
2011-12-14 14:27:56 +01:00
test_items_ok ( test35 , 13 , & Control , & State , 1 , t351 , FALSE , b351 ) ;
2011-12-14 14:28:46 +01:00
test_items_ok ( test36 , 7 , & Control , & State , 1 , t361 , FALSE , 0 ) ;
2011-12-14 14:28:56 +01:00
test_items_ok ( test37 , 3 , & Control , & State , 1 , t371 , FALSE , 0 ) ;
2011-12-14 14:29:03 +01:00
test_items_ok ( test38 , 2 , & Control , & State , 1 , t381 , FALSE , 0 ) ;
2011-12-14 14:29:10 +01:00
test_items_ok ( test39 , 10 , & Control , & State , 1 , t391 , FALSE , 0 ) ;
2011-12-14 14:29:19 +01:00
test_items_ok ( test40 , 6 , & Control , & State , 1 , t401 , FALSE , 0 ) ;
2011-12-14 14:29:28 +01:00
test_items_ok ( test41 , 6 , & Control , & State , 1 , t411 , FALSE , 0 ) ;
2011-12-14 14:29:39 +01:00
test_items_ok ( test42 , 6 , & Control , & State , 1 , t421 , FALSE , 0 ) ;
2011-12-14 14:29:48 +01:00
test_items_ok ( test43 , 7 , & Control , & State , 1 , t431 , FALSE , 0 ) ;
2011-12-14 14:29:54 +01:00
test_items_ok ( test44 , 4 , & Control , & State , 2 , t441 , FALSE , 0 ) ;
2011-12-18 04:27:02 +01:00
test_items_ok ( test45 , 24 , & Control , & State , 1 , t451 , FALSE , 0 ) ;
2011-12-18 04:27:15 +01:00
test_items_ok ( test46 , 16 , & Control , & State , 1 , t461 , FALSE , 0 ) ;
2011-12-19 14:25:17 +01:00
test_items_ok ( test47 , 26 , & Control , & State , 1 , t471 , FALSE , 0 ) ;
2016-02-03 19:55:30 +01:00
test_items_ok ( test48 , 6 , & Control , & State , 3 , t481 , FALSE , 0 ) ;
test_items_ok ( test49 , 7 , & Control , & State , 2 , t491 , FALSE , 0 ) ;
test_items_ok ( test50 , 6 , & Control , & State , 3 , t501 , FALSE , 0 ) ;
test_items_ok ( test51 , 7 , & Control , & State , 4 , t511 , FALSE , 0 ) ;
test_items_ok ( test52 , 7 , & Control , & State , 4 , t521 , FALSE , 0 ) ;
test_items_ok ( test53 , 8 , & Control , & State , 4 , t531 , FALSE , 0 ) ;
test_items_ok ( test54 , 7 , & Control , & State , 2 , t541 , FALSE , 0 ) ;
test_items_ok ( test55 , 8 , & Control , & State , 2 , t551 , FALSE , 0 ) ;
2016-05-18 18:43:18 +02:00
test_items_ok ( test56 , 6 , & Control , & State , 1 , t561 , FALSE , 0 ) ;
2016-06-05 20:05:25 +02:00
test_items_ok ( test57 , 13 , & Control , & State , 7 , t572 , FALSE , 0 ) ;
2016-06-07 21:18:34 +02:00
test_items_ok ( test58 , 13 , & Control , & State , 1 , t581 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
State . uBidiLevel = 1 ;
test_items_ok ( test1 , 4 , & Control , & State , 1 , t12 , FALSE , 0 ) ;
2010-09-09 22:27:43 +02:00
test_items_ok ( test1b , 4 , & Control , & State , 1 , t1b2 , FALSE , 0 ) ;
2011-10-21 18:28:54 +02:00
test_items_ok ( test1c , 6 , & Control , & State , 3 , t1c2 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test2 , 16 , & Control , & State , 4 , t23 , FALSE , 0 ) ;
test_items_ok ( test2b , 11 , & Control , & State , 4 , t2b2 , FALSE , 0 ) ;
2010-09-09 22:27:43 +02:00
test_items_ok ( test2c , 11 , & Control , & State , 4 , t2c3 , FALSE , 0 ) ;
test_items_ok ( test2d , 11 , & Control , & State , 4 , t2d3 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test3 , 41 , & Control , & State , 1 , t32 , FALSE , 0 ) ;
test_items_ok ( test4 , 12 , & Control , & State , 4 , t42 , FALSE , 0 ) ;
test_items_ok ( test5 , 38 , & Control , & State , 1 , t51 , FALSE , 0 ) ;
test_items_ok ( test6 , 5 , & Control , & State , 2 , t62 , FALSE , 0 ) ;
test_items_ok ( test7 , 29 , & Control , & State , 3 , t73 , FALSE , 0 ) ;
test_items_ok ( test8 , 4 , & Control , & State , 1 , t81 , FALSE , 0 ) ;
test_items_ok ( test9 , 5 , & Control , & State , 2 , t92 , FALSE , 0 ) ;
test_items_ok ( test10 , 4 , & Control , & State , 1 , t101 , FALSE , 0 ) ;
2011-06-02 21:56:17 +02:00
test_items_ok ( test11 , 8 , & Control , & State , 1 , t112 , FALSE , 0 ) ;
2011-06-02 21:56:23 +02:00
test_items_ok ( test12 , 5 , & Control , & State , 1 , t122 , FALSE , 0 ) ;
2011-06-02 21:56:30 +02:00
test_items_ok ( test13 , 7 , & Control , & State , 1 , t132 , FALSE , 0 ) ;
2011-06-02 21:56:37 +02:00
test_items_ok ( test14 , 7 , & Control , & State , 1 , t142 , FALSE , 0 ) ;
2011-06-02 21:56:43 +02:00
test_items_ok ( test15 , 5 , & Control , & State , 1 , t152 , FALSE , 0 ) ;
2011-06-02 21:56:49 +02:00
test_items_ok ( test16 , 5 , & Control , & State , 1 , t162 , FALSE , 0 ) ;
2011-06-02 21:56:55 +02:00
test_items_ok ( test17 , 6 , & Control , & State , 1 , t172 , FALSE , 0 ) ;
2011-06-02 21:57:04 +02:00
test_items_ok ( test18 , 5 , & Control , & State , 1 , t182 , FALSE , 0 ) ;
2011-06-02 21:57:09 +02:00
test_items_ok ( test19 , 6 , & Control , & State , 1 , t192 , FALSE , 0 ) ;
2011-11-21 05:05:00 +01:00
test_items_ok ( test20 , 5 , & Control , & State , 2 , t202 , FALSE , 0 ) ;
test_items_ok ( test21 , 5 , & Control , & State , 1 , t211 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test22 , 6 , & Control , & State , 2 , t222 , FALSE , b222 ) ;
2011-11-21 05:05:45 +01:00
test_items_ok ( test23 , 6 , & Control , & State , 2 , t232 , FALSE , 0 ) ;
2011-12-09 18:02:30 +01:00
test_items_ok ( test24 , 12 , & Control , & State , 1 , t242 , FALSE , 0 ) ;
2011-12-12 14:31:56 +01:00
test_items_ok ( test25 , 10 , & Control , & State , 1 , t252 , FALSE , 0 ) ;
2011-12-12 14:32:10 +01:00
test_items_ok ( test26 , 2 , & Control , & State , 1 , t262 , FALSE , 0 ) ;
2011-12-12 14:32:15 +01:00
test_items_ok ( test27 , 8 , & Control , & State , 1 , t272 , FALSE , 0 ) ;
2011-12-12 21:50:12 +01:00
test_items_ok ( test28 , 4 , & Control , & State , 1 , t282 , FALSE , 0 ) ;
test_items_ok ( test29 , 10 , & Control , & State , 2 , t292 , FALSE , 0 ) ;
2011-12-12 21:50:20 +01:00
test_items_ok ( test30 , 8 , & Control , & State , 1 , t302 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test31 , 8 , & Control , & State , 1 , t312 , FALSE , b312 ) ;
2011-12-12 21:50:34 +01:00
test_items_ok ( test32 , 3 , & Control , & State , 1 , t322 , FALSE , 0 ) ;
2011-12-12 21:50:40 +01:00
test_items_ok ( test33 , 4 , & Control , & State , 1 , t332 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test34 , 3 , & Control , & State , 1 , t342 , FALSE , b342 ) ;
2011-12-14 14:27:56 +01:00
test_items_ok ( test35 , 13 , & Control , & State , 1 , t352 , FALSE , b352 ) ;
2011-12-14 14:28:46 +01:00
test_items_ok ( test36 , 7 , & Control , & State , 1 , t362 , FALSE , 0 ) ;
2011-12-14 14:28:56 +01:00
test_items_ok ( test37 , 3 , & Control , & State , 1 , t372 , FALSE , 0 ) ;
2011-12-14 14:29:03 +01:00
test_items_ok ( test38 , 2 , & Control , & State , 1 , t382 , FALSE , 0 ) ;
2011-12-14 14:29:10 +01:00
test_items_ok ( test39 , 10 , & Control , & State , 1 , t392 , FALSE , 0 ) ;
2011-12-14 14:29:19 +01:00
test_items_ok ( test40 , 6 , & Control , & State , 1 , t402 , FALSE , 0 ) ;
2011-12-14 14:29:28 +01:00
test_items_ok ( test41 , 6 , & Control , & State , 3 , t412 , FALSE , b412 ) ;
2011-12-14 14:29:39 +01:00
test_items_ok ( test42 , 6 , & Control , & State , 1 , t422 , FALSE , 0 ) ;
2011-12-14 14:29:48 +01:00
test_items_ok ( test43 , 7 , & Control , & State , 1 , t432 , FALSE , 0 ) ;
2011-12-14 14:29:54 +01:00
test_items_ok ( test44 , 4 , & Control , & State , 2 , t442 , FALSE , 0 ) ;
2011-12-18 04:27:02 +01:00
test_items_ok ( test45 , 24 , & Control , & State , 1 , t452 , FALSE , 0 ) ;
2011-12-18 04:27:15 +01:00
test_items_ok ( test46 , 16 , & Control , & State , 1 , t462 , FALSE , 0 ) ;
2011-12-19 14:25:17 +01:00
test_items_ok ( test47 , 26 , & Control , & State , 1 , t472 , FALSE , 0 ) ;
2016-05-18 18:43:18 +02:00
test_items_ok ( test56 , 6 , & Control , & State , 1 , t561 , FALSE , 0 ) ;
2016-06-07 21:18:36 +02:00
test_items_ok ( test57 , 13 , & Control , & State , 7 , t571 , FALSE , 0 ) ;
test_items_ok ( test58 , 13 , & Control , & State , 1 , t581 , FALSE , 0 ) ;
2010-04-19 14:31:28 +02:00
State . uBidiLevel = 1 ;
2010-09-09 18:47:04 +02:00
Control . fMergeNeutralItems = TRUE ;
test_items_ok ( test1 , 4 , & Control , & State , 1 , t12 , FALSE , 0 ) ;
2010-09-09 22:27:43 +02:00
test_items_ok ( test1b , 4 , & Control , & State , 1 , t1b2 , FALSE , 0 ) ;
2011-10-21 18:28:54 +02:00
test_items_ok ( test1c , 6 , & Control , & State , 3 , t1c2 , FALSE , 0 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test2 , 16 , & Control , & State , 4 , t23 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test2b , 11 , & Control , & State , 2 , t2b3 , FALSE , b2 ) ;
test_items_ok ( test2c , 11 , & Control , & State , 2 , t2c4 , FALSE , b2 ) ;
test_items_ok ( test2d , 11 , & Control , & State , 2 , t2d4 , FALSE , b2 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test3 , 41 , & Control , & State , 1 , t32 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test4 , 12 , & Control , & State , 3 , t43 , FALSE , b43 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test5 , 38 , & Control , & State , 1 , t51 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test6 , 5 , & Control , & State , 1 , t63 , FALSE , b63 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test7 , 29 , & Control , & State , 3 , t73 , FALSE , 0 ) ;
test_items_ok ( test8 , 4 , & Control , & State , 1 , t81 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test9 , 5 , & Control , & State , 1 , t93 , FALSE , b93 ) ;
2010-09-09 18:47:04 +02:00
test_items_ok ( test10 , 4 , & Control , & State , 1 , t101 , FALSE , 0 ) ;
2011-06-02 21:56:17 +02:00
test_items_ok ( test11 , 8 , & Control , & State , 1 , t112 , FALSE , 0 ) ;
2011-06-02 21:56:23 +02:00
test_items_ok ( test12 , 5 , & Control , & State , 1 , t122 , FALSE , 0 ) ;
2011-06-02 21:56:30 +02:00
test_items_ok ( test13 , 7 , & Control , & State , 1 , t132 , FALSE , 0 ) ;
2011-06-02 21:56:37 +02:00
test_items_ok ( test14 , 7 , & Control , & State , 1 , t142 , FALSE , 0 ) ;
2011-06-02 21:56:43 +02:00
test_items_ok ( test15 , 5 , & Control , & State , 1 , t152 , FALSE , 0 ) ;
2011-06-02 21:56:49 +02:00
test_items_ok ( test16 , 5 , & Control , & State , 1 , t162 , FALSE , 0 ) ;
2011-06-02 21:56:55 +02:00
test_items_ok ( test17 , 6 , & Control , & State , 1 , t172 , FALSE , 0 ) ;
2011-06-02 21:57:04 +02:00
test_items_ok ( test18 , 5 , & Control , & State , 1 , t182 , FALSE , 0 ) ;
2011-06-02 21:57:09 +02:00
test_items_ok ( test19 , 6 , & Control , & State , 1 , t192 , FALSE , 0 ) ;
2011-11-21 05:05:00 +01:00
test_items_ok ( test20 , 5 , & Control , & State , 2 , t202 , FALSE , 0 ) ;
test_items_ok ( test21 , 5 , & Control , & State , 1 , t211 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test22 , 6 , & Control , & State , 1 , t223 , FALSE , b223 ) ;
2011-11-21 05:05:45 +01:00
test_items_ok ( test23 , 6 , & Control , & State , 2 , t232 , FALSE , 0 ) ;
2011-12-09 18:02:30 +01:00
test_items_ok ( test24 , 12 , & Control , & State , 1 , t242 , FALSE , 0 ) ;
2011-12-12 14:31:56 +01:00
test_items_ok ( test25 , 10 , & Control , & State , 1 , t252 , FALSE , 0 ) ;
2011-12-12 14:32:10 +01:00
test_items_ok ( test26 , 2 , & Control , & State , 1 , t262 , FALSE , 0 ) ;
2011-12-12 14:32:15 +01:00
test_items_ok ( test27 , 8 , & Control , & State , 1 , t272 , FALSE , 0 ) ;
2011-12-12 21:50:12 +01:00
test_items_ok ( test28 , 4 , & Control , & State , 1 , t282 , FALSE , 0 ) ;
test_items_ok ( test29 , 10 , & Control , & State , 2 , t292 , FALSE , 0 ) ;
2011-12-12 21:50:20 +01:00
test_items_ok ( test30 , 8 , & Control , & State , 1 , t302 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test31 , 8 , & Control , & State , 1 , t312 , FALSE , b312 ) ;
2011-12-12 21:50:34 +01:00
test_items_ok ( test32 , 3 , & Control , & State , 1 , t322 , FALSE , 0 ) ;
2011-12-12 21:50:40 +01:00
test_items_ok ( test33 , 4 , & Control , & State , 1 , t332 , FALSE , 0 ) ;
2011-12-14 14:27:47 +01:00
test_items_ok ( test34 , 3 , & Control , & State , 1 , t342 , FALSE , b342 ) ;
2011-12-14 14:27:56 +01:00
test_items_ok ( test35 , 13 , & Control , & State , 1 , t352 , FALSE , b352 ) ;
2011-12-14 14:28:46 +01:00
test_items_ok ( test36 , 7 , & Control , & State , 1 , t362 , FALSE , 0 ) ;
2011-12-14 14:28:56 +01:00
test_items_ok ( test37 , 3 , & Control , & State , 1 , t372 , FALSE , 0 ) ;
2011-12-14 14:29:03 +01:00
test_items_ok ( test38 , 2 , & Control , & State , 1 , t382 , FALSE , 0 ) ;
2011-12-14 14:29:10 +01:00
test_items_ok ( test39 , 10 , & Control , & State , 1 , t392 , FALSE , 0 ) ;
2011-12-14 14:29:19 +01:00
test_items_ok ( test40 , 6 , & Control , & State , 1 , t402 , FALSE , 0 ) ;
2011-12-14 14:29:28 +01:00
test_items_ok ( test41 , 6 , & Control , & State , 3 , t412 , FALSE , b412 ) ;
2011-12-14 14:29:39 +01:00
test_items_ok ( test42 , 6 , & Control , & State , 1 , t422 , FALSE , 0 ) ;
2011-12-14 14:29:48 +01:00
test_items_ok ( test43 , 7 , & Control , & State , 1 , t432 , FALSE , 0 ) ;
2011-12-14 14:29:54 +01:00
test_items_ok ( test44 , 4 , & Control , & State , 2 , t442 , FALSE , 0 ) ;
2011-12-18 04:27:02 +01:00
test_items_ok ( test45 , 24 , & Control , & State , 1 , t452 , FALSE , 0 ) ;
2011-12-18 04:27:15 +01:00
test_items_ok ( test46 , 16 , & Control , & State , 1 , t462 , FALSE , 0 ) ;
2011-12-19 14:25:17 +01:00
test_items_ok ( test47 , 26 , & Control , & State , 1 , t472 , FALSE , 0 ) ;
2016-05-18 18:43:18 +02:00
test_items_ok ( test56 , 6 , & Control , & State , 1 , t561 , FALSE , 0 ) ;
2016-06-07 21:18:36 +02:00
test_items_ok ( test57 , 13 , & Control , & State , 7 , t571 , FALSE , 0 ) ;
test_items_ok ( test58 , 13 , & Control , & State , 1 , t581 , FALSE , 0 ) ;
2016-02-05 16:39:14 +01:00
State . uBidiLevel = 0 ;
Control . fMergeNeutralItems = FALSE ;
State . fOverrideDirection = 1 ;
test_items_ok ( test1 , 4 , & Control , & State , 1 , t11 , FALSE , 0 ) ;
test_items_ok ( test1b , 4 , & Control , & State , 1 , t1b1 , FALSE , 0 ) ;
test_items_ok ( test1c , 6 , & Control , & State , 1 , t1c1 , FALSE , 0 ) ;
test_items_ok ( test2 , 16 , & Control , & State , 4 , t24 , FALSE , 0 ) ;
test_items_ok ( test2b , 11 , & Control , & State , 4 , t2b4 , FALSE , 0 ) ;
test_items_ok ( test2c , 11 , & Control , & State , 4 , t2c5 , FALSE , 0 ) ;
test_items_ok ( test2d , 11 , & Control , & State , 4 , t2d5 , FALSE , 0 ) ;
test_items_ok ( test3 , 41 , & Control , & State , 1 , t31 , FALSE , 0 ) ;
test_items_ok ( test4 , 12 , & Control , & State , 5 , t41 , FALSE , 0 ) ;
test_items_ok ( test5 , 38 , & Control , & State , 1 , t52 , FALSE , 0 ) ;
test_items_ok ( test6 , 5 , & Control , & State , 2 , t64 , FALSE , 0 ) ;
test_items_ok ( test7 , 29 , & Control , & State , 3 , t74 , FALSE , 0 ) ;
test_items_ok ( test8 , 4 , & Control , & State , 1 , t82 , FALSE , 0 ) ;
test_items_ok ( test9 , 5 , & Control , & State , 2 , t94 , FALSE , 0 ) ;
test_items_ok ( test10 , 4 , & Control , & State , 1 , t102 , FALSE , 0 ) ;
test_items_ok ( test11 , 8 , & Control , & State , 1 , t111 , FALSE , 0 ) ;
test_items_ok ( test12 , 5 , & Control , & State , 1 , t121 , FALSE , 0 ) ;
test_items_ok ( test13 , 7 , & Control , & State , 1 , t131 , FALSE , 0 ) ;
test_items_ok ( test14 , 7 , & Control , & State , 1 , t141 , FALSE , 0 ) ;
test_items_ok ( test15 , 5 , & Control , & State , 1 , t151 , FALSE , 0 ) ;
test_items_ok ( test16 , 5 , & Control , & State , 1 , t161 , FALSE , 0 ) ;
test_items_ok ( test17 , 6 , & Control , & State , 1 , t171 , FALSE , 0 ) ;
test_items_ok ( test18 , 5 , & Control , & State , 1 , t181 , FALSE , 0 ) ;
test_items_ok ( test19 , 6 , & Control , & State , 1 , t191 , FALSE , 0 ) ;
test_items_ok ( test20 , 5 , & Control , & State , 2 , t201 , FALSE , 0 ) ;
test_items_ok ( test21 , 5 , & Control , & State , 1 , t212 , FALSE , 0 ) ;
test_items_ok ( test22 , 6 , & Control , & State , 2 , t221 , FALSE , 0 ) ;
test_items_ok ( test23 , 6 , & Control , & State , 2 , t231 , FALSE , 0 ) ;
test_items_ok ( test24 , 12 , & Control , & State , 1 , t241 , FALSE , 0 ) ;
test_items_ok ( test25 , 10 , & Control , & State , 1 , t251 , FALSE , 0 ) ;
test_items_ok ( test26 , 2 , & Control , & State , 1 , t261 , FALSE , 0 ) ;
test_items_ok ( test27 , 8 , & Control , & State , 1 , t271 , FALSE , 0 ) ;
test_items_ok ( test28 , 4 , & Control , & State , 1 , t281 , FALSE , 0 ) ;
test_items_ok ( test29 , 10 , & Control , & State , 2 , t291 , FALSE , 0 ) ;
test_items_ok ( test30 , 8 , & Control , & State , 1 , t301 , FALSE , 0 ) ;
test_items_ok ( test31 , 8 , & Control , & State , 1 , t311 , FALSE , b311 ) ;
test_items_ok ( test32 , 3 , & Control , & State , 1 , t321 , FALSE , 0 ) ;
test_items_ok ( test33 , 4 , & Control , & State , 1 , t331 , FALSE , 0 ) ;
test_items_ok ( test34 , 3 , & Control , & State , 1 , t341 , FALSE , 0 ) ;
test_items_ok ( test35 , 13 , & Control , & State , 1 , t353 , FALSE , b351 ) ;
test_items_ok ( test36 , 7 , & Control , & State , 1 , t361 , FALSE , 0 ) ;
test_items_ok ( test37 , 3 , & Control , & State , 1 , t373 , FALSE , 0 ) ;
test_items_ok ( test38 , 2 , & Control , & State , 1 , t381 , FALSE , 0 ) ;
test_items_ok ( test39 , 10 , & Control , & State , 1 , t391 , FALSE , 0 ) ;
test_items_ok ( test40 , 6 , & Control , & State , 1 , t401 , FALSE , 0 ) ;
test_items_ok ( test41 , 6 , & Control , & State , 1 , t411 , FALSE , 0 ) ;
test_items_ok ( test42 , 6 , & Control , & State , 1 , t421 , FALSE , 0 ) ;
test_items_ok ( test43 , 7 , & Control , & State , 1 , t431 , FALSE , 0 ) ;
test_items_ok ( test44 , 4 , & Control , & State , 2 , t441 , FALSE , 0 ) ;
test_items_ok ( test45 , 24 , & Control , & State , 1 , t451 , FALSE , 0 ) ;
test_items_ok ( test46 , 16 , & Control , & State , 1 , t461 , FALSE , 0 ) ;
test_items_ok ( test47 , 26 , & Control , & State , 1 , t471 , FALSE , 0 ) ;
test_items_ok ( test48 , 6 , & Control , & State , 3 , t482 , FALSE , 0 ) ;
test_items_ok ( test49 , 7 , & Control , & State , 2 , t492 , FALSE , 0 ) ;
test_items_ok ( test50 , 6 , & Control , & State , 3 , t502 , FALSE , 0 ) ;
test_items_ok ( test51 , 7 , & Control , & State , 4 , t512 , FALSE , 0 ) ;
test_items_ok ( test52 , 7 , & Control , & State , 4 , t522 , FALSE , 0 ) ;
test_items_ok ( test53 , 8 , & Control , & State , 4 , t532 , FALSE , 0 ) ;
test_items_ok ( test54 , 7 , & Control , & State , 2 , t542 , FALSE , 0 ) ;
test_items_ok ( test55 , 8 , & Control , & State , 2 , t552 , FALSE , 0 ) ;
2016-05-18 18:43:18 +02:00
test_items_ok ( test56 , 6 , & Control , & State , 1 , t562 , FALSE , 0 ) ;
2016-06-05 20:05:25 +02:00
test_items_ok ( test57 , 13 , & Control , & State , 7 , t573 , FALSE , 0 ) ;
2016-06-07 21:18:34 +02:00
test_items_ok ( test58 , 13 , & Control , & State , 1 , t582 , FALSE , 0 ) ;
2010-04-13 21:49:07 +02:00
}
2011-05-24 16:41:59 +02:00
static inline void _test_shape_ok ( int valid , HDC hdc , LPCWSTR string ,
DWORD cchString , SCRIPT_CONTROL * Control ,
SCRIPT_STATE * State , DWORD item , DWORD nGlyphs ,
2017-01-25 09:59:55 +01:00
const shapeTest_char * charItems ,
const shapeTest_glyph * glyphItems ,
const SCRIPT_GLYPHPROP * props2 )
2011-05-17 22:06:10 +02:00
{
HRESULT hr ;
2017-03-02 09:38:43 +01:00
int x , outnItems = 0 , outnGlyphs = 0 , outnGlyphs2 = 0 ;
const SCRIPT_PROPERTIES * * script_properties ;
2011-05-17 22:06:10 +02:00
SCRIPT_ITEM outpItems [ 15 ] ;
SCRIPT_CACHE sc = NULL ;
2017-03-02 09:38:43 +01:00
WORD * glyphs , * glyphs2 ;
WORD * logclust , * logclust2 ;
2011-05-17 22:06:10 +02:00
int maxGlyphs = cchString * 1.5 ;
2017-03-02 09:38:43 +01:00
SCRIPT_GLYPHPROP * glyphProp , * glyphProp2 ;
SCRIPT_CHARPROP * charProp , * charProp2 ;
int script_count ;
WCHAR * string2 ;
2011-05-17 22:06:10 +02:00
ULONG tags [ 15 ] ;
2017-03-02 09:38:43 +01:00
hr = ScriptGetProperties ( & script_properties , & script_count ) ;
winetest_ok ( SUCCEEDED ( hr ) , " Failed to get script properties, hr %#x. \n " , hr ) ;
2011-05-17 22:06:10 +02:00
hr = pScriptItemizeOpenType ( string , cchString , 15 , Control , State , outpItems , tags , & outnItems ) ;
2011-05-24 16:41:59 +02:00
if ( hr = = USP_E_SCRIPT_NOT_IN_FONT )
{
if ( valid > 0 )
winetest_win_skip ( " Select font does not support script \n " ) ;
else
winetest_trace ( " Select font does not support script \n " ) ;
return ;
}
if ( valid > 0 )
2014-08-28 21:44:24 +02:00
winetest_ok ( hr = = S_OK , " ScriptItemizeOpenType should return S_OK not %08x \n " , hr ) ;
else if ( hr ! = S_OK )
2011-05-24 16:41:59 +02:00
winetest_trace ( " ScriptItemizeOpenType should return S_OK not %08x \n " , hr ) ;
if ( outnItems < = item )
2011-05-17 22:06:10 +02:00
{
2011-05-24 16:41:59 +02:00
if ( valid > 0 )
winetest_win_skip ( " Did not get enough items \n " ) ;
else
winetest_trace ( " Did not get enough items \n " ) ;
2011-05-17 22:06:10 +02:00
return ;
}
logclust = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( WORD ) * cchString ) ;
memset ( logclust , ' a ' , sizeof ( WORD ) * cchString ) ;
charProp = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( SCRIPT_CHARPROP ) * cchString ) ;
memset ( charProp , ' a ' , sizeof ( SCRIPT_CHARPROP ) * cchString ) ;
glyphs = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( WORD ) * maxGlyphs ) ;
memset ( glyphs , ' a ' , sizeof ( WORD ) * cchString ) ;
glyphProp = HeapAlloc ( GetProcessHeap ( ) , 0 , sizeof ( SCRIPT_GLYPHPROP ) * maxGlyphs ) ;
memset ( glyphProp , ' a ' , sizeof ( SCRIPT_GLYPHPROP ) * cchString ) ;
2017-03-02 09:38:43 +01:00
string2 = HeapAlloc ( GetProcessHeap ( ) , 0 , cchString * sizeof ( * string2 ) ) ;
logclust2 = HeapAlloc ( GetProcessHeap ( ) , 0 , cchString * sizeof ( * logclust2 ) ) ;
memset ( logclust2 , ' a ' , cchString * sizeof ( * logclust2 ) ) ;
charProp2 = HeapAlloc ( GetProcessHeap ( ) , 0 , cchString * sizeof ( * charProp2 ) ) ;
memset ( charProp2 , ' a ' , cchString * sizeof ( * charProp2 ) ) ;
glyphs2 = HeapAlloc ( GetProcessHeap ( ) , 0 , maxGlyphs * sizeof ( * glyphs2 ) ) ;
memset ( glyphs2 , ' a ' , maxGlyphs * sizeof ( * glyphs2 ) ) ;
glyphProp2 = HeapAlloc ( GetProcessHeap ( ) , 0 , maxGlyphs * sizeof ( * glyphProp2 ) ) ;
memset ( glyphProp2 , ' a ' , maxGlyphs * sizeof ( * glyphProp2 ) ) ;
winetest_ok ( ! outpItems [ item ] . a . fLogicalOrder , " Got unexpected fLogicalOrder %#x. \n " ,
outpItems [ item ] . a . fLogicalOrder ) ;
2011-05-17 22:06:10 +02:00
hr = pScriptShapeOpenType ( hdc , & sc , & outpItems [ item ] . a , tags [ item ] , 0x00000000 , NULL , NULL , 0 , string , cchString , maxGlyphs , logclust , charProp , glyphs , glyphProp , & outnGlyphs ) ;
2011-05-24 16:41:59 +02:00
if ( valid > 0 )
winetest_ok ( hr = = S_OK , " ScriptShapeOpenType failed (%x) \n " , hr ) ;
else if ( hr ! = S_OK )
winetest_trace ( " ScriptShapeOpenType failed (%x) \n " , hr ) ;
2011-05-17 22:06:10 +02:00
if ( FAILED ( hr ) )
2015-04-15 06:48:34 +02:00
goto cleanup ;
2011-05-17 22:06:10 +02:00
for ( x = 0 ; x < cchString ; x + + )
{
2011-05-24 16:41:59 +02:00
if ( valid > 0 )
winetest_ok ( logclust [ x ] = = charItems [ x ] . wLogClust , " %i: invalid LogClust(%i) \n " , x , logclust [ x ] ) ;
else if ( logclust [ x ] ! = charItems [ x ] . wLogClust )
winetest_trace ( " %i: invalid LogClust(%i) \n " , x , logclust [ x ] ) ;
if ( valid > 0 )
winetest_ok ( charProp [ x ] . fCanGlyphAlone = = charItems [ x ] . CharProp . fCanGlyphAlone , " %i: invalid fCanGlyphAlone \n " , x ) ;
else if ( charProp [ x ] . fCanGlyphAlone ! = charItems [ x ] . CharProp . fCanGlyphAlone )
winetest_trace ( " %i: invalid fCanGlyphAlone \n " , x ) ;
2011-05-17 22:06:10 +02:00
}
2011-05-24 21:40:28 +02:00
if ( valid > 0 )
2011-05-24 16:41:59 +02:00
winetest_ok ( nGlyphs = = outnGlyphs , " got incorrect number of glyphs (%i) \n " , outnGlyphs ) ;
else if ( nGlyphs ! = outnGlyphs )
winetest_trace ( " got incorrect number of glyphs (%i) \n " , outnGlyphs ) ;
2011-05-17 22:06:10 +02:00
for ( x = 0 ; x < outnGlyphs ; x + + )
{
if ( glyphItems [ x ] . Glyph )
2011-05-24 16:41:59 +02:00
{
if ( valid > 0 )
winetest_ok ( glyphs [ x ] ! = 0 , " %i: Glyph not present when it should be \n " , x ) ;
else if ( glyphs [ x ] = = 0 )
winetest_trace ( " %i: Glyph not present when it should be \n " , x ) ;
}
2011-05-17 22:06:10 +02:00
else
2011-05-24 16:41:59 +02:00
{
if ( valid > 0 )
winetest_ok ( glyphs [ x ] = = 0 , " %i: Glyph present when it should not be \n " , x ) ;
else if ( glyphs [ x ] ! = 0 )
winetest_trace ( " %i: Glyph present when it should not be \n " , x ) ;
}
if ( valid > 0 )
2017-03-02 09:38:40 +01:00
{
todo_wine_if ( tags [ item ] = = syrc_tag & & ! x )
winetest_ok ( glyphProp [ x ] . sva . uJustification = = glyphItems [ x ] . GlyphProp . sva . uJustification | |
( props2 & & glyphProp [ x ] . sva . uJustification = = props2 [ x ] . sva . uJustification ) ,
" %i: uJustification incorrect (%i) \n " , x , glyphProp [ x ] . sva . uJustification ) ;
}
2011-05-24 16:41:59 +02:00
else if ( glyphProp [ x ] . sva . uJustification ! = glyphItems [ x ] . GlyphProp . sva . uJustification )
2017-03-02 09:38:40 +01:00
{
2011-05-24 16:41:59 +02:00
winetest_trace ( " %i: uJustification incorrect (%i) \n " , x , glyphProp [ x ] . sva . uJustification ) ;
2017-03-02 09:38:40 +01:00
}
2011-05-24 16:41:59 +02:00
if ( valid > 0 )
2017-01-25 09:59:55 +01:00
winetest_ok ( glyphProp [ x ] . sva . fClusterStart = = glyphItems [ x ] . GlyphProp . sva . fClusterStart | |
( props2 & & glyphProp [ x ] . sva . fClusterStart = = props2 [ x ] . sva . fClusterStart ) ,
" %i: fClusterStart incorrect (%i) \n " , x , glyphProp [ x ] . sva . fClusterStart ) ;
2011-05-24 16:41:59 +02:00
else if ( glyphProp [ x ] . sva . fClusterStart ! = glyphItems [ x ] . GlyphProp . sva . fClusterStart )
winetest_trace ( " %i: fClusterStart incorrect (%i) \n " , x , glyphProp [ x ] . sva . fClusterStart ) ;
if ( valid > 0 )
2017-01-25 09:59:55 +01:00
winetest_ok ( glyphProp [ x ] . sva . fDiacritic = = glyphItems [ x ] . GlyphProp . sva . fDiacritic | |
( props2 & & glyphProp [ x ] . sva . fDiacritic = = props2 [ x ] . sva . fDiacritic ) ,
" %i: fDiacritic incorrect (%i) \n " , x , glyphProp [ x ] . sva . fDiacritic ) ;
2011-05-24 16:41:59 +02:00
else if ( glyphProp [ x ] . sva . fDiacritic ! = glyphItems [ x ] . GlyphProp . sva . fDiacritic )
winetest_trace ( " %i: fDiacritic incorrect (%i) \n " , x , glyphProp [ x ] . sva . fDiacritic ) ;
if ( valid > 0 )
2017-01-25 09:59:55 +01:00
winetest_ok ( glyphProp [ x ] . sva . fZeroWidth = = glyphItems [ x ] . GlyphProp . sva . fZeroWidth | |
( props2 & & glyphProp [ x ] . sva . fZeroWidth = = props2 [ x ] . sva . fZeroWidth ) ,
" %i: fZeroWidth incorrect (%i) \n " , x , glyphProp [ x ] . sva . fZeroWidth ) ;
2011-05-24 16:41:59 +02:00
else if ( glyphProp [ x ] . sva . fZeroWidth ! = glyphItems [ x ] . GlyphProp . sva . fZeroWidth )
winetest_trace ( " %i: fZeroWidth incorrect (%i) \n " , x , glyphProp [ x ] . sva . fZeroWidth ) ;
2011-05-17 22:06:10 +02:00
}
2017-03-02 09:38:43 +01:00
outpItems [ item ] . a . fLogicalOrder = 1 ;
hr = pScriptShapeOpenType ( hdc , & sc , & outpItems [ item ] . a , tags [ item ] , 0x00000000 , NULL , NULL , 0 ,
string , cchString , maxGlyphs , logclust2 , charProp2 , glyphs2 , glyphProp2 , & outnGlyphs2 ) ;
winetest_ok ( hr = = S_OK , " ScriptShapeOpenType failed (%x) \n " , hr ) ;
/* Cluster maps are hard. */
if ( tags [ item ] ! = thaa_tag & & tags [ item ] ! = syrc_tag )
{
for ( x = 0 ; x < cchString ; + + x )
{
unsigned int compare_idx = outpItems [ item ] . a . fRTL ? cchString - x - 1 : x ;
winetest_ok ( logclust2 [ x ] = = logclust [ compare_idx ] ,
" Got unexpected logclust2[%u] %#x, expected %#x. \n " ,
x , logclust2 [ x ] , logclust [ compare_idx ] ) ;
winetest_ok ( charProp2 [ x ] . fCanGlyphAlone = = charProp [ compare_idx ] . fCanGlyphAlone ,
" Got unexpected charProp2[%u].fCanGlyphAlone %#x, expected %#x. \n " ,
x , charProp2 [ x ] . fCanGlyphAlone , charProp [ compare_idx ] . fCanGlyphAlone ) ;
}
}
winetest_ok ( outnGlyphs2 = = outnGlyphs , " Got unexpected glyph count %u. \n " , outnGlyphs2 ) ;
for ( x = 0 ; x < outnGlyphs2 ; + + x )
{
unsigned int compare_idx = outpItems [ item ] . a . fRTL ? outnGlyphs2 - x - 1 : x ;
winetest_ok ( glyphs2 [ x ] = = glyphs [ compare_idx ] , " Got unexpected glyphs2[%u] %#x, expected %#x. \n " ,
x , glyphs2 [ x ] , glyphs [ compare_idx ] ) ;
winetest_ok ( glyphProp2 [ x ] . sva . uJustification = = glyphProp [ compare_idx ] . sva . uJustification ,
" Got unexpected glyphProp2[%u].sva.uJustification %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . uJustification , glyphProp [ compare_idx ] . sva . uJustification ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fClusterStart = = glyphProp [ compare_idx ] . sva . fClusterStart ,
" Got unexpected glyphProp2[%u].sva.fClusterStart %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fClusterStart , glyphProp [ compare_idx ] . sva . fClusterStart ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fDiacritic = = glyphProp [ compare_idx ] . sva . fDiacritic ,
" Got unexpected glyphProp2[%u].sva.fDiacritic %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fDiacritic , glyphProp [ compare_idx ] . sva . fDiacritic ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fZeroWidth = = glyphProp [ compare_idx ] . sva . fZeroWidth ,
" Got unexpected glyphProp2[%u].sva.fZeroWidth %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fZeroWidth , glyphProp [ compare_idx ] . sva . fZeroWidth ) ;
}
/* Most scripts get this wrong. For example, when the font has the
* appropriate ligatures , " ttfffi " get rendered as " <ttf><ffi> " , but
* " <RLO>iffftt " gets rendered as " t<ft><ff>i " . Arabic gets it right ,
* and there exist applications that depend on that . */
if ( tags [ item ] = = arab_tag & & broken ( script_count < = 75 ) )
{
winetest_win_skip ( " Test broken on this platform, skipping. \n " ) ;
}
else if ( tags [ item ] = = arab_tag )
{
for ( x = 0 ; x < cchString ; + + x )
{
string2 [ x ] = string [ cchString - x - 1 ] ;
}
outpItems [ item ] . a . fLogicalOrder = 0 ;
outpItems [ item ] . a . fRTL = ! outpItems [ item ] . a . fRTL ;
hr = pScriptShapeOpenType ( hdc , & sc , & outpItems [ item ] . a , tags [ item ] , 0x00000000 , NULL , NULL , 0 ,
string2 , cchString , maxGlyphs , logclust2 , charProp2 , glyphs2 , glyphProp2 , & outnGlyphs2 ) ;
winetest_ok ( hr = = S_OK , " ScriptShapeOpenType failed (%x) \n " , hr ) ;
for ( x = 0 ; x < cchString ; + + x )
{
unsigned int compare_idx = cchString - x - 1 ;
winetest_ok ( logclust2 [ x ] = = logclust [ compare_idx ] ,
" Got unexpected logclust2[%u] %#x, expected %#x. \n " ,
x , logclust2 [ x ] , logclust [ compare_idx ] ) ;
winetest_ok ( charProp2 [ x ] . fCanGlyphAlone = = charProp [ compare_idx ] . fCanGlyphAlone ,
" Got unexpected charProp2[%u].fCanGlyphAlone %#x, expected %#x. \n " ,
x , charProp2 [ x ] . fCanGlyphAlone , charProp [ compare_idx ] . fCanGlyphAlone ) ;
}
winetest_ok ( outnGlyphs2 = = outnGlyphs , " Got unexpected glyph count %u. \n " , outnGlyphs2 ) ;
for ( x = 0 ; x < outnGlyphs2 ; + + x )
{
winetest_ok ( glyphs2 [ x ] = = glyphs [ x ] , " Got unexpected glyphs2[%u] %#x, expected %#x. \n " ,
x , glyphs2 [ x ] , glyphs [ x ] ) ;
winetest_ok ( glyphProp2 [ x ] . sva . uJustification = = glyphProp [ x ] . sva . uJustification ,
" Got unexpected glyphProp2[%u].sva.uJustification %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . uJustification , glyphProp [ x ] . sva . uJustification ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fClusterStart = = glyphProp [ x ] . sva . fClusterStart ,
" Got unexpected glyphProp2[%u].sva.fClusterStart %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fClusterStart , glyphProp [ x ] . sva . fClusterStart ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fDiacritic = = glyphProp [ x ] . sva . fDiacritic ,
" Got unexpected glyphProp2[%u].sva.fDiacritic %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fDiacritic , glyphProp [ x ] . sva . fDiacritic ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fZeroWidth = = glyphProp [ x ] . sva . fZeroWidth ,
" Got unexpected glyphProp2[%u].sva.fZeroWidth %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fZeroWidth , glyphProp [ x ] . sva . fZeroWidth ) ;
}
outpItems [ item ] . a . fLogicalOrder = 1 ;
hr = pScriptShapeOpenType ( hdc , & sc , & outpItems [ item ] . a , tags [ item ] , 0x00000000 , NULL , NULL , 0 ,
string2 , cchString , maxGlyphs , logclust2 , charProp2 , glyphs2 , glyphProp2 , & outnGlyphs2 ) ;
winetest_ok ( hr = = S_OK , " ScriptShapeOpenType failed (%x) \n " , hr ) ;
for ( x = 0 ; x < cchString ; + + x )
{
unsigned int compare_idx = outpItems [ item ] . a . fRTL ? x : cchString - x - 1 ;
winetest_ok ( logclust2 [ x ] = = logclust [ compare_idx ] , " Got unexpected logclust2[%u] %#x, expected %#x. \n " ,
x , logclust2 [ x ] , logclust [ compare_idx ] ) ;
winetest_ok ( charProp2 [ x ] . fCanGlyphAlone = = charProp [ compare_idx ] . fCanGlyphAlone ,
" Got unexpected charProp2[%u].fCanGlyphAlone %#x, expected %#x. \n " ,
x , charProp2 [ x ] . fCanGlyphAlone , charProp [ compare_idx ] . fCanGlyphAlone ) ;
}
winetest_ok ( outnGlyphs2 = = outnGlyphs , " Got unexpected glyph count %u. \n " , outnGlyphs2 ) ;
for ( x = 0 ; x < outnGlyphs2 ; + + x )
{
unsigned int compare_idx = outpItems [ item ] . a . fRTL ? outnGlyphs2 - x - 1 : x ;
winetest_ok ( glyphs2 [ x ] = = glyphs [ compare_idx ] , " Got unexpected glyphs2[%u] %#x, expected %#x. \n " ,
x , glyphs2 [ x ] , glyphs [ compare_idx ] ) ;
winetest_ok ( glyphProp2 [ x ] . sva . uJustification = = glyphProp [ compare_idx ] . sva . uJustification ,
" Got unexpected glyphProp2[%u].sva.uJustification %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . uJustification , glyphProp [ compare_idx ] . sva . uJustification ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fClusterStart = = glyphProp [ compare_idx ] . sva . fClusterStart ,
" Got unexpected glyphProp2[%u].sva.fClusterStart %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fClusterStart , glyphProp [ compare_idx ] . sva . fClusterStart ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fDiacritic = = glyphProp [ compare_idx ] . sva . fDiacritic ,
" Got unexpected glyphProp2[%u].sva.fDiacritic %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fDiacritic , glyphProp [ compare_idx ] . sva . fDiacritic ) ;
winetest_ok ( glyphProp2 [ x ] . sva . fZeroWidth = = glyphProp [ compare_idx ] . sva . fZeroWidth ,
" Got unexpected glyphProp2[%u].sva.fZeroWidth %#x, expected %#x. \n " ,
x , glyphProp2 [ x ] . sva . fZeroWidth , glyphProp [ compare_idx ] . sva . fZeroWidth ) ;
}
}
2015-04-15 06:48:34 +02:00
cleanup :
2017-03-12 11:21:07 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , string2 ) ;
2017-03-02 09:38:43 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , logclust2 ) ;
HeapFree ( GetProcessHeap ( ) , 0 , charProp2 ) ;
HeapFree ( GetProcessHeap ( ) , 0 , glyphs2 ) ;
HeapFree ( GetProcessHeap ( ) , 0 , glyphProp2 ) ;
2011-05-17 22:06:10 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , logclust ) ;
HeapFree ( GetProcessHeap ( ) , 0 , charProp ) ;
HeapFree ( GetProcessHeap ( ) , 0 , glyphs ) ;
HeapFree ( GetProcessHeap ( ) , 0 , glyphProp ) ;
ScriptFreeCache ( & sc ) ;
}
2017-01-25 09:59:55 +01:00
# define test_shape_ok(a,b,c,d,e,f,g,h,i) \
( winetest_set_location ( __FILE__ , __LINE__ ) , 0 ) ? 0 : _test_shape_ok ( 1 , a , b , c , d , e , f , g , h , i , NULL )
2011-05-24 16:41:59 +02:00
2017-01-25 09:59:55 +01:00
# define test_shape_ok_valid(v,a,b,c,d,e,f,g,h,i) \
( winetest_set_location ( __FILE__ , __LINE__ ) , 0 ) ? 0 : _test_shape_ok ( v , a , b , c , d , e , f , g , h , i , NULL )
# define test_shape_ok_valid_props2(v,a,b,c,d,e,f,g,h,i,j) \
( winetest_set_location ( __FILE__ , __LINE__ ) , 0 ) ? 0 : _test_shape_ok ( v , a , b , c , d , e , f , g , h , i , j )
2011-05-24 16:41:59 +02:00
typedef struct tagRangeP {
BYTE range ;
LOGFONTA lf ;
} fontEnumParam ;
2013-10-24 00:29:43 +02:00
static int CALLBACK enumFontProc ( const LOGFONTA * lpelfe , const TEXTMETRICA * lpntme , DWORD FontType , LPARAM lParam )
2011-05-24 16:41:59 +02:00
{
2013-10-24 00:29:43 +02:00
NEWTEXTMETRICEXA * ntme = ( NEWTEXTMETRICEXA * ) lpntme ;
2011-05-24 16:41:59 +02:00
fontEnumParam * rp = ( fontEnumParam * ) lParam ;
int idx = 0 ;
DWORD i ;
DWORD mask = 0 ;
if ( FontType ! = TRUETYPE_FONTTYPE )
return 1 ;
i = rp - > range ;
2014-04-06 20:27:33 +02:00
while ( i > = sizeof ( DWORD ) * 8 )
2011-05-24 16:41:59 +02:00
{
idx + + ;
i - = ( sizeof ( DWORD ) * 8 ) ;
}
if ( idx > 3 )
return 0 ;
mask = 1 < < i ;
if ( ntme - > ntmFontSig . fsUsb [ idx ] & mask )
{
2013-10-24 00:29:43 +02:00
memcpy ( & ( rp - > lf ) , lpelfe , sizeof ( LOGFONTA ) ) ;
2011-05-24 16:41:59 +02:00
return 0 ;
}
return 1 ;
}
static int _find_font_for_range ( HDC hdc , const CHAR * recommended , BYTE range , const WCHAR check , HFONT * hfont , HFONT * origFont )
{
int rc = 0 ;
fontEnumParam lParam ;
lParam . range = range ;
2013-10-24 00:29:43 +02:00
memset ( & lParam . lf , 0 , sizeof ( LOGFONTA ) ) ;
2011-05-24 16:41:59 +02:00
* hfont = NULL ;
if ( recommended )
{
lstrcpyA ( lParam . lf . lfFaceName , recommended ) ;
if ( ! EnumFontFamiliesExA ( hdc , & lParam . lf , enumFontProc , ( LPARAM ) & lParam , 0 ) )
{
* hfont = CreateFontIndirectA ( & lParam . lf ) ;
if ( * hfont )
{
winetest_trace ( " using font %s \n " , lParam . lf . lfFaceName ) ;
rc = 1 ;
}
}
2017-03-19 22:59:43 +01:00
if ( ! rc )
winetest_skip ( " Font %s is not available. \n " , recommended ) ;
2011-05-24 16:41:59 +02:00
}
if ( ! * hfont )
{
2013-10-24 00:29:43 +02:00
memset ( & lParam . lf , 0 , sizeof ( LOGFONTA ) ) ;
2011-05-24 16:41:59 +02:00
lParam . lf . lfCharSet = DEFAULT_CHARSET ;
if ( ! EnumFontFamiliesExA ( hdc , & lParam . lf , enumFontProc , ( LPARAM ) & lParam , 0 ) & & lParam . lf . lfFaceName [ 0 ] )
{
* hfont = CreateFontIndirectA ( & lParam . lf ) ;
if ( * hfont )
winetest_trace ( " trying font %s: failures will only be warnings \n " , lParam . lf . lfFaceName ) ;
}
}
if ( * hfont )
{
WORD glyph = 0 ;
* origFont = SelectObject ( hdc , * hfont ) ;
2011-05-27 12:19:35 +02:00
if ( pGetGlyphIndicesW & & ( pGetGlyphIndicesW ( hdc , & check , 1 , & glyph , 0 ) = = GDI_ERROR | | glyph = = 0 ) )
2011-05-24 16:41:59 +02:00
{
winetest_trace ( " Font fails to contain required glyphs \n " ) ;
SelectObject ( hdc , * origFont ) ;
DeleteObject ( * hfont ) ;
* hfont = NULL ;
rc = 0 ;
}
else if ( ! rc )
rc = - 1 ;
}
else
winetest_trace ( " Failed to find usable font \n " ) ;
return rc ;
}
2011-05-17 22:06:10 +02:00
2011-05-24 16:41:59 +02:00
# define find_font_for_range(a,b,c,d,e,f) (winetest_set_location(__FILE__,__LINE__), 0) ? 0 : _find_font_for_range(a,b,c,d,e,f)
2011-05-17 22:06:10 +02:00
2011-05-17 22:05:39 +02:00
static void test_ScriptShapeOpenType ( HDC hdc )
{
HRESULT hr ;
SCRIPT_CACHE sc = NULL ;
2011-05-17 22:06:10 +02:00
WORD glyphs [ 4 ] , logclust [ 4 ] ;
2011-05-17 22:05:39 +02:00
SCRIPT_GLYPHPROP glyphProp [ 4 ] ;
SCRIPT_ITEM items [ 2 ] ;
2011-05-17 22:06:10 +02:00
ULONG tags [ 2 ] ;
2011-05-17 22:05:39 +02:00
SCRIPT_CONTROL Control ;
SCRIPT_STATE State ;
int nb , outnItems ;
2011-05-24 16:41:59 +02:00
HFONT hfont , hfont_orig ;
int test_valid ;
2015-08-22 11:05:43 +02:00
shapeTest_glyph glyph_test [ 4 ] ;
2011-05-17 22:05:39 +02:00
2011-05-17 22:06:10 +02:00
static const WCHAR test1 [ ] = { ' w ' , ' i ' , ' n ' , ' e ' , 0 } ;
static const shapeTest_char t1_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 0 , 0 } } } ;
static const shapeTest_glyph t1_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
static const WCHAR test2 [ ] = { 0x202B , ' i ' , ' n ' , 0x202C , 0 } ;
static const shapeTest_char t2_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 0 , 0 } } } ;
static const shapeTest_glyph t2_g [ ] = {
{ 0 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 0 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2017-03-02 09:38:39 +01:00
static const WCHAR test3 [ ] = { ' t ' , ' t ' , ' f ' , ' f ' , ' f ' , ' i ' , 0 } ;
static const shapeTest_char t3_c [ ] = { { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } ,
{ 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } } ;
static const shapeTest_glyph t3_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-24 16:43:00 +02:00
/* Hebrew */
static const WCHAR test_hebrew [ ] = { 0x05e9 , 0x05dc , 0x05d5 , 0x05dd , 0 } ;
static const shapeTest_char hebrew_c [ ] = { { 3 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 0 , { 0 , 0 } } } ;
static const shapeTest_glyph hebrew_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-17 22:06:10 +02:00
2011-05-24 16:43:06 +02:00
/* Arabic */
static const WCHAR test_arabic [ ] = { 0x0633 , 0x0644 , 0x0627 , 0x0645 , 0 } ;
static const shapeTest_char arabic_c [ ] = { { 2 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 0 , { 0 , 0 } } } ;
static const shapeTest_glyph arabic_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_ARABIC_NORMAL , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_ARABIC_SEEN , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-24 16:43:12 +02:00
/* Thai */
static const WCHAR test_thai [ ] = { 0x0e2a , 0x0e04 , 0x0e23 , 0x0e34 , 0x0e1b , 0x0e15 , 0x0e4c , 0x0e44 , 0x0e17 , 0x0e22 , } ;
static const shapeTest_char thai_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 4 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 7 , { 0 , 0 } } , { 8 , { 0 , 0 } } , { 9 , { 0 , 0 } } } ;
static const shapeTest_glyph thai_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-24 16:43:18 +02:00
/* Syriac */
2017-03-02 09:38:40 +01:00
static const WCHAR test_syriac [ ] = { 0x0710 , 0x072c , 0x0728 , 0x0742 , 0x0718 , 0x0723 , 0x0720 , 0x0710 , 0 } ;
static const shapeTest_char syriac_c [ ] = { { 6 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 4 , { 0 , 0 } } ,
{ 4 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } } ;
2011-05-24 16:43:18 +02:00
static const shapeTest_glyph syriac_g [ ] = {
2017-03-02 09:38:40 +01:00
{ 1 , { { SCRIPT_JUSTIFY_ARABIC_NORMAL , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
2011-05-24 16:43:18 +02:00
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
2017-03-02 09:38:40 +01:00
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
2011-05-24 16:43:18 +02:00
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-24 16:43:23 +02:00
/* Thaana */
static const WCHAR test_thaana [ ] = { 0x078a , 0x07ae , 0x0792 , 0x07b0 , 0x0020 , 0x0796 , 0x07aa , 0x0789 , 0x07b0 , 0x0795 , 0x07ac , 0x0791 , 0x07b0 } ;
static const shapeTest_char thaana_c [ ] = { { 12 , { 0 , 0 } } , { 12 , { 0 , 0 } } , { 10 , { 0 , 0 } } , { 10 , { 0 , 0 } } , { 8 , { 1 , 0 } } , { 7 , { 0 , 0 } } , { 7 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } } ;
static const shapeTest_glyph thaana_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-24 16:43:30 +02:00
/* Phags-pa */
static const WCHAR test_phagspa [ ] = { 0xa84f , 0xa861 , 0xa843 , 0x0020 , 0xa863 , 0xa861 , 0xa859 , 0x0020 , 0xa850 , 0xa85c , 0xa85e } ;
static const shapeTest_char phagspa_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 1 , 0 } } , { 4 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 6 , { 0 , 0 } } , { 7 , { 1 , 0 } } , { 8 , { 0 , 0 } } , { 9 , { 0 , 0 } } , { 10 , { 0 , 0 } } } ;
static const shapeTest_glyph phagspa_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2017-01-25 09:59:55 +01:00
static const SCRIPT_GLYPHPROP phagspa_win10_props [ ] = {
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ;
2011-05-24 16:43:30 +02:00
2011-05-24 16:43:33 +02:00
/* Lao */
static const WCHAR test_lao [ ] = { 0x0ead , 0x0eb1 , 0x0e81 , 0x0eaa , 0x0ead , 0x0e99 , 0x0ea5 , 0x0eb2 , 0x0ea7 , 0 } ;
static const shapeTest_char lao_c [ ] = { { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 4 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 6 , { 0 , 0 } } , { 7 , { 0 , 0 } } , { 8 , { 0 , 0 } } } ;
static const shapeTest_glyph lao_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 0 , 1 , 1 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_CHARACTER , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-24 21:40:56 +02:00
/* Tibetan */
static const WCHAR test_tibetan [ ] = { 0x0f04 , 0x0f05 , 0x0f0e , 0x0020 , 0x0f51 , 0x0f7c , 0x0f53 , 0x0f0b , 0x0f5a , 0x0f53 , 0x0f0b , 0x0f51 , 0x0f44 , 0x0f0b , 0x0f54 , 0x0f7c , 0x0f0d } ;
static const shapeTest_char tibetan_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 1 , 0 } } , { 4 , { 0 , 0 } } , { 4 , { 0 , 0 } } , { 6 , { 0 , 0 } } , { 7 , { 0 , 0 } } , { 8 , { 0 , 0 } } , { 9 , { 0 , 0 } } , { 10 , { 0 , 0 } } , { 11 , { 0 , 0 } } , { 12 , { 0 , 0 } } , { 13 , { 0 , 0 } } , { 14 , { 0 , 0 } } , { 14 , { 0 , 0 } } , { 16 , { 0 , 0 } } } ;
static const shapeTest_glyph tibetan_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_BLANK , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2017-01-25 09:59:55 +01:00
static const SCRIPT_GLYPHPROP tibetan_win10_props [ ] = {
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 0 , 1 , 1 , 0 , 0 } , 0 } ,
{ { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ;
2011-05-24 21:40:56 +02:00
2011-06-02 21:57:14 +02:00
/* Devanagari */
static const WCHAR test_devanagari [ ] = { 0x0926 , 0x0947 , 0x0935 , 0x0928 , 0x093e , 0x0917 , 0x0930 , 0x0940 } ;
static const shapeTest_char devanagari_c [ ] = { { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 6 , { 0 , 0 } } , { 6 , { 0 , 0 } } } ;
static const shapeTest_glyph devanagari_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-06-02 21:57:20 +02:00
/* Bengali */
static const WCHAR test_bengali [ ] = { 0x09ac , 0x09be , 0x0982 , 0x09b2 , 0x09be } ;
static const shapeTest_char bengali_c [ ] = { { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 3 , { 0 , 0 } } } ;
static const shapeTest_glyph bengali_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-06-02 21:57:26 +02:00
/* Gurmukhi */
static const WCHAR test_gurmukhi [ ] = { 0x0a17 , 0x0a41 , 0x0a30 , 0x0a2e , 0x0a41 , 0x0a16 , 0x0a40 } ;
static const shapeTest_char gurmukhi_c [ ] = { { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 5 , { 0 , 0 } } } ;
static const shapeTest_glyph gurmukhi_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-06-02 21:57:32 +02:00
/* Gujarati */
static const WCHAR test_gujarati [ ] = { 0x0a97 , 0x0ac1 , 0x0a9c , 0x0ab0 , 0x0abe , 0x0aa4 , 0x0ac0 } ;
static const shapeTest_char gujarati_c [ ] = { { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 5 , { 0 , 0 } } , { 5 , { 0 , 0 } } } ;
static const shapeTest_glyph gujarati_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-06-02 21:57:39 +02:00
/* Oriya */
static const WCHAR test_oriya [ ] = { 0x0b13 , 0x0b21 , 0x0b3c , 0x0b3f , 0x0b06 } ;
static const shapeTest_char oriya_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 3 , { 0 , 0 } } } ;
static const shapeTest_glyph oriya_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-06-02 21:57:44 +02:00
/* Tamil */
static const WCHAR test_tamil [ ] = { 0x0ba4 , 0x0bae , 0x0bbf , 0x0bb4 , 0x0bcd } ;
static const shapeTest_char tamil_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 3 , { 0 , 0 } } , { 3 , { 0 , 0 } } } ;
static const shapeTest_glyph tamil_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-06-02 21:57:51 +02:00
/* Telugu */
static const WCHAR test_telugu [ ] = { 0x0c24 , 0x0c46 , 0x0c32 , 0x0c41 , 0x0c17 , 0x0c41 } ;
static const shapeTest_char telugu_c [ ] = { { 0 , { 0 , 0 } } , { 0 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 4 , { 0 , 0 } } , { 4 , { 0 , 0 } } } ;
static const shapeTest_glyph telugu_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-06-02 21:57:56 +02:00
/* Malayalam */
static const WCHAR test_malayalam [ ] = { 0x0d2e , 0x0d32 , 0x0d2f , 0x0d3e , 0x0d33 , 0x0d02 } ;
static const shapeTest_char malayalam_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 2 , { 0 , 0 } } , { 4 , { 0 , 0 } } , { 4 , { 0 , 0 } } } ;
static const shapeTest_glyph malayalam_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-11-08 17:33:37 +01:00
/* Kannada */
static const WCHAR test_kannada [ ] = { 0x0c95 , 0x0ca8 , 0x0ccd , 0x0ca8 , 0x0ca1 } ;
static const shapeTest_char kannada_c [ ] = { { 0 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 1 , { 0 , 0 } } , { 3 , { 0 , 0 } } } ;
static const shapeTest_glyph kannada_g [ ] = {
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 1 , 0 , 0 , 0 , 0 } , 0 } } ,
{ 1 , { { SCRIPT_JUSTIFY_NONE , 0 , 0 , 0 , 0 , 0 } , 0 } } } ;
2011-05-17 22:05:39 +02:00
if ( ! pScriptItemizeOpenType | | ! pScriptShapeOpenType )
{
win_skip ( " ScriptShapeOpenType not available on this platform \n " ) ;
return ;
}
memset ( & Control , 0 , sizeof ( Control ) ) ;
memset ( & State , 0 , sizeof ( State ) ) ;
2011-05-17 22:06:10 +02:00
2011-05-17 22:05:39 +02:00
hr = pScriptItemizeOpenType ( test1 , 4 , 2 , & Control , & State , items , tags , & outnItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemizeOpenType should return S_OK not %08x \n " , hr ) ;
2011-05-17 22:05:39 +02:00
ok ( items [ 0 ] . a . fNoGlyphIndex = = FALSE , " fNoGlyphIndex TRUE \n " ) ;
hr = pScriptShapeOpenType ( hdc , & sc , & items [ 0 ] . a , tags [ 0 ] , 0x00000000 , NULL , NULL , 0 , test1 , 4 , 4 , NULL , NULL , glyphs , NULL , & nb ) ;
ok ( hr = = E_INVALIDARG , " ScriptShapeOpenType should return E_INVALIDARG not %08x \n " , hr ) ;
hr = pScriptShapeOpenType ( hdc , & sc , & items [ 0 ] . a , tags [ 0 ] , 0x00000000 , NULL , NULL , 0 , test1 , 4 , 4 , NULL , NULL , glyphs , glyphProp , NULL ) ;
ok ( hr = = E_INVALIDARG , " ScriptShapeOpenType should return E_INVALIDARG not %08x \n " , hr ) ;
hr = pScriptShapeOpenType ( NULL , & sc , & items [ 0 ] . a , tags [ 0 ] , 0x00000000 , NULL , NULL , 0 , test1 , 4 , 4 , NULL , NULL , glyphs , glyphProp , & nb ) ;
ok ( hr = = E_INVALIDARG , " ScriptShapeOpenType should return E_PENDING not %08x \n " , hr ) ;
hr = pScriptShapeOpenType ( hdc , & sc , & items [ 0 ] . a , tags [ 0 ] , 0x00000000 , NULL , NULL , 0 , test1 , 4 , 4 , NULL , NULL , glyphs , glyphProp , & nb ) ;
ok ( hr = = E_INVALIDARG ,
" ScriptShapeOpenType should return E_FAIL or E_INVALIDARG, not %08x \n " , hr ) ;
hr = pScriptShapeOpenType ( hdc , & sc , & items [ 0 ] . a , tags [ 0 ] , 0x00000000 , NULL , NULL , 0 , test1 , 4 , 4 , logclust , NULL , glyphs , glyphProp , & nb ) ;
ok ( hr = = E_INVALIDARG , " ScriptShapeOpenType should return E_INVALIDARG not %08x \n " , hr ) ;
ScriptFreeCache ( & sc ) ;
2011-05-17 22:06:10 +02:00
test_shape_ok ( hdc , test1 , 4 , & Control , & State , 0 , 4 , t1_c , t1_g ) ;
2015-08-22 11:05:43 +02:00
/* newer Tahoma has zerowidth space glyphs for 0x202b and 0x202c */
memcpy ( glyph_test , t2_g , sizeof ( glyph_test ) ) ;
GetGlyphIndicesW ( hdc , test2 , 4 , glyphs , 0 ) ;
if ( glyphs [ 0 ] ! = 0 )
glyph_test [ 0 ] . Glyph = 1 ;
if ( glyphs [ 3 ] ! = 0 )
glyph_test [ 3 ] . Glyph = 1 ;
test_shape_ok ( hdc , test2 , 4 , & Control , & State , 1 , 4 , t2_c , glyph_test ) ;
2011-05-24 16:43:06 +02:00
2017-03-02 09:38:39 +01:00
test_valid = find_font_for_range ( hdc , " Calibri " , 0 , test3 [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test3 , 6 , & Control , & State , 0 , 2 , t3_c , t3_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 16:43:00 +02:00
test_valid = find_font_for_range ( hdc , " Microsoft Sans Serif " , 11 , test_hebrew [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_hebrew , 4 , & Control , & State , 0 , 4 , hebrew_c , hebrew_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 16:43:06 +02:00
test_valid = find_font_for_range ( hdc , " Microsoft Sans Serif " , 13 , test_arabic [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_arabic , 4 , & Control , & State , 0 , 3 , arabic_c , arabic_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 16:43:12 +02:00
test_valid = find_font_for_range ( hdc , " Microsoft Sans Serif " , 24 , test_thai [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_thai , 10 , & Control , & State , 0 , 10 , thai_c , thai_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 16:43:18 +02:00
test_valid = find_font_for_range ( hdc , " Estrangelo Edessa " , 71 , test_syriac [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
2017-03-02 09:38:40 +01:00
test_shape_ok_valid ( test_valid , hdc , test_syriac , 8 , & Control , & State , 0 , 7 , syriac_c , syriac_g ) ;
2011-05-24 16:43:18 +02:00
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 16:43:23 +02:00
test_valid = find_font_for_range ( hdc , " MV Boli " , 72 , test_thaana [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_thaana , 13 , & Control , & State , 0 , 13 , thaana_c , thaana_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 16:43:30 +02:00
test_valid = find_font_for_range ( hdc , " Microsoft PhagsPa " , 53 , test_phagspa [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
2017-01-25 09:59:55 +01:00
test_shape_ok_valid_props2 ( test_valid , hdc , test_phagspa , 11 , & Control , & State , 0 , 11 ,
phagspa_c , phagspa_g , phagspa_win10_props ) ;
2011-05-24 16:43:30 +02:00
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 16:43:33 +02:00
test_valid = find_font_for_range ( hdc , " DokChampa " , 25 , test_lao [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_lao , 9 , & Control , & State , 0 , 9 , lao_c , lao_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-24 21:40:56 +02:00
test_valid = find_font_for_range ( hdc , " Microsoft Himalaya " , 70 , test_tibetan [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
2017-01-25 09:59:55 +01:00
test_shape_ok_valid_props2 ( test_valid , hdc , test_tibetan , 17 , & Control , & State , 0 , 17 ,
tibetan_c , tibetan_g , tibetan_win10_props ) ;
2011-05-24 21:40:56 +02:00
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:14 +02:00
test_valid = find_font_for_range ( hdc , " Mangal " , 15 , test_devanagari [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_devanagari , 8 , & Control , & State , 0 , 8 , devanagari_c , devanagari_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:20 +02:00
test_valid = find_font_for_range ( hdc , " Vrinda " , 16 , test_bengali [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_bengali , 5 , & Control , & State , 0 , 5 , bengali_c , bengali_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:26 +02:00
test_valid = find_font_for_range ( hdc , " Raavi " , 17 , test_gurmukhi [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_gurmukhi , 7 , & Control , & State , 0 , 7 , gurmukhi_c , gurmukhi_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:32 +02:00
test_valid = find_font_for_range ( hdc , " Shruti " , 18 , test_gujarati [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_gujarati , 7 , & Control , & State , 0 , 7 , gujarati_c , gujarati_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:39 +02:00
test_valid = find_font_for_range ( hdc , " Kalinga " , 19 , test_oriya [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_oriya , 5 , & Control , & State , 0 , 4 , oriya_c , oriya_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:44 +02:00
test_valid = find_font_for_range ( hdc , " Latha " , 20 , test_tamil [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_tamil , 5 , & Control , & State , 0 , 4 , tamil_c , tamil_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:51 +02:00
test_valid = find_font_for_range ( hdc , " Gautami " , 21 , test_telugu [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_telugu , 6 , & Control , & State , 0 , 6 , telugu_c , telugu_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-06-02 21:57:56 +02:00
test_valid = find_font_for_range ( hdc , " Kartika " , 23 , test_malayalam [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_malayalam , 6 , & Control , & State , 0 , 6 , malayalam_c , malayalam_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-11-08 17:33:37 +01:00
test_valid = find_font_for_range ( hdc , " Tunga " , 22 , test_kannada [ 0 ] , & hfont , & hfont_orig ) ;
if ( hfont ! = NULL )
{
test_shape_ok_valid ( test_valid , hdc , test_kannada , 5 , & Control , & State , 0 , 4 , kannada_c , kannada_g ) ;
SelectObject ( hdc , hfont_orig ) ;
DeleteObject ( hfont ) ;
}
2011-05-17 22:05:39 +02:00
}
2010-04-13 21:49:07 +02:00
2007-12-12 10:44:42 +01:00
static void test_ScriptShape ( HDC hdc )
{
2010-04-15 16:23:04 +02:00
static const WCHAR test1 [ ] = { ' w ' , ' i ' , ' n ' , ' e ' , 0 } ;
static const WCHAR test2 [ ] = { 0x202B , ' i ' , ' n ' , 0x202C , 0 } ;
2007-12-12 10:44:42 +01:00
HRESULT hr ;
SCRIPT_CACHE sc = NULL ;
2015-08-22 11:05:43 +02:00
WORD glyphs [ 4 ] , glyphs2 [ 4 ] , logclust [ 4 ] , glyphs3 [ 4 ] ;
2007-12-12 10:44:42 +01:00
SCRIPT_VISATTR attrs [ 4 ] ;
2017-02-13 22:57:13 +01:00
SCRIPT_ITEM items [ 4 ] ;
2015-08-11 17:54:38 +02:00
int nb , i , j ;
2007-12-12 10:44:42 +01:00
hr = ScriptItemize ( test1 , 4 , 2 , NULL , NULL , items , NULL ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK not %08x \n " , hr ) ;
2007-12-12 10:44:42 +01:00
ok ( items [ 0 ] . a . fNoGlyphIndex = = FALSE , " fNoGlyphIndex TRUE \n " ) ;
hr = ScriptShape ( hdc , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs , NULL , NULL , & nb ) ;
ok ( hr = = E_INVALIDARG , " ScriptShape should return E_INVALIDARG not %08x \n " , hr ) ;
hr = ScriptShape ( hdc , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs , NULL , attrs , NULL ) ;
ok ( hr = = E_INVALIDARG , " ScriptShape should return E_INVALIDARG not %08x \n " , hr ) ;
2008-10-09 15:17:29 +02:00
hr = ScriptShape ( NULL , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs , NULL , attrs , & nb ) ;
ok ( hr = = E_PENDING , " ScriptShape should return E_PENDING not %08x \n " , hr ) ;
2007-12-12 10:44:42 +01:00
hr = ScriptShape ( hdc , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs , NULL , attrs , & nb ) ;
2009-09-03 14:50:17 +02:00
ok ( broken ( hr = = S_OK ) | |
hr = = E_INVALIDARG | | /* Vista, W2K8 */
hr = = E_FAIL , /* WIN7 */
" ScriptShape should return E_FAIL or E_INVALIDARG, not %08x \n " , hr ) ;
2009-04-10 09:48:22 +02:00
ok ( items [ 0 ] . a . fNoGlyphIndex = = FALSE , " fNoGlyphIndex TRUE \n " ) ;
hr = ScriptShape ( hdc , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs , logclust , attrs , & nb ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not %08x \n " , hr ) ;
2007-12-12 10:44:42 +01:00
ok ( items [ 0 ] . a . fNoGlyphIndex = = FALSE , " fNoGlyphIndex TRUE \n " ) ;
2010-04-15 16:23:04 +02:00
memset ( glyphs , - 1 , sizeof ( glyphs ) ) ;
memset ( logclust , - 1 , sizeof ( logclust ) ) ;
memset ( attrs , - 1 , sizeof ( attrs ) ) ;
2009-04-10 09:48:22 +02:00
hr = ScriptShape ( NULL , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs , logclust , attrs , & nb ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not %08x \n " , hr ) ;
2010-04-15 16:23:04 +02:00
ok ( nb = = 4 , " Wrong number of items \n " ) ;
ok ( logclust [ 0 ] = = 0 , " clusters out of order \n " ) ;
ok ( logclust [ 1 ] = = 1 , " clusters out of order \n " ) ;
ok ( logclust [ 2 ] = = 2 , " clusters out of order \n " ) ;
ok ( logclust [ 3 ] = = 3 , " clusters out of order \n " ) ;
ok ( attrs [ 0 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 1 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 2 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 3 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 0 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 1 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 2 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 3 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 0 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 1 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 2 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 3 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 0 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 1 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 2 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 3 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ScriptFreeCache ( & sc ) ;
sc = NULL ;
memset ( glyphs2 , - 1 , sizeof ( glyphs2 ) ) ;
2015-08-22 11:05:43 +02:00
memset ( glyphs3 , - 1 , sizeof ( glyphs3 ) ) ;
2010-04-15 16:23:04 +02:00
memset ( logclust , - 1 , sizeof ( logclust ) ) ;
memset ( attrs , - 1 , sizeof ( attrs ) ) ;
2015-08-22 11:05:43 +02:00
GetGlyphIndicesW ( hdc , test2 , 4 , glyphs3 , 0 ) ;
2010-04-15 16:23:04 +02:00
hr = ScriptShape ( hdc , & sc , test2 , 4 , 4 , & items [ 0 ] . a , glyphs2 , logclust , attrs , & nb ) ;
ok ( hr = = S_OK , " ScriptShape should return S_OK not %08x \n " , hr ) ;
ok ( nb = = 4 , " Wrong number of items \n " ) ;
2015-08-22 11:05:43 +02:00
ok ( glyphs2 [ 0 ] = = glyphs3 [ 0 ] , " Incorrect glyph for 0x202B \n " ) ;
ok ( glyphs2 [ 3 ] = = glyphs3 [ 3 ] , " Incorrect glyph for 0x202C \n " ) ;
2010-04-15 16:23:04 +02:00
ok ( logclust [ 0 ] = = 0 , " clusters out of order \n " ) ;
ok ( logclust [ 1 ] = = 1 , " clusters out of order \n " ) ;
ok ( logclust [ 2 ] = = 2 , " clusters out of order \n " ) ;
ok ( logclust [ 3 ] = = 3 , " clusters out of order \n " ) ;
ok ( attrs [ 0 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 1 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 2 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 3 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 0 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 1 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 2 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 3 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 0 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 1 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 2 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 3 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 0 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 1 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 2 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 3 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
/* modify LTR to RTL */
items [ 0 ] . a . fRTL = 1 ;
memset ( glyphs2 , - 1 , sizeof ( glyphs2 ) ) ;
memset ( logclust , - 1 , sizeof ( logclust ) ) ;
memset ( attrs , - 1 , sizeof ( attrs ) ) ;
hr = ScriptShape ( hdc , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs2 , logclust , attrs , & nb ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not %08x \n " , hr ) ;
2010-04-15 16:23:04 +02:00
ok ( nb = = 4 , " Wrong number of items \n " ) ;
ok ( glyphs2 [ 0 ] = = glyphs [ 3 ] , " Glyphs not reordered properly \n " ) ;
ok ( glyphs2 [ 1 ] = = glyphs [ 2 ] , " Glyphs not reordered properly \n " ) ;
ok ( glyphs2 [ 2 ] = = glyphs [ 1 ] , " Glyphs not reordered properly \n " ) ;
ok ( glyphs2 [ 3 ] = = glyphs [ 0 ] , " Glyphs not reordered properly \n " ) ;
ok ( logclust [ 0 ] = = 3 , " clusters out of order \n " ) ;
ok ( logclust [ 1 ] = = 2 , " clusters out of order \n " ) ;
ok ( logclust [ 2 ] = = 1 , " clusters out of order \n " ) ;
ok ( logclust [ 3 ] = = 0 , " clusters out of order \n " ) ;
ok ( attrs [ 0 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 1 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 2 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 3 ] . uJustification = = SCRIPT_JUSTIFY_CHARACTER , " uJustification incorrect \n " ) ;
ok ( attrs [ 0 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 1 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 2 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 3 ] . fClusterStart = = 1 , " fClusterStart incorrect \n " ) ;
ok ( attrs [ 0 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 1 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 2 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 3 ] . fDiacritic = = 0 , " fDiacritic incorrect \n " ) ;
ok ( attrs [ 0 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 1 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 2 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ok ( attrs [ 3 ] . fZeroWidth = = 0 , " fZeroWidth incorrect \n " ) ;
ScriptFreeCache ( & sc ) ;
2015-08-11 17:54:38 +02:00
/* some control characters are shown as blank */
for ( i = 0 ; i < 2 ; i + + )
{
static const WCHAR space [ ] = { ' ' , 0 } ;
2017-02-13 22:57:13 +01:00
static const struct
{
WCHAR c ;
unsigned int item_count ;
unsigned int item ;
}
test_data [ ] =
{
{ 0x0009 , 3 , 1 } , /* \t */
{ 0x000a , 3 , 1 } , /* \n */
{ 0x000d , 3 , 1 } , /* \r */
{ 0x001c , 3 , 1 } , /* FS */
{ 0x001d , 3 , 1 } , /* GS */
{ 0x001e , 3 , 1 } , /* RS */
{ 0x001f , 3 , 1 } , /* US */
{ 0x200b , 1 , 0 } , /* ZWSP */
{ 0x200c , 1 , 0 } , /* ZWNJ */
{ 0x200d , 1 , 0 } , /* ZWJ */
{ 0x200e , 3 , 1 } , /* LRM */
{ 0x200f , 3 , 1 } , /* RLM */
{ 0x202a , 3 , 1 } , /* LRE */
{ 0x202b , 3 , 1 } , /* RLE */
{ 0x202c , 3 , 1 } , /* PDF */
{ 0x202d , 3 , 1 } , /* LRO */
{ 0x202e , 3 , 1 } , /* RLO */
} ;
WCHAR chars [ 3 ] ;
2015-08-11 17:54:38 +02:00
HFONT font , oldfont = NULL ;
LOGFONTA lf ;
font = GetCurrentObject ( hdc , OBJ_FONT ) ;
GetObjectA ( font , sizeof ( lf ) , & lf ) ;
if ( i = = 1 ) {
lstrcpyA ( lf . lfFaceName , " MS Sans Serif " ) ;
font = CreateFontIndirectA ( & lf ) ;
oldfont = SelectObject ( hdc , font ) ;
}
hr = ScriptItemize ( space , 1 , 2 , NULL , NULL , items , NULL ) ;
ok ( hr = = S_OK , " %s: expected S_OK, got %08x \n " , lf . lfFaceName , hr ) ;
hr = ScriptShape ( hdc , & sc , space , 1 , 1 , & items [ 0 ] . a , glyphs , logclust , attrs , & nb ) ;
ok ( hr = = S_OK , " %s: expected S_OK, got %08x \n " , lf . lfFaceName , hr ) ;
ok ( nb = = 1 , " %s: expected 1, got %d \n " , lf . lfFaceName , nb ) ;
2017-02-13 22:57:13 +01:00
chars [ 0 ] = ' A ' ;
chars [ 2 ] = ' A ' ;
for ( j = 0 ; j < sizeof ( test_data ) / sizeof ( * test_data ) ; + + j )
2015-08-11 17:54:38 +02:00
{
2017-02-13 22:57:13 +01:00
WCHAR c = test_data [ j ] . c ;
SCRIPT_ITEM * item ;
chars [ 1 ] = c ;
hr = ScriptItemize ( chars , 3 , 4 , NULL , NULL , items , & nb ) ;
ok ( hr = = S_OK , " %s: [%02x] expected S_OK, got %08x \n " , lf . lfFaceName , c , hr ) ;
2017-02-13 22:57:14 +01:00
ok ( nb = = test_data [ j ] . item_count , " %s: [%02x] Got unexpected item count %d. \n " ,
2017-02-13 22:57:13 +01:00
lf . lfFaceName , c , nb ) ;
item = & items [ test_data [ j ] . item ] ;
ok ( ! item - > a . fNoGlyphIndex , " %s: [%02x] got unexpected fNoGlyphIndex %#x. \n " ,
lf . lfFaceName , c , item - > a . fNoGlyphIndex ) ;
hr = ScriptShape ( hdc , & sc , chars , 3 , 3 , & item - > a , glyphs2 , logclust , attrs , & nb ) ;
ok ( hr = = S_OK , " %s: [%02x] expected S_OK, got %08x \n " , lf . lfFaceName , c , hr ) ;
ok ( nb = = 3 , " %s: [%02x] expected 3, got %d \n " , lf . lfFaceName , c , nb ) ;
ok ( ! item - > a . fNoGlyphIndex , " %s: [%02x] got unexpected fNoGlyphIndex %#x. \n " ,
lf . lfFaceName , c , item - > a . fNoGlyphIndex ) ;
ok ( glyphs [ 0 ] = = glyphs2 [ 1 ] | |
broken ( glyphs2 [ 1 ] = = c & & ( c < 0x10 ) ) ,
" %s: [%02x] expected %04x, got %04x \n " , lf . lfFaceName , c , glyphs [ 0 ] , glyphs2 [ 1 ] ) ;
ok ( attrs [ 1 ] . fZeroWidth | | broken ( ! attrs [ 1 ] . fZeroWidth & & ( c < 0x10 ) /* Vista */ ) ,
" %s: [%02x] got unexpected fZeroWidth %#x. \n " , lf . lfFaceName , c , attrs [ 1 ] . fZeroWidth ) ;
item - > a . fNoGlyphIndex = 1 ;
hr = ScriptShape ( hdc , & sc , chars , 3 , 3 , & item - > a , glyphs2 , logclust , attrs , & nb ) ;
ok ( hr = = S_OK , " %s: [%02x] expected S_OK, got %08x \n " , lf . lfFaceName , c , hr ) ;
ok ( nb = = 3 , " %s: [%02x] expected 1, got %d \n " , lf . lfFaceName , c , nb ) ;
if ( c = = 0x200b | | c = = 0x200c | | c = = 0x200d )
2016-06-10 00:44:39 +02:00
{
2017-02-13 22:57:13 +01:00
ok ( glyphs2 [ 1 ] = = 0x0020 ,
" %s: [%02x] got unexpected %04x. \n " , lf . lfFaceName , c , glyphs2 [ 1 ] ) ;
ok ( attrs [ 1 ] . fZeroWidth , " %s: [%02x] got unexpected fZeroWidth %#x. \n " ,
lf . lfFaceName , c , attrs [ 1 ] . fZeroWidth ) ;
2016-06-10 00:44:39 +02:00
}
else
{
2017-02-13 22:57:13 +01:00
ok ( glyphs2 [ 1 ] = = c ,
" %s: [%02x] got unexpected %04x. \n " , lf . lfFaceName , c , glyphs2 [ 1 ] ) ;
ok ( ! attrs [ 1 ] . fZeroWidth , " %s: [%02x] got unexpected fZeroWidth %#x. \n " ,
lf . lfFaceName , c , attrs [ 1 ] . fZeroWidth ) ;
2016-06-10 00:44:39 +02:00
}
2015-08-11 17:54:38 +02:00
}
if ( oldfont )
DeleteObject ( SelectObject ( hdc , oldfont ) ) ;
ScriptFreeCache ( & sc ) ;
}
2010-04-15 16:23:04 +02:00
}
static void test_ScriptPlace ( HDC hdc )
{
static const WCHAR test1 [ ] = { ' t ' , ' e ' , ' s ' , ' t ' , 0 } ;
BOOL ret ;
HRESULT hr ;
SCRIPT_CACHE sc = NULL ;
WORD glyphs [ 4 ] , logclust [ 4 ] ;
SCRIPT_VISATTR attrs [ 4 ] ;
SCRIPT_ITEM items [ 2 ] ;
int nb , widths [ 4 ] ;
GOFFSET offset [ 4 ] ;
ABC abc [ 4 ] ;
hr = ScriptItemize ( test1 , 4 , 2 , NULL , NULL , items , NULL ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK not %08x \n " , hr ) ;
2010-04-15 16:23:04 +02:00
ok ( items [ 0 ] . a . fNoGlyphIndex = = FALSE , " fNoGlyphIndex TRUE \n " ) ;
hr = ScriptShape ( hdc , & sc , test1 , 4 , 4 , & items [ 0 ] . a , glyphs , logclust , attrs , & nb ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not %08x \n " , hr ) ;
2010-04-15 16:23:04 +02:00
ok ( items [ 0 ] . a . fNoGlyphIndex = = FALSE , " fNoGlyphIndex TRUE \n " ) ;
2008-10-09 15:17:29 +02:00
2007-12-12 10:44:42 +01:00
hr = ScriptPlace ( hdc , & sc , glyphs , 4 , NULL , & items [ 0 ] . a , widths , NULL , NULL ) ;
ok ( hr = = E_INVALIDARG , " ScriptPlace should return E_INVALIDARG not %08x \n " , hr ) ;
2008-10-09 15:17:29 +02:00
hr = ScriptPlace ( NULL , & sc , glyphs , 4 , attrs , & items [ 0 ] . a , widths , NULL , NULL ) ;
2009-09-03 14:50:17 +02:00
ok ( broken ( hr = = E_PENDING ) | |
hr = = E_INVALIDARG | | /* Vista, W2K8 */
hr = = E_FAIL , /* WIN7 */
" ScriptPlace should return E_FAIL or E_INVALIDARG, not %08x \n " , hr ) ;
2009-04-10 09:51:32 +02:00
hr = ScriptPlace ( NULL , & sc , glyphs , 4 , attrs , & items [ 0 ] . a , widths , offset , NULL ) ;
2008-10-09 15:17:29 +02:00
ok ( hr = = E_PENDING , " ScriptPlace should return E_PENDING not %08x \n " , hr ) ;
2009-04-10 09:51:32 +02:00
hr = ScriptPlace ( NULL , & sc , glyphs , 4 , attrs , & items [ 0 ] . a , widths , NULL , abc ) ;
2009-09-03 14:50:17 +02:00
ok ( broken ( hr = = E_PENDING ) | |
hr = = E_INVALIDARG | | /* Vista, W2K8 */
hr = = E_FAIL , /* WIN7 */
" ScriptPlace should return E_FAIL or E_INVALIDARG, not %08x \n " , hr ) ;
2009-04-10 09:51:32 +02:00
hr = ScriptPlace ( hdc , & sc , glyphs , 4 , attrs , & items [ 0 ] . a , widths , offset , NULL ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptPlace should return S_OK not %08x \n " , hr ) ;
2007-12-12 10:44:42 +01:00
ok ( items [ 0 ] . a . fNoGlyphIndex = = FALSE , " fNoGlyphIndex TRUE \n " ) ;
2016-02-10 11:59:39 +01:00
if ( widths [ 0 ] ! = 0 )
{
int old_width = widths [ 0 ] ;
attrs [ 0 ] . fZeroWidth = 1 ;
hr = ScriptPlace ( hdc , & sc , glyphs , 4 , attrs , & items [ 0 ] . a , widths , offset , NULL ) ;
ok ( hr = = S_OK , " ScriptPlace should return S_OK not %08x \n " , hr ) ;
ok ( widths [ 0 ] = = 0 , " got width %d \n " , widths [ 0 ] ) ;
widths [ 0 ] = old_width ;
}
else
skip ( " Glyph already has zero-width - skipping fZeroWidth test \n " ) ;
2007-12-12 10:44:42 +01:00
ret = ExtTextOutW ( hdc , 1 , 1 , 0 , NULL , glyphs , 4 , widths ) ;
ok ( ret , " ExtTextOutW should return TRUE \n " ) ;
ScriptFreeCache ( & sc ) ;
}
2006-08-04 11:47:37 +02:00
static void test_ScriptItemIzeShapePlace ( HDC hdc , unsigned short pwOutGlyphs [ 256 ] )
2006-02-14 17:38:20 +01:00
{
HRESULT hr ;
int iMaxProps ;
const SCRIPT_PROPERTIES * * ppSp ;
int cInChars ;
int cMaxItems ;
SCRIPT_ITEM pItem [ 255 ] ;
int pcItems ;
2006-08-04 11:47:37 +02:00
WCHAR TestItem1 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' a ' , 0 } ;
WCHAR TestItem2 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' b ' , 0 } ;
2010-04-22 12:06:02 +02:00
WCHAR TestItem3 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' c ' , ' ' , ' 1 ' , ' 2 ' , ' 3 ' , ' ' , ' ' , ' e ' , ' n ' , ' d ' , 0 } ;
WCHAR TestItem4 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' d ' , ' ' , 0x0684 , 0x0694 , 0x06a4 , ' ' , ' ' , ' \r ' , ' \n ' , ' e ' , ' n ' , ' d ' , 0 } ;
WCHAR TestItem5 [ ] = { 0x0684 , ' T ' , ' e ' , ' s ' , ' t ' , ' e ' , ' ' , 0x0684 , 0x0694 , 0x06a4 , ' ' , ' ' , ' e ' , ' n ' , ' d ' , 0 } ;
2010-04-27 14:43:34 +02:00
WCHAR TestItem6 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' f ' , ' ' , ' ' , ' ' , ' \r ' , ' \n ' , ' e ' , ' n ' , ' d ' , 0 } ;
2006-02-14 17:38:20 +01:00
SCRIPT_CACHE psc ;
int cChars ;
int cMaxGlyphs ;
2006-04-30 15:44:30 +02:00
unsigned short pwOutGlyphs1 [ 256 ] ;
2006-02-22 13:24:52 +01:00
unsigned short pwOutGlyphs2 [ 256 ] ;
2006-02-14 17:38:20 +01:00
unsigned short pwLogClust [ 256 ] ;
SCRIPT_VISATTR psva [ 256 ] ;
int pcGlyphs ;
int piAdvance [ 256 ] ;
GOFFSET pGoffset [ 256 ] ;
ABC pABC [ 256 ] ;
int cnt ;
/* Start testing usp10 functions */
/* This test determines that the pointer returned by ScriptGetProperties is valid
* by checking a known value in the table */
hr = ScriptGetProperties ( & ppSp , & iMaxProps ) ;
2011-02-05 07:48:59 +01:00
ok ( hr = = S_OK , " ScriptGetProperties failed: 0x%08x \n " , hr ) ;
2006-02-14 17:38:20 +01:00
trace ( " number of script properties %d \n " , iMaxProps ) ;
2010-04-22 12:06:02 +02:00
ok ( iMaxProps > 0 , " Number of scripts returned should not be 0 \n " ) ;
2006-02-16 12:06:18 +01:00
if ( iMaxProps > 0 )
2010-08-12 21:57:29 +02:00
ok ( ppSp [ 0 ] - > langid = = 0 , " Langid[0] not = to 0 \n " ) ; /* Check a known value to ensure */
2006-02-16 12:06:18 +01:00
/* ptrs work */
2006-02-14 17:38:20 +01:00
/* This is a valid test that will cause parsing to take place */
cInChars = 5 ;
cMaxItems = 255 ;
hr = ScriptItemize ( TestItem1 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
2006-02-14 17:38:20 +01:00
/* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
* returned . */
2006-02-18 16:00:29 +01:00
ok ( pcItems > 0 , " The number of SCRIPT_ITEMS should be greater than 0 \n " ) ;
2006-02-14 17:38:20 +01:00
if ( pcItems > 0 )
ok ( pItem [ 0 ] . iCharPos = = 0 & & pItem [ 1 ] . iCharPos = = cInChars ,
" Start pos not = 0 (%d) or end pos not = %d (%d) \n " ,
pItem [ 0 ] . iCharPos , cInChars , pItem [ 1 ] . iCharPos ) ;
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
* ie . ScriptItemize has succeeded and that pItem has been set */
cInChars = 5 ;
2014-08-28 21:44:24 +02:00
if ( hr = = S_OK ) {
2006-02-14 17:38:20 +01:00
psc = NULL ; /* must be null on first call */
cChars = cInChars ;
2006-02-20 10:19:32 +01:00
cMaxGlyphs = cInChars ;
2006-02-14 17:38:20 +01:00
hr = ScriptShape ( NULL , & psc , TestItem1 , cChars ,
cMaxGlyphs , & pItem [ 0 ] . a ,
2006-04-30 15:44:30 +02:00
pwOutGlyphs1 , pwLogClust , psva , & pcGlyphs ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_PENDING , " If psc is NULL (%08x) the E_PENDING should be returned \n " , hr ) ;
2006-02-20 10:19:32 +01:00
cMaxGlyphs = 4 ;
hr = ScriptShape ( hdc , & psc , TestItem1 , cChars ,
2006-02-14 17:38:20 +01:00
cMaxGlyphs , & pItem [ 0 ] . a ,
2006-04-30 15:44:30 +02:00
pwOutGlyphs1 , pwLogClust , psva , & pcGlyphs ) ;
ok ( hr = = E_OUTOFMEMORY , " If not enough output area cChars (%d) is > than CMaxGlyphs "
" (%d) but not E_OUTOFMEMORY \n " ,
cChars , cMaxGlyphs ) ;
2006-02-20 10:19:32 +01:00
cMaxGlyphs = 256 ;
2006-02-14 17:38:20 +01:00
hr = ScriptShape ( hdc , & psc , TestItem1 , cChars ,
cMaxGlyphs , & pItem [ 0 ] . a ,
2006-04-30 15:44:30 +02:00
pwOutGlyphs1 , pwLogClust , psva , & pcGlyphs ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not (%08x) \n " , hr ) ;
2006-02-20 10:19:32 +01:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
ok ( pcGlyphs = = cChars , " Chars in (%d) should equal Glyphs out (%d) \n " , cChars , pcGlyphs ) ;
2006-02-14 17:38:20 +01:00
if ( hr = = 0 ) {
2006-06-06 12:09:37 +02:00
hr = ScriptPlace ( hdc , & psc , pwOutGlyphs1 , pcGlyphs , psva , & pItem [ 0 ] . a , piAdvance ,
pGoffset , pABC ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptPlace should return S_OK not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
hr = ScriptPlace ( NULL , & psc , pwOutGlyphs1 , pcGlyphs , psva , & pItem [ 0 ] . a , piAdvance ,
2006-02-14 17:38:20 +01:00
pGoffset , pABC ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptPlace should return S_OK not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
for ( cnt = 0 ; cnt < pcGlyphs ; cnt + + )
pwOutGlyphs [ cnt ] = pwOutGlyphs1 [ cnt ] ; /* Send to next function */
2006-02-14 17:38:20 +01:00
}
/* This test will check to make sure that SCRIPT_CACHE is reused and that not translation *
* takes place if fNoGlyphIndex is set . */
cInChars = 5 ;
cMaxItems = 255 ;
hr = ScriptItemize ( TestItem2 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
2010-04-22 12:06:02 +02:00
/* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
2006-02-14 17:38:20 +01:00
* returned . */
2006-02-18 16:00:29 +01:00
ok ( pItem [ 0 ] . iCharPos = = 0 & & pItem [ 1 ] . iCharPos = = cInChars ,
2006-02-14 17:38:20 +01:00
" Start pos not = 0 (%d) or end pos not = %d (%d) \n " ,
pItem [ 0 ] . iCharPos , cInChars , pItem [ 1 ] . iCharPos ) ;
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue */
2014-08-28 21:44:24 +02:00
if ( hr = = S_OK ) {
2006-02-14 17:38:20 +01:00
cChars = cInChars ;
cMaxGlyphs = 256 ;
pItem [ 0 ] . a . fNoGlyphIndex = 1 ; /* say no translate */
hr = ScriptShape ( NULL , & psc , TestItem2 , cChars ,
cMaxGlyphs , & pItem [ 0 ] . a ,
2006-02-22 13:24:52 +01:00
pwOutGlyphs2 , pwLogClust , psva , & pcGlyphs ) ;
2006-10-11 00:19:54 +02:00
ok ( hr ! = E_PENDING , " If psc should not be NULL (%08x) and the E_PENDING should be returned \n " , hr ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not (%08x) \n " , hr ) ;
2006-02-20 10:19:32 +01:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
ok ( pcGlyphs = = cChars , " Chars in (%d) should equal Glyphs out (%d) \n " , cChars , pcGlyphs ) ;
2006-02-22 13:24:52 +01:00
for ( cnt = 0 ; cnt < cChars & & TestItem2 [ cnt ] = = pwOutGlyphs2 [ cnt ] ; cnt + + ) { }
2006-02-20 10:19:32 +01:00
ok ( cnt = = cChars , " Translation to place when told not to. WCHAR %d - %04x != %04x \n " ,
2006-02-22 13:24:52 +01:00
cnt , TestItem2 [ cnt ] , pwOutGlyphs2 [ cnt ] ) ;
2014-08-28 21:44:24 +02:00
if ( hr = = S_OK ) {
2006-06-06 12:09:37 +02:00
hr = ScriptPlace ( hdc , & psc , pwOutGlyphs2 , pcGlyphs , psva , & pItem [ 0 ] . a , piAdvance ,
2006-02-20 10:19:32 +01:00
pGoffset , pABC ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptPlace should return S_OK not (%08x) \n " , hr ) ;
2006-02-14 17:38:20 +01:00
}
}
2011-02-05 07:48:59 +01:00
ScriptFreeCache ( & psc ) ;
2006-02-14 17:38:20 +01:00
ok ( ! psc , " psc is not null after ScriptFreeCache \n " ) ;
2006-02-22 13:24:52 +01:00
2006-04-30 15:44:30 +02:00
}
2006-08-08 10:57:37 +02:00
/* This is a valid test that will cause parsing to take place and create 3 script_items */
cInChars = ( sizeof ( TestItem3 ) / 2 ) - 1 ;
cMaxItems = 255 ;
hr = ScriptItemize ( TestItem3 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
if ( hr = = S_OK )
2006-08-08 10:57:37 +02:00
{
ok ( pcItems = = 3 , " The number of SCRIPT_ITEMS should be 3 not %d \n " , pcItems ) ;
if ( pcItems > 2 )
{
ok ( pItem [ 0 ] . iCharPos = = 0 & & pItem [ 1 ] . iCharPos = = 6 ,
" Start pos [0] not = 0 (%d) or end pos [1] not = %d \n " ,
pItem [ 0 ] . iCharPos , pItem [ 1 ] . iCharPos ) ;
ok ( pItem [ 1 ] . iCharPos = = 6 & & pItem [ 2 ] . iCharPos = = 11 ,
" Start pos [1] not = 6 (%d) or end pos [2] not = 11 (%d) \n " ,
pItem [ 1 ] . iCharPos , pItem [ 2 ] . iCharPos ) ;
ok ( pItem [ 2 ] . iCharPos = = 11 & & pItem [ 3 ] . iCharPos = = cInChars ,
" Start pos [2] not = 11 (%d) or end [3] pos not = 14 (%d), cInChars = %d \n " ,
pItem [ 2 ] . iCharPos , pItem [ 3 ] . iCharPos , cInChars ) ;
}
}
2010-04-22 12:06:02 +02:00
/* This is a valid test that will cause parsing to take place and create 5 script_items */
2006-08-08 10:57:37 +02:00
cInChars = ( sizeof ( TestItem4 ) / 2 ) - 1 ;
cMaxItems = 255 ;
hr = ScriptItemize ( TestItem4 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
if ( hr = = S_OK )
2006-08-08 10:57:37 +02:00
{
2010-04-22 12:06:02 +02:00
ok ( pcItems = = 5 , " The number of SCRIPT_ITEMS should be 5 not %d \n " , pcItems ) ;
if ( pcItems > 4 )
2006-08-08 10:57:37 +02:00
{
ok ( pItem [ 0 ] . iCharPos = = 0 & & pItem [ 1 ] . iCharPos = = 6 ,
" Start pos [0] not = 0 (%d) or end pos [1] not = %d \n " ,
pItem [ 0 ] . iCharPos , pItem [ 1 ] . iCharPos ) ;
2010-04-27 14:43:43 +02:00
ok ( pItem [ 0 ] . a . s . uBidiLevel = = 0 , " Should have been bidi=0 not %d \n " ,
pItem [ 0 ] . a . s . uBidiLevel ) ;
2006-08-08 10:57:37 +02:00
ok ( pItem [ 1 ] . iCharPos = = 6 & & pItem [ 2 ] . iCharPos = = 11 ,
" Start pos [1] not = 6 (%d) or end pos [2] not = 11 (%d) \n " ,
pItem [ 1 ] . iCharPos , pItem [ 2 ] . iCharPos ) ;
2010-04-27 14:43:43 +02:00
ok ( pItem [ 1 ] . a . s . uBidiLevel = = 1 , " Should have been bidi=1 not %d \n " ,
pItem [ 1 ] . a . s . uBidiLevel ) ;
2010-04-22 12:06:02 +02:00
ok ( pItem [ 2 ] . iCharPos = = 11 & & pItem [ 3 ] . iCharPos = = 12 ,
" Start pos [2] not = 11 (%d) or end [3] pos not = 12 (%d) \n " ,
pItem [ 2 ] . iCharPos , pItem [ 3 ] . iCharPos ) ;
2010-04-27 14:43:43 +02:00
ok ( pItem [ 2 ] . a . s . uBidiLevel = = 0 , " Should have been bidi=0 not %d \n " ,
pItem [ 2 ] . a . s . uBidiLevel ) ;
2010-04-22 12:06:02 +02:00
ok ( pItem [ 3 ] . iCharPos = = 12 & & pItem [ 4 ] . iCharPos = = 13 ,
" Start pos [3] not = 12 (%d) or end [4] pos not = 13 (%d) \n " ,
pItem [ 3 ] . iCharPos , pItem [ 4 ] . iCharPos ) ;
2010-04-27 14:43:43 +02:00
ok ( pItem [ 3 ] . a . s . uBidiLevel = = 0 , " Should have been bidi=0 not %d \n " ,
pItem [ 3 ] . a . s . uBidiLevel ) ;
2010-04-22 12:06:02 +02:00
ok ( pItem [ 4 ] . iCharPos = = 13 & & pItem [ 5 ] . iCharPos = = cInChars ,
" Start pos [4] not = 13 (%d) or end [5] pos not = 16 (%d), cInChars = %d \n " ,
pItem [ 4 ] . iCharPos , pItem [ 5 ] . iCharPos , cInChars ) ;
2006-08-08 10:57:37 +02:00
}
}
2006-10-17 11:11:25 +02:00
/*
* This test is for when the first unicode character requires bidi support
2010-04-22 12:06:02 +02:00
*/
2006-10-17 11:11:25 +02:00
cInChars = ( sizeof ( TestItem5 ) - 1 ) / sizeof ( WCHAR ) ;
hr = ScriptItemize ( TestItem5 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
2006-10-17 11:11:25 +02:00
ok ( pcItems = = 4 , " There should have been 4 items, found %d \n " , pcItems ) ;
2010-04-22 12:06:02 +02:00
ok ( pItem [ 0 ] . a . s . uBidiLevel = = 1 , " The first character should have been bidi=1 not %d \n " ,
2006-10-17 11:11:25 +02:00
pItem [ 0 ] . a . s . uBidiLevel ) ;
2010-04-27 14:43:34 +02:00
/* This test checks to make sure that the test to see if there are sufficient buffers to store *
* the pointer to the last char works . Note that windows often needs a greater number of *
* SCRIPT_ITEMS to process a string than is returned in pcItems . */
cInChars = ( sizeof ( TestItem6 ) / 2 ) - 1 ;
cMaxItems = 4 ;
hr = ScriptItemize ( TestItem6 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
ok ( hr = = E_OUTOFMEMORY , " ScriptItemize should return E_OUTOFMEMORY, returned %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
}
2006-12-11 21:22:02 +01:00
static void test_ScriptGetCMap ( HDC hdc , unsigned short pwOutGlyphs [ 256 ] )
2006-04-30 15:44:30 +02:00
{
HRESULT hr ;
SCRIPT_CACHE psc = NULL ;
int cInChars ;
int cChars ;
2010-05-06 15:28:57 +02:00
unsigned short pwOutGlyphs2 [ 256 ] ;
2006-04-30 15:44:30 +02:00
unsigned short pwOutGlyphs3 [ 256 ] ;
DWORD dwFlags ;
int cnt ;
2010-05-05 18:51:52 +02:00
static const WCHAR TestItem1 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' a ' , 0 } ;
static const WCHAR TestItem2 [ ] = { 0x202B , ' i ' , ' n ' , 0x202C , 0 } ;
2010-05-06 15:28:57 +02:00
static const WCHAR TestItem3 [ ] = { ' a ' , ' b ' , ' c ' , ' d ' , ' ( ' , ' < ' , ' { ' , ' [ ' , 0x2039 , 0 } ;
static const WCHAR TestItem3b [ ] = { ' a ' , ' b ' , ' c ' , ' d ' , ' ) ' , ' > ' , ' } ' , ' ] ' , 0x203A , 0 } ;
2010-05-05 18:51:52 +02:00
2006-04-30 15:44:30 +02:00
/* Check to make sure that SCRIPT_CACHE gets allocated ok */
dwFlags = 0 ;
cInChars = cChars = 5 ;
/* Some sanity checks for ScriptGetCMap */
hr = ScriptGetCMap ( NULL , NULL , NULL , 0 , 0 , NULL ) ;
ok ( hr = = E_INVALIDARG , " (NULL,NULL,NULL,0,0,NULL), "
2006-10-11 00:19:54 +02:00
" expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
hr = ScriptGetCMap ( NULL , NULL , TestItem1 , cInChars , dwFlags , pwOutGlyphs3 ) ;
ok ( hr = = E_INVALIDARG , " (NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
2006-10-11 00:19:54 +02:00
" expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
psc = NULL ;
2009-09-03 14:50:17 +02:00
hr = ScriptGetCMap ( NULL , & psc , TestItem1 , cInChars , 0 , pwOutGlyphs3 ) ;
ok ( hr = = E_PENDING , " (NULL,&psc,NULL,0,0,NULL), expected E_PENDING, "
2006-10-11 00:19:54 +02:00
" got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
2006-06-06 12:14:01 +02:00
/* Set psc to NULL but add hdc, to be able to check if a pointer is returned in psc */
psc = NULL ;
2009-09-03 14:50:17 +02:00
hr = ScriptGetCMap ( hdc , & psc , TestItem1 , cInChars , 0 , pwOutGlyphs3 ) ;
2006-06-06 12:14:01 +02:00
ok ( hr = = S_OK , " ScriptGetCMap(NULL,&psc,NULL,0,0,NULL), expected S_OK, "
2006-10-11 00:19:54 +02:00
" got %08x \n " , hr ) ;
2006-06-06 12:14:01 +02:00
ok ( psc ! = NULL , " ScritpGetCMap expected psc to be not NULL \n " ) ;
2007-11-08 19:18:07 +01:00
ScriptFreeCache ( & psc ) ;
2006-06-06 12:14:01 +02:00
2006-04-30 15:44:30 +02:00
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
psc = NULL ;
hr = ScriptGetCMap ( NULL , & psc , TestItem1 , cInChars , dwFlags , pwOutGlyphs3 ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_PENDING , " (NULL,&psc,), expected E_PENDING, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
/* Check to see if the results are the same as those returned by ScriptShape */
hr = ScriptGetCMap ( hdc , & psc , TestItem1 , cInChars , dwFlags , pwOutGlyphs3 ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptGetCMap should return S_OK not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
for ( cnt = 0 ; cnt < cChars & & pwOutGlyphs [ cnt ] = = pwOutGlyphs3 [ cnt ] ; cnt + + ) { }
ok ( cnt = = cInChars , " Translation not correct. WCHAR %d - %04x != %04x \n " ,
cnt , pwOutGlyphs [ cnt ] , pwOutGlyphs3 [ cnt ] ) ;
2010-05-05 18:51:52 +02:00
2011-02-05 07:48:59 +01:00
ScriptFreeCache ( & psc ) ;
2006-04-30 15:44:30 +02:00
ok ( ! psc , " psc is not null after ScriptFreeCache \n " ) ;
2006-08-04 11:47:37 +02:00
2015-08-22 11:05:43 +02:00
/* ScriptGetCMap returns whatever font defines, no special treatment for control chars */
2010-05-05 18:51:52 +02:00
cInChars = cChars = 4 ;
2015-08-22 11:05:43 +02:00
GetGlyphIndicesW ( hdc , TestItem2 , cInChars , pwOutGlyphs2 , 0 ) ;
2010-05-05 18:51:52 +02:00
hr = ScriptGetCMap ( hdc , & psc , TestItem2 , cInChars , dwFlags , pwOutGlyphs3 ) ;
2015-08-22 11:05:43 +02:00
if ( pwOutGlyphs3 [ 0 ] = = 0 | | pwOutGlyphs3 [ 3 ] = = 0 )
ok ( hr = = S_FALSE , " ScriptGetCMap should return S_FALSE not (%08x) \n " , hr ) ;
else
ok ( hr = = S_OK , " ScriptGetCMap should return S_OK not (%08x) \n " , hr ) ;
2010-05-05 18:51:52 +02:00
2015-08-22 11:05:43 +02:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
ok ( pwOutGlyphs3 [ 0 ] = = pwOutGlyphs2 [ 0 ] , " expected glyph %d, got %d \n " , pwOutGlyphs2 [ 0 ] , pwOutGlyphs3 [ 0 ] ) ;
ok ( pwOutGlyphs3 [ 3 ] = = pwOutGlyphs2 [ 3 ] , " expected glyph %d, got %d \n " , pwOutGlyphs2 [ 3 ] , pwOutGlyphs3 [ 3 ] ) ;
2010-05-06 15:28:57 +02:00
cInChars = cChars = 9 ;
hr = ScriptGetCMap ( hdc , & psc , TestItem3b , cInChars , dwFlags , pwOutGlyphs2 ) ;
ok ( hr = = S_OK , " ScriptGetCMap should return S_OK not (%08x) \n " , hr ) ;
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
cInChars = cChars = 9 ;
dwFlags = SGCM_RTL ;
hr = ScriptGetCMap ( hdc , & psc , TestItem3 , cInChars , dwFlags , pwOutGlyphs3 ) ;
ok ( hr = = S_OK , " ScriptGetCMap should return S_OK not (%08x) \n " , hr ) ;
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
ok ( pwOutGlyphs3 [ 0 ] = = pwOutGlyphs2 [ 0 ] , " glyph incorrectly altered \n " ) ;
2013-01-29 07:06:07 +01:00
ok ( pwOutGlyphs3 [ 1 ] = = pwOutGlyphs2 [ 1 ] , " glyph incorrectly altered \n " ) ;
ok ( pwOutGlyphs3 [ 2 ] = = pwOutGlyphs2 [ 2 ] , " glyph incorrectly altered \n " ) ;
ok ( pwOutGlyphs3 [ 3 ] = = pwOutGlyphs2 [ 3 ] , " glyph incorrectly altered \n " ) ;
2010-05-06 15:28:57 +02:00
ok ( pwOutGlyphs3 [ 4 ] = = pwOutGlyphs2 [ 4 ] , " glyph not mirrored correctly \n " ) ;
ok ( pwOutGlyphs3 [ 5 ] = = pwOutGlyphs2 [ 5 ] , " glyph not mirrored correctly \n " ) ;
ok ( pwOutGlyphs3 [ 6 ] = = pwOutGlyphs2 [ 6 ] , " glyph not mirrored correctly \n " ) ;
ok ( pwOutGlyphs3 [ 7 ] = = pwOutGlyphs2 [ 7 ] , " glyph not mirrored correctly \n " ) ;
ok ( pwOutGlyphs3 [ 8 ] = = pwOutGlyphs2 [ 8 ] , " glyph not mirrored correctly \n " ) ;
2011-02-05 07:48:59 +01:00
ScriptFreeCache ( & psc ) ;
2010-05-05 18:51:52 +02:00
ok ( ! psc , " psc is not null after ScriptFreeCache \n " ) ;
2006-04-30 15:44:30 +02:00
}
2012-11-21 11:14:30 +01:00
# define MAX_ENUM_FONTS 4096
struct enum_font_data
{
int total ;
2013-10-24 00:29:43 +02:00
ENUMLOGFONTA elf [ MAX_ENUM_FONTS ] ;
2012-11-21 11:14:30 +01:00
} ;
2013-10-24 00:29:43 +02:00
static INT CALLBACK enum_bitmap_font_proc ( const LOGFONTA * lf , const TEXTMETRICA * ntm , DWORD type , LPARAM lParam )
2012-11-21 11:14:30 +01:00
{
struct enum_font_data * efnd = ( struct enum_font_data * ) lParam ;
if ( type & ( TRUETYPE_FONTTYPE | DEVICE_FONTTYPE ) ) return 1 ;
if ( efnd - > total < MAX_ENUM_FONTS )
{
2013-10-24 00:29:43 +02:00
efnd - > elf [ efnd - > total + + ] = * ( ENUMLOGFONTA * ) lf ;
2012-11-21 11:14:30 +01:00
}
else
trace ( " enum tests invalid; you have more than %d fonts \n " , MAX_ENUM_FONTS ) ;
return 1 ;
}
2013-10-24 00:29:43 +02:00
static INT CALLBACK enum_truetype_proc ( const LOGFONTA * lf , const TEXTMETRICA * ntm , DWORD type , LPARAM lParam )
2012-11-21 11:14:30 +01:00
{
struct enum_font_data * efnd = ( struct enum_font_data * ) lParam ;
if ( ! ( type & ( TRUETYPE_FONTTYPE | DEVICE_FONTTYPE ) ) ) return 1 ;
if ( efnd - > total < MAX_ENUM_FONTS )
{
2013-10-24 00:29:43 +02:00
efnd - > elf [ efnd - > total + + ] = * ( ENUMLOGFONTA * ) lf ;
2012-11-21 11:14:30 +01:00
}
else
trace ( " enum tests invalid; you have more than %d fonts \n " , MAX_ENUM_FONTS ) ;
return 1 ;
}
2006-12-24 12:39:27 +01:00
static void test_ScriptGetFontProperties ( HDC hdc )
2006-04-30 15:44:30 +02:00
{
HRESULT hr ;
SCRIPT_CACHE psc , old_psc ;
SCRIPT_FONTPROPERTIES sfp ;
2012-11-21 11:14:30 +01:00
HFONT font , oldfont ;
2013-10-24 00:29:43 +02:00
LOGFONTA lf ;
2012-11-21 11:14:30 +01:00
struct enum_font_data efnd ;
TEXTMETRICA tmA ;
WORD gi [ 3 ] ;
WCHAR str [ 3 ] ;
DWORD i , ret ;
WORD system_lang_id = PRIMARYLANGID ( GetSystemDefaultLangID ( ) ) ;
static const WCHAR invalids [ ] = { 0x0020 , 0x200B , 0xF71B } ;
/* U+0020: numeric space
U + 200 B : zero width space
2013-01-05 16:17:18 +01:00
U + F71B : unknown , found by black box testing */
2015-09-30 20:05:42 +02:00
BOOL is_arial , is_times_new_roman , is_arabic = ( system_lang_id = = LANG_ARABIC ) ;
2006-04-30 15:44:30 +02:00
/* Some sanity checks for ScriptGetFontProperties */
hr = ScriptGetFontProperties ( NULL , NULL , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " (NULL,NULL,NULL), expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
hr = ScriptGetFontProperties ( NULL , NULL , & sfp ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " (NULL,NULL,&sfp), expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
psc = NULL ;
hr = ScriptGetFontProperties ( NULL , & psc , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " (NULL,&psc,NULL), expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
2006-02-22 13:24:52 +01:00
2006-04-30 15:44:30 +02:00
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
psc = NULL ;
hr = ScriptGetFontProperties ( NULL , & psc , & sfp ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_PENDING , " (NULL,&psc,&sfp), expected E_PENDING, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
hr = ScriptGetFontProperties ( hdc , NULL , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " (hdc,NULL,NULL), expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
hr = ScriptGetFontProperties ( hdc , NULL , & sfp ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " (hdc,NULL,&sfp), expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
psc = NULL ;
hr = ScriptGetFontProperties ( hdc , & psc , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " (hdc,&psc,NULL), expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
2007-11-08 19:18:22 +01:00
/* Pass an invalid sfp */
2006-04-30 15:44:30 +02:00
psc = NULL ;
2007-11-08 19:18:22 +01:00
sfp . cBytes = sizeof ( SCRIPT_FONTPROPERTIES ) - 1 ;
2006-04-30 15:44:30 +02:00
hr = ScriptGetFontProperties ( hdc , & psc , & sfp ) ;
2007-11-08 19:18:22 +01:00
ok ( hr = = E_INVALIDARG , " (hdc,&psc,&sfp) invalid, expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc ! = NULL , " Expected a pointer in psc, got NULL \n " ) ;
ScriptFreeCache ( & psc ) ;
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
/* Give it the correct cBytes, we don't care about what's coming back */
sfp . cBytes = sizeof ( SCRIPT_FONTPROPERTIES ) ;
psc = NULL ;
hr = ScriptGetFontProperties ( hdc , & psc , & sfp ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " (hdc,&psc,&sfp) partly initialized, expected S_OK, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc ! = NULL , " Expected a pointer in psc, got NULL \n " ) ;
/* Save the psc pointer */
old_psc = psc ;
/* Now a NULL hdc again */
hr = ScriptGetFontProperties ( NULL , & psc , & sfp ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " (NULL,&psc,&sfp), expected S_OK, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = old_psc , " Expected psc not to be changed, was %p is now %p \n " , old_psc , psc ) ;
ScriptFreeCache ( & psc ) ;
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
2012-11-21 11:14:30 +01:00
pGetGlyphIndicesW = ( void * ) GetProcAddress ( GetModuleHandleA ( " gdi32.dll " ) , " GetGlyphIndicesW " ) ;
if ( ! pGetGlyphIndicesW )
{
win_skip ( " Skip on WINNT4 \n " ) ;
return ;
}
memset ( & lf , 0 , sizeof ( lf ) ) ;
lf . lfCharSet = DEFAULT_CHARSET ;
efnd . total = 0 ;
EnumFontFamiliesA ( hdc , NULL , enum_bitmap_font_proc , ( LPARAM ) & efnd ) ;
for ( i = 0 ; i < efnd . total ; i + + )
{
2015-09-25 17:11:26 +02:00
if ( strlen ( ( char * ) efnd . elf [ i ] . elfFullName ) > = LF_FACESIZE )
{
trace ( " Font name to long to test: %s \n " , ( char * ) efnd . elf [ i ] . elfFullName ) ;
continue ;
}
2012-11-21 11:14:30 +01:00
lstrcpyA ( lf . lfFaceName , ( char * ) efnd . elf [ i ] . elfFullName ) ;
2013-10-24 00:29:43 +02:00
font = CreateFontIndirectA ( & lf ) ;
2012-11-21 11:14:30 +01:00
oldfont = SelectObject ( hdc , font ) ;
sfp . cBytes = sizeof ( SCRIPT_FONTPROPERTIES ) ;
psc = NULL ;
hr = ScriptGetFontProperties ( hdc , & psc , & sfp ) ;
ok ( hr = = S_OK , " ScriptGetFontProperties expected S_OK, got %08x \n " , hr ) ;
if ( winetest_interactive )
{
trace ( " bitmap font %s \n " , lf . lfFaceName ) ;
trace ( " wgBlank %04x \n " , sfp . wgBlank ) ;
trace ( " wgDefault %04x \n " , sfp . wgDefault ) ;
trace ( " wgInvalid %04x \n " , sfp . wgInvalid ) ;
trace ( " wgKashida %04x \n " , sfp . wgKashida ) ;
trace ( " iKashidaWidth %d \n " , sfp . iKashidaWidth ) ;
}
ret = GetTextMetricsA ( hdc , & tmA ) ;
ok ( ret ! = 0 , " GetTextMetricsA failed! \n " ) ;
2015-09-30 20:05:42 +02:00
ret = pGetGlyphIndicesW ( hdc , invalids , 1 , gi , GGI_MARK_NONEXISTING_GLYPHS ) ;
ok ( ret ! = GDI_ERROR , " GetGlyphIndicesW failed! \n " ) ;
2012-11-21 11:14:30 +01:00
2015-09-30 20:05:42 +02:00
ok ( sfp . wgBlank = = tmA . tmBreakChar | | sfp . wgBlank = = gi [ 0 ] , " bitmap font %s wgBlank %04x tmBreakChar %04x Space %04x \n " , lf . lfFaceName , sfp . wgBlank , tmA . tmBreakChar , gi [ 0 ] ) ;
ok ( sfp . wgDefault = = 0 | | sfp . wgDefault = = tmA . tmDefaultChar | | broken ( sfp . wgDefault = = ( 0x100 | tmA . tmDefaultChar ) ) , " bitmap font %s wgDefault %04x, tmDefaultChar %04x \n " , lf . lfFaceName , sfp . wgDefault , tmA . tmDefaultChar ) ;
2012-11-21 11:14:30 +01:00
ok ( sfp . wgInvalid = = sfp . wgBlank | | broken ( is_arabic ) , " bitmap font %s wgInvalid %02x wgBlank %02x \n " , lf . lfFaceName , sfp . wgInvalid , sfp . wgBlank ) ;
ok ( sfp . wgKashida = = 0xFFFF | | broken ( is_arabic ) , " bitmap font %s wgKashida %02x \n " , lf . lfFaceName , sfp . wgKashida ) ;
ScriptFreeCache ( & psc ) ;
SelectObject ( hdc , oldfont ) ;
DeleteObject ( font ) ;
}
efnd . total = 0 ;
EnumFontFamiliesA ( hdc , NULL , enum_truetype_proc , ( LPARAM ) & efnd ) ;
for ( i = 0 ; i < efnd . total ; i + + )
{
2015-09-25 17:11:26 +02:00
if ( strlen ( ( char * ) efnd . elf [ i ] . elfFullName ) > = LF_FACESIZE )
{
trace ( " Font name to long to test: %s \n " , ( char * ) efnd . elf [ i ] . elfFullName ) ;
continue ;
}
2012-11-21 11:14:30 +01:00
lstrcpyA ( lf . lfFaceName , ( char * ) efnd . elf [ i ] . elfFullName ) ;
2013-10-24 00:29:43 +02:00
font = CreateFontIndirectA ( & lf ) ;
2012-11-21 11:14:30 +01:00
oldfont = SelectObject ( hdc , font ) ;
sfp . cBytes = sizeof ( SCRIPT_FONTPROPERTIES ) ;
psc = NULL ;
hr = ScriptGetFontProperties ( hdc , & psc , & sfp ) ;
ok ( hr = = S_OK , " ScriptGetFontProperties expected S_OK, got %08x \n " , hr ) ;
if ( winetest_interactive )
{
trace ( " truetype font %s \n " , lf . lfFaceName ) ;
trace ( " wgBlank %04x \n " , sfp . wgBlank ) ;
trace ( " wgDefault %04x \n " , sfp . wgDefault ) ;
trace ( " wgInvalid %04x \n " , sfp . wgInvalid ) ;
trace ( " wgKashida %04x \n " , sfp . wgKashida ) ;
trace ( " iKashidaWidth %d \n " , sfp . iKashidaWidth ) ;
}
str [ 0 ] = 0x0020 ; /* U+0020: numeric space */
ret = pGetGlyphIndicesW ( hdc , str , 1 , gi , 0 ) ;
ok ( ret ! = GDI_ERROR , " GetGlyphIndicesW failed! \n " ) ;
ok ( sfp . wgBlank = = gi [ 0 ] , " truetype font %s wgBlank %04x gi[0] %04x \n " , lf . lfFaceName , sfp . wgBlank , gi [ 0 ] ) ;
ok ( sfp . wgDefault = = 0 | | broken ( is_arabic ) , " truetype font %s wgDefault %04x \n " , lf . lfFaceName , sfp . wgDefault ) ;
ret = pGetGlyphIndicesW ( hdc , invalids , 3 , gi , GGI_MARK_NONEXISTING_GLYPHS ) ;
ok ( ret ! = GDI_ERROR , " GetGlyphIndicesW failed! \n " ) ;
if ( gi [ 2 ] ! = 0xFFFF ) /* index of default non exist char */
ok ( sfp . wgInvalid = = gi [ 2 ] , " truetype font %s wgInvalid %04x gi[2] %04x \n " , lf . lfFaceName , sfp . wgInvalid , gi [ 2 ] ) ;
else if ( gi [ 1 ] ! = 0xFFFF )
ok ( sfp . wgInvalid = = gi [ 1 ] , " truetype font %s wgInvalid %04x gi[1] %04x \n " , lf . lfFaceName , sfp . wgInvalid , gi [ 1 ] ) ;
else if ( gi [ 0 ] ! = 0xFFFF )
ok ( sfp . wgInvalid = = gi [ 0 ] , " truetype font %s wgInvalid %04x gi[0] %04x \n " , lf . lfFaceName , sfp . wgInvalid , gi [ 0 ] ) ;
else
ok ( sfp . wgInvalid = = 0 , " truetype font %s wgInvalid %04x expect 0 \n " , lf . lfFaceName , sfp . wgInvalid ) ;
str [ 0 ] = 0x0640 ; /* U+0640: kashida */
ret = pGetGlyphIndicesW ( hdc , str , 1 , gi , GGI_MARK_NONEXISTING_GLYPHS ) ;
ok ( ret ! = GDI_ERROR , " GetGlyphIndicesW failed! \n " ) ;
is_arial = ! lstrcmpA ( lf . lfFaceName , " Arial " ) ;
is_times_new_roman = ! lstrcmpA ( lf . lfFaceName , " Times New Roman " ) ;
ok ( sfp . wgKashida = = gi [ 0 ] | | broken ( is_arial | | is_times_new_roman ) | | broken ( is_arabic ) , " truetype font %s wgKashida %04x gi[0] %04x \n " , lf . lfFaceName , sfp . wgKashida , gi [ 0 ] ) ;
ScriptFreeCache ( & psc ) ;
SelectObject ( hdc , oldfont ) ;
DeleteObject ( font ) ;
}
2006-04-30 15:44:30 +02:00
}
2006-12-24 12:39:27 +01:00
static void test_ScriptTextOut ( HDC hdc )
2006-04-30 15:44:30 +02:00
{
HRESULT hr ;
int cInChars ;
int cMaxItems ;
SCRIPT_ITEM pItem [ 255 ] ;
int pcItems ;
2006-08-04 11:47:37 +02:00
WCHAR TestItem1 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' a ' , 0 } ;
2006-04-30 15:44:30 +02:00
SCRIPT_CACHE psc ;
int cChars ;
int cMaxGlyphs ;
unsigned short pwOutGlyphs1 [ 256 ] ;
2006-06-09 12:06:51 +02:00
WORD pwLogClust [ 256 ] ;
2006-04-30 15:44:30 +02:00
SCRIPT_VISATTR psva [ 256 ] ;
int pcGlyphs ;
int piAdvance [ 256 ] ;
GOFFSET pGoffset [ 256 ] ;
ABC pABC [ 256 ] ;
RECT rect ;
2006-06-07 15:05:14 +02:00
int piX ;
int iCP = 1 ;
BOOL fTrailing = FALSE ;
SCRIPT_LOGATTR * psla ;
SCRIPT_LOGATTR sla [ 256 ] ;
2006-04-30 15:44:30 +02:00
/* This is a valid test that will cause parsing to take place */
cInChars = 5 ;
cMaxItems = 255 ;
hr = ScriptItemize ( TestItem1 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
/* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
* returned . */
ok ( pcItems > 0 , " The number of SCRIPT_ITEMS should be greater than 0 \n " ) ;
if ( pcItems > 0 )
ok ( pItem [ 0 ] . iCharPos = = 0 & & pItem [ 1 ] . iCharPos = = cInChars ,
" Start pos not = 0 (%d) or end pos not = %d (%d) \n " ,
pItem [ 0 ] . iCharPos , cInChars , pItem [ 1 ] . iCharPos ) ;
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
* ie . ScriptItemize has succeeded and that pItem has been set */
cInChars = 5 ;
2014-08-28 21:44:24 +02:00
if ( hr = = S_OK ) {
2006-04-30 15:44:30 +02:00
psc = NULL ; /* must be null on first call */
cChars = cInChars ;
cMaxGlyphs = 256 ;
hr = ScriptShape ( hdc , & psc , TestItem1 , cChars ,
cMaxGlyphs , & pItem [ 0 ] . a ,
pwOutGlyphs1 , pwLogClust , psva , & pcGlyphs ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
ok ( pcGlyphs = = cChars , " Chars in (%d) should equal Glyphs out (%d) \n " , cChars , pcGlyphs ) ;
2014-08-28 21:44:24 +02:00
if ( hr = = S_OK ) {
2006-06-09 12:06:51 +02:00
/* Note hdc is needed as glyph info is not yet in psc */
hr = ScriptPlace ( hdc , & psc , pwOutGlyphs1 , pcGlyphs , psva , & pItem [ 0 ] . a , piAdvance ,
2006-04-30 15:44:30 +02:00
pGoffset , pABC ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " Should return S_OK not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ScriptFreeCache ( & psc ) ; /* Get rid of psc for next test set */
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
hr = ScriptTextOut ( NULL , NULL , 0 , 0 , 0 , NULL , NULL , NULL , 0 , NULL , 0 , NULL , NULL , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " Should return 0 not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
hr = ScriptTextOut ( NULL , NULL , 0 , 0 , 0 , NULL , & pItem [ 0 ] . a , NULL , 0 , pwOutGlyphs1 , pcGlyphs ,
piAdvance , NULL , pGoffset ) ;
ok ( hr = = E_INVALIDARG , " (NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
2006-10-11 00:19:54 +02:00
" expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
/* Set psc to NULL, to be able to check if a pointer is returned in psc */
psc = NULL ;
hr = ScriptTextOut ( NULL , & psc , 0 , 0 , 0 , NULL , NULL , NULL , 0 , NULL , 0 ,
NULL , NULL , NULL ) ;
ok ( hr = = E_INVALIDARG , " (NULL,&psc,NULL,0,0,0,NULL,), expected E_INVALIDARG, "
2006-10-11 00:19:54 +02:00
" got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
2008-07-06 05:54:16 +02:00
/* hdc is required for this one rather than the usual optional */
2006-04-30 15:44:30 +02:00
psc = NULL ;
hr = ScriptTextOut ( NULL , & psc , 0 , 0 , 0 , NULL , & pItem [ 0 ] . a , NULL , 0 , pwOutGlyphs1 , pcGlyphs ,
piAdvance , NULL , pGoffset ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " (NULL,&psc,), expected E_INVALIDARG, got %08x \n " , hr ) ;
2006-04-30 15:44:30 +02:00
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
2008-07-06 05:54:16 +02:00
/* Set that it returns 0 status */
2006-04-30 15:44:30 +02:00
hr = ScriptTextOut ( hdc , & psc , 0 , 0 , 0 , NULL , & pItem [ 0 ] . a , NULL , 0 , pwOutGlyphs1 , pcGlyphs ,
piAdvance , NULL , pGoffset ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptTextOut should return S_OK not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
2006-06-09 12:06:51 +02:00
/* Test Rect Rgn is acceptable */
2016-07-11 09:57:03 +02:00
SetRect ( & rect , 10 , 10 , 40 , 20 ) ;
2006-06-09 12:06:51 +02:00
hr = ScriptTextOut ( hdc , & psc , 0 , 0 , 0 , & rect , & pItem [ 0 ] . a , NULL , 0 , pwOutGlyphs1 , pcGlyphs ,
2006-04-30 15:44:30 +02:00
piAdvance , NULL , pGoffset ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptTextOut should return S_OK not (%08x) \n " , hr ) ;
2006-04-30 15:44:30 +02:00
2006-06-07 15:05:14 +02:00
iCP = 1 ;
hr = ScriptCPtoX ( iCP , fTrailing , cChars , pcGlyphs , ( const WORD * ) & pwLogClust ,
( const SCRIPT_VISATTR * ) & psva , ( const int * ) & piAdvance , & pItem [ 0 ] . a , & piX ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " ScriptCPtoX Stub should return S_OK not %08x \n " , hr ) ;
2006-06-07 15:05:14 +02:00
psla = ( SCRIPT_LOGATTR * ) & sla ;
hr = ScriptBreak ( TestItem1 , cChars , & pItem [ 0 ] . a , psla ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " ScriptBreak Stub should return S_OK not %08x \n " , hr ) ;
2006-06-07 15:05:14 +02:00
2006-04-30 15:44:30 +02:00
/* Clean up and go */
ScriptFreeCache ( & psc ) ;
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
}
2006-02-14 17:38:20 +01:00
}
2006-04-30 15:44:30 +02:00
}
2008-04-29 06:15:23 +02:00
static void test_ScriptTextOut2 ( HDC hdc )
{
/* Intent is to validate that the HDC passed into ScriptTextOut is
* used instead of the ( possibly ) invalid cached one
*/
HRESULT hr ;
HDC hdc1 , hdc2 ;
int cInChars ;
int cMaxItems ;
SCRIPT_ITEM pItem [ 255 ] ;
int pcItems ;
WCHAR TestItem1 [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' a ' , 0 } ;
SCRIPT_CACHE psc ;
int cChars ;
int cMaxGlyphs ;
unsigned short pwOutGlyphs1 [ 256 ] ;
WORD pwLogClust [ 256 ] ;
SCRIPT_VISATTR psva [ 256 ] ;
int pcGlyphs ;
int piAdvance [ 256 ] ;
GOFFSET pGoffset [ 256 ] ;
ABC pABC [ 256 ] ;
/* Create an extra DC that will be used until the ScriptTextOut */
hdc1 = CreateCompatibleDC ( hdc ) ;
ok ( hdc1 ! = 0 , " CreateCompatibleDC failed to create a DC \n " ) ;
hdc2 = CreateCompatibleDC ( hdc ) ;
ok ( hdc2 ! = 0 , " CreateCompatibleDC failed to create a DC \n " ) ;
/* This is a valid test that will cause parsing to take place */
cInChars = 5 ;
cMaxItems = 255 ;
hr = ScriptItemize ( TestItem1 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
2008-04-29 06:15:23 +02:00
/* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
* returned . */
ok ( pcItems > 0 , " The number of SCRIPT_ITEMS should be greater than 0 \n " ) ;
if ( pcItems > 0 )
ok ( pItem [ 0 ] . iCharPos = = 0 & & pItem [ 1 ] . iCharPos = = cInChars ,
" Start pos not = 0 (%d) or end pos not = %d (%d) \n " ,
pItem [ 0 ] . iCharPos , cInChars , pItem [ 1 ] . iCharPos ) ;
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
* ie . ScriptItemize has succeeded and that pItem has been set */
cInChars = 5 ;
2014-08-28 21:44:24 +02:00
if ( hr = = S_OK ) {
2008-04-29 06:15:23 +02:00
psc = NULL ; /* must be null on first call */
cChars = cInChars ;
cMaxGlyphs = 256 ;
hr = ScriptShape ( hdc2 , & psc , TestItem1 , cChars ,
cMaxGlyphs , & pItem [ 0 ] . a ,
pwOutGlyphs1 , pwLogClust , psva , & pcGlyphs ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not (%08x) \n " , hr ) ;
2008-04-29 06:15:23 +02:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
ok ( pcGlyphs = = cChars , " Chars in (%d) should equal Glyphs out (%d) \n " , cChars , pcGlyphs ) ;
2015-10-20 14:57:36 +02:00
if ( hr = = S_OK ) {
BOOL ret ;
2008-04-29 06:15:23 +02:00
/* Note hdc is needed as glyph info is not yet in psc */
hr = ScriptPlace ( hdc2 , & psc , pwOutGlyphs1 , pcGlyphs , psva , & pItem [ 0 ] . a , piAdvance ,
pGoffset , pABC ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " Should return S_OK not (%08x) \n " , hr ) ;
2008-04-29 06:15:23 +02:00
/* key part!!! cached dc is being deleted */
2015-10-20 14:57:36 +02:00
ret = DeleteDC ( hdc2 ) ;
ok ( ret , " DeleteDC should return 1 not %d \n " , ret ) ;
2008-04-29 06:15:23 +02:00
/* At this point the cached hdc (hdc2) has been destroyed,
* however , we are passing in a * real * hdc ( the original hdc ) .
* The text should be written to that DC
*/
hr = ScriptTextOut ( hdc1 , & psc , 0 , 0 , 0 , NULL , & pItem [ 0 ] . a , NULL , 0 , pwOutGlyphs1 , pcGlyphs ,
piAdvance , NULL , pGoffset ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptTextOut should return S_OK not (%08x) \n " , hr ) ;
2008-04-29 06:15:23 +02:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
DeleteDC ( hdc1 ) ;
/* Clean up and go */
ScriptFreeCache ( & psc ) ;
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
}
}
}
2010-03-12 11:53:42 +01:00
static void test_ScriptTextOut3 ( HDC hdc )
{
HRESULT hr ;
int cInChars ;
int cMaxItems ;
SCRIPT_ITEM pItem [ 255 ] ;
int pcItems ;
WCHAR TestItem1 [ ] = { ' ' , ' \r ' , 0 } ;
SCRIPT_CACHE psc ;
int cChars ;
int cMaxGlyphs ;
unsigned short pwOutGlyphs1 [ 256 ] ;
WORD pwLogClust [ 256 ] ;
SCRIPT_VISATTR psva [ 256 ] ;
int pcGlyphs ;
int piAdvance [ 256 ] ;
GOFFSET pGoffset [ 256 ] ;
ABC pABC [ 256 ] ;
RECT rect ;
2011-08-24 15:28:14 +02:00
/* This is to ensure that nonexistent glyphs are translated into a valid glyph number */
2010-03-12 11:53:42 +01:00
cInChars = 2 ;
cMaxItems = 255 ;
hr = ScriptItemize ( TestItem1 , cInChars , cMaxItems , NULL , NULL , pItem , & pcItems ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK, returned %08x \n " , hr ) ;
2010-03-12 11:53:42 +01:00
/* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
* returned . */
ok ( pcItems > 0 , " The number of SCRIPT_ITEMS should be greater than 0 \n " ) ;
if ( pcItems > 0 )
ok ( pItem [ 0 ] . iCharPos = = 0 & & pItem [ 2 ] . iCharPos = = cInChars ,
" Start pos not = 0 (%d) or end pos not = %d (%d) \n " ,
pItem [ 0 ] . iCharPos , cInChars , pItem [ 2 ] . iCharPos ) ;
/* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
* ie . ScriptItemize has succeeded and that pItem has been set */
cInChars = 2 ;
2014-08-28 21:44:24 +02:00
if ( hr = = S_OK ) {
2010-03-12 11:53:42 +01:00
psc = NULL ; /* must be null on first call */
cChars = cInChars ;
cMaxGlyphs = 256 ;
hr = ScriptShape ( hdc , & psc , TestItem1 , cChars ,
cMaxGlyphs , & pItem [ 0 ] . a ,
pwOutGlyphs1 , pwLogClust , psva , & pcGlyphs ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptShape should return S_OK not (%08x) \n " , hr ) ;
2010-03-12 11:53:42 +01:00
ok ( psc ! = NULL , " psc should not be null and have SCRIPT_CACHE buffer address \n " ) ;
ok ( pcGlyphs = = cChars , " Chars in (%d) should equal Glyphs out (%d) \n " , cChars , pcGlyphs ) ;
if ( hr = = 0 ) {
/* Note hdc is needed as glyph info is not yet in psc */
hr = ScriptPlace ( hdc , & psc , pwOutGlyphs1 , pcGlyphs , psva , & pItem [ 0 ] . a , piAdvance ,
pGoffset , pABC ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " Should return S_OK not (%08x) \n " , hr ) ;
2010-03-12 11:53:42 +01:00
/* Test Rect Rgn is acceptable */
2016-07-11 09:57:03 +02:00
SetRect ( & rect , 10 , 10 , 40 , 20 ) ;
2010-03-12 11:53:42 +01:00
hr = ScriptTextOut ( hdc , & psc , 0 , 0 , 0 , & rect , & pItem [ 0 ] . a , NULL , 0 , pwOutGlyphs1 , pcGlyphs ,
piAdvance , NULL , pGoffset ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptTextOut should return S_OK not (%08x) \n " , hr ) ;
2010-03-12 11:53:42 +01:00
}
/* Clean up and go */
ScriptFreeCache ( & psc ) ;
ok ( psc = = NULL , " Expected psc to be NULL, got %p \n " , psc ) ;
}
}
2011-08-22 14:18:39 +02:00
# define test_item_ScriptXtoX(a,b,c,d,e,f) (winetest_set_location(__FILE__,__LINE__), 0) ? 0 : _test_item_ScriptXtoX(a,b,c,d,e,f)
static void _test_item_ScriptXtoX ( SCRIPT_ANALYSIS * psa , int cChars , int cGlyphs , const int * offsets , const WORD * pwLogClust , const int * piAdvance )
2006-07-20 14:16:50 +02:00
{
int iX , iCP ;
2011-08-22 14:18:39 +02:00
int icChars , icGlyphs ;
2006-07-20 14:16:50 +02:00
int piCP , piX ;
2011-08-22 14:18:39 +02:00
HRESULT hr ;
SCRIPT_VISATTR psva [ 10 ] ;
2006-07-20 14:16:50 +02:00
int piTrailing ;
BOOL fTrailing ;
2011-08-22 14:18:39 +02:00
int direction ;
2006-07-20 14:16:50 +02:00
2011-08-22 14:18:39 +02:00
memset ( psva , 0 , sizeof ( psva ) ) ;
direction = ( psa - > fRTL ) ? - 1 : + 1 ;
2008-07-23 13:03:06 +02:00
2011-08-22 14:18:39 +02:00
for ( iCP = 0 ; iCP < cChars ; iCP + + )
{
iX = offsets [ iCP ] ;
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptXtoCP ( iX , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piCP , & piTrailing ) ;
winetest_ok ( hr = = S_OK , " ScriptXtoCP: should return S_OK not %08x \n " , hr ) ;
winetest_ok ( piCP = = iCP , " ScriptXtoCP: iX=%d should return piCP=%d not %d \n " , iX , iCP , piCP ) ;
winetest_ok ( piTrailing = = 0 , " ScriptXtoCP: iX=%d should return piTrailing=0 not %d \n " , iX , piTrailing ) ;
}
2008-05-27 18:16:01 +02:00
2011-08-22 14:18:39 +02:00
for ( iCP = 0 ; iCP < cChars ; iCP + + )
2011-03-17 20:46:15 +01:00
{
2011-08-22 14:18:39 +02:00
iX = offsets [ iCP ] + direction ;
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptXtoCP ( iX , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piCP , & piTrailing ) ;
winetest_ok ( hr = = S_OK , " ScriptXtoCP leading: should return S_OK not %08x \n " , hr ) ;
winetest_ok ( piCP = = iCP , " ScriptXtoCP leading: iX=%d should return piCP=%d not %d \n " , iX , iCP , piCP ) ;
winetest_ok ( piTrailing = = 0 , " ScriptXtoCP leading: iX=%d should return piTrailing=0 not %d \n " , iX , piTrailing ) ;
2011-03-17 20:46:15 +01:00
}
2008-05-27 18:16:01 +02:00
2011-08-22 14:18:39 +02:00
for ( iCP = 0 ; iCP < cChars ; iCP + + )
2011-03-17 20:46:15 +01:00
{
2011-08-22 14:18:39 +02:00
iX = offsets [ iCP + 1 ] - direction ;
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptXtoCP ( iX , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piCP , & piTrailing ) ;
winetest_ok ( hr = = S_OK , " ScriptXtoCP trailing: should return S_OK not %08x \n " , hr ) ;
winetest_ok ( piCP = = iCP , " ScriptXtoCP trailing: iX=%d should return piCP=%d not %d \n " , iX , iCP , piCP ) ;
winetest_ok ( piTrailing = = 1 , " ScriptXtoCP trailing: iX=%d should return piTrailing=1 not %d \n " , iX , piTrailing ) ;
2011-03-17 20:46:15 +01:00
}
2008-05-27 18:16:01 +02:00
2011-08-22 14:18:39 +02:00
for ( iCP = 0 ; iCP < = cChars + 1 ; iCP + + )
2011-03-17 20:46:15 +01:00
{
2011-08-22 14:18:39 +02:00
fTrailing = FALSE ;
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptCPtoX ( iCP , fTrailing , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piX ) ;
winetest_ok ( hr = = S_OK , " ScriptCPtoX: should return S_OK not %08x \n " , hr ) ;
winetest_ok ( piX = = offsets [ iCP ] ,
" ScriptCPtoX: iCP=%d should return piX=%d not %d \n " , iCP , offsets [ iCP ] , piX ) ;
2011-03-17 20:46:15 +01:00
}
2006-07-20 14:16:50 +02:00
2011-08-22 14:18:39 +02:00
for ( iCP = 0 ; iCP < = cChars + 1 ; iCP + + )
{
fTrailing = TRUE ;
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptCPtoX ( iCP , fTrailing , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piX ) ;
winetest_ok ( hr = = S_OK , " ScriptCPtoX trailing: should return S_OK not %08x \n " , hr ) ;
winetest_ok ( piX = = offsets [ iCP + 1 ] ,
2011-08-25 15:13:43 +02:00
" ScriptCPtoX trailing: iCP=%d should return piX=%d not %d \n " , iCP , offsets [ iCP + 1 ] , piX ) ;
2011-08-22 14:18:39 +02:00
}
}
2008-05-27 18:16:01 +02:00
2016-01-18 14:50:44 +01:00
# define test_caret_item_ScriptXtoCP(a,b,c,d,e,f) _test_caret_item_ScriptXtoCP(__LINE__,a,b,c,d,e,f)
static void _test_caret_item_ScriptXtoCP ( int line , SCRIPT_ANALYSIS * psa , int cChars , int cGlyphs , const int * offsets , const WORD * pwLogClust , const int * piAdvance )
{
int iX , iCP , i ;
int icChars , icGlyphs ;
int piCP ;
int clusterSize ;
HRESULT hr ;
SCRIPT_VISATTR psva [ 10 ] ;
int piTrailing ;
int direction ;
memset ( psva , 0 , sizeof ( psva ) ) ;
direction = ( psa - > fRTL ) ? - 1 : + 1 ;
for ( iX = - 1 , i = iCP = 0 ; i < cChars ; i + + )
{
if ( offsets [ i ] ! = iX )
{
iX = offsets [ i ] ;
iCP = i ;
}
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptXtoCP ( iX , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piCP , & piTrailing ) ;
ok_ ( __FILE__ , line ) ( hr = = S_OK , " ScriptXtoCP: should return S_OK not %08x \n " , hr ) ;
ok_ ( __FILE__ , line ) ( piCP = = iCP , " ScriptXtoCP: iX=%d should return piCP=%d not %d \n " , iX , iCP , piCP ) ;
ok_ ( __FILE__ , line ) ( piTrailing = = 0 , " ScriptXtoCP: iX=%d should return piTrailing=0 not %d \n " , iX , piTrailing ) ;
}
for ( iX = - 2 , i = 0 ; i < cChars ; i + + )
{
if ( offsets [ i ] + direction ! = iX )
{
iX = offsets [ i ] + direction ;
iCP = i ;
}
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptXtoCP ( iX , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piCP , & piTrailing ) ;
ok_ ( __FILE__ , line ) ( hr = = S_OK , " ScriptXtoCP leading: should return S_OK not %08x \n " , hr ) ;
ok_ ( __FILE__ , line ) ( piCP = = iCP , " ScriptXtoCP leading: iX=%d should return piCP=%d not %d \n " , iX , iCP , piCP ) ;
ok_ ( __FILE__ , line ) ( piTrailing = = 0 , " ScriptXtoCP leading: iX=%d should return piTrailing=0 not %d \n " , iX , piTrailing ) ;
}
for ( clusterSize = 0 , iCP = 0 , iX = - 2 , i = 0 ; i < cChars ; i + + )
{
clusterSize + + ;
if ( offsets [ i ] ! = offsets [ i + 1 ] )
{
iX = offsets [ i + 1 ] - direction ;
icChars = cChars ;
icGlyphs = cGlyphs ;
hr = ScriptXtoCP ( iX , icChars , icGlyphs , pwLogClust , psva , piAdvance , psa , & piCP , & piTrailing ) ;
ok_ ( __FILE__ , line ) ( hr = = S_OK , " ScriptXtoCP trailing: should return S_OK not %08x \n " , hr ) ;
ok_ ( __FILE__ , line ) ( piCP = = iCP , " ScriptXtoCP trailing: iX=%d should return piCP=%d not %d \n " , iX , iCP , piCP ) ;
ok_ ( __FILE__ , line ) ( piTrailing = = clusterSize , " ScriptXtoCP trailing: iX=%d should return piTrailing=%d not %d \n " , iX , clusterSize , piTrailing ) ;
iCP = i + 1 ;
clusterSize = 0 ;
}
}
}
2011-08-22 14:18:39 +02:00
static void test_ScriptXtoX ( void )
/****************************************************************************************
* This routine tests the ScriptXtoCP and ScriptCPtoX functions using static variables *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
{
WORD pwLogClust [ 10 ] = { 0 , 0 , 0 , 1 , 1 , 2 , 2 , 3 , 3 , 3 } ;
WORD pwLogClust_RTL [ 10 ] = { 3 , 3 , 3 , 2 , 2 , 1 , 1 , 0 , 0 , 0 } ;
2011-08-25 15:13:43 +02:00
WORD pwLogClust_2 [ 7 ] = { 4 , 3 , 3 , 2 , 1 , 0 , 0 } ;
2016-01-18 14:50:44 +01:00
WORD pwLogClust_3 [ 17 ] = { 0 , 1 , 1 , 1 , 1 , 4 , 5 , 6 , 6 , 8 , 8 , 8 , 8 , 11 , 11 , 13 , 13 } ;
WORD pwLogClust_3_RTL [ 17 ] = { 13 , 13 , 11 , 11 , 8 , 8 , 8 , 8 , 6 , 6 , 5 , 4 , 1 , 1 , 1 , 1 , 0 } ;
2011-08-22 14:18:39 +02:00
int piAdvance [ 10 ] = { 201 , 190 , 210 , 180 , 170 , 204 , 189 , 195 , 212 , 203 } ;
2011-08-25 15:13:43 +02:00
int piAdvance_2 [ 5 ] = { 39 , 26 , 19 , 17 , 11 } ;
2016-01-18 14:50:44 +01:00
int piAdvance_3 [ 15 ] = { 6 , 6 , 0 , 0 , 10 , 5 , 10 , 0 , 12 , 0 , 0 , 9 , 0 , 10 , 0 } ;
2011-08-22 14:18:39 +02:00
static const int offsets [ 13 ] = { 0 , 67 , 134 , 201 , 296 , 391 , 496 , 601 , 1052 , 1503 , 1954 , 1954 , 1954 } ;
static const int offsets_RTL [ 13 ] = { 781 , 721 , 661 , 601 , 496 , 391 , 296 , 201 , 134 , 67 , 0 , 0 , 0 } ;
2011-08-25 15:13:43 +02:00
static const int offsets_2 [ 10 ] = { 112 , 101 , 92 , 84 , 65 , 39 , 19 , 0 , 0 , 0 } ;
2016-01-18 14:50:44 +01:00
static const int offsets_3 [ 19 ] = { 0 , 6 , 6 , 6 , 6 , 12 , 22 , 27 , 27 , 37 , 37 , 37 , 37 , 49 , 49 , 58 , 58 , 68 , 68 } ;
static const int offsets_3_RTL [ 19 ] = { 68 , 68 , 58 , 58 , 49 , 49 , 49 , 49 , 37 , 37 , 27 , 22 , 12 , 12 , 12 , 12 , 6 , 6 } ;
SCRIPT_VISATTR psva [ 15 ] ;
2011-08-22 14:18:39 +02:00
SCRIPT_ANALYSIS sa ;
2016-01-18 14:50:44 +01:00
SCRIPT_ITEM items [ 2 ] ;
int iX , i ;
2011-08-22 14:18:39 +02:00
int piCP ;
int piTrailing ;
HRESULT hr ;
2016-01-18 14:50:44 +01:00
static const WCHAR hebrW [ ] = { 0x5be , 0 } ;
static const WCHAR thaiW [ ] = { 0xe2a , 0 } ;
const SCRIPT_PROPERTIES * * ppScriptProperties ;
2011-08-22 14:18:39 +02:00
memset ( & sa , 0 , sizeof ( SCRIPT_ANALYSIS ) ) ;
2011-10-19 19:54:37 +02:00
memset ( psva , 0 , sizeof ( psva ) ) ;
2011-08-22 14:18:39 +02:00
sa . fRTL = FALSE ;
hr = ScriptXtoCP ( - 1 , 10 , 10 , pwLogClust , psva , piAdvance , & sa , & piCP , & piTrailing ) ;
ok ( hr = = S_OK , " ScriptXtoCP should return S_OK not %08x \n " , hr ) ;
if ( piTrailing )
ok ( piCP = = - 1 , " Negative iX should return piCP=-1 not %d \n " , piCP ) ;
else /* win2k3 */
ok ( piCP = = 10 , " Negative iX should return piCP=10 not %d \n " , piCP ) ;
2011-10-12 18:33:40 +02:00
for ( iX = 0 ; iX < = 7 ; iX + + )
{
WORD clust = 0 ;
INT advance = 16 ;
hr = ScriptXtoCP ( iX , 1 , 1 , & clust , psva , & advance , & sa , & piCP , & piTrailing ) ;
ok ( piCP = = 0 & & piTrailing = = 0 , " %i should return 0(%i) and 0(%i) \n " , iX , piCP , piTrailing ) ;
}
for ( iX = 8 ; iX < 16 ; iX + + )
{
WORD clust = 0 ;
INT advance = 16 ;
hr = ScriptXtoCP ( iX , 1 , 1 , & clust , psva , & advance , & sa , & piCP , & piTrailing ) ;
ok ( piCP = = 0 & & piTrailing = = 1 , " %i should return 0(%i) and 1(%i) \n " , iX , piCP , piTrailing ) ;
}
2011-08-22 14:18:39 +02:00
sa . fRTL = TRUE ;
hr = ScriptXtoCP ( - 1 , 10 , 10 , pwLogClust_RTL , psva , piAdvance , & sa , & piCP , & piTrailing ) ;
2006-12-12 06:23:53 +01:00
ok ( hr = = S_OK , " ScriptXtoCP should return S_OK not %08x \n " , hr ) ;
2011-03-17 20:46:15 +01:00
if ( piTrailing )
ok ( piCP = = - 1 , " Negative iX should return piCP=-1 not %d \n " , piCP ) ;
else /* win2k3 */
ok ( piCP = = 10 , " Negative iX should return piCP=10 not %d \n " , piCP ) ;
2008-05-27 18:16:01 +02:00
2011-03-17 20:46:15 +01:00
iX = 1954 ;
2011-08-22 14:18:39 +02:00
hr = ScriptXtoCP ( 1954 , 10 , 10 , pwLogClust_RTL , psva , piAdvance , & sa , & piCP , & piTrailing ) ;
2006-12-12 06:23:53 +01:00
ok ( hr = = S_OK , " ScriptXtoCP should return S_OK not %08x \n " , hr ) ;
2011-03-17 20:46:15 +01:00
ok ( piCP = = - 1 , " iX=%d should return piCP=-1 not %d \n " , iX , piCP ) ;
ok ( piTrailing = = 1 , " iX=%d should return piTrailing=1 not %d \n " , iX , piTrailing ) ;
2011-03-08 21:33:29 +01:00
2011-10-12 18:33:40 +02:00
for ( iX = 1 ; iX < = 8 ; iX + + )
{
WORD clust = 0 ;
INT advance = 16 ;
hr = ScriptXtoCP ( iX , 1 , 1 , & clust , psva , & advance , & sa , & piCP , & piTrailing ) ;
ok ( piCP = = 0 & & piTrailing = = 1 , " %i should return 0(%i) and 1(%i) \n " , iX , piCP , piTrailing ) ;
}
for ( iX = 9 ; iX < 16 ; iX + + )
{
WORD clust = 0 ;
INT advance = 16 ;
hr = ScriptXtoCP ( iX , 1 , 1 , & clust , psva , & advance , & sa , & piCP , & piTrailing ) ;
ok ( piCP = = 0 & & piTrailing = = 0 , " %i should return 0(%i) and 0(%i) \n " , iX , piCP , piTrailing ) ;
}
2011-08-22 14:18:39 +02:00
sa . fRTL = FALSE ;
test_item_ScriptXtoX ( & sa , 10 , 10 , offsets , pwLogClust , piAdvance ) ;
sa . fRTL = TRUE ;
test_item_ScriptXtoX ( & sa , 10 , 10 , offsets_RTL , pwLogClust_RTL , piAdvance ) ;
2011-08-25 15:13:43 +02:00
test_item_ScriptXtoX ( & sa , 7 , 5 , offsets_2 , pwLogClust_2 , piAdvance_2 ) ;
2016-01-18 14:50:44 +01:00
/* Get thai eScript, This will do LTR and fNeedsCaretInfo */
hr = ScriptItemize ( thaiW , 1 , 2 , NULL , NULL , items , & i ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
ok ( i = = 1 , " got %d \n " , i ) ;
sa = items [ 0 ] . a ;
test_caret_item_ScriptXtoCP ( & sa , 17 , 15 , offsets_3 , pwLogClust_3 , piAdvance_3 ) ;
/* Get hebrew eScript, This will do RTL and fNeedsCaretInfo */
hr = ScriptItemize ( hebrW , 1 , 2 , NULL , NULL , items , & i ) ;
ok ( hr = = S_OK , " got %08x \n " , hr ) ;
ok ( i = = 1 , " got %d \n " , i ) ;
sa = items [ 0 ] . a ;
/* Note: This behavior CHANGED in uniscribe versions...
* so we only want to test if fNeedsCaretInfo is set */
hr = ScriptGetProperties ( & ppScriptProperties , & i ) ;
if ( ppScriptProperties [ sa . eScript ] - > fNeedsCaretInfo )
{
test_caret_item_ScriptXtoCP ( & sa , 17 , 15 , offsets_3_RTL , pwLogClust_3_RTL , piAdvance_3 ) ;
hr = ScriptXtoCP ( 0 , 17 , 15 , pwLogClust_3_RTL , psva , piAdvance_3 , & sa , & piCP , & piTrailing ) ;
ok ( hr = = S_OK , " ScriptXtoCP: should return S_OK not %08x \n " , hr ) ;
ok ( piCP = = 16 , " ScriptXtoCP: iX=0 should return piCP=16 not %d \n " , piCP ) ;
ok ( piTrailing = = 1 , " ScriptXtoCP: iX=0 should return piTrailing=1 not %d \n " , piTrailing ) ;
}
else
win_skip ( " Uniscribe version too old to test Hebrew clusters \n " ) ;
2006-07-20 14:16:50 +02:00
}
2006-12-24 12:39:27 +01:00
static void test_ScriptString ( HDC hdc )
2006-05-23 14:15:15 +02:00
{
2006-10-24 11:02:17 +02:00
/*******************************************************************************************
*
* This set of tests are for the string functions of uniscribe . The ScriptStringAnalyse
2006-12-24 12:39:27 +01:00
* function allocates memory pointed to by the SCRIPT_STRING_ANALYSIS ssa pointer . This
2011-05-09 09:03:40 +02:00
* memory is freed by ScriptStringFree . There needs to be a valid hdc for this as
2006-12-24 12:39:27 +01:00
* ScriptStringAnalyse calls ScriptSItemize , ScriptShape and ScriptPlace which require it .
2006-10-24 11:02:17 +02:00
*
*/
2006-05-23 14:15:15 +02:00
HRESULT hr ;
2006-10-24 11:02:17 +02:00
WCHAR teststr [ ] = { ' T ' , ' e ' , ' s ' , ' t ' , ' 1 ' , ' ' , ' a ' , ' 2 ' , ' b ' , ' 3 ' , ' \0 ' } ;
2007-01-03 12:12:29 +01:00
int len = ( sizeof ( teststr ) / sizeof ( WCHAR ) ) - 1 ;
int Glyphs = len * 2 + 16 ;
2006-10-24 11:02:17 +02:00
int Charset ;
DWORD Flags = SSA_GLYPHS ;
int ReqWidth = 100 ;
2016-08-05 22:43:31 +02:00
static const int Dx [ ( sizeof ( teststr ) / sizeof ( WCHAR ) ) - 1 ] ;
static const BYTE InClass [ ( sizeof ( teststr ) / sizeof ( WCHAR ) ) - 1 ] ;
2006-10-24 11:02:17 +02:00
SCRIPT_STRING_ANALYSIS ssa = NULL ;
int X = 10 ;
int Y = 100 ;
UINT Options = 0 ;
const RECT rc = { 0 , 50 , 100 , 100 } ;
2007-01-03 12:12:29 +01:00
int MinSel = 0 ;
2006-10-24 11:02:17 +02:00
int MaxSel = 0 ;
BOOL Disabled = FALSE ;
2007-01-03 12:12:29 +01:00
const int * clip_len ;
2007-05-27 13:17:56 +02:00
int i ;
UINT * order ;
2006-06-06 12:21:07 +02:00
2006-10-24 11:02:17 +02:00
Charset = - 1 ; /* this flag indicates unicode input */
2006-12-24 12:39:27 +01:00
/* Test without hdc to get E_PENDING */
2007-01-03 12:12:29 +01:00
hr = ScriptStringAnalyse ( NULL , teststr , len , Glyphs , Charset , Flags ,
2011-02-15 19:36:01 +01:00
ReqWidth , NULL , NULL , Dx , NULL ,
2016-08-05 22:43:31 +02:00
InClass , & ssa ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_PENDING , " ScriptStringAnalyse Stub should return E_PENDING not %08x \n " , hr ) ;
2006-06-06 12:21:07 +02:00
2015-09-10 12:46:47 +02:00
/* Test that 0 length string returns E_INVALIDARG */
hr = ScriptStringAnalyse ( hdc , teststr , 0 , Glyphs , Charset , Flags ,
ReqWidth , NULL , NULL , Dx , NULL ,
2016-08-05 22:43:31 +02:00
InClass , & ssa ) ;
2015-09-10 12:46:47 +02:00
ok ( hr = = E_INVALIDARG , " ScriptStringAnalyse should return E_INVALIDARG not %08x \n " , hr ) ;
2006-06-06 12:21:07 +02:00
/* test with hdc, this should be a valid test */
2007-01-03 12:12:29 +01:00
hr = ScriptStringAnalyse ( hdc , teststr , len , Glyphs , Charset , Flags ,
2011-02-15 19:36:01 +01:00
ReqWidth , NULL , NULL , Dx , NULL ,
2016-08-05 22:43:31 +02:00
InClass , & ssa ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringAnalyse should return S_OK not %08x \n " , hr ) ;
2007-11-08 19:18:30 +01:00
ScriptStringFree ( & ssa ) ;
2006-10-24 11:02:17 +02:00
/* test makes sure that a call with a valid pssa still works */
2007-01-03 12:12:29 +01:00
hr = ScriptStringAnalyse ( hdc , teststr , len , Glyphs , Charset , Flags ,
2011-02-15 19:36:01 +01:00
ReqWidth , NULL , NULL , Dx , NULL ,
2016-08-05 22:43:31 +02:00
InClass , & ssa ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringAnalyse should return S_OK not %08x \n " , hr ) ;
ok ( ssa ! = NULL , " ScriptStringAnalyse pssa should not be NULL \n " ) ;
2006-10-24 11:02:17 +02:00
2007-01-03 12:12:29 +01:00
if ( hr = = S_OK )
2006-06-06 12:21:07 +02:00
{
2006-10-24 11:02:17 +02:00
hr = ScriptStringOut ( ssa , X , Y , Options , & rc , MinSel , MaxSel , Disabled ) ;
2006-12-29 12:37:16 +01:00
ok ( hr = = S_OK , " ScriptStringOut should return S_OK not %08x \n " , hr ) ;
2006-06-06 12:21:07 +02:00
}
2007-01-03 12:12:29 +01:00
clip_len = ScriptString_pcOutChars ( ssa ) ;
ok ( * clip_len = = len , " ScriptString_pcOutChars failed, got %d, expected %d \n " , * clip_len , len ) ;
order = HeapAlloc ( GetProcessHeap ( ) , HEAP_ZERO_MEMORY , * clip_len * sizeof ( UINT ) ) ;
hr = ScriptStringGetOrder ( ssa , order ) ;
ok ( hr = = S_OK , " ScriptStringGetOrder failed, got %08x, expected S_OK \n " , hr ) ;
for ( i = 0 ; i < * clip_len ; i + + ) ok ( order [ i ] = = i , " %d: got %d expected %d \n " , i , order [ i ] , i ) ;
HeapFree ( GetProcessHeap ( ) , 0 , order ) ;
hr = ScriptStringFree ( & ssa ) ;
ok ( hr = = S_OK , " ScriptStringFree should return S_OK not %08x \n " , hr ) ;
2006-05-23 14:15:15 +02:00
}
2006-12-11 21:22:02 +01:00
static void test_ScriptStringXtoCP_CPtoX ( HDC hdc )
2006-10-24 11:04:10 +02:00
{
/*****************************************************************************************
*
* This test is for the ScriptStringXtoCP and ScriptStringXtoCP functions . Due to the
* nature of the fonts between Windows and Wine , the test is implemented by generating
* values using one one function then checking the output of the second . In this way
* the validity of the functions is established using Windows as a base and confirming
* similar behaviour in wine .
*/
HRESULT hr ;
2010-10-28 21:42:39 +02:00
static const WCHAR teststr1 [ ] = { 0x05e9 , ' i ' , 0x05dc , ' n ' , 0x05d5 , ' e ' , 0x05dd , ' . ' , 0 } ;
static const BOOL rtl [ ] = { 1 , 0 , 1 , 0 , 1 , 0 , 1 , 0 } ;
2006-10-24 11:04:10 +02:00
void * String = ( WCHAR * ) & teststr1 ; /* ScriptStringAnalysis needs void */
int String_len = ( sizeof ( teststr1 ) / sizeof ( WCHAR ) ) - 1 ;
int Glyphs = String_len * 2 + 16 ; /* size of buffer as recommended */
int Charset = - 1 ; /* unicode */
DWORD Flags = SSA_GLYPHS ;
int ReqWidth = 100 ;
2016-08-05 22:43:31 +02:00
static const BYTE InClass [ ( sizeof ( teststr1 ) / sizeof ( WCHAR ) ) - 1 ] ;
2006-10-24 11:04:10 +02:00
SCRIPT_STRING_ANALYSIS ssa = NULL ;
int Ch ; /* Character position in string */
int iTrailing ;
int Cp ; /* Character position in string */
int X ;
2010-10-28 21:42:39 +02:00
int trail , lead ;
2006-10-24 11:04:10 +02:00
BOOL fTrailing ;
/* Test with hdc, this should be a valid test
2008-03-01 21:10:38 +01:00
* Here we generate an SCRIPT_STRING_ANALYSIS that will be used as input to the
2006-10-24 11:04:10 +02:00
* following character positions to X and X to character position functions .
*/
2010-05-07 17:38:56 +02:00
2006-10-24 11:04:10 +02:00
hr = ScriptStringAnalyse ( hdc , String , String_len , Glyphs , Charset , Flags ,
2011-02-15 19:36:01 +01:00
ReqWidth , NULL , NULL , NULL , NULL ,
2016-08-05 22:43:31 +02:00
InClass , & ssa ) ;
2008-05-27 18:16:01 +02:00
ok ( hr = = S_OK | |
hr = = E_INVALIDARG , /* NT */
" ScriptStringAnalyse should return S_OK or E_INVALIDARG not %08x \n " , hr ) ;
if ( hr = = S_OK )
2006-10-24 11:04:10 +02:00
{
2008-05-27 18:16:01 +02:00
ok ( ssa ! = NULL , " ScriptStringAnalyse ssa should not be NULL \n " ) ;
2006-10-24 11:04:10 +02:00
/*
* Loop to generate character positions to provide starting positions for the
* ScriptStringCPtoX and ScriptStringXtoCP functions
*/
for ( Cp = 0 ; Cp < String_len ; Cp + + )
{
/* The fTrailing flag is used to indicate whether the X being returned is at
* the beginning or the end of the character . What happens here is that if
* fTrailing indicates the end of the character , ie . FALSE , then ScriptStringXtoCP
* returns the beginning of the next character and iTrailing is FALSE . So for this
* loop iTrailing will be FALSE in both cases .
*/
2010-10-28 21:42:39 +02:00
hr = ScriptStringCPtoX ( ssa , Cp , TRUE , & trail ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringCPtoX should return S_OK not %08x \n " , hr ) ;
2010-10-28 21:42:39 +02:00
hr = ScriptStringCPtoX ( ssa , Cp , FALSE , & lead ) ;
ok ( hr = = S_OK , " ScriptStringCPtoX should return S_OK not %08x \n " , hr ) ;
if ( rtl [ Cp ] )
2011-08-24 15:28:14 +02:00
ok ( lead > trail , " Leading values should be after trailing for rtl characters(%i) \n " , Cp ) ;
2010-10-28 21:42:39 +02:00
else
2011-08-03 23:50:18 +02:00
ok ( lead < trail , " Trailing values should be after leading for ltr characters(%i) \n " , Cp ) ;
2010-10-28 21:42:39 +02:00
2012-05-15 10:15:32 +02:00
/* move by 1 pixel so that we are not between 2 characters. That could result in being the lead of a rtl and
2010-10-28 21:42:39 +02:00
at the same time the trail of an ltr */
/* inside the leading edge */
X = lead ;
if ( rtl [ Cp ] ) X - - ; else X + + ;
2006-10-24 11:04:10 +02:00
hr = ScriptStringXtoCP ( ssa , X , & Ch , & iTrailing ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringXtoCP should return S_OK not %08x \n " , hr ) ;
2010-10-28 21:42:39 +02:00
ok ( Cp = = Ch , " ScriptStringXtoCP should return Ch = %d not %d for X = %d \n " , Cp , Ch , trail ) ;
ok ( iTrailing = = FALSE , " ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d \n " ,
2006-10-24 11:04:10 +02:00
iTrailing , X ) ;
2010-10-28 21:42:39 +02:00
/* inside the trailing edge */
X = trail ;
if ( rtl [ Cp ] ) X + + ; else X - - ;
2006-10-24 11:04:10 +02:00
hr = ScriptStringXtoCP ( ssa , X , & Ch , & iTrailing ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringXtoCP should return S_OK not %08x \n " , hr ) ;
2010-10-28 21:42:39 +02:00
ok ( Cp = = Ch , " ScriptStringXtoCP should return Ch = %d not %d for X = %d \n " , Cp , Ch , trail ) ;
ok ( iTrailing = = TRUE , " ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d \n " ,
iTrailing , X ) ;
2006-10-24 11:04:10 +02:00
2010-10-28 21:42:39 +02:00
/* outside the "trailing" edge */
if ( Cp < String_len - 1 )
{
if ( rtl [ Cp ] ) X = lead ; else X = trail ;
X + + ;
hr = ScriptStringXtoCP ( ssa , X , & Ch , & iTrailing ) ;
ok ( hr = = S_OK , " ScriptStringXtoCP should return S_OK not %08x \n " , hr ) ;
ok ( Cp + 1 = = Ch , " ScriptStringXtoCP should return Ch = %d not %d for X = %d \n " , Cp + 1 , Ch , trail ) ;
if ( rtl [ Cp + 1 ] )
2010-10-29 20:48:48 +02:00
ok ( iTrailing = = TRUE , " ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d \n " ,
2010-10-28 21:42:39 +02:00
iTrailing , X ) ;
else
ok ( iTrailing = = FALSE , " ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d \n " ,
iTrailing , X ) ;
}
/* outside the "leading" edge */
if ( Cp ! = 0 )
{
if ( rtl [ Cp ] ) X = trail ; else X = lead ;
X - - ;
hr = ScriptStringXtoCP ( ssa , X , & Ch , & iTrailing ) ;
ok ( hr = = S_OK , " ScriptStringXtoCP should return S_OK not %08x \n " , hr ) ;
ok ( Cp - 1 = = Ch , " ScriptStringXtoCP should return Ch = %d not %d for X = %d \n " , Cp - 1 , Ch , trail ) ;
if ( Cp ! = 0 & & rtl [ Cp - 1 ] )
2010-10-29 20:48:48 +02:00
ok ( iTrailing = = FALSE , " ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d \n " ,
2010-10-28 21:42:39 +02:00
iTrailing , X ) ;
else
ok ( iTrailing = = TRUE , " ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d \n " ,
iTrailing , X ) ;
}
2006-10-24 11:04:10 +02:00
}
2010-11-02 13:03:16 +01:00
/* Check beyond the leading boundary of the whole string */
2010-10-28 21:42:39 +02:00
if ( rtl [ 0 ] )
{
/* having a leading rtl character seems to confuse usp */
/* this looks to be a windows bug we should emulate */
hr = ScriptStringCPtoX ( ssa , 0 , TRUE , & X ) ;
2011-02-05 07:48:59 +01:00
ok ( hr = = S_OK , " ScriptStringCPtoX should return S_OK not %08x \n " , hr ) ;
2010-10-28 21:42:39 +02:00
X - - ;
hr = ScriptStringXtoCP ( ssa , X , & Ch , & iTrailing ) ;
ok ( hr = = S_OK , " ScriptStringXtoCP should return S_OK not %08x \n " , hr ) ;
2010-10-29 20:48:48 +02:00
ok ( Ch = = 1 , " ScriptStringXtoCP should return Ch = 1 not %d for X outside leading edge when rtl \n " , Ch ) ;
ok ( iTrailing = = FALSE , " ScriptStringXtoCP should return iTrailing = 0 not %d for X = outside leading edge when rtl \n " ,
2010-10-28 21:42:39 +02:00
iTrailing ) ;
}
else
{
hr = ScriptStringCPtoX ( ssa , 0 , FALSE , & X ) ;
2011-02-05 07:48:59 +01:00
ok ( hr = = S_OK , " ScriptStringCPtoX should return S_OK not %08x \n " , hr ) ;
2010-10-28 21:42:39 +02:00
X - - ;
hr = ScriptStringXtoCP ( ssa , X , & Ch , & iTrailing ) ;
ok ( hr = = S_OK , " ScriptStringXtoCP should return S_OK not %08x \n " , hr ) ;
ok ( Ch = = - 1 , " ScriptStringXtoCP should return Ch = -1 not %d for X outside leading edge \n " , Ch ) ;
ok ( iTrailing = = TRUE , " ScriptStringXtoCP should return iTrailing = 1 not %d for X = outside leading edge \n " ,
iTrailing ) ;
}
2006-10-24 11:04:10 +02:00
2010-11-02 13:03:16 +01:00
/* Check beyond the end boundary of the whole string */
2010-10-28 21:42:39 +02:00
if ( rtl [ String_len - 1 ] )
2011-02-05 07:48:59 +01:00
{
2010-10-28 21:42:39 +02:00
hr = ScriptStringCPtoX ( ssa , String_len - 1 , FALSE , & X ) ;
2011-02-05 07:48:59 +01:00
ok ( hr = = S_OK , " ScriptStringCPtoX should return S_OK not %08x \n " , hr ) ;
}
2010-10-28 21:42:39 +02:00
else
2011-02-05 07:48:59 +01:00
{
2010-10-28 21:42:39 +02:00
hr = ScriptStringCPtoX ( ssa , String_len - 1 , TRUE , & X ) ;
2011-02-05 07:48:59 +01:00
ok ( hr = = S_OK , " ScriptStringCPtoX should return S_OK not %08x \n " , hr ) ;
}
2010-10-28 21:42:39 +02:00
X + + ;
2006-10-24 11:04:10 +02:00
hr = ScriptStringXtoCP ( ssa , X , & Ch , & iTrailing ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringXtoCP should return S_OK not %08x \n " , hr ) ;
2010-10-28 21:42:39 +02:00
ok ( Ch = = String_len , " ScriptStringXtoCP should return Ch = %i not %d for X outside trailing edge \n " , String_len , Ch ) ;
2011-08-03 23:50:18 +02:00
ok ( iTrailing = = FALSE , " ScriptStringXtoCP should return iTrailing = 0 not %d for X = outside trailing edge \n " ,
2010-10-28 21:42:39 +02:00
iTrailing ) ;
2006-10-24 11:04:10 +02:00
/*
2007-10-23 15:30:30 +02:00
* Cleanup the SSA for the next round of tests
2006-12-16 03:28:07 +01:00
*/
2006-10-24 11:04:10 +02:00
hr = ScriptStringFree ( & ssa ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringFree should return S_OK not %08x \n " , hr ) ;
2006-10-24 11:04:10 +02:00
/*
* Test to see that exceeding the number of chars returns E_INVALIDARG . First
* generate an SSA for the subsequent tests .
*/
hr = ScriptStringAnalyse ( hdc , String , String_len , Glyphs , Charset , Flags ,
2011-02-15 19:36:01 +01:00
ReqWidth , NULL , NULL , NULL , NULL ,
2016-08-05 22:43:31 +02:00
InClass , & ssa ) ;
2006-12-16 03:28:07 +01:00
ok ( hr = = S_OK , " ScriptStringAnalyse should return S_OK not %08x \n " , hr ) ;
2006-10-24 11:04:10 +02:00
/*
2006-12-16 03:28:07 +01:00
* When ScriptStringCPtoX is called with a character position Cp that exceeds the
2010-10-28 21:42:39 +02:00
* string length , return E_INVALIDARG . This also invalidates the ssa so a
2006-10-24 11:04:10 +02:00
* ScriptStringFree should also fail .
*/
fTrailing = FALSE ;
2010-10-28 21:42:39 +02:00
Cp = String_len + 1 ;
2006-10-24 11:04:10 +02:00
hr = ScriptStringCPtoX ( ssa , Cp , fTrailing , & X ) ;
2006-12-16 03:28:25 +01:00
ok ( hr = = E_INVALIDARG , " ScriptStringCPtoX should return E_INVALIDARG not %08x \n " , hr ) ;
2006-10-24 11:04:10 +02:00
2010-06-17 04:23:49 +02:00
ScriptStringFree ( & ssa ) ;
2006-12-11 21:22:02 +01:00
}
2006-10-24 11:04:10 +02:00
}
2006-12-11 21:22:02 +01:00
static void test_ScriptCacheGetHeight ( HDC hdc )
2006-08-04 14:55:30 +02:00
{
HRESULT hr ;
SCRIPT_CACHE sc = NULL ;
2006-12-23 11:07:55 +01:00
LONG height ;
2006-08-04 14:55:30 +02:00
hr = ScriptCacheGetHeight ( NULL , NULL , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " expected E_INVALIDARG, got 0x%08x \n " , hr ) ;
2006-08-04 14:55:30 +02:00
hr = ScriptCacheGetHeight ( NULL , & sc , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " expected E_INVALIDARG, got 0x%08x \n " , hr ) ;
2006-08-04 14:55:30 +02:00
hr = ScriptCacheGetHeight ( NULL , & sc , & height ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_PENDING , " expected E_PENDING, got 0x%08x \n " , hr ) ;
2006-08-04 14:55:30 +02:00
height = 0 ;
hr = ScriptCacheGetHeight ( hdc , & sc , & height ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " expected S_OK, got 0x%08x \n " , hr ) ;
2006-08-04 14:55:30 +02:00
ok ( height > 0 , " expected height > 0 \n " ) ;
2007-11-08 19:18:30 +01:00
ScriptFreeCache ( & sc ) ;
2006-08-04 14:55:30 +02:00
}
2006-12-11 21:22:02 +01:00
static void test_ScriptGetGlyphABCWidth ( HDC hdc )
2006-08-04 14:55:30 +02:00
{
HRESULT hr ;
SCRIPT_CACHE sc = NULL ;
ABC abc ;
hr = ScriptGetGlyphABCWidth ( NULL , NULL , ' a ' , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " expected E_INVALIDARG, got 0x%08x \n " , hr ) ;
2006-08-04 14:55:30 +02:00
hr = ScriptGetGlyphABCWidth ( NULL , & sc , ' a ' , NULL ) ;
2009-09-03 14:50:17 +02:00
ok ( broken ( hr = = E_PENDING ) | |
hr = = E_INVALIDARG , /* WIN7 */
" expected E_INVALIDARG, got 0x%08x \n " , hr ) ;
hr = ScriptGetGlyphABCWidth ( NULL , & sc , ' a ' , & abc ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_PENDING , " expected E_PENDING, got 0x%08x \n " , hr ) ;
2006-08-04 14:55:30 +02:00
if ( 0 ) { /* crashes on WinXP */
hr = ScriptGetGlyphABCWidth ( hdc , & sc , ' a ' , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " expected E_INVALIDARG, got 0x%08x \n " , hr ) ;
2006-08-04 14:55:30 +02:00
}
hr = ScriptGetGlyphABCWidth ( hdc , & sc , ' a ' , & abc ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " expected S_OK, got 0x%08x \n " , hr ) ;
2007-11-08 19:18:30 +01:00
ScriptFreeCache ( & sc ) ;
2006-08-04 14:55:30 +02:00
}
2006-12-11 21:22:02 +01:00
static void test_ScriptLayout ( void )
2006-09-28 17:00:19 +02:00
{
HRESULT hr ;
2010-04-13 21:49:20 +02:00
static const BYTE levels [ ] [ 10 ] =
2006-09-28 17:00:19 +02:00
{
2010-04-13 21:49:20 +02:00
{ 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 } ,
{ 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 , 1 } ,
{ 2 , 2 , 2 , 2 , 2 , 2 , 2 , 2 , 2 , 2 } ,
{ 3 , 3 , 3 , 3 , 3 , 3 , 3 , 3 , 3 , 3 } ,
{ 0 , 0 , 0 , 0 , 0 , 1 , 1 , 1 , 1 , 1 } ,
{ 1 , 1 , 1 , 2 , 2 , 2 , 1 , 1 , 1 , 1 } ,
{ 2 , 2 , 2 , 1 , 1 , 1 , 2 , 2 , 2 , 2 } ,
{ 0 , 0 , 1 , 1 , 2 , 2 , 1 , 1 , 0 , 0 } ,
{ 1 , 1 , 2 , 2 , 3 , 3 , 2 , 2 , 1 , 1 } ,
{ 0 , 0 , 1 , 1 , 2 , 2 , 1 , 1 , 0 , 1 } ,
{ 1 , 0 , 1 , 2 , 2 , 1 , 2 , 1 , 0 , 1 } ,
2013-02-14 19:10:31 +01:00
{ 1 , 2 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 } ,
{ 2 , 2 , 2 , 0 , 0 , 0 , 0 , 0 , 0 , 0 } ,
{ 2 , 2 , 2 , 4 , 4 , 4 , 1 , 1 , 0 , 0 } ,
{ 1 , 2 , 3 , 0 , 3 , 2 , 1 , 0 , 0 , 0 }
2006-09-28 17:00:19 +02:00
} ;
2010-04-13 21:49:20 +02:00
static const int expect_l2v [ ] [ 10 ] =
2006-09-28 17:00:19 +02:00
{
2010-04-13 21:49:20 +02:00
{ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 9 , 8 , 7 , 6 , 5 , 4 , 3 , 2 , 1 , 0 } ,
{ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 9 , 8 , 7 , 6 , 5 , 4 , 3 , 2 , 1 , 0 } ,
{ 0 , 1 , 2 , 3 , 4 , 9 , 8 , 7 , 6 , 5 } ,
/**/ { 9 , 8 , 7 , 4 , 5 , 6 , 3 , 2 , 1 , 0 } ,
/**/ { 7 , 8 , 9 , 6 , 5 , 4 , 0 , 1 , 2 , 3 } ,
{ 0 , 1 , 7 , 6 , 4 , 5 , 3 , 2 , 8 , 9 } ,
{ 9 , 8 , 2 , 3 , 5 , 4 , 6 , 7 , 1 , 0 } ,
{ 0 , 1 , 7 , 6 , 4 , 5 , 3 , 2 , 8 , 9 } ,
/**/ { 0 , 1 , 7 , 5 , 6 , 4 , 3 , 2 , 8 , 9 } ,
2013-02-14 19:10:31 +01:00
{ 1 , 0 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 2 , 3 , 4 , 5 , 6 , 7 , 1 , 0 , 8 , 9 } ,
{ 2 , 0 , 1 , 3 , 5 , 6 , 4 , 7 , 8 , 9 }
2006-09-28 17:00:19 +02:00
} ;
2010-04-13 21:49:20 +02:00
static const int expect_v2l [ ] [ 10 ] =
{
{ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 9 , 8 , 7 , 6 , 5 , 4 , 3 , 2 , 1 , 0 } ,
{ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 9 , 8 , 7 , 6 , 5 , 4 , 3 , 2 , 1 , 0 } ,
{ 0 , 1 , 2 , 3 , 4 , 9 , 8 , 7 , 6 , 5 } ,
{ 9 , 8 , 7 , 6 , 3 , 4 , 5 , 2 , 1 , 0 } ,
{ 6 , 7 , 8 , 9 , 5 , 4 , 3 , 0 , 1 , 2 } ,
{ 0 , 1 , 7 , 6 , 4 , 5 , 3 , 2 , 8 , 9 } ,
{ 9 , 8 , 2 , 3 , 5 , 4 , 6 , 7 , 1 , 0 } ,
{ 0 , 1 , 7 , 6 , 4 , 5 , 3 , 2 , 8 , 9 } ,
{ 0 , 1 , 7 , 6 , 5 , 3 , 4 , 2 , 8 , 9 } ,
2013-02-14 19:10:31 +01:00
{ 1 , 0 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 0 , 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 } ,
{ 7 , 6 , 0 , 1 , 2 , 3 , 4 , 5 , 8 , 9 } ,
{ 1 , 2 , 0 , 3 , 6 , 4 , 5 , 7 , 8 , 9 }
2010-04-13 21:49:20 +02:00
} ;
2006-09-28 17:00:19 +02:00
int i , j , vistolog [ sizeof ( levels [ 0 ] ) ] , logtovis [ sizeof ( levels [ 0 ] ) ] ;
hr = ScriptLayout ( sizeof ( levels [ 0 ] ) , NULL , vistolog , logtovis ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " expected E_INVALIDARG, got 0x%08x \n " , hr ) ;
2006-09-28 17:00:19 +02:00
hr = ScriptLayout ( sizeof ( levels [ 0 ] ) , levels [ 0 ] , NULL , NULL ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = E_INVALIDARG , " expected E_INVALIDARG, got 0x%08x \n " , hr ) ;
2006-09-28 17:00:19 +02:00
for ( i = 0 ; i < sizeof ( levels ) / sizeof ( levels [ 0 ] ) ; i + + )
{
hr = ScriptLayout ( sizeof ( levels [ 0 ] ) , levels [ i ] , vistolog , logtovis ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " expected S_OK, got 0x%08x \n " , hr ) ;
2006-09-28 17:00:19 +02:00
for ( j = 0 ; j < sizeof ( levels [ i ] ) ; j + + )
{
2010-04-13 21:49:20 +02:00
ok ( expect_v2l [ i ] [ j ] = = vistolog [ j ] ,
2006-09-28 17:00:19 +02:00
" failure: levels[%d][%d] = %d, vistolog[%d] = %d \n " ,
i , j , levels [ i ] [ j ] , j , vistolog [ j ] ) ;
}
for ( j = 0 ; j < sizeof ( levels [ i ] ) ; j + + )
{
2010-04-13 21:49:20 +02:00
ok ( expect_l2v [ i ] [ j ] = = logtovis [ j ] ,
2006-09-28 17:00:19 +02:00
" failure: levels[%d][%d] = %d, logtovis[%d] = %d \n " ,
i , j , levels [ i ] [ j ] , j , logtovis [ j ] ) ;
}
}
}
2006-09-07 08:42:56 +02:00
static BOOL CALLBACK enum_proc ( LGRPID group , LCID lcid , LPSTR locale , LONG_PTR lparam )
{
HRESULT hr ;
SCRIPT_DIGITSUBSTITUTE sds ;
SCRIPT_CONTROL sc ;
SCRIPT_STATE ss ;
LCID lcid_old ;
if ( ! IsValidLocale ( lcid , LCID_INSTALLED ) ) return TRUE ;
memset ( & sds , 0 , sizeof ( sds ) ) ;
memset ( & sc , 0 , sizeof ( sc ) ) ;
memset ( & ss , 0 , sizeof ( ss ) ) ;
lcid_old = GetThreadLocale ( ) ;
if ( ! SetThreadLocale ( lcid ) ) return TRUE ;
hr = ScriptRecordDigitSubstitution ( lcid , & sds ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " ScriptRecordDigitSubstitution failed: 0x%08x \n " , hr ) ;
2006-09-07 08:42:56 +02:00
hr = ScriptApplyDigitSubstitution ( & sds , & sc , & ss ) ;
2006-10-11 00:19:54 +02:00
ok ( hr = = S_OK , " ScriptApplyDigitSubstitution failed: 0x%08x \n " , hr ) ;
2006-09-07 08:42:56 +02:00
SetThreadLocale ( lcid_old ) ;
return TRUE ;
}
static void test_digit_substitution ( void )
{
BOOL ret ;
unsigned int i ;
static const LGRPID groups [ ] =
{
LGRPID_WESTERN_EUROPE ,
LGRPID_CENTRAL_EUROPE ,
LGRPID_BALTIC ,
LGRPID_GREEK ,
LGRPID_CYRILLIC ,
LGRPID_TURKISH ,
LGRPID_JAPANESE ,
LGRPID_KOREAN ,
LGRPID_TRADITIONAL_CHINESE ,
LGRPID_SIMPLIFIED_CHINESE ,
LGRPID_THAI ,
LGRPID_HEBREW ,
LGRPID_ARABIC ,
LGRPID_VIETNAMESE ,
LGRPID_INDIC ,
LGRPID_GEORGIAN ,
LGRPID_ARMENIAN
} ;
2006-12-17 19:18:41 +01:00
HMODULE hKernel32 ;
2009-12-17 21:30:41 +01:00
static BOOL ( WINAPI * pEnumLanguageGroupLocalesA ) ( LANGGROUPLOCALE_ENUMPROCA , LGRPID , DWORD , LONG_PTR ) ;
2006-12-17 19:18:41 +01:00
hKernel32 = GetModuleHandleA ( " kernel32.dll " ) ;
pEnumLanguageGroupLocalesA = ( void * ) GetProcAddress ( hKernel32 , " EnumLanguageGroupLocalesA " ) ;
if ( ! pEnumLanguageGroupLocalesA )
{
2008-10-20 23:08:45 +02:00
win_skip ( " EnumLanguageGroupLocalesA not available on this platform \n " ) ;
2006-12-17 19:18:41 +01:00
return ;
}
2006-09-07 08:42:56 +02:00
for ( i = 0 ; i < sizeof ( groups ) / sizeof ( groups [ 0 ] ) ; i + + )
{
2006-12-17 19:18:41 +01:00
ret = pEnumLanguageGroupLocalesA ( enum_proc , groups [ i ] , 0 , 0 ) ;
2009-04-11 14:17:45 +02:00
if ( ! ret & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
{
win_skip ( " EnumLanguageGroupLocalesA not implemented on this platform \n " ) ;
break ;
}
2007-01-18 11:37:24 +01:00
ok ( ret , " EnumLanguageGroupLocalesA failed unexpectedly: %u \n " , GetLastError ( ) ) ;
2006-09-07 08:42:56 +02:00
}
}
2006-12-23 15:19:30 +01:00
static void test_ScriptGetProperties ( void )
{
const SCRIPT_PROPERTIES * * props ;
HRESULT hr ;
int num ;
hr = ScriptGetProperties ( NULL , NULL ) ;
ok ( hr = = E_INVALIDARG , " ScriptGetProperties succeeded \n " ) ;
hr = ScriptGetProperties ( NULL , & num ) ;
ok ( hr = = S_OK , " ScriptGetProperties failed: 0x%08x \n " , hr ) ;
hr = ScriptGetProperties ( & props , NULL ) ;
ok ( hr = = S_OK , " ScriptGetProperties failed: 0x%08x \n " , hr ) ;
hr = ScriptGetProperties ( & props , & num ) ;
ok ( hr = = S_OK , " ScriptGetProperties failed: 0x%08x \n " , hr ) ;
}
2009-01-06 11:20:26 +01:00
static void test_ScriptBreak ( void )
{
static const WCHAR test [ ] = { ' ' , ' \r ' , ' \n ' , 0 } ;
SCRIPT_ITEM items [ 4 ] ;
SCRIPT_LOGATTR la ;
HRESULT hr ;
hr = ScriptItemize ( test , 3 , 4 , NULL , NULL , items , NULL ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptItemize should return S_OK not %08x \n " , hr ) ;
2009-01-06 11:20:26 +01:00
2012-03-19 19:48:39 +01:00
/*
* This Test crashes pre Vista .
hr = ScriptBreak ( test , 1 , & items [ 0 ] . a , NULL ) ;
ok ( hr = = E_INVALIDARG , " ScriptBreak should return E_INVALIDARG not %08x \n " , hr ) ;
*/
hr = ScriptBreak ( test , 0 , & items [ 0 ] . a , & la ) ;
ok ( hr = = E_FAIL | | broken ( hr = = S_OK ) , " ScriptBreak should return E_FAIL not %08x \n " , hr ) ;
hr = ScriptBreak ( test , - 1 , & items [ 0 ] . a , & la ) ;
ok ( hr = = E_INVALIDARG | | broken ( hr = = S_OK ) , " ScriptBreak should return E_INVALIDARG not %08x \n " , hr ) ;
2009-01-06 11:20:26 +01:00
memset ( & la , 0 , sizeof ( la ) ) ;
hr = ScriptBreak ( test , 1 , & items [ 0 ] . a , & la ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptBreak should return S_OK not %08x \n " , hr ) ;
2009-01-06 11:20:26 +01:00
ok ( ! la . fSoftBreak , " fSoftBreak set \n " ) ;
ok ( la . fWhiteSpace , " fWhiteSpace not set \n " ) ;
ok ( la . fCharStop , " fCharStop not set \n " ) ;
ok ( ! la . fWordStop , " fWordStop set \n " ) ;
ok ( ! la . fInvalid , " fInvalid set \n " ) ;
ok ( ! la . fReserved , " fReserved set \n " ) ;
memset ( & la , 0 , sizeof ( la ) ) ;
hr = ScriptBreak ( test + 1 , 1 , & items [ 1 ] . a , & la ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptBreak should return S_OK not %08x \n " , hr ) ;
2009-01-06 11:20:26 +01:00
ok ( ! la . fSoftBreak , " fSoftBreak set \n " ) ;
ok ( ! la . fWhiteSpace , " fWhiteSpace set \n " ) ;
ok ( la . fCharStop , " fCharStop not set \n " ) ;
ok ( ! la . fWordStop , " fWordStop set \n " ) ;
ok ( ! la . fInvalid , " fInvalid set \n " ) ;
ok ( ! la . fReserved , " fReserved set \n " ) ;
memset ( & la , 0 , sizeof ( la ) ) ;
hr = ScriptBreak ( test + 2 , 1 , & items [ 2 ] . a , & la ) ;
2014-08-28 21:44:24 +02:00
ok ( hr = = S_OK , " ScriptBreak should return S_OK not %08x \n " , hr ) ;
2009-01-06 11:20:26 +01:00
ok ( ! la . fSoftBreak , " fSoftBreak set \n " ) ;
ok ( ! la . fWhiteSpace , " fWhiteSpace set \n " ) ;
ok ( la . fCharStop , " fCharStop not set \n " ) ;
ok ( ! la . fWordStop , " fWordStop set \n " ) ;
ok ( ! la . fInvalid , " fInvalid set \n " ) ;
ok ( ! la . fReserved , " fReserved set \n " ) ;
}
2009-01-06 11:20:41 +01:00
static void test_newlines ( void )
{
static const WCHAR test1 [ ] = { ' t ' , ' e ' , ' x ' , ' t ' , ' \r ' , ' t ' , ' e ' , ' x ' , ' t ' , 0 } ;
static const WCHAR test2 [ ] = { ' t ' , ' e ' , ' x ' , ' t ' , ' \n ' , ' t ' , ' e ' , ' x ' , ' t ' , 0 } ;
static const WCHAR test3 [ ] = { ' t ' , ' e ' , ' x ' , ' t ' , ' \r ' , ' \n ' , ' t ' , ' e ' , ' x ' , ' t ' , 0 } ;
static const WCHAR test4 [ ] = { ' t ' , ' e ' , ' x ' , ' t ' , ' \n ' , ' \r ' , ' t ' , ' e ' , ' x ' , ' t ' , 0 } ;
static const WCHAR test5 [ ] = { ' 1 ' , ' 2 ' , ' 3 ' , ' 4 ' , ' \n ' , ' \r ' , ' 1 ' , ' 2 ' , ' 3 ' , ' 4 ' , 0 } ;
SCRIPT_ITEM items [ 5 ] ;
HRESULT hr ;
int count ;
count = 0 ;
hr = ScriptItemize ( test1 , lstrlenW ( test1 ) , 5 , NULL , NULL , items , & count ) ;
ok ( hr = = S_OK , " ScriptItemize failed: 0x%08x \n " , hr ) ;
ok ( count = = 3 , " got %d expected 3 \n " , count ) ;
count = 0 ;
hr = ScriptItemize ( test2 , lstrlenW ( test2 ) , 5 , NULL , NULL , items , & count ) ;
ok ( hr = = S_OK , " ScriptItemize failed: 0x%08x \n " , hr ) ;
ok ( count = = 3 , " got %d expected 3 \n " , count ) ;
count = 0 ;
hr = ScriptItemize ( test3 , lstrlenW ( test3 ) , 5 , NULL , NULL , items , & count ) ;
ok ( hr = = S_OK , " ScriptItemize failed: 0x%08x \n " , hr ) ;
ok ( count = = 4 , " got %d expected 4 \n " , count ) ;
count = 0 ;
hr = ScriptItemize ( test4 , lstrlenW ( test4 ) , 5 , NULL , NULL , items , & count ) ;
ok ( hr = = S_OK , " ScriptItemize failed: 0x%08x \n " , hr ) ;
ok ( count = = 4 , " got %d expected 4 \n " , count ) ;
count = 0 ;
hr = ScriptItemize ( test5 , lstrlenW ( test5 ) , 5 , NULL , NULL , items , & count ) ;
ok ( hr = = S_OK , " ScriptItemize failed: 0x%08x \n " , hr ) ;
ok ( count = = 4 , " got %d expected 4 \n " , count ) ;
}
2011-12-22 17:46:34 +01:00
static void test_ScriptGetFontFunctions ( HDC hdc )
{
HRESULT hr ;
pScriptGetFontScriptTags = ( void * ) GetProcAddress ( GetModuleHandleA ( " usp10.dll " ) , " ScriptGetFontScriptTags " ) ;
2012-01-03 13:51:07 +01:00
pScriptGetFontLanguageTags = ( void * ) GetProcAddress ( GetModuleHandleA ( " usp10.dll " ) , " ScriptGetFontLanguageTags " ) ;
2012-01-03 13:51:23 +01:00
pScriptGetFontFeatureTags = ( void * ) GetProcAddress ( GetModuleHandleA ( " usp10.dll " ) , " ScriptGetFontFeatureTags " ) ;
if ( ! pScriptGetFontScriptTags | | ! pScriptGetFontLanguageTags | | ! pScriptGetFontFeatureTags )
2011-12-22 17:46:34 +01:00
{
2012-01-03 13:51:23 +01:00
win_skip ( " ScriptGetFontScriptTags,ScriptGetFontLanguageTags or ScriptGetFontFeatureTags not available on this platform \n " ) ;
2011-12-22 17:46:34 +01:00
}
else
{
SCRIPT_CACHE sc = NULL ;
OPENTYPE_TAG tags [ 5 ] ;
int count = 0 ;
2011-12-29 21:50:08 +01:00
int outnItems = 0 ;
SCRIPT_ITEM outpItems [ 15 ] ;
SCRIPT_CONTROL Control ;
SCRIPT_STATE State ;
static const WCHAR test_phagspa [ ] = { 0xa84f , 0xa861 , 0xa843 , 0x0020 , 0xa863 , 0xa861 , 0xa859 , 0x0020 , 0xa850 , 0xa85c , 0xa85e } ;
2011-12-22 17:46:34 +01:00
hr = pScriptGetFontScriptTags ( hdc , & sc , NULL , 0 , NULL , NULL ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontScriptTags ( hdc , & sc , NULL , 0 , NULL , & count ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontScriptTags ( hdc , & sc , NULL , 5 , tags , NULL ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontScriptTags ( hdc , & sc , NULL , 0 , tags , & count ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontScriptTags ( NULL , & sc , NULL , 5 , tags , & count ) ;
ok ( hr = = E_PENDING , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontScriptTags ( hdc , & sc , NULL , 5 , tags , & count ) ;
ok ( ( hr = = S_OK | | hr = = E_OUTOFMEMORY ) , " Incorrect return code \n " ) ;
if ( hr = = S_OK )
ok ( count < = 5 , " Count should be less or equal to 5 with S_OK return \n " ) ;
else if ( hr = = E_OUTOFMEMORY )
ok ( count = = 0 , " Count should be 0 with E_OUTOFMEMORY return \n " ) ;
ok ( sc ! = NULL , " ScriptCache should be initialized \n " ) ;
2011-12-29 21:50:08 +01:00
2012-01-03 13:51:07 +01:00
ScriptFreeCache ( & sc ) ;
sc = NULL ;
hr = pScriptGetFontLanguageTags ( hdc , & sc , NULL , latn_tag , 0 , NULL , NULL ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontLanguageTags ( hdc , & sc , NULL , latn_tag , 0 , NULL , & count ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontLanguageTags ( hdc , & sc , NULL , latn_tag , 5 , tags , NULL ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontLanguageTags ( hdc , & sc , NULL , latn_tag , 0 , tags , & count ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontLanguageTags ( NULL , & sc , NULL , latn_tag , 5 , tags , & count ) ;
ok ( hr = = E_PENDING , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontLanguageTags ( hdc , & sc , NULL , latn_tag , 5 , tags , & count ) ;
ok ( ( hr = = S_OK | | hr = = E_OUTOFMEMORY ) , " Incorrect return code \n " ) ;
if ( hr = = S_OK )
ok ( count < = 5 , " Count should be less or equal to 5 with S_OK return \n " ) ;
else if ( hr = = E_OUTOFMEMORY )
ok ( count = = 0 , " Count should be 0 with E_OUTOFMEMORY return \n " ) ;
2012-01-03 13:51:23 +01:00
ScriptFreeCache ( & sc ) ;
sc = NULL ;
hr = pScriptGetFontFeatureTags ( hdc , & sc , NULL , latn_tag , 0x0 , 0 , NULL , NULL ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontFeatureTags ( hdc , & sc , NULL , latn_tag , 0x0 , 0 , NULL , & count ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontFeatureTags ( hdc , & sc , NULL , latn_tag , 0x0 , 5 , tags , NULL ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontFeatureTags ( hdc , & sc , NULL , latn_tag , 0x0 , 0 , tags , & count ) ;
ok ( hr = = E_INVALIDARG , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontFeatureTags ( NULL , & sc , NULL , latn_tag , 0x0 , 5 , tags , & count ) ;
ok ( hr = = E_PENDING , " Incorrect return code \n " ) ;
ok ( sc = = NULL , " ScriptCache should remain uninitialized \n " ) ;
hr = pScriptGetFontFeatureTags ( hdc , & sc , NULL , latn_tag , 0x0 , 5 , tags , & count ) ;
ok ( ( hr = = S_OK | | hr = = E_OUTOFMEMORY ) , " Incorrect return code \n " ) ;
if ( hr = = S_OK )
ok ( count < = 5 , " Count should be less or equal to 5 with S_OK return \n " ) ;
else if ( hr = = E_OUTOFMEMORY )
ok ( count = = 0 , " Count should be 0 with E_OUTOFMEMORY return \n " ) ;
2011-12-29 21:50:08 +01:00
memset ( & Control , 0 , sizeof ( Control ) ) ;
memset ( & State , 0 , sizeof ( State ) ) ;
hr = ScriptItemize ( test_phagspa , 10 , 15 , & Control , & State , outpItems , & outnItems ) ;
ok ( hr = = S_OK , " ScriptItemize failed: 0x%08x \n " , hr ) ;
memset ( tags , 0 , sizeof ( tags ) ) ;
hr = pScriptGetFontScriptTags ( hdc , & sc , & outpItems [ 0 ] . a , 5 , tags , & count ) ;
ok ( hr = = USP_E_SCRIPT_NOT_IN_FONT | | broken ( hr = = S_OK ) , " wrong return code \n " ) ;
2012-01-03 13:51:07 +01:00
hr = pScriptGetFontLanguageTags ( hdc , & sc , NULL , dsrt_tag , 5 , tags , & count ) ;
ok ( hr = = S_OK , " wrong return code \n " ) ;
hr = pScriptGetFontLanguageTags ( hdc , & sc , & outpItems [ 0 ] . a , dsrt_tag , 5 , tags , & count ) ;
ok ( hr = = E_INVALIDARG | | broken ( hr = = S_OK ) , " wrong return code \n " ) ;
2012-01-03 13:51:23 +01:00
hr = pScriptGetFontFeatureTags ( hdc , & sc , NULL , dsrt_tag , 0x0 , 5 , tags , & count ) ;
ok ( hr = = S_OK , " wrong return code \n " ) ;
hr = pScriptGetFontFeatureTags ( hdc , & sc , & outpItems [ 0 ] . a , dsrt_tag , 0x0 , 5 , tags , & count ) ;
ok ( hr = = E_INVALIDARG | | broken ( hr = = S_OK ) , " wrong return code \n " ) ;
2011-12-22 17:46:34 +01:00
ScriptFreeCache ( & sc ) ;
}
}
2016-08-09 15:59:33 +02:00
struct logical_width_test
{
int char_count ;
int glyph_count ;
int advances [ 3 ] ;
WORD map [ 3 ] ;
int widths [ 3 ] ;
BOOL clusterstart [ 3 ] ;
BOOL diacritic [ 3 ] ;
BOOL zerowidth [ 3 ] ;
BOOL todo ;
} ;
static const struct logical_width_test logical_width_tests [ ] =
{
{ 3 , 3 , { 6 , 9 , 12 } , { 0 , 1 , 2 } , { 6 , 9 , 12 } , { 1 , 1 , 1 } } ,
{ 3 , 3 , { 6 , 9 , 12 } , { 0 , 1 , 2 } , { 6 , 9 , 12 } , { 1 , 1 , 1 } , { 1 , 0 , 0 } } ,
{ 3 , 3 , { 6 , 9 , 12 } , { 0 , 1 , 2 } , { 6 , 9 , 12 } , { 1 , 1 , 1 } , { 0 } , { 1 , 1 , 1 } } ,
{ 3 , 3 , { 6 , 9 , 12 } , { 0 , 1 , 2 } , { 27 , 21 , 12 } , { 0 , 0 , 0 } , { 0 } , { 0 } , TRUE } ,
{ 3 , 3 , { 6 , 9 , 12 } , { 0 , 1 , 2 } , { 6 , 21 , 12 } , { 0 , 1 , 0 } , { 0 } , { 0 } , TRUE } ,
{ 3 , 3 , { 6 , 9 , 12 } , { 0 , 1 , 2 } , { 6 , 21 , 12 } , { 1 , 1 , 0 } , { 0 } , { 0 } , TRUE } ,
{ 3 , 3 , { 6 , 9 , 12 } , { 0 , 2 , 2 } , { 15 , 6 , 6 } , { 1 , 0 , 1 } } ,
} ;
static void test_ScriptGetLogicalWidths ( void )
{
SCRIPT_ANALYSIS sa = { 0 } ;
unsigned int i , j ;
for ( i = 0 ; i < sizeof ( logical_width_tests ) / sizeof ( logical_width_tests [ 0 ] ) ; i + + )
{
const struct logical_width_test * ptr = logical_width_tests + i ;
SCRIPT_VISATTR attrs [ 3 ] ;
int widths [ 3 ] ;
HRESULT hr ;
memset ( attrs , 0 , sizeof ( attrs ) ) ;
for ( j = 0 ; j < ptr - > glyph_count ; j + + )
{
attrs [ j ] . fClusterStart = ptr - > clusterstart [ j ] ;
attrs [ j ] . fDiacritic = ptr - > diacritic [ j ] ;
attrs [ j ] . fZeroWidth = ptr - > zerowidth [ j ] ;
}
hr = ScriptGetLogicalWidths ( & sa , ptr - > char_count , ptr - > glyph_count , ptr - > advances , ptr - > map , attrs , widths ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
todo_wine_if ( ptr - > todo )
ok ( ! memcmp ( ptr - > widths , widths , sizeof ( widths ) ) , " test %u: got wrong widths \n " , i ) ;
}
}
2017-04-01 17:16:10 +02:00
static void test_ScriptIsComplex ( void )
{
static const WCHAR testW [ ] = { 0x202a , ' 1 ' , 0x202c , 0 } ;
static const WCHAR test2W [ ] = { ' 1 ' , 0 } ;
static const struct complex_test
{
const WCHAR * text ;
DWORD flags ;
HRESULT hr ;
BOOL todo ;
} complex_tests [ ] =
{
{ test2W , SIC_ASCIIDIGIT , S_OK } ,
{ test2W , SIC_COMPLEX , S_FALSE } ,
{ test2W , SIC_COMPLEX | SIC_ASCIIDIGIT , S_OK } ,
{ testW , SIC_NEUTRAL | SIC_COMPLEX , S_OK } ,
{ testW , SIC_NEUTRAL , S_FALSE , TRUE } ,
{ testW , SIC_COMPLEX , S_OK } ,
{ testW , 0 , S_FALSE } ,
} ;
unsigned int i ;
HRESULT hr ;
hr = ScriptIsComplex ( NULL , 0 , 0 ) ;
ok ( hr = = E_INVALIDARG | | broken ( hr = = S_FALSE ) /* winxp/vista */ , " got 0x%08x \n " , hr ) ;
if ( hr = = E_INVALIDARG )
{
hr = ScriptIsComplex ( NULL , 1 , 0 ) ;
ok ( hr = = E_INVALIDARG , " got 0x%08x \n " , hr ) ;
}
hr = ScriptIsComplex ( test2W , - 1 , SIC_ASCIIDIGIT ) ;
ok ( hr = = E_INVALIDARG | | broken ( hr = = S_FALSE ) /* winxp/vista */ , " got 0x%08x \n " , hr ) ;
hr = ScriptIsComplex ( test2W , 0 , SIC_ASCIIDIGIT ) ;
ok ( hr = = S_FALSE , " got 0x%08x \n " , hr ) ;
for ( i = 0 ; i < sizeof ( complex_tests ) / sizeof ( complex_tests [ 0 ] ) ; i + + )
{
hr = ScriptIsComplex ( complex_tests [ i ] . text , lstrlenW ( complex_tests [ i ] . text ) , complex_tests [ i ] . flags ) ;
todo_wine_if ( complex_tests [ i ] . todo )
ok ( hr = = complex_tests [ i ] . hr , " %u: got %#x, expected %#x, flags %#x \n " , i , hr , complex_tests [ i ] . hr ,
complex_tests [ i ] . flags ) ;
}
hr = ScriptIsComplex ( test2W , 1 , ~ 0u ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
hr = ScriptIsComplex ( testW , 3 , 0 ) ;
ok ( hr = = S_FALSE , " got 0x%08x \n " , hr ) ;
hr = ScriptIsComplex ( testW , 3 , SIC_NEUTRAL | SIC_COMPLEX ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
hr = ScriptIsComplex ( testW , 3 , SIC_COMPLEX ) ;
ok ( hr = = S_OK , " got 0x%08x \n " , hr ) ;
hr = ScriptIsComplex ( test2W , 1 , SIC_COMPLEX ) ;
ok ( hr = = S_FALSE , " got 0x%08x \n " , hr ) ;
}
2006-04-30 15:44:30 +02:00
START_TEST ( usp10 )
{
2006-08-04 11:47:37 +02:00
HWND hwnd ;
HDC hdc ;
2007-01-23 11:02:51 +01:00
LOGFONTA lf ;
HFONT hfont ;
2006-08-04 11:47:37 +02:00
2006-04-30 15:44:30 +02:00
unsigned short pwOutGlyphs [ 256 ] ;
2006-08-04 11:47:37 +02:00
/* We need a valid HDC to drive a lot of Script functions which requires the following *
* to set up for the tests . */
hwnd = CreateWindowExA ( 0 , " static " , " " , WS_POPUP , 0 , 0 , 100 , 100 ,
0 , 0 , 0 , NULL ) ;
assert ( hwnd ! = 0 ) ;
ShowWindow ( hwnd , SW_SHOW ) ;
UpdateWindow ( hwnd ) ;
hdc = GetDC ( hwnd ) ; /* We now have a hdc */
ok ( hdc ! = NULL , " HDC failed to be created %p \n " , hdc ) ;
2007-11-08 19:18:14 +01:00
memset ( & lf , 0 , sizeof ( LOGFONTA ) ) ;
2008-10-09 15:17:29 +02:00
lstrcpyA ( lf . lfFaceName , " Tahoma " ) ;
2007-01-23 11:02:51 +01:00
lf . lfHeight = 10 ;
lf . lfWeight = 3 ;
lf . lfWidth = 10 ;
hfont = SelectObject ( hdc , CreateFontIndirectA ( & lf ) ) ;
2010-05-22 10:45:33 +02:00
ok ( hfont ! = NULL , " SelectObject failed: %p \n " , hfont ) ;
2007-01-23 11:02:51 +01:00
2010-04-13 21:49:07 +02:00
test_ScriptItemize ( ) ;
2006-08-04 11:47:37 +02:00
test_ScriptItemIzeShapePlace ( hdc , pwOutGlyphs ) ;
test_ScriptGetCMap ( hdc , pwOutGlyphs ) ;
2006-08-04 14:55:30 +02:00
test_ScriptCacheGetHeight ( hdc ) ;
test_ScriptGetGlyphABCWidth ( hdc ) ;
2007-12-12 10:44:42 +01:00
test_ScriptShape ( hdc ) ;
2011-05-17 22:05:39 +02:00
test_ScriptShapeOpenType ( hdc ) ;
2010-04-15 16:23:04 +02:00
test_ScriptPlace ( hdc ) ;
2006-08-04 11:47:37 +02:00
2006-12-24 12:39:27 +01:00
test_ScriptGetFontProperties ( hdc ) ;
test_ScriptTextOut ( hdc ) ;
2008-04-29 06:15:23 +02:00
test_ScriptTextOut2 ( hdc ) ;
2010-03-12 11:53:42 +01:00
test_ScriptTextOut3 ( hdc ) ;
2006-07-20 14:16:50 +02:00
test_ScriptXtoX ( ) ;
2006-12-24 12:39:27 +01:00
test_ScriptString ( hdc ) ;
2006-10-24 11:04:10 +02:00
test_ScriptStringXtoCP_CPtoX ( hdc ) ;
2006-09-07 08:42:56 +02:00
2006-10-24 11:04:10 +02:00
test_ScriptLayout ( ) ;
2006-09-07 08:42:56 +02:00
test_digit_substitution ( ) ;
2006-12-23 15:19:30 +01:00
test_ScriptGetProperties ( ) ;
2009-01-06 11:20:26 +01:00
test_ScriptBreak ( ) ;
2009-01-06 11:20:41 +01:00
test_newlines ( ) ;
2006-10-24 11:02:17 +02:00
2011-12-22 17:46:34 +01:00
test_ScriptGetFontFunctions ( hdc ) ;
2016-08-09 15:59:33 +02:00
test_ScriptGetLogicalWidths ( ) ;
2011-12-22 17:46:34 +01:00
2017-04-01 17:16:10 +02:00
test_ScriptIsComplex ( ) ;
2006-10-24 11:02:17 +02:00
ReleaseDC ( hwnd , hdc ) ;
DestroyWindow ( hwnd ) ;
2006-02-14 17:38:20 +01:00
}