usp10: Add Osmanya script.
[wine/multimedia.git] / dlls / usp10 / tests / usp10.c
blob69083b33a6a6948d2b8005081fcf974640b4144c
1 /*
2 * Tests for usp10 dll
4 * Copyright 2006 Jeff Latimer
5 * Copyright 2006 Hans Leidekker
6 * Copyright 2010 CodeWeavers, Aric Stewart
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 * Notes:
23 * Uniscribe allows for processing of complex scripts such as joining
24 * and filtering characters and bi-directional text with custom line breaks.
27 #include <assert.h>
28 #include <stdio.h>
30 #include <wine/test.h>
31 #include <windows.h>
32 #include <usp10.h>
34 typedef struct _itemTest {
35 char todo_flag[5];
36 int iCharPos;
37 int fRTL;
38 int fLayoutRTL;
39 int uBidiLevel;
40 ULONG scriptTag;
41 BOOL isBroken;
42 int broken_value[5];
43 } itemTest;
45 typedef struct _shapeTest_char {
46 WORD wLogClust;
47 SCRIPT_CHARPROP CharProp;
48 } shapeTest_char;
50 typedef struct _shapeTest_glyph {
51 int Glyph;
52 SCRIPT_GLYPHPROP GlyphProp;
53 } shapeTest_glyph;
55 /* Uniscribe 1.6 calls */
56 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);
58 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);
60 static DWORD (WINAPI *pGetGlyphIndicesW)(HDC hdc, LPCWSTR lpstr, INT count, LPWORD pgi, DWORD flags);
62 static inline void _test_items_ok(LPCWSTR string, DWORD cchString,
63 SCRIPT_CONTROL *Control, SCRIPT_STATE *State,
64 DWORD nItems, const itemTest* items, BOOL nItemsToDo,
65 const INT nItemsBroken[2])
67 HRESULT hr;
68 int x, outnItems;
69 SCRIPT_ITEM outpItems[15];
70 ULONG tags[15] = {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1};
72 if (pScriptItemizeOpenType)
73 hr = pScriptItemizeOpenType(string, cchString, 15, Control, State, outpItems, tags, &outnItems);
74 else
75 hr = ScriptItemize(string, cchString, 15, Control, State, outpItems, &outnItems);
77 winetest_ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
78 if (nItemsBroken && (broken(nItemsBroken[0] == outnItems) || broken(nItemsBroken[1] == outnItems)))
80 winetest_win_skip("This test broken on this platform\n");
81 return;
83 if (nItemsToDo)
84 todo_wine winetest_ok(outnItems == nItems, "Wrong number of items\n");
85 else
86 winetest_ok(outnItems == nItems, "Wrong number of items\n");
87 for (x = 0; x <= outnItems; x++)
89 if (items[x].isBroken && broken(outpItems[x].iCharPos == items[x].broken_value[0]))
90 winetest_win_skip("This test broken on this platform\n");
91 else if (items[x].todo_flag[0])
92 todo_wine winetest_ok(outpItems[x].iCharPos == items[x].iCharPos, "%i:Wrong CharPos\n",x);
93 else
94 winetest_ok(outpItems[x].iCharPos == items[x].iCharPos, "%i:Wrong CharPos (%i)\n",x,outpItems[x].iCharPos);
96 if (items[x].isBroken && broken(outpItems[x].a.fRTL== items[x].broken_value[1]))
97 winetest_win_skip("This test broken on this platform\n");
98 else if (items[x].todo_flag[1])
99 todo_wine winetest_ok(outpItems[x].a.fRTL == items[x].fRTL, "%i:Wrong fRTL\n",x);
100 else
101 winetest_ok(outpItems[x].a.fRTL == items[x].fRTL, "%i:Wrong fRTL(%i)\n",x,outpItems[x].a.fRTL);
103 if (items[x].isBroken && broken(outpItems[x].a.fLayoutRTL == items[x].broken_value[2]))
104 winetest_win_skip("This test broken on this platform\n");
105 else if (items[x].todo_flag[2])
106 todo_wine winetest_ok(outpItems[x].a.fLayoutRTL == items[x].fLayoutRTL, "%i:Wrong fLayoutRTL\n",x);
107 else
108 winetest_ok(outpItems[x].a.fLayoutRTL == items[x].fLayoutRTL, "%i:Wrong fLayoutRTL(%i)\n",x,outpItems[x].a.fLayoutRTL);
110 if (items[x].isBroken && broken(outpItems[x].a.s.uBidiLevel == items[x].broken_value[3]))
111 winetest_win_skip("This test broken on this platform\n");
112 else if (items[x].todo_flag[3])
113 todo_wine winetest_ok(outpItems[x].a.s.uBidiLevel == items[x].uBidiLevel, "%i:Wrong BidiLevel\n",x);
114 else
115 winetest_ok(outpItems[x].a.s.uBidiLevel == items[x].uBidiLevel, "%i:Wrong BidiLevel(%i)\n",x,outpItems[x].a.s.uBidiLevel);
116 if (x != outnItems)
117 winetest_ok(outpItems[x].a.eScript != SCRIPT_UNDEFINED, "%i: Undefined script\n",x);
118 if (pScriptItemizeOpenType)
120 if (items[x].isBroken && broken(tags[x] == items[x].broken_value[4]))
121 winetest_win_skip("This test broken on this platform\n");
122 else if (items[x].todo_flag[4])
123 todo_wine winetest_ok(tags[x] == items[x].scriptTag,"%i:Incorrect Script Tag %x != %x\n",x,tags[x],items[x].scriptTag);
124 else
125 winetest_ok(tags[x] == items[x].scriptTag,"%i:Incorrect Script Tag %x != %x\n",x,tags[x],items[x].scriptTag);
130 #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)
132 #define MS_MAKE_TAG( _x1, _x2, _x3, _x4 ) \
133 ( ( (ULONG)_x4 << 24 ) | \
134 ( (ULONG)_x3 << 16 ) | \
135 ( (ULONG)_x2 << 8 ) | \
136 (ULONG)_x1 )
138 #define latn_tag MS_MAKE_TAG('l','a','t','n')
139 #define arab_tag MS_MAKE_TAG('a','r','a','b')
140 #define thai_tag MS_MAKE_TAG('t','h','a','i')
141 #define hebr_tag MS_MAKE_TAG('h','e','b','r')
142 #define syrc_tag MS_MAKE_TAG('s','y','r','c')
143 #define deva_tag MS_MAKE_TAG('d','e','v','a')
144 #define beng_tag MS_MAKE_TAG('b','e','n','g')
145 #define guru_tag MS_MAKE_TAG('g','u','r','u')
146 #define gujr_tag MS_MAKE_TAG('g','u','j','r')
147 #define orya_tag MS_MAKE_TAG('o','r','y','a')
148 #define taml_tag MS_MAKE_TAG('t','a','m','l')
149 #define telu_tag MS_MAKE_TAG('t','e','l','u')
150 #define knda_tag MS_MAKE_TAG('k','n','d','a')
151 #define mlym_tag MS_MAKE_TAG('m','l','y','m')
152 #define mymr_tag MS_MAKE_TAG('m','y','m','r')
153 #define tale_tag MS_MAKE_TAG('t','a','l','e')
154 #define talu_tag MS_MAKE_TAG('t','a','l','u')
155 #define khmr_tag MS_MAKE_TAG('k','h','m','r')
156 #define hani_tag MS_MAKE_TAG('h','a','n','i')
157 #define bopo_tag MS_MAKE_TAG('b','o','p','o')
158 #define kana_tag MS_MAKE_TAG('k','a','n','a')
159 #define hang_tag MS_MAKE_TAG('h','a','n','g')
160 #define yi_tag MS_MAKE_TAG('y','i',' ',' ')
161 #define ethi_tag MS_MAKE_TAG('e','t','h','i')
162 #define mong_tag MS_MAKE_TAG('m','o','n','g')
163 #define tfng_tag MS_MAKE_TAG('t','f','n','g')
164 #define nko_tag MS_MAKE_TAG('n','k','o',' ')
165 #define vai_tag MS_MAKE_TAG('v','a','i',' ')
166 #define cher_tag MS_MAKE_TAG('c','h','e','r')
167 #define cans_tag MS_MAKE_TAG('c','a','n','s')
168 #define ogam_tag MS_MAKE_TAG('o','g','a','m')
169 #define runr_tag MS_MAKE_TAG('r','u','n','r')
170 #define brai_tag MS_MAKE_TAG('b','r','a','i')
171 #define dsrt_tag MS_MAKE_TAG('d','s','r','t')
172 #define osma_tag MS_MAKE_TAG('o','s','m','a')
174 static void test_ScriptItemize( void )
176 static const WCHAR test1[] = {'t', 'e', 's', 't',0};
177 static const itemTest t11[2] = {{{0,0,0,0,0},0,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1}};
178 static const itemTest t12[2] = {{{0,0,0,0,0},0,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
180 static const WCHAR test1b[] = {' ', ' ', ' ', ' ',0};
181 static const itemTest t1b1[2] = {{{0,0,0,0,0},0,0,0,0,0,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
182 static const itemTest t1b2[2] = {{{0,0,0,0,0},0,1,1,1,0,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
184 static const WCHAR test1c[] = {' ', ' ', ' ', '1', '2', ' ',0};
185 static const itemTest t1c1[2] = {{{0,0,0,0,0},0,0,0,0,0,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
186 static const itemTest t1c2[4] = {{{0,0,0,0,0},0,1,1,1,0,FALSE},{{0,0,0,0,0},3,0,1,2,0,FALSE},{{0,0,0,0,0},5,1,1,1,0,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
188 /* Arabic, English*/
189 static const WCHAR test2[] = {'1','2','3','-','5','2',0x064a,0x064f,0x0633,0x0627,0x0648,0x0650,0x064a,'7','1','.',0};
190 static const itemTest t21[7] = {{{0,0,0,0,0},0,0,0,0,0,FALSE},{{0,0,0,0,0},3,0,0,0,0,FALSE},{{0,0,0,0,0},4,0,0,0,0,FALSE},{{0,0,0,0,0},6,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},13,0,0,0,0,FALSE},{{0,0,0,0,0},15,0,0,0,0,FALSE},{{0,0,0,0,0},16,0,0,0,-1,FALSE}};
191 static const itemTest t22[5] = {{{0,0,0,0,0},0,0,0,2,0,FALSE},{{0,0,0,0,0},6,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},13,0,1,2,0,FALSE},{{0,0,0,0,0},15,0,0,0,0,FALSE},{{0,0,0,0,0},16,0,0,0,-1,FALSE}};
192 static const itemTest t23[5] = {{{0,0,0,0,0},0,0,1,2,0,FALSE},{{0,0,0,0,0},6,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},13,0,1,2,0,FALSE},{{0,0,0,0,0},15,1,1,1,0,FALSE},{{0,0,0,0,0},16,0,0,0,-1,FALSE}};
194 static const WCHAR test2b[] = {'A','B','C','-','D','E','F',' ',0x0621,0x0623,0x0624,0};
195 static const itemTest t2b1[5] = {{{0,0,0,0,0},0,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},3,0,0,0,0,FALSE},{{0,0,0,0,0},4,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},8,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
196 static const itemTest t2b2[5] = {{{0,0,0,0,0},0,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},3,0,0,2,0,FALSE},{{0,0,0,0,0},4,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},7,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
197 static const itemTest t2b3[3] = {{{0,0,0,0,0},0,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},7,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
198 static const int b2[2] = {4,4};
200 /* leading space */
201 static const WCHAR test2c[] = {' ',0x0621,0x0623,0x0624,'A','B','C','-','D','E','F',0};
202 static const itemTest t2c1[5] = {{{0,0,0,0,0},0,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},4,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},7,0,0,0,0,FALSE},{{0,0,0,0,0},8,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
203 static const itemTest t2c2[6] = {{{0,0,0,0,0},0,0,0,0,0,FALSE},{{0,0,0,0,0},1,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},4,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},7,0,0,0,0,FALSE},{{0,0,0,0,0},8,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
204 static const itemTest t2c3[5] = {{{0,0,0,0,0},0,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},4,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},7,0,0,2,0,FALSE},{{0,0,0,0,0},8,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
205 static const itemTest t2c4[3] = {{{0,0,0,0,0},0,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},4,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
207 /* trailing space */
208 static const WCHAR test2d[] = {'A','B','C','-','D','E','F',0x0621,0x0623,0x0624,' ',0};
209 static const itemTest t2d1[5] = {{{0,0,0,0,0},0,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},3,0,0,0,0,FALSE},{{0,0,0,0,0},4,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},7,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
210 static const itemTest t2d2[6] = {{{0,0,0,0,0},0,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},3,0,0,0,0,FALSE},{{0,0,0,0,0},4,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},7,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},10,0,0,0,0,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
211 static const itemTest t2d3[5] = {{{0,0,0,0,0},0,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},3,0,0,2,0,FALSE},{{0,0,0,0,0},4,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},7,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
212 static const itemTest t2d4[3] = {{{0,0,0,0,0},0,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},7,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},11,0,0,0,-1,FALSE}};
214 /* Thai */
215 static const WCHAR test3[] =
216 {0x0e04,0x0e27,0x0e32,0x0e21,0x0e1e,0x0e22,0x0e32,0x0e22,0x0e32, 0x0e21
217 ,0x0e2d,0x0e22,0x0e39,0x0e48,0x0e17,0x0e35,0x0e48,0x0e44,0x0e2b,0x0e19
218 ,0x0e04,0x0e27,0x0e32,0x0e21,0x0e2a, 0x0e33,0x0e40,0x0e23,0x0e47,0x0e08,
219 0x0e2d,0x0e22,0x0e39,0x0e48,0x0e17,0x0e35,0x0e48,0x0e19,0x0e31,0x0e48,0x0e19,0};
221 static const itemTest t31[2] = {{{0,0,0,0,0},0,0,0,0,thai_tag,FALSE},{{0,0,0,0,0},41,0,0,0,-1,FALSE}};
222 static const itemTest t32[2] = {{{0,0,0,0,0},0,0,0,2,thai_tag,FALSE},{{0,0,0,0,0},41,0,0,0,-1,FALSE}};
224 static const WCHAR test4[] = {'1','2','3','-','5','2',' ','i','s',' ','7','1','.',0};
226 static const itemTest t41[6] = {{{0,0,0,0,0},0,0,0,0,0,FALSE},{{0,0,0,0,0},3,0,0,0,0,FALSE},{{0,0,0,0,0},4,0,0,0,0,FALSE},{{0,0,0,0,0},7,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},10,0,0,0,0,FALSE},{{0,0,0,0,0},12,0,0,0,-1,FALSE}};
227 static const itemTest t42[5] = {{{0,0,0,0,0},0,0,1,2,0,FALSE},{{0,0,0,0,0},6,1,1,1,0,FALSE},{{0,0,0,0,0},7,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},10,0,0,2,0,FALSE},{{0,0,0,0,0},12,0,0,0,-1,FALSE}};
228 static const itemTest t43[4] = {{{0,0,0,0,0},0,0,1,2,0,FALSE},{{0,0,0,0,0},6,1,1,1,0,FALSE},{{0,0,0,0,0},7,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},12,0,0,0,-1,FALSE}};
229 static const int b43[2] = {4,4};
231 /* Arabic */
232 static const WCHAR test5[] =
233 {0x0627,0x0644,0x0635,0x0651,0x0650,0x062d,0x0629,0x064f,' ',0x062a,0x064e,
234 0x0627,0x062c,0x064c,' ',0x0639,0x064e,0x0644,0x0649,' ',
235 0x0631,0x064f,0x0624,0x0648,0x0633,0x0650,' ',0x0627,0x0644
236 ,0x0623,0x0635,0x0650,0x062d,0x0651,0x064e,0x0627,0x0621,0x0650,0};
237 static const itemTest t51[2] = {{{0,0,0,0,0},0,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},38,0,0,0,-1,FALSE}};
239 /* Hebrew */
240 static const WCHAR test6[] = {0x05e9, 0x05dc, 0x05d5, 0x05dd, '.',0};
241 static const itemTest t61[3] = {{{0,0,0,0,0},0,1,1,1,hebr_tag,FALSE},{{0,0,0,0,0},4,0,0,0,0,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
242 static const itemTest t62[3] = {{{0,0,0,0,0},0,1,1,1,hebr_tag,FALSE},{{0,0,0,0,0},4,1,1,1,0,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
243 static const itemTest t63[2] = {{{0,0,0,0,0},0,1,1,1,hebr_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
244 static const int b63[2] = {2,2};
245 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};
246 static const itemTest t71[4] = {{{0,0,0,0,0},0,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},9,1,1,1,hebr_tag,FALSE},{{0,0,0,0,0},19,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},29,0,0,0,-1,FALSE}};
247 static const itemTest t72[4] = {{{0,0,0,0,0},0,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},9,1,1,1,hebr_tag,FALSE},{{0,0,0,0,0},18,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},29,0,0,0,-1,FALSE}};
248 static const itemTest t73[4] = {{{0,0,0,0,0},0,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},8,1,1,1,hebr_tag,FALSE},{{0,0,0,0,0},19,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},29,0,0,0,-1,FALSE}};
249 static const WCHAR test8[] = {0x0633, 0x0644, 0x0627, 0x0645,0};
250 static const itemTest t81[2] = {{{0,0,0,0,0},0,1,1,1,arab_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
252 /* Syriac (Like Arabic )*/
253 static const WCHAR test9[] = {0x0710, 0x0712, 0x0712, 0x0714, '.',0};
254 static const itemTest t91[3] = {{{0,0,0,0,0},0,1,1,1,syrc_tag,FALSE},{{0,0,0,0,0},4,0,0,0,0,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
255 static const itemTest t92[3] = {{{0,0,0,0,0},0,1,1,1,syrc_tag},{{0,0,0,0,0},4,1,1,1,0,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
256 static const itemTest t93[2] = {{{0,0,0,0,0},0,1,1,1,syrc_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
257 static const int b93[2] = {2,2};
259 static const WCHAR test10[] = {0x0717, 0x0718, 0x071a, 0x071b,0};
260 static const itemTest t101[2] = {{{0,0,0,0,0},0,1,1,1,syrc_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
262 /* Devanagari */
263 static const WCHAR test11[] = {0x0926, 0x0947, 0x0935, 0x0928, 0x093e, 0x0917, 0x0930, 0x0940};
264 static const itemTest t111[2] = {{{0,0,0,0,0},0,0,0,0,deva_tag,FALSE},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
265 static const itemTest t112[2] = {{{0,0,0,0,0},0,0,0,2,deva_tag,FALSE},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
267 /* Bengali */
268 static const WCHAR test12[] = {0x09ac, 0x09be, 0x0982, 0x09b2, 0x09be};
269 static const itemTest t121[2] = {{{0,0,0,0,0},0,0,0,0,beng_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
270 static const itemTest t122[2] = {{{0,0,0,0,0},0,0,0,2,beng_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
272 /* Gurmukhi */
273 static const WCHAR test13[] = {0x0a17, 0x0a41, 0x0a30, 0x0a2e, 0x0a41, 0x0a16, 0x0a40};
274 static const itemTest t131[2] = {{{0,0,0,0,0},0,0,0,0,guru_tag,FALSE},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
275 static const itemTest t132[2] = {{{0,0,0,0,0},0,0,0,2,guru_tag,FALSE},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
277 /* Gujarati */
278 static const WCHAR test14[] = {0x0a97, 0x0ac1, 0x0a9c, 0x0ab0, 0x0abe, 0x0aa4, 0x0ac0};
279 static const itemTest t141[2] = {{{0,0,0,0,0},0,0,0,0,gujr_tag,FALSE},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
280 static const itemTest t142[2] = {{{0,0,0,0,0},0,0,0,2,gujr_tag,FALSE},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
282 /* Oriya */
283 static const WCHAR test15[] = {0x0b13, 0x0b21, 0x0b3c, 0x0b3f, 0x0b06};
284 static const itemTest t151[2] = {{{0,0,0,0,0},0,0,0,0,orya_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
285 static const itemTest t152[2] = {{{0,0,0,0,0},0,0,0,2,orya_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
287 /* Tamil */
288 static const WCHAR test16[] = {0x0ba4, 0x0bae, 0x0bbf, 0x0bb4, 0x0bcd};
289 static const itemTest t161[2] = {{{0,0,0,0,0},0,0,0,0,taml_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
290 static const itemTest t162[2] = {{{0,0,0,0,0},0,0,0,2,taml_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
292 /* Telugu */
293 static const WCHAR test17[] = {0x0c24, 0x0c46, 0x0c32, 0x0c41, 0x0c17, 0x0c41};
294 static const itemTest t171[2] = {{{0,0,0,0,0},0,0,0,0,telu_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
295 static const itemTest t172[2] = {{{0,0,0,0,0},0,0,0,2,telu_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
297 /* Kannada */
298 static const WCHAR test18[] = {0x0c95, 0x0ca8, 0x0ccd, 0x0ca8, 0x0ca1};
299 static const itemTest t181[2] = {{{0,0,0,0,0},0,0,0,0,knda_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
300 static const itemTest t182[2] = {{{0,0,0,0,0},0,0,0,2,knda_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
302 /* Malayalam */
303 static const WCHAR test19[] = {0x0d2e, 0x0d32, 0x0d2f, 0x0d3e, 0x0d33, 0x0d02};
304 static const itemTest t191[2] = {{{0,0,0,0,0},0,0,0,0,mlym_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
305 static const itemTest t192[2] = {{{0,0,0,0,0},0,0,0,2,mlym_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
307 /* Diacritical */
308 static const WCHAR test20[] = {0x0309,'a','b','c','d',0};
309 static const itemTest t201[3] = {{{0,0,0,0,0},0,0,0,0,0x0,FALSE},{{0,0,0,0,0},1,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
310 static const itemTest t202[3] = {{{0,0,0,0,0},0,0,0,2,0,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},1,0,0,2,latn_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
312 static const WCHAR test21[] = {0x0710, 0x0712, 0x0308, 0x0712, 0x0714,0};
313 static const itemTest t211[2] = {{{0,0,0,0,0},0,1,1,1,syrc_tag,FALSE},{{0,0,0,0,0},5,0,0,0,-1,FALSE}};
315 /* Latin Punctuation */
316 static const WCHAR test22[] = {'#','$',',','!','\"','*',0};
317 static const itemTest t221[3] = {{{0,0,0,0,0},0,0,0,0,latn_tag,FALSE},{{0,0,0,0,0},3,0,0,0,0,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
318 static const itemTest t222[3] = {{{0,0,0,0,0},0,1,1,1,latn_tag,FALSE},{{0,0,0,0,0},3,1,1,1,0,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
319 static const itemTest t223[2] = {{{0,0,0,0,0},0,1,1,1,latn_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
320 static const int b222[2] = {1,1};
321 static const int b223[2] = {2,2};
323 /* Number 2*/
324 static const WCHAR test23[] = {'1','2','3',0x00b2,0x00b3,0x2070,0};
325 static const itemTest t231[3] = {{{0,0,0,0,0},0,0,0,0,0,FALSE},{{0,0,0,0,0},3,0,0,0,0,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
326 static const itemTest t232[3] = {{{0,0,0,0,0},0,0,1,2,0,FALSE},{{0,0,0,0,0},3,0,1,2,0,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
328 /* Myanmar */
329 static const WCHAR test24[] = {0x1019,0x103c,0x1014,0x103a,0x1019,0x102c,0x1021,0x1000,0x1039,0x1001,0x101b,0x102c};
330 static const itemTest t241[2] = {{{0,0,0,0,0},0,0,0,0,mymr_tag,FALSE},{{0,0,0,0,0},12,0,0,0,-1,FALSE}};
331 static const itemTest t242[2] = {{{0,0,0,0,0},0,0,0,2,mymr_tag,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},12,0,0,0,-1,FALSE}};
333 /* Tai Le */
334 static const WCHAR test25[] = {0x1956,0x196d,0x1970,0x1956,0x196c,0x1973,0x1951,0x1968,0x1952,0x1970};
335 static const itemTest t251[2] = {{{0,0,0,0,0},0,0,0,0,tale_tag,TRUE,{-1,-1,-1,-1,latn_tag}},{{0,0,0,0,0},10,0,0,0,-1,FALSE}};
336 static const itemTest t252[2] = {{{0,0,0,0,0},0,0,0,2,tale_tag,TRUE,{-1,1,1,1,latn_tag}},{{0,0,0,0,0},10,0,0,0,-1,FALSE}};
338 /* New Tai Lue */
339 static const WCHAR test26[] = {0x1992,0x19c4};
340 static const itemTest t261[2] = {{{0,0,0,0,0},0,0,0,0,talu_tag,TRUE,{-1,-1,-1,-1,latn_tag}},{{0,0,0,0,0},2,0,0,0,-1,FALSE}};
341 static const itemTest t262[2] = {{{0,0,0,0,0},0,0,0,2,talu_tag,TRUE,{-1,1,1,1,latn_tag}},{{0,0,0,0,0},2,0,0,0,-1,FALSE}};
343 /* Khmer */
344 static const WCHAR test27[] = {0x1781,0x17c1,0x1798,0x179a,0x1797,0x17b6,0x179f,0x17b6};
345 static const itemTest t271[2] = {{{0,0,0,0,0},0,0,0,0,khmr_tag,FALSE},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
346 static const itemTest t272[2] = {{{0,0,0,0,0},0,0,0,2,khmr_tag,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
348 /* CJK Han */
349 static const WCHAR test28[] = {0x8bed,0x7d20,0x6587,0x5b57};
350 static const itemTest t281[2] = {{{0,0,0,0,0},0,0,0,0,hani_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
351 static const itemTest t282[2] = {{{0,0,0,0,0},0,0,0,2,hani_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
353 /* Ideographic */
354 static const WCHAR test29[] = {0x2ff0,0x2ff3,0x2ffb,0x2ff0,0x65e5,0x65e5,0x5de5,0x7f51,0x4e02,0x4e5e};
355 static const itemTest t291[3] = {{{0,0,0,0,0},0,0,0,0,hani_tag,FALSE},{{0,0,0,0,0},4,0,0,0,hani_tag,FALSE},{{0,0,0,0,0},10,0,0,0,-1,FALSE}};
356 static const itemTest t292[3] = {{{0,0,0,0,0},0,1,1,1,hani_tag,FALSE},{{0,0,0,0,0},4,0,0,2,hani_tag,FALSE},{{0,0,0,0,0},10,0,0,0,-1,FALSE}};
358 /* Bopomofo */
359 static const WCHAR test30[] = {0x3113,0x3128,0x3127,0x3123,0x3108,0x3128,0x310f,0x3120};
360 static const itemTest t301[2] = {{{0,0,0,0,0},0,0,0,0,bopo_tag,FALSE},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
361 static const itemTest t302[2] = {{{0,0,0,0,0},0,0,0,2,bopo_tag,FALSE},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
363 /* Kana */
364 static const WCHAR test31[] = {0x3072,0x3089,0x304b,0x306a,0x30ab,0x30bf,0x30ab,0x30ca};
365 static const itemTest t311[2] = {{{0,0,0,0,0},0,0,0,0,kana_tag,FALSE},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
366 static const itemTest t312[2] = {{{0,0,0,0,0},0,0,0,2,kana_tag,FALSE},{{0,0,0,0,0},8,0,0,0,-1,FALSE}};
367 static const int b311[2] = {2,2};
368 static const int b312[2] = {2,2};
370 /* Hangul */
371 static const WCHAR test32[] = {0xd55c,0xad6d,0xc5b4};
372 static const itemTest t321[2] = {{{0,0,0,0,0},0,0,0,0,hang_tag,FALSE},{{0,0,0,0,0},3,0,0,0,-1,FALSE}};
373 static const itemTest t322[2] = {{{0,0,0,0,0},0,0,0,2,hang_tag,FALSE},{{0,0,0,0,0},3,0,0,0,-1,FALSE}};
375 /* Yi */
376 static const WCHAR test33[] = {0xa188,0xa320,0xa071,0xa0b7};
377 static const itemTest t331[2] = {{{0,0,0,0,0},0,0,0,0,yi_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
378 static const itemTest t332[2] = {{{0,0,0,0,0},0,0,0,2,yi_tag,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
380 /* Ethiopic */
381 static const WCHAR test34[] = {0x130d,0x12d5,0x12dd};
382 static const itemTest t341[2] = {{{0,0,0,0,0},0,0,0,0,ethi_tag,FALSE},{{0,0,0,0,0},3,0,0,0,-1,FALSE}};
383 static const itemTest t342[2] = {{{0,0,0,0,0},0,0,0,2,ethi_tag,FALSE},{{0,0,0,0,0},3,0,0,0,-1,FALSE}};
384 static const int b342[2] = {2,2};
386 /* Mongolian */
387 static const WCHAR test35[] = {0x182e,0x1823,0x1829,0x182d,0x1823,0x182f,0x0020,0x182a,0x1822,0x1834,0x1822,0x182d,0x180c};
388 static const itemTest t351[2] = {{{0,0,0,0,0},0,0,0,0,mong_tag,FALSE},{{0,0,0,0,0},13,0,0,0,-1,FALSE}};
389 static const itemTest t352[2] = {{{0,0,0,0,0},0,0,0,2,mong_tag,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},13,0,0,0,-1,FALSE}};
390 static const int b351[2] = {2,2};
391 static const int b352[2] = {2,3};
393 /* Tifinagh */
394 static const WCHAR test36[] = {0x2d5c,0x2d49,0x2d3c,0x2d49,0x2d4f,0x2d30,0x2d56};
395 static const itemTest t361[2] = {{{0,0,0,0,0},0,0,0,0,tfng_tag,TRUE,{-1,-1,-1,-1,latn_tag}},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
396 static const itemTest t362[2] = {{{0,0,0,0,0},0,0,0,2,tfng_tag,TRUE,{-1,1,1,1,latn_tag}},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
398 /* N'Ko */
399 static const WCHAR test37[] = {0x07d2,0x07de,0x07cf};
400 static const itemTest t371[2] = {{{0,0,0,0,0},0,1,1,1,nko_tag,TRUE,{-1,0,0,0,arab_tag}},{{0,0,0,0,0},3,0,0,0,-1,FALSE}};
401 static const itemTest t372[2] = {{{0,0,0,0,0},0,1,1,1,nko_tag,TRUE,{-1,0,0,2,arab_tag}},{{0,0,0,0,0},3,0,0,0,-1,FALSE}};
403 /* Vai */
404 static const WCHAR test38[] = {0xa559,0xa524};
405 static const itemTest t381[2] = {{{0,0,0,0,0},0,0,0,0,vai_tag,TRUE,{-1,-1,-1,-1,latn_tag}},{{0,0,0,0,0},2,0,0,0,-1,FALSE}};
406 static const itemTest t382[2] = {{{0,0,0,0,0},0,0,0,2,vai_tag,TRUE,{-1,1,1,1,latn_tag}},{{0,0,0,0,0},2,0,0,0,-1,FALSE}};
408 /* Cherokee */
409 static const WCHAR test39[] = {0x13e3,0x13b3,0x13a9,0x0020,0x13a6,0x13ec,0x13c2,0x13af,0x13cd,0x13d7};
410 static const itemTest t391[2] = {{{0,0,0,0,0},0,0,0,0,cher_tag,FALSE},{{0,0,0,0,0},10,0,0,0,-1,FALSE}};
411 static const itemTest t392[2] = {{{0,0,0,0,0},0,0,0,2,cher_tag,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},10,0,0,0,-1,FALSE}};
413 /* Canadian Aboriginal Syllabics */
414 static const WCHAR test40[] = {0x1403,0x14c4,0x1483,0x144e,0x1450,0x1466};
415 static const itemTest t401[2] = {{{0,0,0,0,0},0,0,0,0,cans_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
416 static const itemTest t402[2] = {{{0,0,0,0,0},0,0,0,2,cans_tag,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
418 /* Ogham */
419 static const WCHAR test41[] = {0x169b,0x1691,0x168c,0x1690,0x168b,0x169c};
420 static const itemTest t411[2] = {{{0,0,0,0,0},0,0,0,0,ogam_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
421 static const itemTest t412[4] = {{{0,0,0,0,0},0,1,1,1,ogam_tag,FALSE},{{0,0,0,0,0},1,0,0,2,ogam_tag,FALSE},{{0,0,0,0,0},5,1,1,1,ogam_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
422 static const int b412[2] = {1,1};
424 /* Runic */
425 static const WCHAR test42[] = {0x16a0,0x16a1,0x16a2,0x16a3,0x16a4,0x16a5};
426 static const itemTest t421[2] = {{{0,0,0,0,0},0,0,0,0,runr_tag,FALSE},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
427 static const itemTest t422[4] = {{{0,0,0,0,0},0,0,0,2,runr_tag,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},6,0,0,0,-1,FALSE}};
429 /* Braille */
430 static const WCHAR test43[] = {0x280f,0x2817,0x2811,0x280d,0x280a,0x2811,0x2817};
431 static const itemTest t431[2] = {{{0,0,0,0,0},0,0,0,0,brai_tag,FALSE},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
432 static const itemTest t432[4] = {{{0,0,0,0,0},0,0,0,2,brai_tag,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},7,0,0,0,-1,FALSE}};
434 /* Private and Surrogates Area */
435 static const WCHAR test44[] = {0xe000, 0xe001, 0xd800, 0xd801};
436 static const itemTest t441[3] = {{{0,0,0,0,0},0,0,0,0,0,FALSE},{{0,0,0,0,0},2,0,0,0,0,FALSE},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
437 static const itemTest t442[4] = {{{0,0,0,0,0},0,0,0,2,0,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},2,0,0,2,0,TRUE,{-1,1,1,1,-1}},{{0,0,0,0,0},4,0,0,0,-1,FALSE}};
439 /* Deseret */
440 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};
441 static const itemTest t451[2] = {{{0,0,0,0,0},0,0,0,0,dsrt_tag,TRUE,{-1,-1,-1,-1,0x0}},{{0,0,0,0,0},24,0,0,0,-1,FALSE}};
442 static const itemTest t452[2] = {{{0,0,0,0,0},0,0,0,2,dsrt_tag,TRUE,{-1,1,1,1,0x0}},{{0,0,0,0,0},24,0,0,0,-1,FALSE}};
444 /* Osmanya */
445 static const WCHAR test46[] = {0xd801,0xdc8b,0xd801,0xdc98,0xd801,0xdc88,0xd801,0xdc91,0xd801,0xdc9b,0xd801,0xdc92,0xd801,0xdc95,0xd801,0xdc80};
446 static const itemTest t461[2] = {{{0,0,0,0,0},0,0,0,0,osma_tag,TRUE,{-1,-1,-1,-1,0x0}},{{0,0,0,0,0},16,0,0,0,-1,FALSE}};
447 static const itemTest t462[2] = {{{0,0,0,0,0},0,0,0,2,osma_tag,TRUE,{-1,1,1,1,0x0}},{{0,0,0,0,0},16,0,0,0,-1,FALSE}};
449 SCRIPT_ITEM items[15];
450 SCRIPT_CONTROL Control;
451 SCRIPT_STATE State;
452 HRESULT hr;
453 HMODULE usp10;
454 int nItems;
456 usp10 = LoadLibraryA("usp10.dll");
457 ok (usp10 != 0,"Unable to LoadLibrary on usp10.dll\n");
458 pScriptItemizeOpenType = (void*)GetProcAddress(usp10, "ScriptItemizeOpenType");
459 pScriptShapeOpenType = (void*)GetProcAddress(usp10, "ScriptShapeOpenType");
460 pGetGlyphIndicesW = (void*)GetProcAddress(GetModuleHandleA("gdi32.dll"), "GetGlyphIndicesW");
462 memset(&Control, 0, sizeof(Control));
463 memset(&State, 0, sizeof(State));
465 hr = ScriptItemize(NULL, 4, 10, &Control, &State, items, NULL);
466 ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if pwcInChars is NULL\n");
468 hr = ScriptItemize(test1, 4, 10, &Control, &State, NULL, NULL);
469 ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if pItems is NULL\n");
471 hr = ScriptItemize(test1, 4, 1, &Control, &State, items, NULL);
472 ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cMaxItems < 2.\n");
474 hr = ScriptItemize(test1, 0, 10, NULL, NULL, items, &nItems);
475 ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cInChars is 0\n");
477 test_items_ok(test1,4,NULL,NULL,1,t11,FALSE,0);
478 test_items_ok(test1b,4,NULL,NULL,1,t1b1,FALSE,0);
479 test_items_ok(test1c,6,NULL,NULL,1,t1c1,FALSE,0);
480 test_items_ok(test2,16,NULL,NULL,6,t21,FALSE,0);
481 test_items_ok(test2b,11,NULL,NULL,4,t2b1,FALSE,0);
482 test_items_ok(test2c,11,NULL,NULL,4,t2c1,FALSE,0);
483 test_items_ok(test2d,11,NULL,NULL,4,t2d1,FALSE,0);
484 test_items_ok(test3,41,NULL,NULL,1,t31,FALSE,0);
485 test_items_ok(test4,12,NULL,NULL,5,t41,FALSE,0);
486 test_items_ok(test5,38,NULL,NULL,1,t51,FALSE,0);
487 test_items_ok(test6,5,NULL,NULL,2,t61,FALSE,0);
488 test_items_ok(test7,29,NULL,NULL,3,t71,FALSE,0);
489 test_items_ok(test8,4,NULL,NULL,1,t81,FALSE,0);
490 test_items_ok(test9,5,NULL,NULL,2,t91,FALSE,0);
491 test_items_ok(test10,4,NULL,NULL,1,t101,FALSE,0);
492 test_items_ok(test11,8,NULL,NULL,1,t111,FALSE,0);
493 test_items_ok(test12,5,NULL,NULL,1,t121,FALSE,0);
494 test_items_ok(test13,7,NULL,NULL,1,t131,FALSE,0);
495 test_items_ok(test14,7,NULL,NULL,1,t141,FALSE,0);
496 test_items_ok(test15,5,NULL,NULL,1,t151,FALSE,0);
497 test_items_ok(test16,5,NULL,NULL,1,t161,FALSE,0);
498 test_items_ok(test17,6,NULL,NULL,1,t171,FALSE,0);
499 test_items_ok(test18,5,NULL,NULL,1,t181,FALSE,0);
500 test_items_ok(test19,6,NULL,NULL,1,t191,FALSE,0);
501 test_items_ok(test20,5,NULL,NULL,2,t201,FALSE,0);
502 test_items_ok(test21,5,NULL,NULL,1,t211,FALSE,0);
503 test_items_ok(test22,6,NULL,NULL,2,t221,FALSE,0);
504 test_items_ok(test23,6,NULL,NULL,2,t231,FALSE,0);
505 test_items_ok(test24,12,NULL,NULL,1,t241,FALSE,0);
506 test_items_ok(test25,10,NULL,NULL,1,t251,FALSE,0);
507 test_items_ok(test26,2,NULL,NULL,1,t261,FALSE,0);
508 test_items_ok(test27,8,NULL,NULL,1,t271,FALSE,0);
509 test_items_ok(test28,4,NULL,NULL,1,t281,FALSE,0);
510 test_items_ok(test29,10,NULL,NULL,2,t291,FALSE,0);
511 test_items_ok(test30,8,NULL,NULL,1,t301,FALSE,0);
512 test_items_ok(test31,8,NULL,NULL,1,t311,FALSE,b311);
513 test_items_ok(test32,3,NULL,NULL,1,t321,FALSE,0);
514 test_items_ok(test33,4,NULL,NULL,1,t331,FALSE,0);
515 test_items_ok(test34,3,NULL,NULL,1,t341,FALSE,0);
516 test_items_ok(test35,13,NULL,NULL,1,t351,FALSE,b351);
517 test_items_ok(test36,7,NULL,NULL,1,t361,FALSE,0);
518 test_items_ok(test37,3,NULL,NULL,1,t371,FALSE,0);
519 test_items_ok(test38,2,NULL,NULL,1,t381,FALSE,0);
520 test_items_ok(test39,10,NULL,NULL,1,t391,FALSE,0);
521 test_items_ok(test40,6,NULL,NULL,1,t401,FALSE,0);
522 test_items_ok(test41,6,NULL,NULL,1,t411,FALSE,0);
523 test_items_ok(test42,6,NULL,NULL,1,t421,FALSE,0);
524 test_items_ok(test43,7,NULL,NULL,1,t431,FALSE,0);
525 test_items_ok(test44,4,NULL,NULL,2,t441,FALSE,0);
526 test_items_ok(test45,24,NULL,NULL,1,t451,FALSE,0);
527 test_items_ok(test46,16,NULL,NULL,1,t461,FALSE,0);
529 State.uBidiLevel = 0;
530 test_items_ok(test1,4,&Control,&State,1,t11,FALSE,0);
531 test_items_ok(test1b,4,&Control,&State,1,t1b1,FALSE,0);
532 test_items_ok(test1c,6,&Control,&State,1,t1c1,FALSE,0);
533 test_items_ok(test2,16,&Control,&State,4,t22,FALSE,0);
534 test_items_ok(test2b,11,&Control,&State,4,t2b1,FALSE,0);
535 test_items_ok(test2c,11,&Control,&State,5,t2c2,FALSE,0);
536 test_items_ok(test2d,11,&Control,&State,5,t2d2,FALSE,0);
537 test_items_ok(test3,41,&Control,&State,1,t31,FALSE,0);
538 test_items_ok(test4,12,&Control,&State,5,t41,FALSE,0);
539 test_items_ok(test5,38,&Control,&State,1,t51,FALSE,0);
540 test_items_ok(test6,5,&Control,&State,2,t61,FALSE,0);
541 test_items_ok(test7,29,&Control,&State,3,t72,FALSE,0);
542 test_items_ok(test8,4,&Control,&State,1,t81,FALSE,0);
543 test_items_ok(test9,5,&Control,&State,2,t91,FALSE,0);
544 test_items_ok(test10,4,&Control,&State,1,t101,FALSE,0);
545 test_items_ok(test11,8,&Control,&State,1,t111,FALSE,0);
546 test_items_ok(test12,5,&Control,&State,1,t121,FALSE,0);
547 test_items_ok(test13,7,&Control,&State,1,t131,FALSE,0);
548 test_items_ok(test14,7,&Control,&State,1,t141,FALSE,0);
549 test_items_ok(test15,5,&Control,&State,1,t151,FALSE,0);
550 test_items_ok(test16,5,&Control,&State,1,t161,FALSE,0);
551 test_items_ok(test17,6,&Control,&State,1,t171,FALSE,0);
552 test_items_ok(test18,5,&Control,&State,1,t181,FALSE,0);
553 test_items_ok(test19,6,&Control,&State,1,t191,FALSE,0);
554 test_items_ok(test20,5,&Control,&State,2,t201,FALSE,0);
555 test_items_ok(test21,5,&Control,&State,1,t211,FALSE,0);
556 test_items_ok(test22,6,&Control,&State,2,t221,FALSE,0);
557 test_items_ok(test23,6,&Control,&State,2,t231,FALSE,0);
558 test_items_ok(test24,12,&Control,&State,1,t241,FALSE,0);
559 test_items_ok(test25,10,&Control,&State,1,t251,FALSE,0);
560 test_items_ok(test26,2,&Control,&State,1,t261,FALSE,0);
561 test_items_ok(test27,8,&Control,&State,1,t271,FALSE,0);
562 test_items_ok(test28,4,&Control,&State,1,t281,FALSE,0);
563 test_items_ok(test29,10,&Control,&State,2,t291,FALSE,0);
564 test_items_ok(test30,8,&Control,&State,1,t301,FALSE,0);
565 test_items_ok(test31,8,&Control,&State,1,t311,FALSE,b311);
566 test_items_ok(test32,3,&Control,&State,1,t321,FALSE,0);
567 test_items_ok(test33,4,&Control,&State,1,t331,FALSE,0);
568 test_items_ok(test34,3,&Control,&State,1,t341,FALSE,0);
569 test_items_ok(test35,13,&Control,&State,1,t351,FALSE,b351);
570 test_items_ok(test36,7,&Control,&State,1,t361,FALSE,0);
571 test_items_ok(test37,3,&Control,&State,1,t371,FALSE,0);
572 test_items_ok(test38,2,&Control,&State,1,t381,FALSE,0);
573 test_items_ok(test39,10,&Control,&State,1,t391,FALSE,0);
574 test_items_ok(test40,6,&Control,&State,1,t401,FALSE,0);
575 test_items_ok(test41,6,&Control,&State,1,t411,FALSE,0);
576 test_items_ok(test42,6,&Control,&State,1,t421,FALSE,0);
577 test_items_ok(test43,7,&Control,&State,1,t431,FALSE,0);
578 test_items_ok(test44,4,&Control,&State,2,t441,FALSE,0);
579 test_items_ok(test45,24,&Control,&State,1,t451,FALSE,0);
580 test_items_ok(test46,16,&Control,&State,1,t461,FALSE,0);
582 State.uBidiLevel = 1;
583 test_items_ok(test1,4,&Control,&State,1,t12,FALSE,0);
584 test_items_ok(test1b,4,&Control,&State,1,t1b2,FALSE,0);
585 test_items_ok(test1c,6,&Control,&State,3,t1c2,FALSE,0);
586 test_items_ok(test2,16,&Control,&State,4,t23,FALSE,0);
587 test_items_ok(test2b,11,&Control,&State,4,t2b2,FALSE,0);
588 test_items_ok(test2c,11,&Control,&State,4,t2c3,FALSE,0);
589 test_items_ok(test2d,11,&Control,&State,4,t2d3,FALSE,0);
590 test_items_ok(test3,41,&Control,&State,1,t32,FALSE,0);
591 test_items_ok(test4,12,&Control,&State,4,t42,FALSE,0);
592 test_items_ok(test5,38,&Control,&State,1,t51,FALSE,0);
593 test_items_ok(test6,5,&Control,&State,2,t62,FALSE,0);
594 test_items_ok(test7,29,&Control,&State,3,t73,FALSE,0);
595 test_items_ok(test8,4,&Control,&State,1,t81,FALSE,0);
596 test_items_ok(test9,5,&Control,&State,2,t92,FALSE,0);
597 test_items_ok(test10,4,&Control,&State,1,t101,FALSE,0);
598 test_items_ok(test11,8,&Control,&State,1,t112,FALSE,0);
599 test_items_ok(test12,5,&Control,&State,1,t122,FALSE,0);
600 test_items_ok(test13,7,&Control,&State,1,t132,FALSE,0);
601 test_items_ok(test14,7,&Control,&State,1,t142,FALSE,0);
602 test_items_ok(test15,5,&Control,&State,1,t152,FALSE,0);
603 test_items_ok(test16,5,&Control,&State,1,t162,FALSE,0);
604 test_items_ok(test17,6,&Control,&State,1,t172,FALSE,0);
605 test_items_ok(test18,5,&Control,&State,1,t182,FALSE,0);
606 test_items_ok(test19,6,&Control,&State,1,t192,FALSE,0);
607 test_items_ok(test20,5,&Control,&State,2,t202,FALSE,0);
608 test_items_ok(test21,5,&Control,&State,1,t211,FALSE,0);
609 test_items_ok(test22,6,&Control,&State,2,t222,FALSE,b222);
610 test_items_ok(test23,6,&Control,&State,2,t232,FALSE,0);
611 test_items_ok(test24,12,&Control,&State,1,t242,FALSE,0);
612 test_items_ok(test25,10,&Control,&State,1,t252,FALSE,0);
613 test_items_ok(test26,2,&Control,&State,1,t262,FALSE,0);
614 test_items_ok(test27,8,&Control,&State,1,t272,FALSE,0);
615 test_items_ok(test28,4,&Control,&State,1,t282,FALSE,0);
616 test_items_ok(test29,10,&Control,&State,2,t292,FALSE,0);
617 test_items_ok(test30,8,&Control,&State,1,t302,FALSE,0);
618 test_items_ok(test31,8,&Control,&State,1,t312,FALSE,b312);
619 test_items_ok(test32,3,&Control,&State,1,t322,FALSE,0);
620 test_items_ok(test33,4,&Control,&State,1,t332,FALSE,0);
621 test_items_ok(test34,3,&Control,&State,1,t342,FALSE,b342);
622 test_items_ok(test35,13,&Control,&State,1,t352,FALSE,b352);
623 test_items_ok(test36,7,&Control,&State,1,t362,FALSE,0);
624 test_items_ok(test37,3,&Control,&State,1,t372,FALSE,0);
625 test_items_ok(test38,2,&Control,&State,1,t382,FALSE,0);
626 test_items_ok(test39,10,&Control,&State,1,t392,FALSE,0);
627 test_items_ok(test40,6,&Control,&State,1,t402,FALSE,0);
628 test_items_ok(test41,6,&Control,&State,3,t412,FALSE,b412);
629 test_items_ok(test42,6,&Control,&State,1,t422,FALSE,0);
630 test_items_ok(test43,7,&Control,&State,1,t432,FALSE,0);
631 test_items_ok(test44,4,&Control,&State,2,t442,FALSE,0);
632 test_items_ok(test45,24,&Control,&State,1,t452,FALSE,0);
633 test_items_ok(test46,16,&Control,&State,1,t462,FALSE,0);
635 State.uBidiLevel = 1;
636 Control.fMergeNeutralItems = TRUE;
637 test_items_ok(test1,4,&Control,&State,1,t12,FALSE,0);
638 test_items_ok(test1b,4,&Control,&State,1,t1b2,FALSE,0);
639 test_items_ok(test1c,6,&Control,&State,3,t1c2,FALSE,0);
640 test_items_ok(test2,16,&Control,&State,4,t23,FALSE,0);
641 test_items_ok(test2b,11,&Control,&State,2,t2b3,FALSE,b2);
642 test_items_ok(test2c,11,&Control,&State,2,t2c4,FALSE,b2);
643 test_items_ok(test2d,11,&Control,&State,2,t2d4,FALSE,b2);
644 test_items_ok(test3,41,&Control,&State,1,t32,FALSE,0);
645 test_items_ok(test4,12,&Control,&State,3,t43,FALSE,b43);
646 test_items_ok(test5,38,&Control,&State,1,t51,FALSE,0);
647 test_items_ok(test6,5,&Control,&State,1,t63,FALSE,b63);
648 test_items_ok(test7,29,&Control,&State,3,t73,FALSE,0);
649 test_items_ok(test8,4,&Control,&State,1,t81,FALSE,0);
650 test_items_ok(test9,5,&Control,&State,1,t93,FALSE,b93);
651 test_items_ok(test10,4,&Control,&State,1,t101,FALSE,0);
652 test_items_ok(test11,8,&Control,&State,1,t112,FALSE,0);
653 test_items_ok(test12,5,&Control,&State,1,t122,FALSE,0);
654 test_items_ok(test13,7,&Control,&State,1,t132,FALSE,0);
655 test_items_ok(test14,7,&Control,&State,1,t142,FALSE,0);
656 test_items_ok(test15,5,&Control,&State,1,t152,FALSE,0);
657 test_items_ok(test16,5,&Control,&State,1,t162,FALSE,0);
658 test_items_ok(test17,6,&Control,&State,1,t172,FALSE,0);
659 test_items_ok(test18,5,&Control,&State,1,t182,FALSE,0);
660 test_items_ok(test19,6,&Control,&State,1,t192,FALSE,0);
661 test_items_ok(test20,5,&Control,&State,2,t202,FALSE,0);
662 test_items_ok(test21,5,&Control,&State,1,t211,FALSE,0);
663 test_items_ok(test22,6,&Control,&State,1,t223,FALSE,b223);
664 test_items_ok(test23,6,&Control,&State,2,t232,FALSE,0);
665 test_items_ok(test24,12,&Control,&State,1,t242,FALSE,0);
666 test_items_ok(test25,10,&Control,&State,1,t252,FALSE,0);
667 test_items_ok(test26,2,&Control,&State,1,t262,FALSE,0);
668 test_items_ok(test27,8,&Control,&State,1,t272,FALSE,0);
669 test_items_ok(test28,4,&Control,&State,1,t282,FALSE,0);
670 test_items_ok(test29,10,&Control,&State,2,t292,FALSE,0);
671 test_items_ok(test30,8,&Control,&State,1,t302,FALSE,0);
672 test_items_ok(test31,8,&Control,&State,1,t312,FALSE,b312);
673 test_items_ok(test32,3,&Control,&State,1,t322,FALSE,0);
674 test_items_ok(test33,4,&Control,&State,1,t332,FALSE,0);
675 test_items_ok(test34,3,&Control,&State,1,t342,FALSE,b342);
676 test_items_ok(test35,13,&Control,&State,1,t352,FALSE,b352);
677 test_items_ok(test36,7,&Control,&State,1,t362,FALSE,0);
678 test_items_ok(test37,3,&Control,&State,1,t372,FALSE,0);
679 test_items_ok(test38,2,&Control,&State,1,t382,FALSE,0);
680 test_items_ok(test39,10,&Control,&State,1,t392,FALSE,0);
681 test_items_ok(test40,6,&Control,&State,1,t402,FALSE,0);
682 test_items_ok(test41,6,&Control,&State,3,t412,FALSE,b412);
683 test_items_ok(test42,6,&Control,&State,1,t422,FALSE,0);
684 test_items_ok(test43,7,&Control,&State,1,t432,FALSE,0);
685 test_items_ok(test44,4,&Control,&State,2,t442,FALSE,0);
686 test_items_ok(test45,24,&Control,&State,1,t452,FALSE,0);
687 test_items_ok(test46,16,&Control,&State,1,t462,FALSE,0);
690 static inline void _test_shape_ok(int valid, HDC hdc, LPCWSTR string,
691 DWORD cchString, SCRIPT_CONTROL *Control,
692 SCRIPT_STATE *State, DWORD item, DWORD nGlyphs,
693 const shapeTest_char* charItems,
694 const shapeTest_glyph* glyphItems)
696 HRESULT hr;
697 int x, outnItems=0, outnGlyphs=0;
698 SCRIPT_ITEM outpItems[15];
699 SCRIPT_CACHE sc = NULL;
700 WORD *glyphs;
701 WORD *logclust;
702 int maxGlyphs = cchString * 1.5;
703 SCRIPT_GLYPHPROP *glyphProp;
704 SCRIPT_CHARPROP *charProp;
705 ULONG tags[15];
707 hr = pScriptItemizeOpenType(string, cchString, 15, Control, State, outpItems, tags, &outnItems);
708 if (hr == USP_E_SCRIPT_NOT_IN_FONT)
710 if (valid > 0)
711 winetest_win_skip("Select font does not support script\n");
712 else
713 winetest_trace("Select font does not support script\n");
714 return;
716 if (valid > 0)
717 winetest_ok(!hr, "ScriptItemizeOpenType should return S_OK not %08x\n", hr);
718 else if (hr)
719 winetest_trace("ScriptItemizeOpenType should return S_OK not %08x\n", hr);
722 if (outnItems <= item)
724 if (valid > 0)
725 winetest_win_skip("Did not get enough items\n");
726 else
727 winetest_trace("Did not get enough items\n");
728 return;
731 logclust = HeapAlloc(GetProcessHeap(), 0, sizeof(WORD) * cchString);
732 memset(logclust,'a',sizeof(WORD) * cchString);
733 charProp = HeapAlloc(GetProcessHeap(), 0, sizeof(SCRIPT_CHARPROP) * cchString);
734 memset(charProp,'a',sizeof(SCRIPT_CHARPROP) * cchString);
735 glyphs = HeapAlloc(GetProcessHeap(), 0, sizeof(WORD) * maxGlyphs);
736 memset(glyphs,'a',sizeof(WORD) * cchString);
737 glyphProp = HeapAlloc(GetProcessHeap(), 0, sizeof(SCRIPT_GLYPHPROP) * maxGlyphs);
738 memset(glyphProp,'a',sizeof(SCRIPT_GLYPHPROP) * cchString);
740 hr = pScriptShapeOpenType(hdc, &sc, &outpItems[item].a, tags[item], 0x00000000, NULL, NULL, 0, string, cchString, maxGlyphs, logclust, charProp, glyphs, glyphProp, &outnGlyphs);
741 if (valid > 0)
742 winetest_ok(hr == S_OK, "ScriptShapeOpenType failed (%x)\n",hr);
743 else if (hr != S_OK)
744 winetest_trace("ScriptShapeOpenType failed (%x)\n",hr);
745 if (FAILED(hr))
746 return;
748 for (x = 0; x < cchString; x++)
750 if (valid > 0)
751 winetest_ok(logclust[x] == charItems[x].wLogClust, "%i: invalid LogClust(%i)\n",x,logclust[x]);
752 else if (logclust[x] != charItems[x].wLogClust)
753 winetest_trace("%i: invalid LogClust(%i)\n",x,logclust[x]);
754 if (valid > 0)
755 winetest_ok(charProp[x].fCanGlyphAlone == charItems[x].CharProp.fCanGlyphAlone, "%i: invalid fCanGlyphAlone\n",x);
756 else if (charProp[x].fCanGlyphAlone != charItems[x].CharProp.fCanGlyphAlone)
757 winetest_trace("%i: invalid fCanGlyphAlone\n",x);
760 if (valid > 0)
761 winetest_ok(nGlyphs == outnGlyphs, "got incorrect number of glyphs (%i)\n",outnGlyphs);
762 else if (nGlyphs != outnGlyphs)
763 winetest_trace("got incorrect number of glyphs (%i)\n",outnGlyphs);
764 for (x = 0; x < outnGlyphs; x++)
766 if (glyphItems[x].Glyph)
768 if (valid > 0)
769 winetest_ok(glyphs[x]!=0, "%i: Glyph not present when it should be\n",x);
770 else if (glyphs[x]==0)
771 winetest_trace("%i: Glyph not present when it should be\n",x);
773 else
775 if (valid > 0)
776 winetest_ok(glyphs[x]==0, "%i: Glyph present when it should not be\n",x);
777 else if (glyphs[x]!=0)
778 winetest_trace("%i: Glyph present when it should not be\n",x);
780 if (valid > 0)
781 winetest_ok(glyphProp[x].sva.uJustification == glyphItems[x].GlyphProp.sva.uJustification, "%i: uJustification incorrect (%i)\n",x,glyphProp[x].sva.uJustification);
782 else if (glyphProp[x].sva.uJustification != glyphItems[x].GlyphProp.sva.uJustification)
783 winetest_trace("%i: uJustification incorrect (%i)\n",x,glyphProp[x].sva.uJustification);
784 if (valid > 0)
785 winetest_ok(glyphProp[x].sva.fClusterStart == glyphItems[x].GlyphProp.sva.fClusterStart, "%i: fClusterStart incorrect (%i)\n",x,glyphProp[x].sva.fClusterStart);
786 else if (glyphProp[x].sva.fClusterStart != glyphItems[x].GlyphProp.sva.fClusterStart)
787 winetest_trace("%i: fClusterStart incorrect (%i)\n",x,glyphProp[x].sva.fClusterStart);
788 if (valid > 0)
789 winetest_ok(glyphProp[x].sva.fDiacritic == glyphItems[x].GlyphProp.sva.fDiacritic, "%i: fDiacritic incorrect (%i)\n",x,glyphProp[x].sva.fDiacritic);
790 else if (glyphProp[x].sva.fDiacritic != glyphItems[x].GlyphProp.sva.fDiacritic)
791 winetest_trace("%i: fDiacritic incorrect (%i)\n",x,glyphProp[x].sva.fDiacritic);
792 if (valid > 0)
793 winetest_ok(glyphProp[x].sva.fZeroWidth == glyphItems[x].GlyphProp.sva.fZeroWidth, "%i: fZeroWidth incorrect (%i)\n",x,glyphProp[x].sva.fZeroWidth);
794 else if (glyphProp[x].sva.fZeroWidth != glyphItems[x].GlyphProp.sva.fZeroWidth)
795 winetest_trace("%i: fZeroWidth incorrect (%i)\n",x,glyphProp[x].sva.fZeroWidth);
798 HeapFree(GetProcessHeap(),0,logclust);
799 HeapFree(GetProcessHeap(),0,charProp);
800 HeapFree(GetProcessHeap(),0,glyphs);
801 HeapFree(GetProcessHeap(),0,glyphProp);
802 ScriptFreeCache(&sc);
805 #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)
807 #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)
809 typedef struct tagRangeP {
810 BYTE range;
811 LOGFONTA lf;
812 } fontEnumParam;
814 static int CALLBACK enumFontProc( const LOGFONT *lpelfe, const TEXTMETRIC *lpntme,
815 DWORD FontType, LPARAM lParam)
817 NEWTEXTMETRICEX *ntme = (NEWTEXTMETRICEX*)lpntme;
818 fontEnumParam *rp = (fontEnumParam*) lParam;
819 int idx = 0;
820 DWORD i;
821 DWORD mask = 0;
823 if (FontType != TRUETYPE_FONTTYPE)
824 return 1;
826 i = rp->range;
827 while (i > sizeof(DWORD)*8)
829 idx++;
830 i -= (sizeof(DWORD)*8);
832 if (idx > 3)
833 return 0;
835 mask = 1 << i;
837 if (ntme->ntmFontSig.fsUsb[idx] & mask)
839 memcpy(&(rp->lf),lpelfe,sizeof(LOGFONT));
840 return 0;
842 return 1;
845 static int _find_font_for_range(HDC hdc, const CHAR *recommended, BYTE range, const WCHAR check, HFONT *hfont, HFONT *origFont)
847 int rc = 0;
848 fontEnumParam lParam;
850 lParam.range = range;
851 memset(&lParam.lf,0,sizeof(LOGFONT));
852 *hfont = NULL;
854 if (recommended)
856 lstrcpyA(lParam.lf.lfFaceName, recommended);
857 if (!EnumFontFamiliesExA(hdc, &lParam.lf, enumFontProc, (LPARAM)&lParam, 0))
859 *hfont = CreateFontIndirectA(&lParam.lf);
860 if (*hfont)
862 winetest_trace("using font %s\n",lParam.lf.lfFaceName);
863 rc = 1;
868 if (!*hfont)
870 memset(&lParam.lf,0,sizeof(LOGFONT));
871 lParam.lf.lfCharSet = DEFAULT_CHARSET;
873 if (!EnumFontFamiliesExA(hdc, &lParam.lf, enumFontProc, (LPARAM)&lParam, 0) && lParam.lf.lfFaceName[0])
875 *hfont = CreateFontIndirectA(&lParam.lf);
876 if (*hfont)
877 winetest_trace("trying font %s: failures will only be warnings\n",lParam.lf.lfFaceName);
881 if (*hfont)
883 WORD glyph = 0;
885 *origFont = SelectObject(hdc,*hfont);
886 if (pGetGlyphIndicesW && (pGetGlyphIndicesW(hdc, &check, 1, &glyph, 0) == GDI_ERROR || glyph ==0))
888 winetest_trace(" Font fails to contain required glyphs\n");
889 SelectObject(hdc,*origFont);
890 DeleteObject(*hfont);
891 *hfont=NULL;
892 rc = 0;
894 else if (!rc)
895 rc = -1;
897 else
898 winetest_trace("Failed to find usable font\n");
900 return rc;
903 #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)
905 static void test_ScriptShapeOpenType(HDC hdc)
907 HRESULT hr;
908 SCRIPT_CACHE sc = NULL;
909 WORD glyphs[4], logclust[4];
910 SCRIPT_GLYPHPROP glyphProp[4];
911 SCRIPT_ITEM items[2];
912 ULONG tags[2];
913 SCRIPT_CONTROL Control;
914 SCRIPT_STATE State;
915 int nb, outnItems;
916 HFONT hfont, hfont_orig;
917 int test_valid;
919 static const WCHAR test1[] = {'w', 'i', 'n', 'e',0};
920 static const shapeTest_char t1_c[] = {{0,{0,0}},{1,{0,0}},{2,{0,0}},{3,{0,0}}};
921 static const shapeTest_glyph t1_g[] = {
922 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
923 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
924 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
925 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
927 static const WCHAR test2[] = {0x202B, 'i', 'n', 0x202C,0};
928 static const shapeTest_char t2_c[] = {{0,{0,0}},{1,{0,0}},{2,{0,0}},{3,{0,0}}};
929 static const shapeTest_glyph t2_g[] = {
930 {0,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
931 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
932 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
933 {0,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
935 /* Hebrew */
936 static const WCHAR test_hebrew[] = {0x05e9, 0x05dc, 0x05d5, 0x05dd,0};
937 static const shapeTest_char hebrew_c[] = {{3,{0,0}},{2,{0,0}},{1,{0,0}},{0,{0,0}}};
938 static const shapeTest_glyph hebrew_g[] = {
939 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
940 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
941 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
942 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
944 /* Arabic */
945 static const WCHAR test_arabic[] = {0x0633,0x0644,0x0627,0x0645,0};
946 static const shapeTest_char arabic_c[] = {{2,{0,0}},{1,{0,0}},{1,{0,0}},{0,{0,0}}};
947 static const shapeTest_glyph arabic_g[] = {
948 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
949 {1,{{SCRIPT_JUSTIFY_ARABIC_NORMAL,1,0,0,0,0},0}},
950 {1,{{SCRIPT_JUSTIFY_ARABIC_SEEN,1,0,0,0,0},0}} };
952 /* Thai */
953 static const WCHAR test_thai[] = {0x0e2a, 0x0e04, 0x0e23, 0x0e34, 0x0e1b, 0x0e15, 0x0e4c, 0x0e44, 0x0e17, 0x0e22,};
954 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}}};
955 static const shapeTest_glyph thai_g[] = {
956 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
957 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
958 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
959 {1,{{SCRIPT_JUSTIFY_CHARACTER,0,1,1,0,0},0}},
960 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
961 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
962 {1,{{SCRIPT_JUSTIFY_CHARACTER,0,1,1,0,0},0}},
963 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
964 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
965 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}}};
967 /* Syriac */
968 static const WCHAR test_syriac[] = {0x0710, 0x0710, 0x0710, 0x0728, 0x0718, 0x0723,0};
969 static const shapeTest_char syriac_c[] = {{5,{0,0}},{4,{0,0}},{3,{0,0}},{2,{0,0}},{1,{0,0}},{0,{0,0}}};
970 static const shapeTest_glyph syriac_g[] = {
971 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
972 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
973 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
974 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
975 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
976 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
978 /* Thaana */
979 static const WCHAR test_thaana[] = {0x078a, 0x07ae, 0x0792, 0x07b0, 0x0020, 0x0796, 0x07aa, 0x0789, 0x07b0, 0x0795, 0x07ac, 0x0791, 0x07b0};
980 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}}};
981 static const shapeTest_glyph thaana_g[] = {
982 {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
983 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
984 {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
985 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
986 {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
987 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
988 {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
989 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
990 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
991 {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
992 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
993 {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
994 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
996 /* Phags-pa */
997 static const WCHAR test_phagspa[] = {0xa84f, 0xa861, 0xa843, 0x0020, 0xa863, 0xa861, 0xa859, 0x0020, 0xa850, 0xa85c, 0xa85e};
998 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}}};
999 static const shapeTest_glyph phagspa_g[] = {
1000 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1001 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1002 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1003 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1004 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1005 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1006 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1007 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1008 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1009 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1010 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
1012 /* Lao */
1013 static const WCHAR test_lao[] = {0x0ead, 0x0eb1, 0x0e81, 0x0eaa, 0x0ead, 0x0e99, 0x0ea5, 0x0eb2, 0x0ea7, 0};
1014 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}}};
1015 static const shapeTest_glyph lao_g[] = {
1016 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1017 {1,{{SCRIPT_JUSTIFY_CHARACTER,0,1,1,0,0},0}},
1018 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1019 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1020 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1021 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1022 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1023 {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
1024 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
1026 /* Tibetan */
1027 static const WCHAR test_tibetan[] = {0x0f04, 0x0f05, 0x0f0e, 0x0020, 0x0f51, 0x0f7c, 0x0f53, 0x0f0b, 0x0f5a, 0x0f53, 0x0f0b, 0x0f51, 0x0f44, 0x0f0b, 0x0f54, 0x0f7c, 0x0f0d};
1028 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}}};
1029 static const shapeTest_glyph tibetan_g[] = {
1030 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1031 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1032 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1033 {1,{{SCRIPT_JUSTIFY_BLANK,1,0,0,0,0},0}},
1034 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1035 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1036 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1037 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1038 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1039 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1040 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1041 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1042 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1043 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1044 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1045 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1046 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
1048 /* Devanagari */
1049 static const WCHAR test_devanagari[] = {0x0926, 0x0947, 0x0935, 0x0928, 0x093e, 0x0917, 0x0930, 0x0940};
1050 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}}};
1051 static const shapeTest_glyph devanagari_g[] = {
1052 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1053 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1054 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1055 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1056 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1057 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1058 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1059 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
1061 /* Bengali */
1062 static const WCHAR test_bengali[] = {0x09ac, 0x09be, 0x0982, 0x09b2, 0x09be};
1063 static const shapeTest_char bengali_c[] = {{0,{0,0}},{0,{0,0}},{0,{0,0}},{3,{0,0}},{3,{0,0}}};
1064 static const shapeTest_glyph bengali_g[] = {
1065 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1066 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1067 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1068 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1069 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
1071 /* Gurmukhi */
1072 static const WCHAR test_gurmukhi[] = {0x0a17, 0x0a41, 0x0a30, 0x0a2e, 0x0a41, 0x0a16, 0x0a40};
1073 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}}};
1074 static const shapeTest_glyph gurmukhi_g[] = {
1075 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1076 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1077 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1078 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1079 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1080 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1081 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
1083 /* Gujarati */
1084 static const WCHAR test_gujarati[] = {0x0a97, 0x0ac1, 0x0a9c, 0x0ab0, 0x0abe, 0x0aa4, 0x0ac0};
1085 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}}};
1086 static const shapeTest_glyph gujarati_g[] = {
1087 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1088 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1089 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1090 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1091 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1092 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1093 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
1095 /* Oriya */
1096 static const WCHAR test_oriya[] = {0x0b13, 0x0b21, 0x0b3c, 0x0b3f, 0x0b06};
1097 static const shapeTest_char oriya_c[] = {{0,{0,0}},{1,{0,0}},{1,{0,0}},{1,{0,0}},{3,{0,0}}};
1098 static const shapeTest_glyph oriya_g[] = {
1099 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1100 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1101 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1102 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
1104 /* Tamil */
1105 static const WCHAR test_tamil[] = {0x0ba4, 0x0bae, 0x0bbf, 0x0bb4, 0x0bcd};
1106 static const shapeTest_char tamil_c[] = {{0,{0,0}},{1,{0,0}},{1,{0,0}},{3,{0,0}},{3,{0,0}}};
1107 static const shapeTest_glyph tamil_g[] = {
1108 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1109 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1110 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1111 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
1113 /* Telugu */
1114 static const WCHAR test_telugu[] = {0x0c24, 0x0c46, 0x0c32, 0x0c41, 0x0c17, 0x0c41};
1115 static const shapeTest_char telugu_c[] = {{0,{0,0}},{0,{0,0}},{2,{0,0}},{2,{0,0}},{4,{0,0}},{4,{0,0}}};
1116 static const shapeTest_glyph telugu_g[] = {
1117 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1118 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1119 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1120 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1121 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1122 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
1124 /* Malayalam */
1125 static const WCHAR test_malayalam[] = {0x0d2e, 0x0d32, 0x0d2f, 0x0d3e, 0x0d33, 0x0d02};
1126 static const shapeTest_char malayalam_c[] = {{0,{0,0}},{1,{0,0}},{2,{0,0}},{2,{0,0}},{4,{0,0}},{4,{0,0}}};
1127 static const shapeTest_glyph malayalam_g[] = {
1128 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1129 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1130 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1131 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1132 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1133 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
1135 /* Kannada */
1136 static const WCHAR test_kannada[] = {0x0c95, 0x0ca8, 0x0ccd, 0x0ca8, 0x0ca1};
1137 static const shapeTest_char kannada_c[] = {{0,{0,0}},{1,{0,0}},{1,{0,0}},{1,{0,0}},{3,{0,0}}};
1138 static const shapeTest_glyph kannada_g[] = {
1139 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1140 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1141 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
1142 {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
1143 {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
1145 if (!pScriptItemizeOpenType || !pScriptShapeOpenType)
1147 win_skip("ScriptShapeOpenType not available on this platform\n");
1148 return;
1151 memset(&Control, 0 , sizeof(Control));
1152 memset(&State, 0 , sizeof(State));
1154 hr = pScriptItemizeOpenType(test1, 4, 2, &Control, &State, items, tags, &outnItems);
1155 ok(!hr, "ScriptItemizeOpenType should return S_OK not %08x\n", hr);
1156 ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1158 hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, NULL, &nb);
1159 ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_INVALIDARG not %08x\n", hr);
1161 hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, glyphProp, NULL);
1162 ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_INVALIDARG not %08x\n", hr);
1164 hr = pScriptShapeOpenType(NULL, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, glyphProp, &nb);
1165 ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_PENDING not %08x\n", hr);
1167 hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, glyphProp, &nb);
1168 ok( hr == E_INVALIDARG,
1169 "ScriptShapeOpenType should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
1170 hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, logclust, NULL, glyphs, glyphProp, &nb);
1171 ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_INVALIDARG not %08x\n", hr);
1173 ScriptFreeCache(&sc);
1175 test_shape_ok(hdc, test1, 4, &Control, &State, 0, 4, t1_c, t1_g);
1176 test_shape_ok(hdc, test2, 4, &Control, &State, 1, 4, t2_c, t2_g);
1178 test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 11, test_hebrew[0], &hfont, &hfont_orig);
1179 if (hfont != NULL)
1181 test_shape_ok_valid(test_valid, hdc, test_hebrew, 4, &Control, &State, 0, 4, hebrew_c, hebrew_g);
1182 SelectObject(hdc, hfont_orig);
1183 DeleteObject(hfont);
1186 test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 13, test_arabic[0], &hfont, &hfont_orig);
1187 if (hfont != NULL)
1189 test_shape_ok_valid(test_valid, hdc, test_arabic, 4, &Control, &State, 0, 3, arabic_c, arabic_g);
1190 SelectObject(hdc, hfont_orig);
1191 DeleteObject(hfont);
1194 test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 24, test_thai[0], &hfont, &hfont_orig);
1195 if (hfont != NULL)
1197 test_shape_ok_valid(test_valid, hdc, test_thai, 10, &Control, &State, 0, 10, thai_c, thai_g);
1198 SelectObject(hdc, hfont_orig);
1199 DeleteObject(hfont);
1202 test_valid = find_font_for_range(hdc, "Estrangelo Edessa", 71, test_syriac[0], &hfont, &hfont_orig);
1203 if (hfont != NULL)
1205 test_shape_ok_valid(test_valid, hdc, test_syriac, 6, &Control, &State, 0, 6, syriac_c, syriac_g);
1206 SelectObject(hdc, hfont_orig);
1207 DeleteObject(hfont);
1210 test_valid = find_font_for_range(hdc, "MV Boli", 72, test_thaana[0], &hfont, &hfont_orig);
1211 if (hfont != NULL)
1213 test_shape_ok_valid(test_valid, hdc, test_thaana, 13, &Control, &State, 0, 13, thaana_c, thaana_g);
1214 SelectObject(hdc, hfont_orig);
1215 DeleteObject(hfont);
1218 test_valid = find_font_for_range(hdc, "Microsoft PhagsPa", 53, test_phagspa[0], &hfont, &hfont_orig);
1219 if (hfont != NULL)
1221 test_shape_ok_valid(test_valid, hdc, test_phagspa, 11, &Control, &State, 0, 11, phagspa_c, phagspa_g);
1222 SelectObject(hdc, hfont_orig);
1223 DeleteObject(hfont);
1226 test_valid = find_font_for_range(hdc, "DokChampa", 25, test_lao[0], &hfont, &hfont_orig);
1227 if (hfont != NULL)
1229 test_shape_ok_valid(test_valid, hdc, test_lao, 9, &Control, &State, 0, 9, lao_c, lao_g);
1230 SelectObject(hdc, hfont_orig);
1231 DeleteObject(hfont);
1234 test_valid = find_font_for_range(hdc, "Microsoft Himalaya", 70, test_tibetan[0], &hfont, &hfont_orig);
1235 if (hfont != NULL)
1237 test_shape_ok_valid(test_valid, hdc, test_tibetan, 17, &Control, &State, 0, 17, tibetan_c, tibetan_g);
1238 SelectObject(hdc, hfont_orig);
1239 DeleteObject(hfont);
1242 test_valid = find_font_for_range(hdc, "Mangal", 15, test_devanagari[0], &hfont, &hfont_orig);
1243 if (hfont != NULL)
1245 test_shape_ok_valid(test_valid, hdc, test_devanagari, 8, &Control, &State, 0, 8, devanagari_c, devanagari_g);
1246 SelectObject(hdc, hfont_orig);
1247 DeleteObject(hfont);
1250 test_valid = find_font_for_range(hdc, "Vrinda", 16, test_bengali[0], &hfont, &hfont_orig);
1251 if (hfont != NULL)
1253 test_shape_ok_valid(test_valid, hdc, test_bengali, 5, &Control, &State, 0, 5, bengali_c, bengali_g);
1254 SelectObject(hdc, hfont_orig);
1255 DeleteObject(hfont);
1258 test_valid = find_font_for_range(hdc, "Raavi", 17, test_gurmukhi[0], &hfont, &hfont_orig);
1259 if (hfont != NULL)
1261 test_shape_ok_valid(test_valid, hdc, test_gurmukhi, 7, &Control, &State, 0, 7, gurmukhi_c, gurmukhi_g);
1262 SelectObject(hdc, hfont_orig);
1263 DeleteObject(hfont);
1266 test_valid = find_font_for_range(hdc, "Shruti", 18, test_gujarati[0], &hfont, &hfont_orig);
1267 if (hfont != NULL)
1269 test_shape_ok_valid(test_valid, hdc, test_gujarati, 7, &Control, &State, 0, 7, gujarati_c, gujarati_g);
1270 SelectObject(hdc, hfont_orig);
1271 DeleteObject(hfont);
1274 test_valid = find_font_for_range(hdc, "Kalinga", 19, test_oriya[0], &hfont, &hfont_orig);
1275 if (hfont != NULL)
1277 test_shape_ok_valid(test_valid, hdc, test_oriya, 5, &Control, &State, 0, 4, oriya_c, oriya_g);
1278 SelectObject(hdc, hfont_orig);
1279 DeleteObject(hfont);
1282 test_valid = find_font_for_range(hdc, "Latha", 20, test_tamil[0], &hfont, &hfont_orig);
1283 if (hfont != NULL)
1285 test_shape_ok_valid(test_valid, hdc, test_tamil, 5, &Control, &State, 0, 4, tamil_c, tamil_g);
1286 SelectObject(hdc, hfont_orig);
1287 DeleteObject(hfont);
1290 test_valid = find_font_for_range(hdc, "Gautami", 21, test_telugu[0], &hfont, &hfont_orig);
1291 if (hfont != NULL)
1293 test_shape_ok_valid(test_valid, hdc, test_telugu, 6, &Control, &State, 0, 6, telugu_c, telugu_g);
1294 SelectObject(hdc, hfont_orig);
1295 DeleteObject(hfont);
1298 test_valid = find_font_for_range(hdc, "Kartika", 23, test_malayalam[0], &hfont, &hfont_orig);
1299 if (hfont != NULL)
1301 test_shape_ok_valid(test_valid, hdc, test_malayalam, 6, &Control, &State, 0, 6, malayalam_c, malayalam_g);
1302 SelectObject(hdc, hfont_orig);
1303 DeleteObject(hfont);
1306 test_valid = find_font_for_range(hdc, "Tunga", 22, test_kannada[0], &hfont, &hfont_orig);
1307 if (hfont != NULL)
1309 test_shape_ok_valid(test_valid, hdc, test_kannada, 5, &Control, &State, 0, 4, kannada_c, kannada_g);
1310 SelectObject(hdc, hfont_orig);
1311 DeleteObject(hfont);
1315 static void test_ScriptShape(HDC hdc)
1317 static const WCHAR test1[] = {'w', 'i', 'n', 'e',0};
1318 static const WCHAR test2[] = {0x202B, 'i', 'n', 0x202C,0};
1319 HRESULT hr;
1320 SCRIPT_CACHE sc = NULL;
1321 WORD glyphs[4], glyphs2[4], logclust[4];
1322 SCRIPT_VISATTR attrs[4];
1323 SCRIPT_ITEM items[2];
1324 int nb;
1326 hr = ScriptItemize(test1, 4, 2, NULL, NULL, items, NULL);
1327 ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
1328 ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1330 hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, NULL, &nb);
1331 ok(hr == E_INVALIDARG, "ScriptShape should return E_INVALIDARG not %08x\n", hr);
1333 hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, attrs, NULL);
1334 ok(hr == E_INVALIDARG, "ScriptShape should return E_INVALIDARG not %08x\n", hr);
1336 hr = ScriptShape(NULL, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, attrs, &nb);
1337 ok(hr == E_PENDING, "ScriptShape should return E_PENDING not %08x\n", hr);
1339 hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, attrs, &nb);
1340 ok(broken(hr == S_OK) ||
1341 hr == E_INVALIDARG || /* Vista, W2K8 */
1342 hr == E_FAIL, /* WIN7 */
1343 "ScriptShape should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
1344 ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1346 hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, logclust, attrs, &nb);
1347 ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
1348 ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1351 memset(glyphs,-1,sizeof(glyphs));
1352 memset(logclust,-1,sizeof(logclust));
1353 memset(attrs,-1,sizeof(attrs));
1354 hr = ScriptShape(NULL, &sc, test1, 4, 4, &items[0].a, glyphs, logclust, attrs, &nb);
1355 ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
1356 ok(nb == 4, "Wrong number of items\n");
1357 ok(logclust[0] == 0, "clusters out of order\n");
1358 ok(logclust[1] == 1, "clusters out of order\n");
1359 ok(logclust[2] == 2, "clusters out of order\n");
1360 ok(logclust[3] == 3, "clusters out of order\n");
1361 ok(attrs[0].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1362 ok(attrs[1].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1363 ok(attrs[2].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1364 ok(attrs[3].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1365 ok(attrs[0].fClusterStart == 1, "fClusterStart incorrect\n");
1366 ok(attrs[1].fClusterStart == 1, "fClusterStart incorrect\n");
1367 ok(attrs[2].fClusterStart == 1, "fClusterStart incorrect\n");
1368 ok(attrs[3].fClusterStart == 1, "fClusterStart incorrect\n");
1369 ok(attrs[0].fDiacritic == 0, "fDiacritic incorrect\n");
1370 ok(attrs[1].fDiacritic == 0, "fDiacritic incorrect\n");
1371 ok(attrs[2].fDiacritic == 0, "fDiacritic incorrect\n");
1372 ok(attrs[3].fDiacritic == 0, "fDiacritic incorrect\n");
1373 ok(attrs[0].fZeroWidth == 0, "fZeroWidth incorrect\n");
1374 ok(attrs[1].fZeroWidth == 0, "fZeroWidth incorrect\n");
1375 ok(attrs[2].fZeroWidth == 0, "fZeroWidth incorrect\n");
1376 ok(attrs[3].fZeroWidth == 0, "fZeroWidth incorrect\n");
1378 ScriptFreeCache(&sc);
1379 sc = NULL;
1381 memset(glyphs2,-1,sizeof(glyphs2));
1382 memset(logclust,-1,sizeof(logclust));
1383 memset(attrs,-1,sizeof(attrs));
1384 hr = ScriptShape(hdc, &sc, test2, 4, 4, &items[0].a, glyphs2, logclust, attrs, &nb);
1385 ok(hr == S_OK, "ScriptShape should return S_OK not %08x\n", hr);
1386 ok(nb == 4, "Wrong number of items\n");
1387 ok(glyphs2[0] == 0 || broken(glyphs2[0] == 0x80), "Incorrect glyph for 0x202B\n");
1388 ok(glyphs2[3] == 0 || broken(glyphs2[3] == 0x80), "Incorrect glyph for 0x202C\n");
1389 ok(logclust[0] == 0, "clusters out of order\n");
1390 ok(logclust[1] == 1, "clusters out of order\n");
1391 ok(logclust[2] == 2, "clusters out of order\n");
1392 ok(logclust[3] == 3, "clusters out of order\n");
1393 ok(attrs[0].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1394 ok(attrs[1].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1395 ok(attrs[2].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1396 ok(attrs[3].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1397 ok(attrs[0].fClusterStart == 1, "fClusterStart incorrect\n");
1398 ok(attrs[1].fClusterStart == 1, "fClusterStart incorrect\n");
1399 ok(attrs[2].fClusterStart == 1, "fClusterStart incorrect\n");
1400 ok(attrs[3].fClusterStart == 1, "fClusterStart incorrect\n");
1401 ok(attrs[0].fDiacritic == 0, "fDiacritic incorrect\n");
1402 ok(attrs[1].fDiacritic == 0, "fDiacritic incorrect\n");
1403 ok(attrs[2].fDiacritic == 0, "fDiacritic incorrect\n");
1404 ok(attrs[3].fDiacritic == 0, "fDiacritic incorrect\n");
1405 ok(attrs[0].fZeroWidth == 0, "fZeroWidth incorrect\n");
1406 ok(attrs[1].fZeroWidth == 0, "fZeroWidth incorrect\n");
1407 ok(attrs[2].fZeroWidth == 0, "fZeroWidth incorrect\n");
1408 ok(attrs[3].fZeroWidth == 0, "fZeroWidth incorrect\n");
1410 /* modify LTR to RTL */
1411 items[0].a.fRTL = 1;
1412 memset(glyphs2,-1,sizeof(glyphs2));
1413 memset(logclust,-1,sizeof(logclust));
1414 memset(attrs,-1,sizeof(attrs));
1415 hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs2, logclust, attrs, &nb);
1416 ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
1417 ok(nb == 4, "Wrong number of items\n");
1418 ok(glyphs2[0] == glyphs[3], "Glyphs not reordered properly\n");
1419 ok(glyphs2[1] == glyphs[2], "Glyphs not reordered properly\n");
1420 ok(glyphs2[2] == glyphs[1], "Glyphs not reordered properly\n");
1421 ok(glyphs2[3] == glyphs[0], "Glyphs not reordered properly\n");
1422 ok(logclust[0] == 3, "clusters out of order\n");
1423 ok(logclust[1] == 2, "clusters out of order\n");
1424 ok(logclust[2] == 1, "clusters out of order\n");
1425 ok(logclust[3] == 0, "clusters out of order\n");
1426 ok(attrs[0].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1427 ok(attrs[1].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1428 ok(attrs[2].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1429 ok(attrs[3].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1430 ok(attrs[0].fClusterStart == 1, "fClusterStart incorrect\n");
1431 ok(attrs[1].fClusterStart == 1, "fClusterStart incorrect\n");
1432 ok(attrs[2].fClusterStart == 1, "fClusterStart incorrect\n");
1433 ok(attrs[3].fClusterStart == 1, "fClusterStart incorrect\n");
1434 ok(attrs[0].fDiacritic == 0, "fDiacritic incorrect\n");
1435 ok(attrs[1].fDiacritic == 0, "fDiacritic incorrect\n");
1436 ok(attrs[2].fDiacritic == 0, "fDiacritic incorrect\n");
1437 ok(attrs[3].fDiacritic == 0, "fDiacritic incorrect\n");
1438 ok(attrs[0].fZeroWidth == 0, "fZeroWidth incorrect\n");
1439 ok(attrs[1].fZeroWidth == 0, "fZeroWidth incorrect\n");
1440 ok(attrs[2].fZeroWidth == 0, "fZeroWidth incorrect\n");
1441 ok(attrs[3].fZeroWidth == 0, "fZeroWidth incorrect\n");
1443 ScriptFreeCache(&sc);
1446 static void test_ScriptPlace(HDC hdc)
1448 static const WCHAR test1[] = {'t', 'e', 's', 't',0};
1449 BOOL ret;
1450 HRESULT hr;
1451 SCRIPT_CACHE sc = NULL;
1452 WORD glyphs[4], logclust[4];
1453 SCRIPT_VISATTR attrs[4];
1454 SCRIPT_ITEM items[2];
1455 int nb, widths[4];
1456 GOFFSET offset[4];
1457 ABC abc[4];
1459 hr = ScriptItemize(test1, 4, 2, NULL, NULL, items, NULL);
1460 ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
1461 ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1463 hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, logclust, attrs, &nb);
1464 ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
1465 ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1467 hr = ScriptPlace(hdc, &sc, glyphs, 4, NULL, &items[0].a, widths, NULL, NULL);
1468 ok(hr == E_INVALIDARG, "ScriptPlace should return E_INVALIDARG not %08x\n", hr);
1470 hr = ScriptPlace(NULL, &sc, glyphs, 4, attrs, &items[0].a, widths, NULL, NULL);
1471 ok(broken(hr == E_PENDING) ||
1472 hr == E_INVALIDARG || /* Vista, W2K8 */
1473 hr == E_FAIL, /* WIN7 */
1474 "ScriptPlace should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
1476 hr = ScriptPlace(NULL, &sc, glyphs, 4, attrs, &items[0].a, widths, offset, NULL);
1477 ok(hr == E_PENDING, "ScriptPlace should return E_PENDING not %08x\n", hr);
1479 hr = ScriptPlace(NULL, &sc, glyphs, 4, attrs, &items[0].a, widths, NULL, abc);
1480 ok(broken(hr == E_PENDING) ||
1481 hr == E_INVALIDARG || /* Vista, W2K8 */
1482 hr == E_FAIL, /* WIN7 */
1483 "ScriptPlace should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
1485 hr = ScriptPlace(hdc, &sc, glyphs, 4, attrs, &items[0].a, widths, offset, NULL);
1486 ok(!hr, "ScriptPlace should return S_OK not %08x\n", hr);
1487 ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1489 ret = ExtTextOutW(hdc, 1, 1, 0, NULL, glyphs, 4, widths);
1490 ok(ret, "ExtTextOutW should return TRUE\n");
1492 ScriptFreeCache(&sc);
1495 static void test_ScriptItemIzeShapePlace(HDC hdc, unsigned short pwOutGlyphs[256])
1497 HRESULT hr;
1498 int iMaxProps;
1499 const SCRIPT_PROPERTIES **ppSp;
1501 int cInChars;
1502 int cMaxItems;
1503 SCRIPT_ITEM pItem[255];
1504 int pcItems;
1505 WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
1506 WCHAR TestItem2[] = {'T', 'e', 's', 't', 'b', 0};
1507 WCHAR TestItem3[] = {'T', 'e', 's', 't', 'c',' ','1','2','3',' ',' ','e','n','d',0};
1508 WCHAR TestItem4[] = {'T', 'e', 's', 't', 'd',' ',0x0684,0x0694,0x06a4,' ',' ','\r','\n','e','n','d',0};
1509 WCHAR TestItem5[] = {0x0684,'T','e','s','t','e',' ',0x0684,0x0694,0x06a4,' ',' ','e','n','d',0};
1510 WCHAR TestItem6[] = {'T', 'e', 's', 't', 'f',' ',' ',' ','\r','\n','e','n','d',0};
1512 SCRIPT_CACHE psc;
1513 int cChars;
1514 int cMaxGlyphs;
1515 unsigned short pwOutGlyphs1[256];
1516 unsigned short pwOutGlyphs2[256];
1517 unsigned short pwLogClust[256];
1518 SCRIPT_VISATTR psva[256];
1519 int pcGlyphs;
1520 int piAdvance[256];
1521 GOFFSET pGoffset[256];
1522 ABC pABC[256];
1523 int cnt;
1525 /* Start testing usp10 functions */
1526 /* This test determines that the pointer returned by ScriptGetProperties is valid
1527 * by checking a known value in the table */
1528 hr = ScriptGetProperties(&ppSp, &iMaxProps);
1529 ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
1530 trace("number of script properties %d\n", iMaxProps);
1531 ok (iMaxProps > 0, "Number of scripts returned should not be 0\n");
1532 if (iMaxProps > 0)
1533 ok( ppSp[0]->langid == 0, "Langid[0] not = to 0\n"); /* Check a known value to ensure */
1534 /* ptrs work */
1536 /* This is a valid test that will cause parsing to take place */
1537 cInChars = 5;
1538 cMaxItems = 255;
1539 hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1540 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1541 /* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
1542 * returned. */
1543 ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
1544 if (pcItems > 0)
1545 ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
1546 "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1547 pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
1549 /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
1550 * ie. ScriptItemize has succeeded and that pItem has been set */
1551 cInChars = 5;
1552 if (hr == 0) {
1553 psc = NULL; /* must be null on first call */
1554 cChars = cInChars;
1555 cMaxGlyphs = cInChars;
1556 hr = ScriptShape(NULL, &psc, TestItem1, cChars,
1557 cMaxGlyphs, &pItem[0].a,
1558 pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1559 ok (hr == E_PENDING, "If psc is NULL (%08x) the E_PENDING should be returned\n", hr);
1560 cMaxGlyphs = 4;
1561 hr = ScriptShape(hdc, &psc, TestItem1, cChars,
1562 cMaxGlyphs, &pItem[0].a,
1563 pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1564 ok (hr == E_OUTOFMEMORY, "If not enough output area cChars (%d) is > than CMaxGlyphs "
1565 "(%d) but not E_OUTOFMEMORY\n",
1566 cChars, cMaxGlyphs);
1567 cMaxGlyphs = 256;
1568 hr = ScriptShape(hdc, &psc, TestItem1, cChars,
1569 cMaxGlyphs, &pItem[0].a,
1570 pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1571 ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1572 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1573 ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1574 if (hr ==0) {
1575 hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1576 pGoffset, pABC);
1577 ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", hr);
1578 hr = ScriptPlace(NULL, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1579 pGoffset, pABC);
1580 ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", hr);
1581 for (cnt=0; cnt < pcGlyphs; cnt++)
1582 pwOutGlyphs[cnt] = pwOutGlyphs1[cnt]; /* Send to next function */
1585 /* This test will check to make sure that SCRIPT_CACHE is reused and that not translation *
1586 * takes place if fNoGlyphIndex is set. */
1588 cInChars = 5;
1589 cMaxItems = 255;
1590 hr = ScriptItemize(TestItem2, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1591 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1592 /* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
1593 * returned. */
1594 ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
1595 "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1596 pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
1597 /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue */
1598 if (hr == 0) {
1599 cChars = cInChars;
1600 cMaxGlyphs = 256;
1601 pItem[0].a.fNoGlyphIndex = 1; /* say no translate */
1602 hr = ScriptShape(NULL, &psc, TestItem2, cChars,
1603 cMaxGlyphs, &pItem[0].a,
1604 pwOutGlyphs2, pwLogClust, psva, &pcGlyphs);
1605 ok (hr != E_PENDING, "If psc should not be NULL (%08x) and the E_PENDING should be returned\n", hr);
1606 ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1607 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1608 ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1609 for (cnt=0; cnt < cChars && TestItem2[cnt] == pwOutGlyphs2[cnt]; cnt++) {}
1610 ok (cnt == cChars, "Translation to place when told not to. WCHAR %d - %04x != %04x\n",
1611 cnt, TestItem2[cnt], pwOutGlyphs2[cnt]);
1612 if (hr ==0) {
1613 hr = ScriptPlace(hdc, &psc, pwOutGlyphs2, pcGlyphs, psva, &pItem[0].a, piAdvance,
1614 pGoffset, pABC);
1615 ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", hr);
1618 ScriptFreeCache( &psc);
1619 ok (!psc, "psc is not null after ScriptFreeCache\n");
1623 /* This is a valid test that will cause parsing to take place and create 3 script_items */
1624 cInChars = (sizeof(TestItem3)/2)-1;
1625 cMaxItems = 255;
1626 hr = ScriptItemize(TestItem3, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1627 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1628 if (hr == 0)
1630 ok (pcItems == 3, "The number of SCRIPT_ITEMS should be 3 not %d\n", pcItems);
1631 if (pcItems > 2)
1633 ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == 6,
1634 "Start pos [0] not = 0 (%d) or end pos [1] not = %d\n",
1635 pItem[0].iCharPos, pItem[1].iCharPos);
1636 ok (pItem[1].iCharPos == 6 && pItem[2].iCharPos == 11,
1637 "Start pos [1] not = 6 (%d) or end pos [2] not = 11 (%d)\n",
1638 pItem[1].iCharPos, pItem[2].iCharPos);
1639 ok (pItem[2].iCharPos == 11 && pItem[3].iCharPos == cInChars,
1640 "Start pos [2] not = 11 (%d) or end [3] pos not = 14 (%d), cInChars = %d\n",
1641 pItem[2].iCharPos, pItem[3].iCharPos, cInChars);
1645 /* This is a valid test that will cause parsing to take place and create 5 script_items */
1646 cInChars = (sizeof(TestItem4)/2)-1;
1647 cMaxItems = 255;
1648 hr = ScriptItemize(TestItem4, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1649 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1650 if (hr == 0)
1652 ok (pcItems == 5, "The number of SCRIPT_ITEMS should be 5 not %d\n", pcItems);
1653 if (pcItems > 4)
1655 ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == 6,
1656 "Start pos [0] not = 0 (%d) or end pos [1] not = %d\n",
1657 pItem[0].iCharPos, pItem[1].iCharPos);
1658 ok (pItem[0].a.s.uBidiLevel == 0, "Should have been bidi=0 not %d\n",
1659 pItem[0].a.s.uBidiLevel);
1660 ok (pItem[1].iCharPos == 6 && pItem[2].iCharPos == 11,
1661 "Start pos [1] not = 6 (%d) or end pos [2] not = 11 (%d)\n",
1662 pItem[1].iCharPos, pItem[2].iCharPos);
1663 ok (pItem[1].a.s.uBidiLevel == 1, "Should have been bidi=1 not %d\n",
1664 pItem[1].a.s.uBidiLevel);
1665 ok (pItem[2].iCharPos == 11 && pItem[3].iCharPos == 12,
1666 "Start pos [2] not = 11 (%d) or end [3] pos not = 12 (%d)\n",
1667 pItem[2].iCharPos, pItem[3].iCharPos);
1668 ok (pItem[2].a.s.uBidiLevel == 0, "Should have been bidi=0 not %d\n",
1669 pItem[2].a.s.uBidiLevel);
1670 ok (pItem[3].iCharPos == 12 && pItem[4].iCharPos == 13,
1671 "Start pos [3] not = 12 (%d) or end [4] pos not = 13 (%d)\n",
1672 pItem[3].iCharPos, pItem[4].iCharPos);
1673 ok (pItem[3].a.s.uBidiLevel == 0, "Should have been bidi=0 not %d\n",
1674 pItem[3].a.s.uBidiLevel);
1675 ok (pItem[4].iCharPos == 13 && pItem[5].iCharPos == cInChars,
1676 "Start pos [4] not = 13 (%d) or end [5] pos not = 16 (%d), cInChars = %d\n",
1677 pItem[4].iCharPos, pItem[5].iCharPos, cInChars);
1682 * This test is for when the first unicode character requires bidi support
1684 cInChars = (sizeof(TestItem5)-1)/sizeof(WCHAR);
1685 hr = ScriptItemize(TestItem5, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1686 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1687 ok (pcItems == 4, "There should have been 4 items, found %d\n", pcItems);
1688 ok (pItem[0].a.s.uBidiLevel == 1, "The first character should have been bidi=1 not %d\n",
1689 pItem[0].a.s.uBidiLevel);
1691 /* This test checks to make sure that the test to see if there are sufficient buffers to store *
1692 * the pointer to the last char works. Note that windows often needs a greater number of *
1693 * SCRIPT_ITEMS to process a string than is returned in pcItems. */
1694 cInChars = (sizeof(TestItem6)/2)-1;
1695 cMaxItems = 4;
1696 hr = ScriptItemize(TestItem6, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1697 ok (hr == E_OUTOFMEMORY, "ScriptItemize should return E_OUTOFMEMORY, returned %08x\n", hr);
1701 static void test_ScriptGetCMap(HDC hdc, unsigned short pwOutGlyphs[256])
1703 HRESULT hr;
1704 SCRIPT_CACHE psc = NULL;
1705 int cInChars;
1706 int cChars;
1707 unsigned short pwOutGlyphs2[256];
1708 unsigned short pwOutGlyphs3[256];
1709 DWORD dwFlags;
1710 int cnt;
1712 static const WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
1713 static const WCHAR TestItem2[] = {0x202B, 'i', 'n', 0x202C,0};
1714 static const WCHAR TestItem3[] = {'a','b','c','d','(','<','{','[',0x2039,0};
1715 static const WCHAR TestItem3b[] = {'a','b','c','d',')','>','}',']',0x203A,0};
1717 /* Check to make sure that SCRIPT_CACHE gets allocated ok */
1718 dwFlags = 0;
1719 cInChars = cChars = 5;
1720 /* Some sanity checks for ScriptGetCMap */
1722 hr = ScriptGetCMap(NULL, NULL, NULL, 0, 0, NULL);
1723 ok( hr == E_INVALIDARG, "(NULL,NULL,NULL,0,0,NULL), "
1724 "expected E_INVALIDARG, got %08x\n", hr);
1726 hr = ScriptGetCMap(NULL, NULL, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
1727 ok( hr == E_INVALIDARG, "(NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
1728 "expected E_INVALIDARG, got %08x\n", hr);
1730 /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1731 psc = NULL;
1732 hr = ScriptGetCMap(NULL, &psc, TestItem1, cInChars, 0, pwOutGlyphs3);
1733 ok( hr == E_PENDING, "(NULL,&psc,NULL,0,0,NULL), expected E_PENDING, "
1734 "got %08x\n", hr);
1735 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1737 /* Set psc to NULL but add hdc, to be able to check if a pointer is returned in psc */
1738 psc = NULL;
1739 hr = ScriptGetCMap(hdc, &psc, TestItem1, cInChars, 0, pwOutGlyphs3);
1740 ok( hr == S_OK, "ScriptGetCMap(NULL,&psc,NULL,0,0,NULL), expected S_OK, "
1741 "got %08x\n", hr);
1742 ok( psc != NULL, "ScritpGetCMap expected psc to be not NULL\n");
1743 ScriptFreeCache( &psc);
1745 /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1746 psc = NULL;
1747 hr = ScriptGetCMap(NULL, &psc, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
1748 ok( hr == E_PENDING, "(NULL,&psc,), expected E_PENDING, got %08x\n", hr);
1749 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1750 /* Check to see if the results are the same as those returned by ScriptShape */
1751 hr = ScriptGetCMap(hdc, &psc, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
1752 ok (hr == 0, "ScriptGetCMap should return 0 not (%08x)\n", hr);
1753 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1754 for (cnt=0; cnt < cChars && pwOutGlyphs[cnt] == pwOutGlyphs3[cnt]; cnt++) {}
1755 ok (cnt == cInChars, "Translation not correct. WCHAR %d - %04x != %04x\n",
1756 cnt, pwOutGlyphs[cnt], pwOutGlyphs3[cnt]);
1758 ScriptFreeCache( &psc);
1759 ok (!psc, "psc is not null after ScriptFreeCache\n");
1761 cInChars = cChars = 4;
1762 hr = ScriptGetCMap(hdc, &psc, TestItem2, cInChars, dwFlags, pwOutGlyphs3);
1763 ok (hr == S_FALSE, "ScriptGetCMap should return S_FALSE not (%08x)\n", hr);
1764 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1765 ok(pwOutGlyphs3[0] == 0 || broken(pwOutGlyphs3[0] == 0x80), "Glyph 0 should be default glyph\n");
1766 ok(pwOutGlyphs3[3] == 0 || broken(pwOutGlyphs3[0] == 0x80), "Glyph 0 should be default glyph\n");
1769 cInChars = cChars = 9;
1770 hr = ScriptGetCMap(hdc, &psc, TestItem3b, cInChars, dwFlags, pwOutGlyphs2);
1771 ok (hr == S_OK, "ScriptGetCMap should return S_OK not (%08x)\n", hr);
1772 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1774 cInChars = cChars = 9;
1775 dwFlags = SGCM_RTL;
1776 hr = ScriptGetCMap(hdc, &psc, TestItem3, cInChars, dwFlags, pwOutGlyphs3);
1777 ok (hr == S_OK, "ScriptGetCMap should return S_OK not (%08x)\n", hr);
1778 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1779 ok(pwOutGlyphs3[0] == pwOutGlyphs2[0], "glyph incorrectly altered\n");
1780 ok(pwOutGlyphs3[1] == pwOutGlyphs2[1], "glyph incorreclty altered\n");
1781 ok(pwOutGlyphs3[2] == pwOutGlyphs2[2], "glyph incorreclty altered\n");
1782 ok(pwOutGlyphs3[3] == pwOutGlyphs2[3], "glyph incorreclty altered\n");
1783 ok(pwOutGlyphs3[4] == pwOutGlyphs2[4], "glyph not mirrored correctly\n");
1784 ok(pwOutGlyphs3[5] == pwOutGlyphs2[5], "glyph not mirrored correctly\n");
1785 ok(pwOutGlyphs3[6] == pwOutGlyphs2[6], "glyph not mirrored correctly\n");
1786 ok(pwOutGlyphs3[7] == pwOutGlyphs2[7], "glyph not mirrored correctly\n");
1787 ok(pwOutGlyphs3[8] == pwOutGlyphs2[8], "glyph not mirrored correctly\n");
1789 ScriptFreeCache( &psc);
1790 ok (!psc, "psc is not null after ScriptFreeCache\n");
1793 static void test_ScriptGetFontProperties(HDC hdc)
1795 HRESULT hr;
1796 SCRIPT_CACHE psc,old_psc;
1797 SCRIPT_FONTPROPERTIES sfp;
1799 /* Some sanity checks for ScriptGetFontProperties */
1801 hr = ScriptGetFontProperties(NULL,NULL,NULL);
1802 ok( hr == E_INVALIDARG, "(NULL,NULL,NULL), expected E_INVALIDARG, got %08x\n", hr);
1804 hr = ScriptGetFontProperties(NULL,NULL,&sfp);
1805 ok( hr == E_INVALIDARG, "(NULL,NULL,&sfp), expected E_INVALIDARG, got %08x\n", hr);
1807 /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1808 psc = NULL;
1809 hr = ScriptGetFontProperties(NULL,&psc,NULL);
1810 ok( hr == E_INVALIDARG, "(NULL,&psc,NULL), expected E_INVALIDARG, got %08x\n", hr);
1811 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1813 /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1814 psc = NULL;
1815 hr = ScriptGetFontProperties(NULL,&psc,&sfp);
1816 ok( hr == E_PENDING, "(NULL,&psc,&sfp), expected E_PENDING, got %08x\n", hr);
1817 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1819 hr = ScriptGetFontProperties(hdc,NULL,NULL);
1820 ok( hr == E_INVALIDARG, "(hdc,NULL,NULL), expected E_INVALIDARG, got %08x\n", hr);
1822 hr = ScriptGetFontProperties(hdc,NULL,&sfp);
1823 ok( hr == E_INVALIDARG, "(hdc,NULL,&sfp), expected E_INVALIDARG, got %08x\n", hr);
1825 /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1826 psc = NULL;
1827 hr = ScriptGetFontProperties(hdc,&psc,NULL);
1828 ok( hr == E_INVALIDARG, "(hdc,&psc,NULL), expected E_INVALIDARG, got %08x\n", hr);
1829 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1831 /* Pass an invalid sfp */
1832 psc = NULL;
1833 sfp.cBytes = sizeof(SCRIPT_FONTPROPERTIES) - 1;
1834 hr = ScriptGetFontProperties(hdc,&psc,&sfp);
1835 ok( hr == E_INVALIDARG, "(hdc,&psc,&sfp) invalid, expected E_INVALIDARG, got %08x\n", hr);
1836 ok( psc != NULL, "Expected a pointer in psc, got NULL\n");
1837 ScriptFreeCache(&psc);
1838 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1840 /* Give it the correct cBytes, we don't care about what's coming back */
1841 sfp.cBytes = sizeof(SCRIPT_FONTPROPERTIES);
1842 psc = NULL;
1843 hr = ScriptGetFontProperties(hdc,&psc,&sfp);
1844 ok( hr == S_OK, "(hdc,&psc,&sfp) partly initialized, expected S_OK, got %08x\n", hr);
1845 ok( psc != NULL, "Expected a pointer in psc, got NULL\n");
1847 /* Save the psc pointer */
1848 old_psc = psc;
1849 /* Now a NULL hdc again */
1850 hr = ScriptGetFontProperties(NULL,&psc,&sfp);
1851 ok( hr == S_OK, "(NULL,&psc,&sfp), expected S_OK, got %08x\n", hr);
1852 ok( psc == old_psc, "Expected psc not to be changed, was %p is now %p\n", old_psc, psc);
1853 ScriptFreeCache(&psc);
1854 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1857 static void test_ScriptTextOut(HDC hdc)
1859 HRESULT hr;
1861 int cInChars;
1862 int cMaxItems;
1863 SCRIPT_ITEM pItem[255];
1864 int pcItems;
1865 WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
1867 SCRIPT_CACHE psc;
1868 int cChars;
1869 int cMaxGlyphs;
1870 unsigned short pwOutGlyphs1[256];
1871 WORD pwLogClust[256];
1872 SCRIPT_VISATTR psva[256];
1873 int pcGlyphs;
1874 int piAdvance[256];
1875 GOFFSET pGoffset[256];
1876 ABC pABC[256];
1877 RECT rect;
1878 int piX;
1879 int iCP = 1;
1880 BOOL fTrailing = FALSE;
1881 SCRIPT_LOGATTR *psla;
1882 SCRIPT_LOGATTR sla[256];
1884 /* This is a valid test that will cause parsing to take place */
1885 cInChars = 5;
1886 cMaxItems = 255;
1887 hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1888 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1889 /* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
1890 * returned. */
1891 ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
1892 if (pcItems > 0)
1893 ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
1894 "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1895 pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
1897 /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
1898 * ie. ScriptItemize has succeeded and that pItem has been set */
1899 cInChars = 5;
1900 if (hr == 0) {
1901 psc = NULL; /* must be null on first call */
1902 cChars = cInChars;
1903 cMaxGlyphs = 256;
1904 hr = ScriptShape(hdc, &psc, TestItem1, cChars,
1905 cMaxGlyphs, &pItem[0].a,
1906 pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1907 ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1908 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1909 ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1910 if (hr ==0) {
1911 /* Note hdc is needed as glyph info is not yet in psc */
1912 hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1913 pGoffset, pABC);
1914 ok (hr == 0, "Should return 0 not (%08x)\n", hr);
1915 ScriptFreeCache(&psc); /* Get rid of psc for next test set */
1916 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1918 hr = ScriptTextOut(NULL, NULL, 0, 0, 0, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, NULL);
1919 ok (hr == E_INVALIDARG, "Should return 0 not (%08x)\n", hr);
1921 hr = ScriptTextOut(NULL, NULL, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1922 piAdvance, NULL, pGoffset);
1923 ok( hr == E_INVALIDARG, "(NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
1924 "expected E_INVALIDARG, got %08x\n", hr);
1926 /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1927 psc = NULL;
1928 hr = ScriptTextOut(NULL, &psc, 0, 0, 0, NULL, NULL, NULL, 0, NULL, 0,
1929 NULL, NULL, NULL);
1930 ok( hr == E_INVALIDARG, "(NULL,&psc,NULL,0,0,0,NULL,), expected E_INVALIDARG, "
1931 "got %08x\n", hr);
1932 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1934 /* hdc is required for this one rather than the usual optional */
1935 psc = NULL;
1936 hr = ScriptTextOut(NULL, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1937 piAdvance, NULL, pGoffset);
1938 ok( hr == E_INVALIDARG, "(NULL,&psc,), expected E_INVALIDARG, got %08x\n", hr);
1939 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1941 /* Set that it returns 0 status */
1942 hr = ScriptTextOut(hdc, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1943 piAdvance, NULL, pGoffset);
1944 ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
1946 /* Test Rect Rgn is acceptable */
1947 rect.top = 10;
1948 rect.bottom = 20;
1949 rect.left = 10;
1950 rect.right = 40;
1951 hr = ScriptTextOut(hdc, &psc, 0, 0, 0, &rect, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1952 piAdvance, NULL, pGoffset);
1953 ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
1955 iCP = 1;
1956 hr = ScriptCPtoX(iCP, fTrailing, cChars, pcGlyphs, (const WORD *) &pwLogClust,
1957 (const SCRIPT_VISATTR *) &psva, (const int *)&piAdvance, &pItem[0].a, &piX);
1958 ok(hr == S_OK, "ScriptCPtoX Stub should return S_OK not %08x\n", hr);
1960 psla = (SCRIPT_LOGATTR *)&sla;
1961 hr = ScriptBreak(TestItem1, cChars, &pItem[0].a, psla);
1962 ok(hr == S_OK, "ScriptBreak Stub should return S_OK not %08x\n", hr);
1964 /* Clean up and go */
1965 ScriptFreeCache(&psc);
1966 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1971 static void test_ScriptTextOut2(HDC hdc)
1973 /* Intent is to validate that the HDC passed into ScriptTextOut is
1974 * used instead of the (possibly) invalid cached one
1976 HRESULT hr;
1978 HDC hdc1, hdc2;
1979 int cInChars;
1980 int cMaxItems;
1981 SCRIPT_ITEM pItem[255];
1982 int pcItems;
1983 WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
1985 SCRIPT_CACHE psc;
1986 int cChars;
1987 int cMaxGlyphs;
1988 unsigned short pwOutGlyphs1[256];
1989 WORD pwLogClust[256];
1990 SCRIPT_VISATTR psva[256];
1991 int pcGlyphs;
1992 int piAdvance[256];
1993 GOFFSET pGoffset[256];
1994 ABC pABC[256];
1996 /* Create an extra DC that will be used until the ScriptTextOut */
1997 hdc1 = CreateCompatibleDC(hdc);
1998 ok (hdc1 != 0, "CreateCompatibleDC failed to create a DC\n");
1999 hdc2 = CreateCompatibleDC(hdc);
2000 ok (hdc2 != 0, "CreateCompatibleDC failed to create a DC\n");
2002 /* This is a valid test that will cause parsing to take place */
2003 cInChars = 5;
2004 cMaxItems = 255;
2005 hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
2006 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
2007 /* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
2008 * returned. */
2009 ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
2010 if (pcItems > 0)
2011 ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
2012 "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
2013 pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
2015 /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
2016 * ie. ScriptItemize has succeeded and that pItem has been set */
2017 cInChars = 5;
2018 if (hr == 0) {
2019 psc = NULL; /* must be null on first call */
2020 cChars = cInChars;
2021 cMaxGlyphs = 256;
2022 hr = ScriptShape(hdc2, &psc, TestItem1, cChars,
2023 cMaxGlyphs, &pItem[0].a,
2024 pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
2025 ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
2026 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
2027 ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
2028 if (hr ==0) {
2029 /* Note hdc is needed as glyph info is not yet in psc */
2030 hr = ScriptPlace(hdc2, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
2031 pGoffset, pABC);
2032 ok (hr == 0, "Should return 0 not (%08x)\n", hr);
2034 /* key part!!! cached dc is being deleted */
2035 hr = DeleteDC(hdc2);
2036 ok(hr == 1, "DeleteDC should return 1 not %08x\n", hr);
2038 /* At this point the cached hdc (hdc2) has been destroyed,
2039 * however, we are passing in a *real* hdc (the original hdc).
2040 * The text should be written to that DC
2042 hr = ScriptTextOut(hdc1, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
2043 piAdvance, NULL, pGoffset);
2044 ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
2045 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
2047 DeleteDC(hdc1);
2049 /* Clean up and go */
2050 ScriptFreeCache(&psc);
2051 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
2056 static void test_ScriptTextOut3(HDC hdc)
2058 HRESULT hr;
2060 int cInChars;
2061 int cMaxItems;
2062 SCRIPT_ITEM pItem[255];
2063 int pcItems;
2064 WCHAR TestItem1[] = {' ','\r', 0};
2066 SCRIPT_CACHE psc;
2067 int cChars;
2068 int cMaxGlyphs;
2069 unsigned short pwOutGlyphs1[256];
2070 WORD pwLogClust[256];
2071 SCRIPT_VISATTR psva[256];
2072 int pcGlyphs;
2073 int piAdvance[256];
2074 GOFFSET pGoffset[256];
2075 ABC pABC[256];
2076 RECT rect;
2078 /* This is to ensure that nonexistent glyphs are translated into a valid glyph number */
2079 cInChars = 2;
2080 cMaxItems = 255;
2081 hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
2082 ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
2083 /* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
2084 * returned. */
2085 ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
2086 if (pcItems > 0)
2087 ok (pItem[0].iCharPos == 0 && pItem[2].iCharPos == cInChars,
2088 "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
2089 pItem[0].iCharPos, cInChars, pItem[2].iCharPos);
2091 /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
2092 * ie. ScriptItemize has succeeded and that pItem has been set */
2093 cInChars = 2;
2094 if (hr == 0) {
2095 psc = NULL; /* must be null on first call */
2096 cChars = cInChars;
2097 cMaxGlyphs = 256;
2098 hr = ScriptShape(hdc, &psc, TestItem1, cChars,
2099 cMaxGlyphs, &pItem[0].a,
2100 pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
2101 ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
2102 ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
2103 ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
2104 if (hr ==0) {
2105 /* Note hdc is needed as glyph info is not yet in psc */
2106 hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
2107 pGoffset, pABC);
2108 ok (hr == 0, "Should return 0 not (%08x)\n", hr);
2110 /* Test Rect Rgn is acceptable */
2111 rect.top = 10;
2112 rect.bottom = 20;
2113 rect.left = 10;
2114 rect.right = 40;
2115 hr = ScriptTextOut(hdc, &psc, 0, 0, 0, &rect, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
2116 piAdvance, NULL, pGoffset);
2117 ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
2120 /* Clean up and go */
2121 ScriptFreeCache(&psc);
2122 ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
2126 #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)
2128 static void _test_item_ScriptXtoX(SCRIPT_ANALYSIS *psa, int cChars, int cGlyphs, const int* offsets, const WORD *pwLogClust, const int* piAdvance )
2130 int iX, iCP;
2131 int icChars, icGlyphs;
2132 int piCP, piX;
2133 HRESULT hr;
2134 SCRIPT_VISATTR psva[10];
2135 int piTrailing;
2136 BOOL fTrailing;
2137 int direction;
2139 memset(psva,0,sizeof(psva));
2140 direction = (psa->fRTL)?-1:+1;
2142 for(iCP = 0; iCP < cChars; iCP++)
2144 iX = offsets[iCP];
2145 icChars = cChars;
2146 icGlyphs = cGlyphs;
2147 hr = ScriptXtoCP(iX, icChars, icGlyphs, pwLogClust, psva, piAdvance, psa, &piCP, &piTrailing);
2148 winetest_ok(hr == S_OK, "ScriptXtoCP: should return S_OK not %08x\n", hr);
2149 winetest_ok(piCP == iCP, "ScriptXtoCP: iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
2150 winetest_ok(piTrailing == 0, "ScriptXtoCP: iX=%d should return piTrailing=0 not %d\n", iX, piTrailing);
2153 for(iCP = 0; iCP < cChars; iCP++)
2155 iX = offsets[iCP]+direction;
2156 icChars = cChars;
2157 icGlyphs = cGlyphs;
2158 hr = ScriptXtoCP(iX, icChars, icGlyphs, pwLogClust, psva, piAdvance, psa, &piCP, &piTrailing);
2159 winetest_ok(hr == S_OK, "ScriptXtoCP leading: should return S_OK not %08x\n", hr);
2160 winetest_ok(piCP == iCP, "ScriptXtoCP leading: iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
2161 winetest_ok(piTrailing == 0, "ScriptXtoCP leading: iX=%d should return piTrailing=0 not %d\n", iX, piTrailing);
2164 for(iCP = 0; iCP < cChars; iCP++)
2166 iX = offsets[iCP+1]-direction;
2167 icChars = cChars;
2168 icGlyphs = cGlyphs;
2169 hr = ScriptXtoCP(iX, icChars, icGlyphs, pwLogClust, psva, piAdvance, psa, &piCP, &piTrailing);
2170 winetest_ok(hr == S_OK, "ScriptXtoCP trailing: should return S_OK not %08x\n", hr);
2171 winetest_ok(piCP == iCP, "ScriptXtoCP trailing: iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
2172 winetest_ok(piTrailing == 1, "ScriptXtoCP trailing: iX=%d should return piTrailing=1 not %d\n", iX, piTrailing);
2175 for(iCP = 0; iCP <= cChars+1; iCP++)
2177 fTrailing = FALSE;
2178 icChars = cChars;
2179 icGlyphs = cGlyphs;
2180 hr = ScriptCPtoX(iCP, fTrailing, icChars, icGlyphs, pwLogClust, psva, piAdvance, psa, &piX);
2181 winetest_ok(hr == S_OK, "ScriptCPtoX: should return S_OK not %08x\n", hr);
2182 winetest_ok(piX == offsets[iCP],
2183 "ScriptCPtoX: iCP=%d should return piX=%d not %d\n", iCP, offsets[iCP], piX);
2186 for(iCP = 0; iCP <= cChars+1; iCP++)
2188 fTrailing = TRUE;
2189 icChars = cChars;
2190 icGlyphs = cGlyphs;
2191 hr = ScriptCPtoX(iCP, fTrailing, icChars, icGlyphs, pwLogClust, psva, piAdvance, psa, &piX);
2192 winetest_ok(hr == S_OK, "ScriptCPtoX trailing: should return S_OK not %08x\n", hr);
2193 winetest_ok(piX == offsets[iCP+1],
2194 "ScriptCPtoX trailing: iCP=%d should return piX=%d not %d\n", iCP, offsets[iCP+1], piX);
2198 static void test_ScriptXtoX(void)
2199 /****************************************************************************************
2200 * This routine tests the ScriptXtoCP and ScriptCPtoX functions using static variables *
2201 ****************************************************************************************/
2203 WORD pwLogClust[10] = {0, 0, 0, 1, 1, 2, 2, 3, 3, 3};
2204 WORD pwLogClust_RTL[10] = {3, 3, 3, 2, 2, 1, 1, 0, 0, 0};
2205 WORD pwLogClust_2[7] = {4, 3, 3, 2, 1, 0 ,0};
2206 int piAdvance[10] = {201, 190, 210, 180, 170, 204, 189, 195, 212, 203};
2207 int piAdvance_2[5] = {39, 26, 19, 17, 11};
2208 static const int offsets[13] = {0, 67, 134, 201, 296, 391, 496, 601, 1052, 1503, 1954, 1954, 1954};
2209 static const int offsets_RTL[13] = {781, 721, 661, 601, 496, 391, 296, 201, 134, 67, 0, 0, 0};
2210 static const int offsets_2[10] = {112, 101, 92, 84, 65, 39, 19, 0, 0, 0};
2211 SCRIPT_VISATTR psva[10];
2212 SCRIPT_ANALYSIS sa;
2213 int iX;
2214 int piCP;
2215 int piTrailing;
2216 HRESULT hr;
2218 memset(&sa, 0 , sizeof(SCRIPT_ANALYSIS));
2219 memset(psva, 0, sizeof(psva));
2221 sa.fRTL = FALSE;
2222 hr = ScriptXtoCP(-1, 10, 10, pwLogClust, psva, piAdvance, &sa, &piCP, &piTrailing);
2223 ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
2224 if (piTrailing)
2225 ok(piCP == -1, "Negative iX should return piCP=-1 not %d\n", piCP);
2226 else /* win2k3 */
2227 ok(piCP == 10, "Negative iX should return piCP=10 not %d\n", piCP);
2229 for (iX = 0; iX <= 7; iX++)
2231 WORD clust = 0;
2232 INT advance = 16;
2233 hr = ScriptXtoCP(iX, 1, 1, &clust, psva, &advance, &sa, &piCP, &piTrailing);
2234 ok(piCP==0 && piTrailing==0,"%i should return 0(%i) and 0(%i)\n",iX, piCP,piTrailing);
2236 for (iX = 8; iX < 16; iX++)
2238 WORD clust = 0;
2239 INT advance = 16;
2240 hr = ScriptXtoCP(iX, 1, 1, &clust, psva, &advance, &sa, &piCP, &piTrailing);
2241 ok(piCP==0 && piTrailing==1,"%i should return 0(%i) and 1(%i)\n",iX, piCP,piTrailing);
2244 sa.fRTL = TRUE;
2245 hr = ScriptXtoCP(-1, 10, 10, pwLogClust_RTL, psva, piAdvance, &sa, &piCP, &piTrailing);
2246 ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
2247 if (piTrailing)
2248 ok(piCP == -1, "Negative iX should return piCP=-1 not %d\n", piCP);
2249 else /* win2k3 */
2250 ok(piCP == 10, "Negative iX should return piCP=10 not %d\n", piCP);
2252 iX = 1954;
2253 hr = ScriptXtoCP(1954, 10, 10, pwLogClust_RTL, psva, piAdvance, &sa, &piCP, &piTrailing);
2254 ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
2255 ok(piCP == -1, "iX=%d should return piCP=-1 not %d\n", iX, piCP);
2256 ok(piTrailing == 1, "iX=%d should return piTrailing=1 not %d\n", iX, piTrailing);
2258 for (iX = 1; iX <= 8; iX++)
2260 WORD clust = 0;
2261 INT advance = 16;
2262 hr = ScriptXtoCP(iX, 1, 1, &clust, psva, &advance, &sa, &piCP, &piTrailing);
2263 ok(piCP==0 && piTrailing==1,"%i should return 0(%i) and 1(%i)\n",iX,piCP,piTrailing);
2265 for (iX = 9; iX < 16; iX++)
2267 WORD clust = 0;
2268 INT advance = 16;
2269 hr = ScriptXtoCP(iX, 1, 1, &clust, psva, &advance, &sa, &piCP, &piTrailing);
2270 ok(piCP==0 && piTrailing==0,"%i should return 0(%i) and 0(%i)\n",iX,piCP,piTrailing);
2273 sa.fRTL = FALSE;
2274 test_item_ScriptXtoX(&sa, 10, 10, offsets, pwLogClust, piAdvance);
2275 sa.fRTL = TRUE;
2276 test_item_ScriptXtoX(&sa, 10, 10, offsets_RTL, pwLogClust_RTL, piAdvance);
2277 test_item_ScriptXtoX(&sa, 7, 5, offsets_2, pwLogClust_2, piAdvance_2);
2280 static void test_ScriptString(HDC hdc)
2282 /*******************************************************************************************
2284 * This set of tests are for the string functions of uniscribe. The ScriptStringAnalyse
2285 * function allocates memory pointed to by the SCRIPT_STRING_ANALYSIS ssa pointer. This
2286 * memory is freed by ScriptStringFree. There needs to be a valid hdc for this as
2287 * ScriptStringAnalyse calls ScriptSItemize, ScriptShape and ScriptPlace which require it.
2291 HRESULT hr;
2292 WCHAR teststr[] = {'T','e','s','t','1',' ','a','2','b','3', '\0'};
2293 int len = (sizeof(teststr) / sizeof(WCHAR)) - 1;
2294 int Glyphs = len * 2 + 16;
2295 int Charset;
2296 DWORD Flags = SSA_GLYPHS;
2297 int ReqWidth = 100;
2298 const int Dx[5] = {10, 10, 10, 10, 10};
2299 const BYTE InClass = 0;
2300 SCRIPT_STRING_ANALYSIS ssa = NULL;
2302 int X = 10;
2303 int Y = 100;
2304 UINT Options = 0;
2305 const RECT rc = {0, 50, 100, 100};
2306 int MinSel = 0;
2307 int MaxSel = 0;
2308 BOOL Disabled = FALSE;
2309 const int *clip_len;
2310 int i;
2311 UINT *order;
2314 Charset = -1; /* this flag indicates unicode input */
2315 /* Test without hdc to get E_PENDING */
2316 hr = ScriptStringAnalyse( NULL, teststr, len, Glyphs, Charset, Flags,
2317 ReqWidth, NULL, NULL, Dx, NULL,
2318 &InClass, &ssa);
2319 ok(hr == E_PENDING, "ScriptStringAnalyse Stub should return E_PENDING not %08x\n", hr);
2321 /* test with hdc, this should be a valid test */
2322 hr = ScriptStringAnalyse( hdc, teststr, len, Glyphs, Charset, Flags,
2323 ReqWidth, NULL, NULL, Dx, NULL,
2324 &InClass, &ssa);
2325 ok(hr == S_OK, "ScriptStringAnalyse should return S_OK not %08x\n", hr);
2326 ScriptStringFree(&ssa);
2328 /* test makes sure that a call with a valid pssa still works */
2329 hr = ScriptStringAnalyse( hdc, teststr, len, Glyphs, Charset, Flags,
2330 ReqWidth, NULL, NULL, Dx, NULL,
2331 &InClass, &ssa);
2332 ok(hr == S_OK, "ScriptStringAnalyse should return S_OK not %08x\n", hr);
2333 ok(ssa != NULL, "ScriptStringAnalyse pssa should not be NULL\n");
2335 if (hr == S_OK)
2337 hr = ScriptStringOut(ssa, X, Y, Options, &rc, MinSel, MaxSel, Disabled);
2338 ok(hr == S_OK, "ScriptStringOut should return S_OK not %08x\n", hr);
2341 clip_len = ScriptString_pcOutChars(ssa);
2342 ok(*clip_len == len, "ScriptString_pcOutChars failed, got %d, expected %d\n", *clip_len, len);
2344 order = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, *clip_len * sizeof(UINT));
2345 hr = ScriptStringGetOrder(ssa, order);
2346 ok(hr == S_OK, "ScriptStringGetOrder failed, got %08x, expected S_OK\n", hr);
2348 for (i = 0; i < *clip_len; i++) ok(order[i] == i, "%d: got %d expected %d\n", i, order[i], i);
2349 HeapFree(GetProcessHeap(), 0, order);
2351 hr = ScriptStringFree(&ssa);
2352 ok(hr == S_OK, "ScriptStringFree should return S_OK not %08x\n", hr);
2355 static void test_ScriptStringXtoCP_CPtoX(HDC hdc)
2357 /*****************************************************************************************
2359 * This test is for the ScriptStringXtoCP and ScriptStringXtoCP functions. Due to the
2360 * nature of the fonts between Windows and Wine, the test is implemented by generating
2361 * values using one one function then checking the output of the second. In this way
2362 * the validity of the functions is established using Windows as a base and confirming
2363 * similar behaviour in wine.
2366 HRESULT hr;
2367 static const WCHAR teststr1[] = {0x05e9, 'i', 0x05dc, 'n', 0x05d5, 'e', 0x05dd, '.',0};
2368 static const BOOL rtl[] = {1, 0, 1, 0, 1, 0, 1, 0};
2369 void *String = (WCHAR *) &teststr1; /* ScriptStringAnalysis needs void */
2370 int String_len = (sizeof(teststr1)/sizeof(WCHAR))-1;
2371 int Glyphs = String_len * 2 + 16; /* size of buffer as recommended */
2372 int Charset = -1; /* unicode */
2373 DWORD Flags = SSA_GLYPHS;
2374 int ReqWidth = 100;
2375 const BYTE InClass = 0;
2376 SCRIPT_STRING_ANALYSIS ssa = NULL;
2378 int Ch; /* Character position in string */
2379 int iTrailing;
2380 int Cp; /* Character position in string */
2381 int X;
2382 int trail,lead;
2383 BOOL fTrailing;
2385 /* Test with hdc, this should be a valid test
2386 * Here we generate an SCRIPT_STRING_ANALYSIS that will be used as input to the
2387 * following character positions to X and X to character position functions.
2390 hr = ScriptStringAnalyse( hdc, String, String_len, Glyphs, Charset, Flags,
2391 ReqWidth, NULL, NULL, NULL, NULL,
2392 &InClass, &ssa);
2393 ok(hr == S_OK ||
2394 hr == E_INVALIDARG, /* NT */
2395 "ScriptStringAnalyse should return S_OK or E_INVALIDARG not %08x\n", hr);
2397 if (hr == S_OK)
2399 ok(ssa != NULL, "ScriptStringAnalyse ssa should not be NULL\n");
2402 * Loop to generate character positions to provide starting positions for the
2403 * ScriptStringCPtoX and ScriptStringXtoCP functions
2405 for (Cp = 0; Cp < String_len; Cp++)
2407 /* The fTrailing flag is used to indicate whether the X being returned is at
2408 * the beginning or the end of the character. What happens here is that if
2409 * fTrailing indicates the end of the character, ie. FALSE, then ScriptStringXtoCP
2410 * returns the beginning of the next character and iTrailing is FALSE. So for this
2411 * loop iTrailing will be FALSE in both cases.
2413 hr = ScriptStringCPtoX(ssa, Cp, TRUE, &trail);
2414 ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2415 hr = ScriptStringCPtoX(ssa, Cp, FALSE, &lead);
2416 ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2417 if (rtl[Cp])
2418 ok(lead > trail, "Leading values should be after trailing for rtl characters(%i)\n",Cp);
2419 else
2420 ok(lead < trail, "Trailing values should be after leading for ltr characters(%i)\n",Cp);
2422 /* move by 1 pixel so that we are not inbetween 2 characters. That could result in being the lead of a rtl and
2423 at the same time the trail of an ltr */
2425 /* inside the leading edge */
2426 X = lead;
2427 if (rtl[Cp]) X--; else X++;
2428 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2429 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2430 ok(Cp == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp, Ch, trail);
2431 ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d\n",
2432 iTrailing, X);
2434 /* inside the trailing edge */
2435 X = trail;
2436 if (rtl[Cp]) X++; else X--;
2437 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2438 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2439 ok(Cp == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp, Ch, trail);
2440 ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d\n",
2441 iTrailing, X);
2443 /* outside the "trailing" edge */
2444 if (Cp < String_len-1)
2446 if (rtl[Cp]) X = lead; else X = trail;
2447 X++;
2448 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2449 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2450 ok(Cp + 1 == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp + 1, Ch, trail);
2451 if (rtl[Cp+1])
2452 ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d\n",
2453 iTrailing, X);
2454 else
2455 ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d\n",
2456 iTrailing, X);
2459 /* outside the "leading" edge */
2460 if (Cp != 0)
2462 if (rtl[Cp]) X = trail; else X = lead;
2463 X--;
2464 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2465 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2466 ok(Cp - 1 == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp - 1, Ch, trail);
2467 if (Cp != 0 && rtl[Cp-1])
2468 ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d\n",
2469 iTrailing, X);
2470 else
2471 ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d\n",
2472 iTrailing, X);
2476 /* Check beyond the leading boundary of the whole string */
2477 if (rtl[0])
2479 /* having a leading rtl character seems to confuse usp */
2480 /* this looks to be a windows bug we should emulate */
2481 hr = ScriptStringCPtoX(ssa, 0, TRUE, &X);
2482 ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2483 X--;
2484 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2485 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2486 ok(Ch == 1, "ScriptStringXtoCP should return Ch = 1 not %d for X outside leading edge when rtl\n", Ch);
2487 ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = outside leading edge when rtl\n",
2488 iTrailing);
2490 else
2492 hr = ScriptStringCPtoX(ssa, 0, FALSE, &X);
2493 ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2494 X--;
2495 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2496 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2497 ok(Ch == -1, "ScriptStringXtoCP should return Ch = -1 not %d for X outside leading edge\n", Ch);
2498 ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = outside leading edge\n",
2499 iTrailing);
2502 /* Check beyond the end boundary of the whole string */
2503 if (rtl[String_len-1])
2505 hr = ScriptStringCPtoX(ssa, String_len-1, FALSE, &X);
2506 ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2508 else
2510 hr = ScriptStringCPtoX(ssa, String_len-1, TRUE, &X);
2511 ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2513 X++;
2514 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2515 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2516 ok(Ch == String_len, "ScriptStringXtoCP should return Ch = %i not %d for X outside trailing edge\n", String_len, Ch);
2517 ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = outside trailing edge\n",
2518 iTrailing);
2521 * Cleanup the SSA for the next round of tests
2523 hr = ScriptStringFree(&ssa);
2524 ok(hr == S_OK, "ScriptStringFree should return S_OK not %08x\n", hr);
2527 * Test to see that exceeding the number of chars returns E_INVALIDARG. First
2528 * generate an SSA for the subsequent tests.
2530 hr = ScriptStringAnalyse( hdc, String, String_len, Glyphs, Charset, Flags,
2531 ReqWidth, NULL, NULL, NULL, NULL,
2532 &InClass, &ssa);
2533 ok(hr == S_OK, "ScriptStringAnalyse should return S_OK not %08x\n", hr);
2536 * When ScriptStringCPtoX is called with a character position Cp that exceeds the
2537 * string length, return E_INVALIDARG. This also invalidates the ssa so a
2538 * ScriptStringFree should also fail.
2540 fTrailing = FALSE;
2541 Cp = String_len + 1;
2542 hr = ScriptStringCPtoX(ssa, Cp, fTrailing, &X);
2543 ok(hr == E_INVALIDARG, "ScriptStringCPtoX should return E_INVALIDARG not %08x\n", hr);
2545 ScriptStringFree(&ssa);
2549 static void test_ScriptCacheGetHeight(HDC hdc)
2551 HRESULT hr;
2552 SCRIPT_CACHE sc = NULL;
2553 LONG height;
2555 hr = ScriptCacheGetHeight(NULL, NULL, NULL);
2556 ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2558 hr = ScriptCacheGetHeight(NULL, &sc, NULL);
2559 ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2561 hr = ScriptCacheGetHeight(NULL, &sc, &height);
2562 ok(hr == E_PENDING, "expected E_PENDING, got 0x%08x\n", hr);
2564 height = 0;
2566 hr = ScriptCacheGetHeight(hdc, &sc, &height);
2567 ok(hr == S_OK, "expected S_OK, got 0x%08x\n", hr);
2568 ok(height > 0, "expected height > 0\n");
2570 ScriptFreeCache(&sc);
2573 static void test_ScriptGetGlyphABCWidth(HDC hdc)
2575 HRESULT hr;
2576 SCRIPT_CACHE sc = NULL;
2577 ABC abc;
2579 hr = ScriptGetGlyphABCWidth(NULL, NULL, 'a', NULL);
2580 ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2582 hr = ScriptGetGlyphABCWidth(NULL, &sc, 'a', NULL);
2583 ok(broken(hr == E_PENDING) ||
2584 hr == E_INVALIDARG, /* WIN7 */
2585 "expected E_INVALIDARG, got 0x%08x\n", hr);
2587 hr = ScriptGetGlyphABCWidth(NULL, &sc, 'a', &abc);
2588 ok(hr == E_PENDING, "expected E_PENDING, got 0x%08x\n", hr);
2590 if (0) { /* crashes on WinXP */
2591 hr = ScriptGetGlyphABCWidth(hdc, &sc, 'a', NULL);
2592 ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2595 hr = ScriptGetGlyphABCWidth(hdc, &sc, 'a', &abc);
2596 ok(hr == S_OK, "expected S_OK, got 0x%08x\n", hr);
2598 ScriptFreeCache(&sc);
2601 static void test_ScriptLayout(void)
2603 HRESULT hr;
2604 static const BYTE levels[][10] =
2606 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
2607 { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
2608 { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2609 { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2611 { 0, 0, 0, 0, 0, 1, 1, 1, 1, 1},
2612 { 1, 1, 1, 2, 2, 2, 1, 1, 1, 1 },
2613 { 2, 2, 2, 1, 1, 1, 2, 2, 2, 2 },
2614 { 0, 0, 1, 1, 2, 2, 1, 1, 0, 0 },
2615 { 1, 1, 2, 2, 3, 3, 2, 2, 1, 1 },
2617 { 0, 0, 1, 1, 2, 2, 1, 1, 0, 1 },
2618 { 1, 0, 1, 2, 2, 1, 2, 1, 0, 1 },
2620 static const int expect_l2v[][10] =
2622 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2623 { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2624 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2625 { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2627 { 0, 1, 2, 3, 4, 9, 8 ,7 ,6, 5},
2628 /**/ { 9, 8, 7, 4, 5, 6, 3 ,2 ,1, 0},
2629 /**/ { 7, 8, 9, 6, 5, 4, 0 ,1 ,2, 3},
2630 { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2631 { 9, 8, 2, 3, 5, 4, 6 ,7 ,1, 0},
2633 { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2634 /**/ { 0, 1, 7, 5, 6, 4, 3 ,2 ,8, 9},
2636 static const int expect_v2l[][10] =
2638 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2639 { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2640 { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2641 { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2643 { 0, 1, 2, 3, 4, 9, 8 ,7 ,6, 5},
2644 { 9, 8, 7, 6, 3, 4, 5 ,2 ,1, 0},
2645 { 6, 7, 8, 9, 5, 4, 3 ,0 ,1, 2},
2646 { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2647 { 9, 8, 2, 3, 5, 4, 6 ,7 ,1, 0},
2649 { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2650 { 0, 1, 7, 6, 5, 3, 4 ,2 ,8, 9},
2653 int i, j, vistolog[sizeof(levels[0])], logtovis[sizeof(levels[0])];
2655 hr = ScriptLayout(sizeof(levels[0]), NULL, vistolog, logtovis);
2656 ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2658 hr = ScriptLayout(sizeof(levels[0]), levels[0], NULL, NULL);
2659 ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2661 for (i = 0; i < sizeof(levels)/sizeof(levels[0]); i++)
2663 hr = ScriptLayout(sizeof(levels[0]), levels[i], vistolog, logtovis);
2664 ok(hr == S_OK, "expected S_OK, got 0x%08x\n", hr);
2666 for (j = 0; j < sizeof(levels[i]); j++)
2668 ok(expect_v2l[i][j] == vistolog[j],
2669 "failure: levels[%d][%d] = %d, vistolog[%d] = %d\n",
2670 i, j, levels[i][j], j, vistolog[j] );
2673 for (j = 0; j < sizeof(levels[i]); j++)
2675 ok(expect_l2v[i][j] == logtovis[j],
2676 "failure: levels[%d][%d] = %d, logtovis[%d] = %d\n",
2677 i, j, levels[i][j], j, logtovis[j] );
2682 static BOOL CALLBACK enum_proc(LGRPID group, LCID lcid, LPSTR locale, LONG_PTR lparam)
2684 HRESULT hr;
2685 SCRIPT_DIGITSUBSTITUTE sds;
2686 SCRIPT_CONTROL sc;
2687 SCRIPT_STATE ss;
2688 LCID lcid_old;
2690 if (!IsValidLocale(lcid, LCID_INSTALLED)) return TRUE;
2692 memset(&sds, 0, sizeof(sds));
2693 memset(&sc, 0, sizeof(sc));
2694 memset(&ss, 0, sizeof(ss));
2696 lcid_old = GetThreadLocale();
2697 if (!SetThreadLocale(lcid)) return TRUE;
2699 hr = ScriptRecordDigitSubstitution(lcid, &sds);
2700 ok(hr == S_OK, "ScriptRecordDigitSubstitution failed: 0x%08x\n", hr);
2702 hr = ScriptApplyDigitSubstitution(&sds, &sc, &ss);
2703 ok(hr == S_OK, "ScriptApplyDigitSubstitution failed: 0x%08x\n", hr);
2705 SetThreadLocale(lcid_old);
2706 return TRUE;
2709 static void test_digit_substitution(void)
2711 BOOL ret;
2712 unsigned int i;
2713 static const LGRPID groups[] =
2715 LGRPID_WESTERN_EUROPE,
2716 LGRPID_CENTRAL_EUROPE,
2717 LGRPID_BALTIC,
2718 LGRPID_GREEK,
2719 LGRPID_CYRILLIC,
2720 LGRPID_TURKISH,
2721 LGRPID_JAPANESE,
2722 LGRPID_KOREAN,
2723 LGRPID_TRADITIONAL_CHINESE,
2724 LGRPID_SIMPLIFIED_CHINESE,
2725 LGRPID_THAI,
2726 LGRPID_HEBREW,
2727 LGRPID_ARABIC,
2728 LGRPID_VIETNAMESE,
2729 LGRPID_INDIC,
2730 LGRPID_GEORGIAN,
2731 LGRPID_ARMENIAN
2733 HMODULE hKernel32;
2734 static BOOL (WINAPI * pEnumLanguageGroupLocalesA)(LANGGROUPLOCALE_ENUMPROCA,LGRPID,DWORD,LONG_PTR);
2736 hKernel32 = GetModuleHandleA("kernel32.dll");
2737 pEnumLanguageGroupLocalesA = (void*)GetProcAddress(hKernel32, "EnumLanguageGroupLocalesA");
2739 if (!pEnumLanguageGroupLocalesA)
2741 win_skip("EnumLanguageGroupLocalesA not available on this platform\n");
2742 return;
2745 for (i = 0; i < sizeof(groups)/sizeof(groups[0]); i++)
2747 ret = pEnumLanguageGroupLocalesA(enum_proc, groups[i], 0, 0);
2748 if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2750 win_skip("EnumLanguageGroupLocalesA not implemented on this platform\n");
2751 break;
2754 ok(ret, "EnumLanguageGroupLocalesA failed unexpectedly: %u\n", GetLastError());
2758 static void test_ScriptGetProperties(void)
2760 const SCRIPT_PROPERTIES **props;
2761 HRESULT hr;
2762 int num;
2764 hr = ScriptGetProperties(NULL, NULL);
2765 ok(hr == E_INVALIDARG, "ScriptGetProperties succeeded\n");
2767 hr = ScriptGetProperties(NULL, &num);
2768 ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
2770 hr = ScriptGetProperties(&props, NULL);
2771 ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
2773 hr = ScriptGetProperties(&props, &num);
2774 ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
2777 static void test_ScriptBreak(void)
2779 static const WCHAR test[] = {' ','\r','\n',0};
2780 SCRIPT_ITEM items[4];
2781 SCRIPT_LOGATTR la;
2782 HRESULT hr;
2784 hr = ScriptItemize(test, 3, 4, NULL, NULL, items, NULL);
2785 ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
2787 memset(&la, 0, sizeof(la));
2788 hr = ScriptBreak(test, 1, &items[0].a, &la);
2789 ok(!hr, "ScriptBreak should return S_OK not %08x\n", hr);
2791 ok(!la.fSoftBreak, "fSoftBreak set\n");
2792 ok(la.fWhiteSpace, "fWhiteSpace not set\n");
2793 ok(la.fCharStop, "fCharStop not set\n");
2794 ok(!la.fWordStop, "fWordStop set\n");
2795 ok(!la.fInvalid, "fInvalid set\n");
2796 ok(!la.fReserved, "fReserved set\n");
2798 memset(&la, 0, sizeof(la));
2799 hr = ScriptBreak(test + 1, 1, &items[1].a, &la);
2800 ok(!hr, "ScriptBreak should return S_OK not %08x\n", hr);
2802 ok(!la.fSoftBreak, "fSoftBreak set\n");
2803 ok(!la.fWhiteSpace, "fWhiteSpace set\n");
2804 ok(la.fCharStop, "fCharStop not set\n");
2805 ok(!la.fWordStop, "fWordStop set\n");
2806 ok(!la.fInvalid, "fInvalid set\n");
2807 ok(!la.fReserved, "fReserved set\n");
2809 memset(&la, 0, sizeof(la));
2810 hr = ScriptBreak(test + 2, 1, &items[2].a, &la);
2811 ok(!hr, "ScriptBreak should return S_OK not %08x\n", hr);
2813 ok(!la.fSoftBreak, "fSoftBreak set\n");
2814 ok(!la.fWhiteSpace, "fWhiteSpace set\n");
2815 ok(la.fCharStop, "fCharStop not set\n");
2816 ok(!la.fWordStop, "fWordStop set\n");
2817 ok(!la.fInvalid, "fInvalid set\n");
2818 ok(!la.fReserved, "fReserved set\n");
2821 static void test_newlines(void)
2823 static const WCHAR test1[] = {'t','e','x','t','\r','t','e','x','t',0};
2824 static const WCHAR test2[] = {'t','e','x','t','\n','t','e','x','t',0};
2825 static const WCHAR test3[] = {'t','e','x','t','\r','\n','t','e','x','t',0};
2826 static const WCHAR test4[] = {'t','e','x','t','\n','\r','t','e','x','t',0};
2827 static const WCHAR test5[] = {'1','2','3','4','\n','\r','1','2','3','4',0};
2828 SCRIPT_ITEM items[5];
2829 HRESULT hr;
2830 int count;
2832 count = 0;
2833 hr = ScriptItemize(test1, lstrlenW(test1), 5, NULL, NULL, items, &count);
2834 ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2835 ok(count == 3, "got %d expected 3\n", count);
2837 count = 0;
2838 hr = ScriptItemize(test2, lstrlenW(test2), 5, NULL, NULL, items, &count);
2839 ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2840 ok(count == 3, "got %d expected 3\n", count);
2842 count = 0;
2843 hr = ScriptItemize(test3, lstrlenW(test3), 5, NULL, NULL, items, &count);
2844 ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2845 ok(count == 4, "got %d expected 4\n", count);
2847 count = 0;
2848 hr = ScriptItemize(test4, lstrlenW(test4), 5, NULL, NULL, items, &count);
2849 ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2850 ok(count == 4, "got %d expected 4\n", count);
2852 count = 0;
2853 hr = ScriptItemize(test5, lstrlenW(test5), 5, NULL, NULL, items, &count);
2854 ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2855 ok(count == 4, "got %d expected 4\n", count);
2858 START_TEST(usp10)
2860 HWND hwnd;
2861 HDC hdc;
2862 LOGFONTA lf;
2863 HFONT hfont;
2865 unsigned short pwOutGlyphs[256];
2867 /* We need a valid HDC to drive a lot of Script functions which requires the following *
2868 * to set up for the tests. */
2869 hwnd = CreateWindowExA(0, "static", "", WS_POPUP, 0,0,100,100,
2870 0, 0, 0, NULL);
2871 assert(hwnd != 0);
2872 ShowWindow(hwnd, SW_SHOW);
2873 UpdateWindow(hwnd);
2875 hdc = GetDC(hwnd); /* We now have a hdc */
2876 ok( hdc != NULL, "HDC failed to be created %p\n", hdc);
2878 memset(&lf, 0, sizeof(LOGFONTA));
2879 lstrcpyA(lf.lfFaceName, "Tahoma");
2880 lf.lfHeight = 10;
2881 lf.lfWeight = 3;
2882 lf.lfWidth = 10;
2884 hfont = SelectObject(hdc, CreateFontIndirectA(&lf));
2885 ok(hfont != NULL, "SelectObject failed: %p\n", hfont);
2887 test_ScriptItemize();
2888 test_ScriptItemIzeShapePlace(hdc,pwOutGlyphs);
2889 test_ScriptGetCMap(hdc, pwOutGlyphs);
2890 test_ScriptCacheGetHeight(hdc);
2891 test_ScriptGetGlyphABCWidth(hdc);
2892 test_ScriptShape(hdc);
2893 test_ScriptShapeOpenType(hdc);
2894 test_ScriptPlace(hdc);
2896 test_ScriptGetFontProperties(hdc);
2897 test_ScriptTextOut(hdc);
2898 test_ScriptTextOut2(hdc);
2899 test_ScriptTextOut3(hdc);
2900 test_ScriptXtoX();
2901 test_ScriptString(hdc);
2902 test_ScriptStringXtoCP_CPtoX(hdc);
2904 test_ScriptLayout();
2905 test_digit_substitution();
2906 test_ScriptGetProperties();
2907 test_ScriptBreak();
2908 test_newlines();
2910 ReleaseDC(hwnd, hdc);
2911 DestroyWindow(hwnd);