usp10/tests: Add Oriya shaping test.
[wine] / dlls / usp10 / tests / usp10.c
1 /*
2  * Tests for usp10 dll
3  *
4  * Copyright 2006 Jeff Latimer
5  * Copyright 2006 Hans Leidekker
6  * Copyright 2010 CodeWeavers, Aric Stewart
7  *
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.
12  *
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.
17  *
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
21  *
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.
25  */
26
27 #include <assert.h>
28 #include <stdio.h>
29
30 #include <wine/test.h>
31 #include <windows.h>
32 #include <usp10.h>
33
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 } itemTest;
42
43 typedef struct _shapeTest_char {
44     WORD wLogClust;
45     SCRIPT_CHARPROP CharProp;
46 } shapeTest_char;
47
48 typedef struct _shapeTest_glyph {
49     int Glyph;
50     SCRIPT_GLYPHPROP GlyphProp;
51 } shapeTest_glyph;
52
53 /* Uniscribe 1.6 calls */
54 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);
55
56 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);
57
58 static DWORD (WINAPI *pGetGlyphIndicesW)(HDC hdc, LPCWSTR lpstr, INT count, LPWORD pgi, DWORD flags);
59
60 static inline void _test_items_ok(LPCWSTR string, DWORD cchString,
61                          SCRIPT_CONTROL *Control, SCRIPT_STATE *State,
62                          DWORD nItems, const itemTest* items, BOOL nItemsToDo,
63                          INT nItemsBroken)
64 {
65     HRESULT hr;
66     int x, outnItems;
67     SCRIPT_ITEM outpItems[15];
68     ULONG tags[15] = {-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1};
69
70     if (pScriptItemizeOpenType)
71         hr = pScriptItemizeOpenType(string, cchString, 15, Control, State, outpItems, tags, &outnItems);
72     else
73         hr = ScriptItemize(string, cchString, 15, Control, State, outpItems, &outnItems);
74
75     winetest_ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
76     if (nItemsBroken && broken(nItemsBroken == outnItems))
77     {
78         winetest_win_skip("This test broken on this platform\n");
79         return;
80     }
81     if (nItemsToDo)
82         todo_wine winetest_ok(outnItems == nItems, "Wrong number of items\n");
83     else
84         winetest_ok(outnItems == nItems, "Wrong number of items\n");
85     for (x = 0; x <= outnItems; x++)
86     {
87         if (items[x].todo_flag[0])
88             todo_wine winetest_ok(outpItems[x].iCharPos == items[x].iCharPos, "%i:Wrong CharPos\n",x);
89         else
90             winetest_ok(outpItems[x].iCharPos == items[x].iCharPos, "%i:Wrong CharPos (%i)\n",x,outpItems[x].iCharPos);
91
92         if (items[x].todo_flag[1])
93             todo_wine winetest_ok(outpItems[x].a.fRTL == items[x].fRTL, "%i:Wrong fRTL\n",x);
94         else
95             winetest_ok(outpItems[x].a.fRTL == items[x].fRTL, "%i:Wrong fRTL(%i)\n",x,outpItems[x].a.fRTL);
96         if (items[x].todo_flag[2])
97             todo_wine winetest_ok(outpItems[x].a.fLayoutRTL == items[x].fLayoutRTL, "%i:Wrong fLayoutRTL\n",x);
98         else
99             winetest_ok(outpItems[x].a.fLayoutRTL == items[x].fLayoutRTL, "%i:Wrong fLayoutRTL(%i)\n",x,outpItems[x].a.fLayoutRTL);
100         if (items[x].todo_flag[3])
101             todo_wine winetest_ok(outpItems[x].a.s.uBidiLevel == items[x].uBidiLevel, "%i:Wrong BidiLevel\n",x);
102         else
103             winetest_ok(outpItems[x].a.s.uBidiLevel == items[x].uBidiLevel, "%i:Wrong BidiLevel(%i)\n",x,outpItems[x].a.s.uBidiLevel);
104         if (x != outnItems)
105             winetest_ok(outpItems[x].a.eScript != SCRIPT_UNDEFINED, "%i: Undefined script\n",x);
106         if (pScriptItemizeOpenType)
107         {
108             if (items[x].todo_flag[4])
109                 todo_wine winetest_ok(tags[x] == items[x].scriptTag,"%i:Incorrect Script Tag %x != %x\n",x,tags[x],items[x].scriptTag);
110             else
111                 winetest_ok(tags[x] == items[x].scriptTag,"%i:Incorrect Script Tag %x != %x\n",x,tags[x],items[x].scriptTag);
112         }
113     }
114 }
115
116 #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)
117
118 #define MS_MAKE_TAG( _x1, _x2, _x3, _x4 ) \
119           ( ( (ULONG)_x4 << 24 ) |     \
120             ( (ULONG)_x3 << 16 ) |     \
121             ( (ULONG)_x2 <<  8 ) |     \
122               (ULONG)_x1         )
123
124 #define latn_tag MS_MAKE_TAG('l','a','t','n')
125 #define arab_tag MS_MAKE_TAG('a','r','a','b')
126 #define thai_tag MS_MAKE_TAG('t','h','a','i')
127 #define hebr_tag MS_MAKE_TAG('h','e','b','r')
128 #define syrc_tag MS_MAKE_TAG('s','y','r','c')
129 #define deva_tag MS_MAKE_TAG('d','e','v','a')
130 #define beng_tag MS_MAKE_TAG('b','e','n','g')
131 #define guru_tag MS_MAKE_TAG('g','u','r','u')
132 #define gujr_tag MS_MAKE_TAG('g','u','j','r')
133 #define orya_tag MS_MAKE_TAG('o','r','y','a')
134 #define taml_tag MS_MAKE_TAG('t','a','m','l')
135 #define telu_tag MS_MAKE_TAG('t','e','l','u')
136 #define knda_tag MS_MAKE_TAG('k','n','d','a')
137 #define mlym_tag MS_MAKE_TAG('m','l','y','m')
138
139 static void test_ScriptItemize( void )
140 {
141     static const WCHAR test1[] = {'t', 'e', 's', 't',0};
142     static const itemTest t11[2] = {{{0,0,0,0,0},0,0,0,0,latn_tag},{{0,0,0,0,0},4,0,0,0,-1}};
143     static const itemTest t12[2] = {{{0,0,0,0,0},0,0,0,2,latn_tag},{{0,0,0,0,0},4,0,0,0,-1}};
144
145     static const WCHAR test1b[] = {' ', ' ', ' ', ' ',0};
146     static const itemTest t1b1[2] = {{{0,0,0,0,0},0,0,0,0,0},{{0,0,0,0,0},4,0,0,0,-1}};
147     static const itemTest t1b2[2] = {{{0,0,0,0,0},0,1,1,1,0},{{0,0,0,0,0},4,0,0,0,-1}};
148
149     /* Arabic, English*/
150     static const WCHAR test2[] = {'1','2','3','-','5','2',0x064a,0x064f,0x0633,0x0627,0x0648,0x0650,0x064a,'7','1','.',0};
151     static const itemTest t21[7] = {{{0,0,0,0,0},0,0,0,0,0},{{0,0,0,0,0},3,0,0,0,0},{{0,0,0,0,0},4,0,0,0,0},{{0,0,0,0,0},6,1,1,1,arab_tag},{{0,0,0,0,0},13,0,0,0,0},{{0,0,0,0,0},15,0,0,0,0},{{0,0,0,0,0},16,0,0,0,-1}};
152     static const itemTest t22[5] = {{{0,0,0,1,0},0,0,0,2,0},{{0,0,0,0,0},6,1,1,1,arab_tag},{{0,0,1,0,0},13,0,1,2,0},{{0,0,0,0,0},15,0,0,0,0},{{0,0,0,0,0},16,0,0,0,-1}};
153     static const itemTest t23[5] = {{{0,0,1,0,0},0,0,1,2,0},{{0,0,0,0,0},6,1,1,1,arab_tag},{{0,0,1,0,0},13,0,1,2,0},{{0,0,0,0,0},15,1,1,1,0},{{0,0,0,0,0},16,0,0,0,-1}};
154
155     static const WCHAR test2b[] = {'A','B','C','-','D','E','F',' ',0x0621,0x0623,0x0624,0};
156     static const itemTest t2b1[5] = {{{0,0,0,0,0},0,0,0,0,latn_tag},{{0,0,0,0,0},3,0,0,0,0},{{0,0,0,0,0},4,0,0,0,latn_tag},{{0,0,0,0,0},8,1,1,1,arab_tag},{{0,0,0,0,0},11,0,0,0,-1}};
157     static const itemTest t2b2[5] = {{{0,0,0,0,0},0,0,0,2,latn_tag},{{0,0,0,0,0},3,0,0,2,0},{{0,0,0,0,0},4,0,0,2,latn_tag},{{0,0,0,0,0},7,1,1,1,arab_tag},{{0,0,0,0,0},11,0,0,0,-1}};
158     static const itemTest t2b3[3] = {{{0,0,0,0,0},0,0,0,2,latn_tag},{{0,0,0,0,0},7,1,1,1,arab_tag},{{0,0,0,0,0},11,0,0,0,-1}};
159
160     /* leading space */
161     static const WCHAR test2c[] = {' ',0x0621,0x0623,0x0624,'A','B','C','-','D','E','F',0};
162     static const itemTest t2c1[5] = {{{0,0,0,0,0},0,1,1,1,arab_tag},{{0,0,0,0,0},4,0,0,0,latn_tag},{{0,0,0,0,0},7,0,0,0,0},{{0,0,0,0,0},8,0,0,0,latn_tag},{{0,0,0,0,0},11,0,0,0,-1}};
163     static const itemTest t2c2[6] = {{{0,0,0,0,1},0,0,0,0,0},{{0,0,0,0,0},1,1,1,1,arab_tag},{{0,0,0,0,0},4,0,0,0,latn_tag},{{0,0,0,0,0},7,0,0,0,0},{{0,0,0,0,0},8,0,0,0,latn_tag},{{0,0,0,0,0},11,0,0,0,-1}};
164     static const itemTest t2c3[5] = {{{0,0,0,0,0},0,1,1,1,arab_tag},{{0,0,0,0,0},4,0,0,2,latn_tag},{{0,0,0,0,0},7,0,0,2,0},{{0,0,0,0,0},8,0,0,2,latn_tag},{{0,0,0,0,0},11,0,0,0,-1}};
165     static const itemTest t2c4[3] = {{{0,0,0,0,0},0,1,1,1,arab_tag},{{0,0,0,0,0},4,0,0,2,latn_tag},{{0,0,0,0,0},11,0,0,0,-1}};
166
167     /* trailing space */
168     static const WCHAR test2d[] = {'A','B','C','-','D','E','F',0x0621,0x0623,0x0624,' ',0};
169     static const itemTest t2d1[5] = {{{0,0,0,0,0},0,0,0,0,latn_tag},{{0,0,0,0,0},3,0,0,0,0},{{0,0,0,0,0},4,0,0,0,latn_tag},{{0,0,0,0,0},7,1,1,1,arab_tag},{{0,0,0,0,0},11,0,0,0,-1}};
170     static const itemTest t2d2[6] = {{{0,0,0,0,0},0,0,0,0,latn_tag},{{0,0,0,0,0},3,0,0,0,0},{{0,0,0,0,0},4,0,0,0,latn_tag},{{0,0,0,0,0},7,1,1,1,arab_tag},{{0,0,0,0,0},10,0,0,0,0},{{0,0,0,0,0},11,0,0,0,-1}};
171     static const itemTest t2d3[5] = {{{0,0,0,0,0},0,0,0,2,latn_tag},{{0,0,0,0,0},3,0,0,2,0},{{0,0,0,0,0},4,0,0,2,latn_tag},{{0,0,0,0,0},7,1,1,1,arab_tag},{{0,0,0,0,0},11,0,0,0,-1}};
172     static const itemTest t2d4[3] = {{{0,0,0,0,0},0,0,0,2,latn_tag},{{0,0,0,0,0},7,1,1,1,arab_tag},{{0,0,0,0,0},11,0,0,0,-1}};
173
174     /* Thai */
175     static const WCHAR test3[] =
176 {0x0e04,0x0e27,0x0e32,0x0e21,0x0e1e,0x0e22,0x0e32,0x0e22,0x0e32, 0x0e21
177 ,0x0e2d,0x0e22,0x0e39,0x0e48,0x0e17,0x0e35,0x0e48,0x0e44,0x0e2b,0x0e19
178 ,0x0e04,0x0e27,0x0e32,0x0e21,0x0e2a, 0x0e33,0x0e40,0x0e23,0x0e47,0x0e08,
179  0x0e2d,0x0e22,0x0e39,0x0e48,0x0e17,0x0e35,0x0e48,0x0e19,0x0e31,0x0e48,0x0e19,0};
180
181     static const itemTest t31[2] = {{{0,0,0,0,0},0,0,0,0,thai_tag},{{0,0,0,0,0},41,0,0,0,-1}};
182     static const itemTest t32[2] = {{{0,0,0,0,0},0,0,0,2,thai_tag},{{0,0,0,0,0},41,0,0,0,-1}};
183
184     static const WCHAR test4[]  = {'1','2','3','-','5','2',' ','i','s',' ','7','1','.',0};
185
186     static const itemTest t41[6] = {{{0,0,0,0,0},0,0,0,0,0},{{0,0,0,0,0},3,0,0,0,0},{{0,0,0,0,0},4,0,0,0,0},{{0,0,0,0,0},7,0,0,0,latn_tag},{{0,0,0,0,0},10,0,0,0,0},{{0,0,0,0,0},12,0,0,0,-1}};
187     static const itemTest t42[5] = {{{0,0,1,0,0},0,0,1,2,0},{{0,0,0,0,1},6,1,1,1,0},{{0,0,0,0,0},7,0,0,2,latn_tag},{{0,0,0,0,0},10,0,0,2,0},{{0,0,0,0,0},12,0,0,0,-1}};
188     static const itemTest t43[4] = {{{0,0,1,0,0},0,0,1,2,0},{{0,0,0,0,1},6,1,1,1,0},{{0,0,0,0,0},7,0,0,2,latn_tag},{{0,0,0,0,0},12,0,0,0,-1}};
189
190     /* Arabic */
191     static const WCHAR test5[]  =
192 {0x0627,0x0644,0x0635,0x0651,0x0650,0x062d,0x0629,0x064f,' ',0x062a,0x064e,
193 0x0627,0x062c,0x064c,' ',0x0639,0x064e,0x0644,0x0649,' ',
194 0x0631,0x064f,0x0624,0x0648,0x0633,0x0650,' ',0x0627,0x0644
195 ,0x0623,0x0635,0x0650,0x062d,0x0651,0x064e,0x0627,0x0621,0x0650,0};
196     static const itemTest t51[2] = {{{0,0,0,0,0},0,1,1,1,arab_tag},{{0,0,0,0,0},38,0,0,0,-1}};
197
198     /* Hebrew */
199     static const WCHAR test6[]  = {0x05e9, 0x05dc, 0x05d5, 0x05dd, '.',0};
200     static const itemTest t61[3] = {{{0,0,0,0,0},0,1,1,1,hebr_tag},{{0,0,0,0,0},4,0,0,0,0},{{0,0,0,0,0},5,0,0,0,-1}};
201     static const itemTest t62[3] = {{{0,0,0,0,0},0,1,1,1,hebr_tag},{{0,0,0,0,0},4,1,1,1,0},{{0,0,0,0,0},5,0,0,0,-1}};
202     static const itemTest t63[2] = {{{0,0,0,0,0},0,1,1,1,hebr_tag},{{0,0,0,0,0},5,0,0,0,-1}};
203     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};
204     static const itemTest t71[4] = {{{0,0,0,0,0},0,0,0,0,latn_tag},{{0,0,0,0,0},9,1,1,1,hebr_tag},{{0,0,0,0,0},19,0,0,0,latn_tag},{{0,0,0,0,0},29,0,0,0,-1}};
205     static const itemTest t72[4] = {{{0,0,0,0,0},0,0,0,0,latn_tag},{{0,0,0,0,0},9,1,1,1,hebr_tag},{{0,0,0,0,0},18,0,0,0,latn_tag},{{0,0,0,0,0},29,0,0,0,-1}};
206     static const itemTest t73[4] = {{{0,0,0,0,0},0,0,0,2,latn_tag},{{0,0,0,0,0},8,1,1,1,hebr_tag},{{0,0,0,0,0},19,0,0,2,latn_tag},{{0,0,0,0,0},29,0,0,0,-1}};
207     static const WCHAR test8[] = {0x0633, 0x0644, 0x0627, 0x0645,0};
208     static const itemTest t81[2] = {{{0,0,0,0,0},0,1,1,1,arab_tag},{{0,0,0,0,0},4,0,0,0,-1}};
209
210     /* Syriac  (Like Arabic )*/
211     static const WCHAR test9[] = {0x0710, 0x0712, 0x0712, 0x0714, '.',0};
212     static const itemTest t91[3] = {{{0,0,0,0,0},0,1,1,1,syrc_tag},{{0,0,0,0,0},4,0,0,0,0},{{0,0,0,0,0},5,0,0,0,-1}};
213     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},{{0,0,0,0,0},5,0,0,0,-1}};
214     static const itemTest t93[2] = {{{0,0,0,0,0},0,1,1,1,syrc_tag},{{0,0,0,0,0},5,0,0,0,-1}};
215
216     static const WCHAR test10[] = {0x0717, 0x0718, 0x071a, 0x071b,0};
217     static const itemTest t101[2] = {{{0,0,0,0,0},0,1,1,1,syrc_tag},{{0,0,0,0,0},4,0,0,0,-1}};
218
219     /* Devanagari */
220     static const WCHAR test11[] = {0x0926, 0x0947, 0x0935, 0x0928, 0x093e, 0x0917, 0x0930, 0x0940};
221     static const itemTest t111[2] = {{{0,0,0,0,0},0,0,0,0,deva_tag},{{0,0,0,0,0},8,0,0,0,-1}};
222     static const itemTest t112[2] = {{{0,0,0,0,0},0,0,0,2,deva_tag},{{0,0,0,0,0},8,0,0,0,-1}};
223
224     /* Bengali */
225     static const WCHAR test12[] = {0x09ac, 0x09be, 0x0982, 0x09b2, 0x09be};
226     static const itemTest t121[2] = {{{0,0,0,0,0},0,0,0,0,beng_tag},{{0,0,0,0,0},5,0,0,0,-1}};
227     static const itemTest t122[2] = {{{0,0,0,0,0},0,0,0,2,beng_tag},{{0,0,0,0,0},5,0,0,0,-1}};
228
229     /* Gurmukhi */
230     static const WCHAR test13[] = {0x0a17, 0x0a41, 0x0a30, 0x0a2e, 0x0a41, 0x0a16, 0x0a40};
231     static const itemTest t131[2] = {{{0,0,0,0,0},0,0,0,0,guru_tag},{{0,0,0,0,0},7,0,0,0,-1}};
232     static const itemTest t132[2] = {{{0,0,0,0,0},0,0,0,2,guru_tag},{{0,0,0,0,0},7,0,0,0,-1}};
233
234     /* Gujarati */
235     static const WCHAR test14[] = {0x0a97, 0x0ac1, 0x0a9c, 0x0ab0, 0x0abe, 0x0aa4, 0x0ac0};
236     static const itemTest t141[2] = {{{0,0,0,0,0},0,0,0,0,gujr_tag},{{0,0,0,0,0},7,0,0,0,-1}};
237     static const itemTest t142[2] = {{{0,0,0,0,0},0,0,0,2,gujr_tag},{{0,0,0,0,0},7,0,0,0,-1}};
238
239     /* Oriya */
240     static const WCHAR test15[] = {0x0b13, 0x0b21, 0x0b3c, 0x0b3f, 0x0b06};
241     static const itemTest t151[2] = {{{0,0,0,0,0},0,0,0,0,orya_tag},{{0,0,0,0,0},5,0,0,0,-1}};
242     static const itemTest t152[2] = {{{0,0,0,0,0},0,0,0,2,orya_tag},{{0,0,0,0,0},5,0,0,0,-1}};
243
244     /* Tamil */
245     static const WCHAR test16[] = {0x0ba4, 0x0bae, 0x0bbf, 0x0bb4, 0x0bcd};
246     static const itemTest t161[2] = {{{0,0,0,0,0},0,0,0,0,taml_tag},{{0,0,0,0,0},5,0,0,0,-1}};
247     static const itemTest t162[2] = {{{0,0,0,0,0},0,0,0,2,taml_tag},{{0,0,0,0,0},5,0,0,0,-1}};
248
249     /* Telugu */
250     static const WCHAR test17[] = {0x0c24, 0x0c46, 0x0c32, 0x0c41, 0x0c17, 0x0c41};
251     static const itemTest t171[2] = {{{0,0,0,0,0},0,0,0,0,telu_tag},{{0,0,0,0,0},6,0,0,0,-1}};
252     static const itemTest t172[2] = {{{0,0,0,0,0},0,0,0,2,telu_tag},{{0,0,0,0,0},6,0,0,0,-1}};
253
254     /* Kannada */
255     static const WCHAR test18[] = {0x0c95, 0x0ca8, 0x0ccd, 0x0ca8, 0x0ca1};
256     static const itemTest t181[2] = {{{0,0,0,0,0},0,0,0,0,knda_tag},{{0,0,0,0,0},5,0,0,0,-1}};
257     static const itemTest t182[2] = {{{0,0,0,0,0},0,0,0,2,knda_tag},{{0,0,0,0,0},5,0,0,0,-1}};
258
259     /* Malayalam */
260     static const WCHAR test19[] = {0x0d2e, 0x0d32, 0x0d2f, 0x0d3e, 0x0d33, 0x0d02};
261     static const itemTest t191[2] = {{{0,0,0,0,0},0,0,0,0,mlym_tag},{{0,0,0,0,0},6,0,0,0,-1}};
262     static const itemTest t192[2] = {{{0,0,0,0,0},0,0,0,2,mlym_tag},{{0,0,0,0,0},6,0,0,0,-1}};
263
264     SCRIPT_ITEM items[15];
265     SCRIPT_CONTROL  Control;
266     SCRIPT_STATE    State;
267     HRESULT hr;
268     HMODULE usp10;
269     int nItems;
270
271     usp10 = LoadLibraryA("usp10.dll");
272     ok (usp10 != 0,"Unable to LoadLibrary on usp10.dll\n");
273     pScriptItemizeOpenType = (void*)GetProcAddress(usp10, "ScriptItemizeOpenType");
274     pScriptShapeOpenType = (void*)GetProcAddress(usp10, "ScriptShapeOpenType");
275     pGetGlyphIndicesW = (void*)GetProcAddress(GetModuleHandleA("gdi32.dll"), "GetGlyphIndicesW");
276
277     memset(&Control, 0, sizeof(Control));
278     memset(&State, 0, sizeof(State));
279
280     hr = ScriptItemize(NULL, 4, 10, &Control, &State, items, NULL);
281     ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if pwcInChars is NULL\n");
282
283     hr = ScriptItemize(test1, 4, 10, &Control, &State, NULL, NULL);
284     ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if pItems is NULL\n");
285
286     hr = ScriptItemize(test1, 4, 1, &Control, &State, items, NULL);
287     ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cMaxItems < 2.\n");
288
289     hr = ScriptItemize(test1, 0, 10, NULL, NULL, items, &nItems);
290     ok (hr == E_INVALIDARG, "ScriptItemize should return E_INVALIDARG if cInChars is 0\n");
291
292     test_items_ok(test1,4,NULL,NULL,1,t11,FALSE,0);
293     test_items_ok(test1b,4,NULL,NULL,1,t1b1,FALSE,0);
294     test_items_ok(test2,16,NULL,NULL,6,t21,FALSE,0);
295     test_items_ok(test2b,11,NULL,NULL,4,t2b1,FALSE,0);
296     test_items_ok(test2c,11,NULL,NULL,4,t2c1,FALSE,0);
297     test_items_ok(test2d,11,NULL,NULL,4,t2d1,FALSE,0);
298     test_items_ok(test3,41,NULL,NULL,1,t31,FALSE,0);
299     test_items_ok(test4,12,NULL,NULL,5,t41,FALSE,0);
300     test_items_ok(test5,38,NULL,NULL,1,t51,FALSE,0);
301     test_items_ok(test6,5,NULL,NULL,2,t61,FALSE,0);
302     test_items_ok(test7,29,NULL,NULL,3,t71,FALSE,0);
303     test_items_ok(test8,4,NULL,NULL,1,t81,FALSE,0);
304     test_items_ok(test9,5,NULL,NULL,2,t91,FALSE,0);
305     test_items_ok(test10,4,NULL,NULL,1,t101,FALSE,0);
306     test_items_ok(test11,8,NULL,NULL,1,t111,FALSE,0);
307     test_items_ok(test12,5,NULL,NULL,1,t121,FALSE,0);
308     test_items_ok(test13,7,NULL,NULL,1,t131,FALSE,0);
309     test_items_ok(test14,7,NULL,NULL,1,t141,FALSE,0);
310     test_items_ok(test15,5,NULL,NULL,1,t151,FALSE,0);
311     test_items_ok(test16,5,NULL,NULL,1,t161,FALSE,0);
312     test_items_ok(test17,6,NULL,NULL,1,t171,FALSE,0);
313     test_items_ok(test18,5,NULL,NULL,1,t181,FALSE,0);
314     test_items_ok(test19,6,NULL,NULL,1,t191,FALSE,0);
315
316     State.uBidiLevel = 0;
317     test_items_ok(test1,4,&Control,&State,1,t11,FALSE,0);
318     test_items_ok(test1b,4,&Control,&State,1,t1b1,FALSE,0);
319     test_items_ok(test2,16,&Control,&State,4,t22,FALSE,0);
320     test_items_ok(test2b,11,&Control,&State,4,t2b1,FALSE,0);
321     test_items_ok(test2c,11,&Control,&State,5,t2c2,FALSE,0);
322     test_items_ok(test2d,11,&Control,&State,5,t2d2,FALSE,0);
323     test_items_ok(test3,41,&Control,&State,1,t31,FALSE,0);
324     test_items_ok(test4,12,&Control,&State,5,t41,FALSE,0);
325     test_items_ok(test5,38,&Control,&State,1,t51,FALSE,0);
326     test_items_ok(test6,5,&Control,&State,2,t61,FALSE,0);
327     test_items_ok(test7,29,&Control,&State,3,t72,FALSE,0);
328     test_items_ok(test8,4,&Control,&State,1,t81,FALSE,0);
329     test_items_ok(test9,5,&Control,&State,2,t91,FALSE,0);
330     test_items_ok(test10,4,&Control,&State,1,t101,FALSE,0);
331     test_items_ok(test11,8,&Control,&State,1,t111,FALSE,0);
332     test_items_ok(test12,5,&Control,&State,1,t121,FALSE,0);
333     test_items_ok(test13,7,&Control,&State,1,t131,FALSE,0);
334     test_items_ok(test14,7,&Control,&State,1,t141,FALSE,0);
335     test_items_ok(test15,5,&Control,&State,1,t151,FALSE,0);
336     test_items_ok(test16,5,&Control,&State,1,t161,FALSE,0);
337     test_items_ok(test17,6,&Control,&State,1,t171,FALSE,0);
338     test_items_ok(test18,5,&Control,&State,1,t181,FALSE,0);
339     test_items_ok(test19,6,&Control,&State,1,t191,FALSE,0);
340
341     State.uBidiLevel = 1;
342     test_items_ok(test1,4,&Control,&State,1,t12,FALSE,0);
343     test_items_ok(test1b,4,&Control,&State,1,t1b2,FALSE,0);
344     test_items_ok(test2,16,&Control,&State,4,t23,FALSE,0);
345     test_items_ok(test2b,11,&Control,&State,4,t2b2,FALSE,0);
346     test_items_ok(test2c,11,&Control,&State,4,t2c3,FALSE,0);
347     test_items_ok(test2d,11,&Control,&State,4,t2d3,FALSE,0);
348     test_items_ok(test3,41,&Control,&State,1,t32,FALSE,0);
349     test_items_ok(test4,12,&Control,&State,4,t42,FALSE,0);
350     test_items_ok(test5,38,&Control,&State,1,t51,FALSE,0);
351     test_items_ok(test6,5,&Control,&State,2,t62,FALSE,0);
352     test_items_ok(test7,29,&Control,&State,3,t73,FALSE,0);
353     test_items_ok(test8,4,&Control,&State,1,t81,FALSE,0);
354     test_items_ok(test9,5,&Control,&State,2,t92,FALSE,0);
355     test_items_ok(test10,4,&Control,&State,1,t101,FALSE,0);
356     test_items_ok(test11,8,&Control,&State,1,t112,FALSE,0);
357     test_items_ok(test12,5,&Control,&State,1,t122,FALSE,0);
358     test_items_ok(test13,7,&Control,&State,1,t132,FALSE,0);
359     test_items_ok(test14,7,&Control,&State,1,t142,FALSE,0);
360     test_items_ok(test15,5,&Control,&State,1,t152,FALSE,0);
361     test_items_ok(test16,5,&Control,&State,1,t162,FALSE,0);
362     test_items_ok(test17,6,&Control,&State,1,t172,FALSE,0);
363     test_items_ok(test18,5,&Control,&State,1,t182,FALSE,0);
364     test_items_ok(test19,6,&Control,&State,1,t192,FALSE,0);
365
366     State.uBidiLevel = 1;
367     Control.fMergeNeutralItems = TRUE;
368     test_items_ok(test1,4,&Control,&State,1,t12,FALSE,0);
369     test_items_ok(test1b,4,&Control,&State,1,t1b2,FALSE,0);
370     test_items_ok(test2,16,&Control,&State,4,t23,FALSE,0);
371     test_items_ok(test2b,11,&Control,&State,2,t2b3,FALSE,4);
372     test_items_ok(test2c,11,&Control,&State,2,t2c4,FALSE,4);
373     test_items_ok(test2d,11,&Control,&State,2,t2d4,FALSE,4);
374     test_items_ok(test3,41,&Control,&State,1,t32,FALSE,0);
375     test_items_ok(test4,12,&Control,&State,3,t43,FALSE,4);
376     test_items_ok(test5,38,&Control,&State,1,t51,FALSE,0);
377     test_items_ok(test6,5,&Control,&State,1,t63,FALSE,2);
378     test_items_ok(test7,29,&Control,&State,3,t73,FALSE,0);
379     test_items_ok(test8,4,&Control,&State,1,t81,FALSE,0);
380     test_items_ok(test9,5,&Control,&State,1,t93,FALSE,2);
381     test_items_ok(test10,4,&Control,&State,1,t101,FALSE,0);
382     test_items_ok(test11,8,&Control,&State,1,t112,FALSE,0);
383     test_items_ok(test12,5,&Control,&State,1,t122,FALSE,0);
384     test_items_ok(test13,7,&Control,&State,1,t132,FALSE,0);
385     test_items_ok(test14,7,&Control,&State,1,t142,FALSE,0);
386     test_items_ok(test15,5,&Control,&State,1,t152,FALSE,0);
387     test_items_ok(test16,5,&Control,&State,1,t162,FALSE,0);
388     test_items_ok(test17,6,&Control,&State,1,t172,FALSE,0);
389     test_items_ok(test18,5,&Control,&State,1,t182,FALSE,0);
390     test_items_ok(test19,6,&Control,&State,1,t192,FALSE,0);
391 }
392
393 static inline void _test_shape_ok(int valid, HDC hdc, LPCWSTR string,
394                          DWORD cchString, SCRIPT_CONTROL *Control,
395                          SCRIPT_STATE *State, DWORD item, DWORD nGlyphs,
396                          const shapeTest_char* charItems,
397                          const shapeTest_glyph* glyphItems)
398 {
399     HRESULT hr;
400     int x, outnItems=0, outnGlyphs=0;
401     SCRIPT_ITEM outpItems[15];
402     SCRIPT_CACHE sc = NULL;
403     WORD *glyphs;
404     WORD *logclust;
405     int maxGlyphs = cchString * 1.5;
406     SCRIPT_GLYPHPROP *glyphProp;
407     SCRIPT_CHARPROP  *charProp;
408     ULONG tags[15];
409
410     hr = pScriptItemizeOpenType(string, cchString, 15, Control, State, outpItems, tags, &outnItems);
411     if (hr == USP_E_SCRIPT_NOT_IN_FONT)
412     {
413         if (valid > 0)
414             winetest_win_skip("Select font does not support script\n");
415         else
416             winetest_trace("Select font does not support script\n");
417         return;
418     }
419     if (valid > 0)
420         winetest_ok(!hr, "ScriptItemizeOpenType should return S_OK not %08x\n", hr);
421     else if (hr)
422         winetest_trace("ScriptItemizeOpenType should return S_OK not %08x\n", hr);
423
424
425     if (outnItems <= item)
426     {
427         if (valid > 0)
428             winetest_win_skip("Did not get enough items\n");
429         else
430             winetest_trace("Did not get enough items\n");
431         return;
432     }
433
434     logclust = HeapAlloc(GetProcessHeap(), 0, sizeof(WORD) * cchString);
435     memset(logclust,'a',sizeof(WORD) * cchString);
436     charProp = HeapAlloc(GetProcessHeap(), 0, sizeof(SCRIPT_CHARPROP) * cchString);
437     memset(charProp,'a',sizeof(SCRIPT_CHARPROP) * cchString);
438     glyphs = HeapAlloc(GetProcessHeap(), 0, sizeof(WORD) * maxGlyphs);
439     memset(glyphs,'a',sizeof(WORD) * cchString);
440     glyphProp = HeapAlloc(GetProcessHeap(), 0, sizeof(SCRIPT_GLYPHPROP) * maxGlyphs);
441     memset(glyphProp,'a',sizeof(SCRIPT_GLYPHPROP) * cchString);
442
443     hr = pScriptShapeOpenType(hdc, &sc, &outpItems[item].a, tags[item], 0x00000000, NULL, NULL, 0, string, cchString, maxGlyphs, logclust, charProp, glyphs, glyphProp, &outnGlyphs);
444     if (valid > 0)
445         winetest_ok(hr == S_OK, "ScriptShapeOpenType failed (%x)\n",hr);
446     else if (hr != S_OK)
447         winetest_trace("ScriptShapeOpenType failed (%x)\n",hr);
448     if (FAILED(hr))
449         return;
450
451     for (x = 0; x < cchString; x++)
452     {
453         if (valid > 0)
454             winetest_ok(logclust[x] == charItems[x].wLogClust, "%i: invalid LogClust(%i)\n",x,logclust[x]);
455         else if (logclust[x] != charItems[x].wLogClust)
456             winetest_trace("%i: invalid LogClust(%i)\n",x,logclust[x]);
457         if (valid > 0)
458             winetest_ok(charProp[x].fCanGlyphAlone == charItems[x].CharProp.fCanGlyphAlone, "%i: invalid fCanGlyphAlone\n",x);
459         else if (charProp[x].fCanGlyphAlone != charItems[x].CharProp.fCanGlyphAlone)
460             winetest_trace("%i: invalid fCanGlyphAlone\n",x);
461     }
462
463     if (valid > 0)
464         winetest_ok(nGlyphs == outnGlyphs, "got incorrect number of glyphs (%i)\n",outnGlyphs);
465     else if (nGlyphs != outnGlyphs)
466         winetest_trace("got incorrect number of glyphs (%i)\n",outnGlyphs);
467     for (x = 0; x < outnGlyphs; x++)
468     {
469         if (glyphItems[x].Glyph)
470         {
471             if (valid > 0)
472                 winetest_ok(glyphs[x]!=0, "%i: Glyph not present when it should be\n",x);
473             else if (glyphs[x]==0)
474                 winetest_trace("%i: Glyph not present when it should be\n",x);
475         }
476         else
477         {
478             if (valid > 0)
479                 winetest_ok(glyphs[x]==0, "%i: Glyph present when it should not be\n",x);
480             else if (glyphs[x]!=0)
481                 winetest_trace("%i: Glyph present when it should not be\n",x);
482         }
483         if (valid > 0)
484             winetest_ok(glyphProp[x].sva.uJustification == glyphItems[x].GlyphProp.sva.uJustification, "%i: uJustification incorrect (%i)\n",x,glyphProp[x].sva.uJustification);
485         else if (glyphProp[x].sva.uJustification != glyphItems[x].GlyphProp.sva.uJustification)
486             winetest_trace("%i: uJustification incorrect (%i)\n",x,glyphProp[x].sva.uJustification);
487         if (valid > 0)
488             winetest_ok(glyphProp[x].sva.fClusterStart == glyphItems[x].GlyphProp.sva.fClusterStart, "%i: fClusterStart incorrect (%i)\n",x,glyphProp[x].sva.fClusterStart);
489         else if (glyphProp[x].sva.fClusterStart != glyphItems[x].GlyphProp.sva.fClusterStart)
490             winetest_trace("%i: fClusterStart incorrect (%i)\n",x,glyphProp[x].sva.fClusterStart);
491         if (valid > 0)
492             winetest_ok(glyphProp[x].sva.fDiacritic == glyphItems[x].GlyphProp.sva.fDiacritic, "%i: fDiacritic incorrect (%i)\n",x,glyphProp[x].sva.fDiacritic);
493         else if (glyphProp[x].sva.fDiacritic != glyphItems[x].GlyphProp.sva.fDiacritic)
494             winetest_trace("%i: fDiacritic incorrect (%i)\n",x,glyphProp[x].sva.fDiacritic);
495         if (valid > 0)
496             winetest_ok(glyphProp[x].sva.fZeroWidth == glyphItems[x].GlyphProp.sva.fZeroWidth, "%i: fZeroWidth incorrect (%i)\n",x,glyphProp[x].sva.fZeroWidth);
497         else if (glyphProp[x].sva.fZeroWidth != glyphItems[x].GlyphProp.sva.fZeroWidth)
498             winetest_trace("%i: fZeroWidth incorrect (%i)\n",x,glyphProp[x].sva.fZeroWidth);
499     }
500
501     HeapFree(GetProcessHeap(),0,logclust);
502     HeapFree(GetProcessHeap(),0,charProp);
503     HeapFree(GetProcessHeap(),0,glyphs);
504     HeapFree(GetProcessHeap(),0,glyphProp);
505     ScriptFreeCache(&sc);
506 }
507
508 #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)
509
510 #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)
511
512 typedef struct tagRangeP {
513     BYTE range;
514     LOGFONTA lf;
515 } fontEnumParam;
516
517 static int CALLBACK enumFontProc( const LOGFONT *lpelfe, const TEXTMETRIC *lpntme,
518                            DWORD FontType, LPARAM lParam)
519 {
520     NEWTEXTMETRICEX *ntme = (NEWTEXTMETRICEX*)lpntme;
521     fontEnumParam *rp = (fontEnumParam*) lParam;
522     int idx = 0;
523     DWORD i;
524     DWORD mask = 0;
525
526     if (FontType != TRUETYPE_FONTTYPE)
527         return 1;
528
529     i = rp->range;
530     while (i > sizeof(DWORD)*8)
531     {
532         idx++;
533         i -= (sizeof(DWORD)*8);
534     }
535     if (idx > 3)
536         return 0;
537
538     mask = 1 << i;
539
540     if (ntme->ntmFontSig.fsUsb[idx] & mask)
541     {
542         memcpy(&(rp->lf),lpelfe,sizeof(LOGFONT));
543         return 0;
544     }
545     return 1;
546 }
547
548 static int _find_font_for_range(HDC hdc, const CHAR *recommended, BYTE range, const WCHAR check, HFONT *hfont, HFONT *origFont)
549 {
550     int rc = 0;
551     fontEnumParam lParam;
552
553     lParam.range = range;
554     memset(&lParam.lf,0,sizeof(LOGFONT));
555     *hfont = NULL;
556
557     if (recommended)
558     {
559         lstrcpyA(lParam.lf.lfFaceName, recommended);
560         if (!EnumFontFamiliesExA(hdc, &lParam.lf, enumFontProc, (LPARAM)&lParam, 0))
561         {
562             *hfont = CreateFontIndirectA(&lParam.lf);
563             if (*hfont)
564             {
565                 winetest_trace("using font %s\n",lParam.lf.lfFaceName);
566                 rc = 1;
567             }
568         }
569     }
570
571     if (!*hfont)
572     {
573         memset(&lParam.lf,0,sizeof(LOGFONT));
574         lParam.lf.lfCharSet = DEFAULT_CHARSET;
575
576         if (!EnumFontFamiliesExA(hdc, &lParam.lf, enumFontProc, (LPARAM)&lParam, 0) && lParam.lf.lfFaceName[0])
577         {
578             *hfont = CreateFontIndirectA(&lParam.lf);
579             if (*hfont)
580                 winetest_trace("trying font %s: failures will only be warnings\n",lParam.lf.lfFaceName);
581         }
582     }
583
584     if (*hfont)
585     {
586         WORD glyph = 0;
587
588         *origFont = SelectObject(hdc,*hfont);
589         if (pGetGlyphIndicesW && (pGetGlyphIndicesW(hdc, &check, 1, &glyph, 0) == GDI_ERROR || glyph ==0))
590         {
591             winetest_trace("    Font fails to contain required glyphs\n");
592             SelectObject(hdc,*origFont);
593             DeleteObject(*hfont);
594             *hfont=NULL;
595             rc = 0;
596         }
597         else if (!rc)
598             rc = -1;
599     }
600     else
601         winetest_trace("Failed to find usable font\n");
602
603     return rc;
604 }
605
606 #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)
607
608 static void test_ScriptShapeOpenType(HDC hdc)
609 {
610     HRESULT hr;
611     SCRIPT_CACHE sc = NULL;
612     WORD glyphs[4], logclust[4];
613     SCRIPT_GLYPHPROP glyphProp[4];
614     SCRIPT_ITEM items[2];
615     ULONG tags[2];
616     SCRIPT_CONTROL  Control;
617     SCRIPT_STATE    State;
618     int nb, outnItems;
619     HFONT hfont, hfont_orig;
620     int test_valid;
621
622     static const WCHAR test1[] = {'w', 'i', 'n', 'e',0};
623     static const shapeTest_char t1_c[] = {{0,{0,0}},{1,{0,0}},{2,{0,0}},{3,{0,0}}};
624     static const shapeTest_glyph t1_g[] = {
625                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
626                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
627                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
628                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
629
630     static const WCHAR test2[] = {0x202B, 'i', 'n', 0x202C,0};
631     static const shapeTest_char t2_c[] = {{0,{0,0}},{1,{0,0}},{2,{0,0}},{3,{0,0}}};
632     static const shapeTest_glyph t2_g[] = {
633                             {0,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
634                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
635                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
636                             {0,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
637
638     /* Hebrew */
639     static const WCHAR test_hebrew[]  = {0x05e9, 0x05dc, 0x05d5, 0x05dd,0};
640     static const shapeTest_char hebrew_c[] = {{3,{0,0}},{2,{0,0}},{1,{0,0}},{0,{0,0}}};
641     static const shapeTest_glyph hebrew_g[] = {
642                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
643                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
644                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
645                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}} };
646
647     /* Arabic */
648     static const WCHAR test_arabic[] = {0x0633,0x0644,0x0627,0x0645,0};
649     static const shapeTest_char arabic_c[] = {{2,{0,0}},{1,{0,0}},{1,{0,0}},{0,{0,0}}};
650     static const shapeTest_glyph arabic_g[] = {
651                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
652                             {1,{{SCRIPT_JUSTIFY_ARABIC_NORMAL,1,0,0,0,0},0}},
653                             {1,{{SCRIPT_JUSTIFY_ARABIC_SEEN,1,0,0,0,0},0}} };
654
655     /* Thai */
656     static const WCHAR test_thai[] = {0x0e2a, 0x0e04, 0x0e23, 0x0e34, 0x0e1b, 0x0e15, 0x0e4c, 0x0e44, 0x0e17, 0x0e22,};
657     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}}};
658     static const shapeTest_glyph thai_g[] = {
659                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
660                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
661                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
662                             {1,{{SCRIPT_JUSTIFY_CHARACTER,0,1,1,0,0},0}},
663                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
664                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
665                             {1,{{SCRIPT_JUSTIFY_CHARACTER,0,1,1,0,0},0}},
666                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
667                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
668                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}}};
669
670     /* Syriac */
671     static const WCHAR test_syriac[] = {0x0710, 0x0710, 0x0710, 0x0728, 0x0718, 0x0723,0};
672     static const shapeTest_char syriac_c[] = {{5,{0,0}},{4,{0,0}},{3,{0,0}},{2,{0,0}},{1,{0,0}},{0,{0,0}}};
673     static const shapeTest_glyph syriac_g[] = {
674                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
675                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
676                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
677                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
678                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
679                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
680
681     /* Thaana */
682     static const WCHAR test_thaana[] = {0x078a, 0x07ae, 0x0792, 0x07b0, 0x0020, 0x0796, 0x07aa, 0x0789, 0x07b0, 0x0795, 0x07ac, 0x0791, 0x07b0};
683     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}}};
684     static const shapeTest_glyph thaana_g[] = {
685                             {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
686                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
687                             {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
688                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
689                             {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
690                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
691                             {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
692                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
693                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
694                             {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
695                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
696                             {1,{{SCRIPT_JUSTIFY_NONE,0,1,1,0,0},0}},
697                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
698
699     /* Phags-pa */
700     static const WCHAR test_phagspa[] = {0xa84f, 0xa861, 0xa843, 0x0020, 0xa863, 0xa861, 0xa859, 0x0020, 0xa850, 0xa85c, 0xa85e};
701     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}}};
702     static const shapeTest_glyph phagspa_g[] = {
703                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
704                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
705                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
706                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
707                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
708                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
709                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
710                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
711                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
712                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
713                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
714
715     /* Lao */
716     static const WCHAR test_lao[] = {0x0ead, 0x0eb1, 0x0e81, 0x0eaa, 0x0ead, 0x0e99, 0x0ea5, 0x0eb2, 0x0ea7, 0};
717     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}}};
718     static const shapeTest_glyph lao_g[] = {
719                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
720                             {1,{{SCRIPT_JUSTIFY_CHARACTER,0,1,1,0,0},0}},
721                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
722                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
723                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
724                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
725                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
726                             {1,{{SCRIPT_JUSTIFY_CHARACTER,1,0,0,0,0},0}},
727                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
728
729     /* Tibetan */
730     static const WCHAR test_tibetan[] = {0x0f04, 0x0f05, 0x0f0e, 0x0020, 0x0f51, 0x0f7c, 0x0f53, 0x0f0b, 0x0f5a, 0x0f53, 0x0f0b, 0x0f51, 0x0f44, 0x0f0b, 0x0f54, 0x0f7c, 0x0f0d};
731     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}}};
732     static const shapeTest_glyph tibetan_g[] = {
733                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
734                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
735                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
736                             {1,{{SCRIPT_JUSTIFY_BLANK,1,0,0,0,0},0}},
737                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
738                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
739                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
740                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
741                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
742                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
743                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
744                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
745                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
746                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
747                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
748                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
749                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
750
751     /* Devanagari */
752     static const WCHAR test_devanagari[] = {0x0926, 0x0947, 0x0935, 0x0928, 0x093e, 0x0917, 0x0930, 0x0940};
753     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}}};
754     static const shapeTest_glyph devanagari_g[] = {
755                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
756                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
757                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
758                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
759                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
760                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
761                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
762                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
763
764     /* Bengali */
765     static const WCHAR test_bengali[] = {0x09ac, 0x09be, 0x0982, 0x09b2, 0x09be};
766     static const shapeTest_char bengali_c[] = {{0,{0,0}},{0,{0,0}},{0,{0,0}},{3,{0,0}},{3,{0,0}}};
767     static const shapeTest_glyph bengali_g[] = {
768                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
769                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
770                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
771                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
772                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
773
774     /* Gurmukhi */
775     static const WCHAR test_gurmukhi[] = {0x0a17, 0x0a41, 0x0a30, 0x0a2e, 0x0a41, 0x0a16, 0x0a40};
776     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}}};
777     static const shapeTest_glyph gurmukhi_g[] = {
778                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
779                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
780                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
781                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
782                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
783                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
784                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
785
786     /* Gujarati */
787     static const WCHAR test_gujarati[] = {0x0a97, 0x0ac1, 0x0a9c, 0x0ab0, 0x0abe, 0x0aa4, 0x0ac0};
788     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}}};
789     static const shapeTest_glyph gujarati_g[] = {
790                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
791                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
792                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
793                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
794                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
795                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
796                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}} };
797
798     /* Oriya */
799     static const WCHAR test_oriya[] = {0x0b13, 0x0b21, 0x0b3c, 0x0b3f, 0x0b06};
800     static const shapeTest_char oriya_c[] = {{0,{0,0}},{1,{0,0}},{1,{0,0}},{1,{0,0}},{3,{0,0}}};
801     static const shapeTest_glyph oriya_g[] = {
802                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
803                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}},
804                             {1,{{SCRIPT_JUSTIFY_NONE,0,0,0,0,0},0}},
805                             {1,{{SCRIPT_JUSTIFY_NONE,1,0,0,0,0},0}} };
806
807     if (!pScriptItemizeOpenType || !pScriptShapeOpenType)
808     {
809         win_skip("ScriptShapeOpenType not available on this platform\n");
810         return;
811     }
812
813     memset(&Control, 0 , sizeof(Control));
814     memset(&State, 0 , sizeof(State));
815
816     hr = pScriptItemizeOpenType(test1, 4, 2, &Control, &State, items, tags, &outnItems);
817     ok(!hr, "ScriptItemizeOpenType should return S_OK not %08x\n", hr);
818     ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
819
820     hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, NULL, &nb);
821     ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_INVALIDARG not %08x\n", hr);
822
823     hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, glyphProp, NULL);
824     ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_INVALIDARG not %08x\n", hr);
825
826     hr = pScriptShapeOpenType(NULL, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, glyphProp, &nb);
827     ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_PENDING not %08x\n", hr);
828
829     hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, NULL, NULL, glyphs, glyphProp, &nb);
830     ok( hr == E_INVALIDARG,
831        "ScriptShapeOpenType should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
832     hr = pScriptShapeOpenType(hdc, &sc, &items[0].a, tags[0], 0x00000000, NULL, NULL, 0, test1, 4, 4, logclust, NULL, glyphs, glyphProp, &nb);
833     ok(hr == E_INVALIDARG, "ScriptShapeOpenType should return E_INVALIDARG not %08x\n", hr);
834
835     ScriptFreeCache(&sc);
836
837     test_shape_ok(hdc, test1, 4, &Control, &State, 0, 4, t1_c, t1_g);
838     test_shape_ok(hdc, test2, 4, &Control, &State, 1, 4, t2_c, t2_g);
839
840     test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 11, test_hebrew[0], &hfont, &hfont_orig);
841     if (hfont != NULL)
842     {
843         test_shape_ok_valid(test_valid, hdc, test_hebrew, 4, &Control, &State, 0, 4, hebrew_c, hebrew_g);
844         SelectObject(hdc, hfont_orig);
845         DeleteObject(hfont);
846     }
847
848     test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 13, test_arabic[0], &hfont, &hfont_orig);
849     if (hfont != NULL)
850     {
851         test_shape_ok_valid(test_valid, hdc, test_arabic, 4, &Control, &State, 0, 3, arabic_c, arabic_g);
852         SelectObject(hdc, hfont_orig);
853         DeleteObject(hfont);
854     }
855
856     test_valid = find_font_for_range(hdc, "Microsoft Sans Serif", 24, test_thai[0], &hfont, &hfont_orig);
857     if (hfont != NULL)
858     {
859         test_shape_ok_valid(test_valid, hdc, test_thai, 10, &Control, &State, 0, 10, thai_c, thai_g);
860         SelectObject(hdc, hfont_orig);
861         DeleteObject(hfont);
862     }
863
864     test_valid = find_font_for_range(hdc, "Estrangelo Edessa", 71, test_syriac[0], &hfont, &hfont_orig);
865     if (hfont != NULL)
866     {
867         test_shape_ok_valid(test_valid, hdc, test_syriac, 6, &Control, &State, 0, 6, syriac_c, syriac_g);
868         SelectObject(hdc, hfont_orig);
869         DeleteObject(hfont);
870     }
871
872     test_valid = find_font_for_range(hdc, "MV Boli", 72, test_thaana[0], &hfont, &hfont_orig);
873     if (hfont != NULL)
874     {
875         test_shape_ok_valid(test_valid, hdc, test_thaana, 13, &Control, &State, 0, 13, thaana_c, thaana_g);
876         SelectObject(hdc, hfont_orig);
877         DeleteObject(hfont);
878     }
879
880     test_valid = find_font_for_range(hdc, "Microsoft PhagsPa", 53, test_phagspa[0], &hfont, &hfont_orig);
881     if (hfont != NULL)
882     {
883         test_shape_ok_valid(test_valid, hdc, test_phagspa, 11, &Control, &State, 0, 11, phagspa_c, phagspa_g);
884         SelectObject(hdc, hfont_orig);
885         DeleteObject(hfont);
886     }
887
888     test_valid = find_font_for_range(hdc, "DokChampa", 25, test_lao[0], &hfont, &hfont_orig);
889     if (hfont != NULL)
890     {
891         test_shape_ok_valid(test_valid, hdc, test_lao, 9, &Control, &State, 0, 9, lao_c, lao_g);
892         SelectObject(hdc, hfont_orig);
893         DeleteObject(hfont);
894     }
895
896     test_valid = find_font_for_range(hdc, "Microsoft Himalaya", 70, test_tibetan[0], &hfont, &hfont_orig);
897     if (hfont != NULL)
898     {
899         test_shape_ok_valid(test_valid, hdc, test_tibetan, 17, &Control, &State, 0, 17, tibetan_c, tibetan_g);
900         SelectObject(hdc, hfont_orig);
901         DeleteObject(hfont);
902     }
903
904     test_valid = find_font_for_range(hdc, "Mangal", 15, test_devanagari[0], &hfont, &hfont_orig);
905     if (hfont != NULL)
906     {
907         test_shape_ok_valid(test_valid, hdc, test_devanagari, 8, &Control, &State, 0, 8, devanagari_c, devanagari_g);
908         SelectObject(hdc, hfont_orig);
909         DeleteObject(hfont);
910     }
911
912     test_valid = find_font_for_range(hdc, "Vrinda", 16, test_bengali[0], &hfont, &hfont_orig);
913     if (hfont != NULL)
914     {
915         test_shape_ok_valid(test_valid, hdc, test_bengali, 5, &Control, &State, 0, 5, bengali_c, bengali_g);
916         SelectObject(hdc, hfont_orig);
917         DeleteObject(hfont);
918     }
919
920     test_valid = find_font_for_range(hdc, "Raavi", 17, test_gurmukhi[0], &hfont, &hfont_orig);
921     if (hfont != NULL)
922     {
923         test_shape_ok_valid(test_valid, hdc, test_gurmukhi, 7, &Control, &State, 0, 7, gurmukhi_c, gurmukhi_g);
924         SelectObject(hdc, hfont_orig);
925         DeleteObject(hfont);
926     }
927
928     test_valid = find_font_for_range(hdc, "Shruti", 18, test_gujarati[0], &hfont, &hfont_orig);
929     if (hfont != NULL)
930     {
931         test_shape_ok_valid(test_valid, hdc, test_gujarati, 7, &Control, &State, 0, 7, gujarati_c, gujarati_g);
932         SelectObject(hdc, hfont_orig);
933         DeleteObject(hfont);
934     }
935
936     test_valid = find_font_for_range(hdc, "Kalinga", 19, test_oriya[0], &hfont, &hfont_orig);
937     if (hfont != NULL)
938     {
939         test_shape_ok_valid(test_valid, hdc, test_oriya, 5, &Control, &State, 0, 4, oriya_c, oriya_g);
940         SelectObject(hdc, hfont_orig);
941         DeleteObject(hfont);
942     }
943 }
944
945 static void test_ScriptShape(HDC hdc)
946 {
947     static const WCHAR test1[] = {'w', 'i', 'n', 'e',0};
948     static const WCHAR test2[] = {0x202B, 'i', 'n', 0x202C,0};
949     HRESULT hr;
950     SCRIPT_CACHE sc = NULL;
951     WORD glyphs[4], glyphs2[4], logclust[4];
952     SCRIPT_VISATTR attrs[4];
953     SCRIPT_ITEM items[2];
954     int nb;
955
956     hr = ScriptItemize(test1, 4, 2, NULL, NULL, items, NULL);
957     ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
958     ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
959
960     hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, NULL, &nb);
961     ok(hr == E_INVALIDARG, "ScriptShape should return E_INVALIDARG not %08x\n", hr);
962
963     hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, attrs, NULL);
964     ok(hr == E_INVALIDARG, "ScriptShape should return E_INVALIDARG not %08x\n", hr);
965
966     hr = ScriptShape(NULL, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, attrs, &nb);
967     ok(hr == E_PENDING, "ScriptShape should return E_PENDING not %08x\n", hr);
968
969     hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, NULL, attrs, &nb);
970     ok(broken(hr == S_OK) ||
971        hr == E_INVALIDARG || /* Vista, W2K8 */
972        hr == E_FAIL, /* WIN7 */
973        "ScriptShape should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
974     ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
975
976     hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, logclust, attrs, &nb);
977     ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
978     ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
979
980
981     memset(glyphs,-1,sizeof(glyphs));
982     memset(logclust,-1,sizeof(logclust));
983     memset(attrs,-1,sizeof(attrs));
984     hr = ScriptShape(NULL, &sc, test1, 4, 4, &items[0].a, glyphs, logclust, attrs, &nb);
985     ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
986     ok(nb == 4, "Wrong number of items\n");
987     ok(logclust[0] == 0, "clusters out of order\n");
988     ok(logclust[1] == 1, "clusters out of order\n");
989     ok(logclust[2] == 2, "clusters out of order\n");
990     ok(logclust[3] == 3, "clusters out of order\n");
991     ok(attrs[0].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
992     ok(attrs[1].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
993     ok(attrs[2].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
994     ok(attrs[3].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
995     ok(attrs[0].fClusterStart == 1, "fClusterStart incorrect\n");
996     ok(attrs[1].fClusterStart == 1, "fClusterStart incorrect\n");
997     ok(attrs[2].fClusterStart == 1, "fClusterStart incorrect\n");
998     ok(attrs[3].fClusterStart == 1, "fClusterStart incorrect\n");
999     ok(attrs[0].fDiacritic == 0, "fDiacritic incorrect\n");
1000     ok(attrs[1].fDiacritic == 0, "fDiacritic incorrect\n");
1001     ok(attrs[2].fDiacritic == 0, "fDiacritic incorrect\n");
1002     ok(attrs[3].fDiacritic == 0, "fDiacritic incorrect\n");
1003     ok(attrs[0].fZeroWidth == 0, "fZeroWidth incorrect\n");
1004     ok(attrs[1].fZeroWidth == 0, "fZeroWidth incorrect\n");
1005     ok(attrs[2].fZeroWidth == 0, "fZeroWidth incorrect\n");
1006     ok(attrs[3].fZeroWidth == 0, "fZeroWidth incorrect\n");
1007
1008     ScriptFreeCache(&sc);
1009     sc = NULL;
1010
1011     memset(glyphs2,-1,sizeof(glyphs2));
1012     memset(logclust,-1,sizeof(logclust));
1013     memset(attrs,-1,sizeof(attrs));
1014     hr = ScriptShape(hdc, &sc, test2, 4, 4, &items[0].a, glyphs2, logclust, attrs, &nb);
1015     ok(hr == S_OK, "ScriptShape should return S_OK not %08x\n", hr);
1016     ok(nb == 4, "Wrong number of items\n");
1017     ok(glyphs2[0] == 0 || broken(glyphs2[0] == 0x80), "Incorrect glyph for 0x202B\n");
1018     ok(glyphs2[3] == 0 || broken(glyphs2[3] == 0x80), "Incorrect glyph for 0x202C\n");
1019     ok(logclust[0] == 0, "clusters out of order\n");
1020     ok(logclust[1] == 1, "clusters out of order\n");
1021     ok(logclust[2] == 2, "clusters out of order\n");
1022     ok(logclust[3] == 3, "clusters out of order\n");
1023     ok(attrs[0].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1024     ok(attrs[1].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1025     ok(attrs[2].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1026     ok(attrs[3].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1027     ok(attrs[0].fClusterStart == 1, "fClusterStart incorrect\n");
1028     ok(attrs[1].fClusterStart == 1, "fClusterStart incorrect\n");
1029     ok(attrs[2].fClusterStart == 1, "fClusterStart incorrect\n");
1030     ok(attrs[3].fClusterStart == 1, "fClusterStart incorrect\n");
1031     ok(attrs[0].fDiacritic == 0, "fDiacritic incorrect\n");
1032     ok(attrs[1].fDiacritic == 0, "fDiacritic incorrect\n");
1033     ok(attrs[2].fDiacritic == 0, "fDiacritic incorrect\n");
1034     ok(attrs[3].fDiacritic == 0, "fDiacritic incorrect\n");
1035     ok(attrs[0].fZeroWidth == 0, "fZeroWidth incorrect\n");
1036     ok(attrs[1].fZeroWidth == 0, "fZeroWidth incorrect\n");
1037     ok(attrs[2].fZeroWidth == 0, "fZeroWidth incorrect\n");
1038     ok(attrs[3].fZeroWidth == 0, "fZeroWidth incorrect\n");
1039
1040     /* modify LTR to RTL */
1041     items[0].a.fRTL = 1;
1042     memset(glyphs2,-1,sizeof(glyphs2));
1043     memset(logclust,-1,sizeof(logclust));
1044     memset(attrs,-1,sizeof(attrs));
1045     hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs2, logclust, attrs, &nb);
1046     ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
1047     ok(nb == 4, "Wrong number of items\n");
1048     ok(glyphs2[0] == glyphs[3], "Glyphs not reordered properly\n");
1049     ok(glyphs2[1] == glyphs[2], "Glyphs not reordered properly\n");
1050     ok(glyphs2[2] == glyphs[1], "Glyphs not reordered properly\n");
1051     ok(glyphs2[3] == glyphs[0], "Glyphs not reordered properly\n");
1052     ok(logclust[0] == 3, "clusters out of order\n");
1053     ok(logclust[1] == 2, "clusters out of order\n");
1054     ok(logclust[2] == 1, "clusters out of order\n");
1055     ok(logclust[3] == 0, "clusters out of order\n");
1056     ok(attrs[0].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1057     ok(attrs[1].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1058     ok(attrs[2].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1059     ok(attrs[3].uJustification == SCRIPT_JUSTIFY_CHARACTER, "uJustification incorrect\n");
1060     ok(attrs[0].fClusterStart == 1, "fClusterStart incorrect\n");
1061     ok(attrs[1].fClusterStart == 1, "fClusterStart incorrect\n");
1062     ok(attrs[2].fClusterStart == 1, "fClusterStart incorrect\n");
1063     ok(attrs[3].fClusterStart == 1, "fClusterStart incorrect\n");
1064     ok(attrs[0].fDiacritic == 0, "fDiacritic incorrect\n");
1065     ok(attrs[1].fDiacritic == 0, "fDiacritic incorrect\n");
1066     ok(attrs[2].fDiacritic == 0, "fDiacritic incorrect\n");
1067     ok(attrs[3].fDiacritic == 0, "fDiacritic incorrect\n");
1068     ok(attrs[0].fZeroWidth == 0, "fZeroWidth incorrect\n");
1069     ok(attrs[1].fZeroWidth == 0, "fZeroWidth incorrect\n");
1070     ok(attrs[2].fZeroWidth == 0, "fZeroWidth incorrect\n");
1071     ok(attrs[3].fZeroWidth == 0, "fZeroWidth incorrect\n");
1072
1073     ScriptFreeCache(&sc);
1074 }
1075
1076 static void test_ScriptPlace(HDC hdc)
1077 {
1078     static const WCHAR test1[] = {'t', 'e', 's', 't',0};
1079     BOOL ret;
1080     HRESULT hr;
1081     SCRIPT_CACHE sc = NULL;
1082     WORD glyphs[4], logclust[4];
1083     SCRIPT_VISATTR attrs[4];
1084     SCRIPT_ITEM items[2];
1085     int nb, widths[4];
1086     GOFFSET offset[4];
1087     ABC abc[4];
1088
1089     hr = ScriptItemize(test1, 4, 2, NULL, NULL, items, NULL);
1090     ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
1091     ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1092
1093     hr = ScriptShape(hdc, &sc, test1, 4, 4, &items[0].a, glyphs, logclust, attrs, &nb);
1094     ok(!hr, "ScriptShape should return S_OK not %08x\n", hr);
1095     ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1096
1097     hr = ScriptPlace(hdc, &sc, glyphs, 4, NULL, &items[0].a, widths, NULL, NULL);
1098     ok(hr == E_INVALIDARG, "ScriptPlace should return E_INVALIDARG not %08x\n", hr);
1099
1100     hr = ScriptPlace(NULL, &sc, glyphs, 4, attrs, &items[0].a, widths, NULL, NULL);
1101     ok(broken(hr == E_PENDING) ||
1102        hr == E_INVALIDARG || /* Vista, W2K8 */
1103        hr == E_FAIL, /* WIN7 */
1104        "ScriptPlace should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
1105
1106     hr = ScriptPlace(NULL, &sc, glyphs, 4, attrs, &items[0].a, widths, offset, NULL);
1107     ok(hr == E_PENDING, "ScriptPlace should return E_PENDING not %08x\n", hr);
1108
1109     hr = ScriptPlace(NULL, &sc, glyphs, 4, attrs, &items[0].a, widths, NULL, abc);
1110     ok(broken(hr == E_PENDING) ||
1111        hr == E_INVALIDARG || /* Vista, W2K8 */
1112        hr == E_FAIL, /* WIN7 */
1113        "ScriptPlace should return E_FAIL or E_INVALIDARG, not %08x\n", hr);
1114
1115     hr = ScriptPlace(hdc, &sc, glyphs, 4, attrs, &items[0].a, widths, offset, NULL);
1116     ok(!hr, "ScriptPlace should return S_OK not %08x\n", hr);
1117     ok(items[0].a.fNoGlyphIndex == FALSE, "fNoGlyphIndex TRUE\n");
1118
1119     ret = ExtTextOutW(hdc, 1, 1, 0, NULL, glyphs, 4, widths);
1120     ok(ret, "ExtTextOutW should return TRUE\n");
1121
1122     ScriptFreeCache(&sc);
1123 }
1124
1125 static void test_ScriptItemIzeShapePlace(HDC hdc, unsigned short pwOutGlyphs[256])
1126 {
1127     HRESULT         hr;
1128     int             iMaxProps;
1129     const SCRIPT_PROPERTIES **ppSp;
1130
1131     int             cInChars;
1132     int             cMaxItems;
1133     SCRIPT_ITEM     pItem[255];
1134     int             pcItems;
1135     WCHAR           TestItem1[] = {'T', 'e', 's', 't', 'a', 0}; 
1136     WCHAR           TestItem2[] = {'T', 'e', 's', 't', 'b', 0}; 
1137     WCHAR           TestItem3[] = {'T', 'e', 's', 't', 'c',' ','1','2','3',' ',' ','e','n','d',0};
1138     WCHAR           TestItem4[] = {'T', 'e', 's', 't', 'd',' ',0x0684,0x0694,0x06a4,' ',' ','\r','\n','e','n','d',0};
1139     WCHAR           TestItem5[] = {0x0684,'T','e','s','t','e',' ',0x0684,0x0694,0x06a4,' ',' ','e','n','d',0};
1140     WCHAR           TestItem6[] = {'T', 'e', 's', 't', 'f',' ',' ',' ','\r','\n','e','n','d',0};
1141
1142     SCRIPT_CACHE    psc;
1143     int             cChars;
1144     int             cMaxGlyphs;
1145     unsigned short  pwOutGlyphs1[256];
1146     unsigned short  pwOutGlyphs2[256];
1147     unsigned short  pwLogClust[256];
1148     SCRIPT_VISATTR  psva[256];
1149     int             pcGlyphs;
1150     int             piAdvance[256];
1151     GOFFSET         pGoffset[256];
1152     ABC             pABC[256];
1153     int             cnt;
1154
1155     /* Start testing usp10 functions                                                         */
1156     /* This test determines that the pointer returned by ScriptGetProperties is valid
1157      * by checking a known value in the table                                                */
1158     hr = ScriptGetProperties(&ppSp, &iMaxProps);
1159     ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
1160     trace("number of script properties %d\n", iMaxProps);
1161     ok (iMaxProps > 0, "Number of scripts returned should not be 0\n");
1162     if  (iMaxProps > 0)
1163          ok( ppSp[0]->langid == 0, "Langid[0] not = to 0\n"); /* Check a known value to ensure   */
1164                                                               /* ptrs work                       */
1165
1166     /* This is a valid test that will cause parsing to take place                             */
1167     cInChars = 5;
1168     cMaxItems = 255;
1169     hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1170     ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1171     /*  This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
1172      *  returned.                                                                             */
1173     ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
1174     if (pcItems > 0)
1175         ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
1176             "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1177             pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
1178
1179     /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
1180      * ie. ScriptItemize has succeeded and that pItem has been set                            */
1181     cInChars = 5;
1182     if (hr == 0) {
1183         psc = NULL;                                   /* must be null on first call           */
1184         cChars = cInChars;
1185         cMaxGlyphs = cInChars;
1186         hr = ScriptShape(NULL, &psc, TestItem1, cChars,
1187                          cMaxGlyphs, &pItem[0].a,
1188                          pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1189         ok (hr == E_PENDING, "If psc is NULL (%08x) the E_PENDING should be returned\n", hr);
1190         cMaxGlyphs = 4;
1191         hr = ScriptShape(hdc, &psc, TestItem1, cChars,
1192                          cMaxGlyphs, &pItem[0].a,
1193                          pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1194         ok (hr == E_OUTOFMEMORY, "If not enough output area cChars (%d) is > than CMaxGlyphs "
1195                                  "(%d) but not E_OUTOFMEMORY\n",
1196                                  cChars, cMaxGlyphs);
1197         cMaxGlyphs = 256;
1198         hr = ScriptShape(hdc, &psc, TestItem1, cChars,
1199                          cMaxGlyphs, &pItem[0].a,
1200                          pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1201         ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1202         ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1203         ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1204         if (hr ==0) {
1205             hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1206                              pGoffset, pABC);
1207             ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", hr);
1208             hr = ScriptPlace(NULL, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1209                              pGoffset, pABC);
1210             ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", hr);
1211             for (cnt=0; cnt < pcGlyphs; cnt++)
1212                 pwOutGlyphs[cnt] = pwOutGlyphs1[cnt];                 /* Send to next function */
1213         }
1214
1215         /* This test will check to make sure that SCRIPT_CACHE is reused and that not translation   *
1216          * takes place if fNoGlyphIndex is set.                                                     */
1217
1218         cInChars = 5;
1219         cMaxItems = 255;
1220         hr = ScriptItemize(TestItem2, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1221         ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1222         /*  This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is   *
1223          *  returned.                                                                               */
1224         ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
1225                             "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1226                              pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
1227         /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue                    */
1228         if (hr == 0) {
1229              cChars = cInChars;
1230              cMaxGlyphs = 256;
1231              pItem[0].a.fNoGlyphIndex = 1;                /* say no translate                     */
1232              hr = ScriptShape(NULL, &psc, TestItem2, cChars,
1233                               cMaxGlyphs, &pItem[0].a,
1234                               pwOutGlyphs2, pwLogClust, psva, &pcGlyphs);
1235              ok (hr != E_PENDING, "If psc should not be NULL (%08x) and the E_PENDING should be returned\n", hr);
1236              ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1237              ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1238              ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1239              for (cnt=0; cnt < cChars && TestItem2[cnt] == pwOutGlyphs2[cnt]; cnt++) {}
1240              ok (cnt == cChars, "Translation to place when told not to. WCHAR %d - %04x != %04x\n",
1241                            cnt, TestItem2[cnt], pwOutGlyphs2[cnt]);
1242              if (hr ==0) {
1243                  hr = ScriptPlace(hdc, &psc, pwOutGlyphs2, pcGlyphs, psva, &pItem[0].a, piAdvance,
1244                                   pGoffset, pABC);
1245                  ok (hr == 0, "ScriptPlace should return 0 not (%08x)\n", hr);
1246              }
1247         }
1248         ScriptFreeCache( &psc);
1249         ok (!psc, "psc is not null after ScriptFreeCache\n");
1250
1251     }
1252
1253     /* This is a valid test that will cause parsing to take place and create 3 script_items   */
1254     cInChars = (sizeof(TestItem3)/2)-1;
1255     cMaxItems = 255;
1256     hr = ScriptItemize(TestItem3, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1257     ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1258     if  (hr == 0)
1259         {
1260         ok (pcItems == 3, "The number of SCRIPT_ITEMS should be 3 not %d\n", pcItems);
1261         if (pcItems > 2)
1262         {
1263             ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == 6,
1264                 "Start pos [0] not = 0 (%d) or end pos [1] not = %d\n",
1265                 pItem[0].iCharPos, pItem[1].iCharPos);
1266             ok (pItem[1].iCharPos == 6 && pItem[2].iCharPos == 11,
1267                 "Start pos [1] not = 6 (%d) or end pos [2] not = 11 (%d)\n",
1268                 pItem[1].iCharPos, pItem[2].iCharPos);
1269             ok (pItem[2].iCharPos == 11 && pItem[3].iCharPos == cInChars,
1270                 "Start pos [2] not = 11 (%d) or end [3] pos not = 14 (%d), cInChars = %d\n",
1271                 pItem[2].iCharPos, pItem[3].iCharPos, cInChars);
1272         }
1273     }
1274
1275     /* This is a valid test that will cause parsing to take place and create 5 script_items   */
1276     cInChars = (sizeof(TestItem4)/2)-1;
1277     cMaxItems = 255;
1278     hr = ScriptItemize(TestItem4, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1279     ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1280     if  (hr == 0)
1281         {
1282         ok (pcItems == 5, "The number of SCRIPT_ITEMS should be 5 not %d\n", pcItems);
1283         if (pcItems > 4)
1284         {
1285             ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == 6,
1286                 "Start pos [0] not = 0 (%d) or end pos [1] not = %d\n",
1287                 pItem[0].iCharPos, pItem[1].iCharPos);
1288             ok (pItem[0].a.s.uBidiLevel == 0, "Should have been bidi=0 not %d\n",
1289                                                pItem[0].a.s.uBidiLevel);
1290             ok (pItem[1].iCharPos == 6 && pItem[2].iCharPos == 11,
1291                 "Start pos [1] not = 6 (%d) or end pos [2] not = 11 (%d)\n",
1292                 pItem[1].iCharPos, pItem[2].iCharPos);
1293             ok (pItem[1].a.s.uBidiLevel == 1, "Should have been bidi=1 not %d\n",
1294                                               pItem[1].a.s.uBidiLevel);
1295             ok (pItem[2].iCharPos == 11 && pItem[3].iCharPos == 12,
1296                 "Start pos [2] not = 11 (%d) or end [3] pos not = 12 (%d)\n",
1297                 pItem[2].iCharPos, pItem[3].iCharPos);
1298             ok (pItem[2].a.s.uBidiLevel == 0, "Should have been bidi=0 not %d\n",
1299                                                pItem[2].a.s.uBidiLevel);
1300             ok (pItem[3].iCharPos == 12 && pItem[4].iCharPos == 13,
1301                 "Start pos [3] not = 12 (%d) or end [4] pos not = 13 (%d)\n",
1302                 pItem[3].iCharPos, pItem[4].iCharPos);
1303             ok (pItem[3].a.s.uBidiLevel == 0, "Should have been bidi=0 not %d\n",
1304                                                pItem[3].a.s.uBidiLevel);
1305             ok (pItem[4].iCharPos == 13 && pItem[5].iCharPos == cInChars,
1306                 "Start pos [4] not = 13 (%d) or end [5] pos not = 16 (%d), cInChars = %d\n",
1307                 pItem[4].iCharPos, pItem[5].iCharPos, cInChars);
1308         }
1309     }
1310
1311     /*
1312      * This test is for when the first unicode character requires bidi support
1313      */
1314     cInChars = (sizeof(TestItem5)-1)/sizeof(WCHAR);
1315     hr = ScriptItemize(TestItem5, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1316     ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1317     ok (pcItems == 4, "There should have been 4 items, found %d\n", pcItems);
1318     ok (pItem[0].a.s.uBidiLevel == 1, "The first character should have been bidi=1 not %d\n",
1319                                        pItem[0].a.s.uBidiLevel);
1320
1321     /* This test checks to make sure that the test to see if there are sufficient buffers to store  *
1322      * the pointer to the last char works.  Note that windows often needs a greater number of       *
1323      * SCRIPT_ITEMS to process a string than is returned in pcItems.                                */
1324     cInChars = (sizeof(TestItem6)/2)-1;
1325     cMaxItems = 4;
1326     hr = ScriptItemize(TestItem6, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1327     ok (hr == E_OUTOFMEMORY, "ScriptItemize should return E_OUTOFMEMORY, returned %08x\n", hr);
1328
1329 }
1330
1331 static void test_ScriptGetCMap(HDC hdc, unsigned short pwOutGlyphs[256])
1332 {
1333     HRESULT         hr;
1334     SCRIPT_CACHE    psc = NULL;
1335     int             cInChars;
1336     int             cChars;
1337     unsigned short  pwOutGlyphs2[256];
1338     unsigned short  pwOutGlyphs3[256];
1339     DWORD           dwFlags;
1340     int             cnt;
1341
1342     static const WCHAR TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
1343     static const WCHAR TestItem2[] = {0x202B, 'i', 'n', 0x202C,0};
1344     static const WCHAR TestItem3[] = {'a','b','c','d','(','<','{','[',0x2039,0};
1345     static const WCHAR TestItem3b[] = {'a','b','c','d',')','>','}',']',0x203A,0};
1346
1347     /*  Check to make sure that SCRIPT_CACHE gets allocated ok                     */
1348     dwFlags = 0;
1349     cInChars = cChars = 5;
1350     /* Some sanity checks for ScriptGetCMap */
1351
1352     hr = ScriptGetCMap(NULL, NULL, NULL, 0, 0, NULL);
1353     ok( hr == E_INVALIDARG, "(NULL,NULL,NULL,0,0,NULL), "
1354                             "expected E_INVALIDARG, got %08x\n", hr);
1355
1356     hr = ScriptGetCMap(NULL, NULL, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
1357     ok( hr == E_INVALIDARG, "(NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
1358                             "expected E_INVALIDARG, got %08x\n", hr);
1359
1360     /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1361     psc = NULL;
1362     hr = ScriptGetCMap(NULL, &psc, TestItem1, cInChars, 0, pwOutGlyphs3);
1363     ok( hr == E_PENDING, "(NULL,&psc,NULL,0,0,NULL), expected E_PENDING, "
1364                          "got %08x\n", hr);
1365     ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1366
1367     /* Set psc to NULL but add hdc, to be able to check if a pointer is returned in psc */
1368     psc = NULL;
1369     hr = ScriptGetCMap(hdc, &psc, TestItem1, cInChars, 0, pwOutGlyphs3);
1370     ok( hr == S_OK, "ScriptGetCMap(NULL,&psc,NULL,0,0,NULL), expected S_OK, "
1371                     "got %08x\n", hr);
1372     ok( psc != NULL, "ScritpGetCMap expected psc to be not NULL\n");
1373     ScriptFreeCache( &psc);
1374
1375     /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1376     psc = NULL;
1377     hr = ScriptGetCMap(NULL, &psc, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
1378     ok( hr == E_PENDING, "(NULL,&psc,), expected E_PENDING, got %08x\n", hr);
1379     ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1380     /*  Check to see if the results are the same as those returned by ScriptShape  */
1381     hr = ScriptGetCMap(hdc, &psc, TestItem1, cInChars, dwFlags, pwOutGlyphs3);
1382     ok (hr == 0, "ScriptGetCMap should return 0 not (%08x)\n", hr);
1383     ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1384     for (cnt=0; cnt < cChars && pwOutGlyphs[cnt] == pwOutGlyphs3[cnt]; cnt++) {}
1385     ok (cnt == cInChars, "Translation not correct. WCHAR %d - %04x != %04x\n",
1386                          cnt, pwOutGlyphs[cnt], pwOutGlyphs3[cnt]);
1387
1388     ScriptFreeCache( &psc);
1389     ok (!psc, "psc is not null after ScriptFreeCache\n");
1390
1391     cInChars = cChars = 4;
1392     hr = ScriptGetCMap(hdc, &psc, TestItem2, cInChars, dwFlags, pwOutGlyphs3);
1393     ok (hr == S_FALSE, "ScriptGetCMap should return S_FALSE not (%08x)\n", hr);
1394     ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1395     ok(pwOutGlyphs3[0] == 0 || broken(pwOutGlyphs3[0] == 0x80), "Glyph 0 should be default glyph\n");
1396     ok(pwOutGlyphs3[3] == 0 || broken(pwOutGlyphs3[0] == 0x80), "Glyph 0 should be default glyph\n");
1397
1398
1399     cInChars = cChars = 9;
1400     hr = ScriptGetCMap(hdc, &psc, TestItem3b, cInChars, dwFlags, pwOutGlyphs2);
1401     ok (hr == S_OK, "ScriptGetCMap should return S_OK not (%08x)\n", hr);
1402     ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1403
1404     cInChars = cChars = 9;
1405     dwFlags = SGCM_RTL;
1406     hr = ScriptGetCMap(hdc, &psc, TestItem3, cInChars, dwFlags, pwOutGlyphs3);
1407     ok (hr == S_OK, "ScriptGetCMap should return S_OK not (%08x)\n", hr);
1408     ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1409     ok(pwOutGlyphs3[0] == pwOutGlyphs2[0], "glyph incorrectly altered\n");
1410     ok(pwOutGlyphs3[1] == pwOutGlyphs2[1], "glyph incorreclty altered\n");
1411     ok(pwOutGlyphs3[2] == pwOutGlyphs2[2], "glyph incorreclty altered\n");
1412     ok(pwOutGlyphs3[3] == pwOutGlyphs2[3], "glyph incorreclty altered\n");
1413     ok(pwOutGlyphs3[4] == pwOutGlyphs2[4], "glyph not mirrored correctly\n");
1414     ok(pwOutGlyphs3[5] == pwOutGlyphs2[5], "glyph not mirrored correctly\n");
1415     ok(pwOutGlyphs3[6] == pwOutGlyphs2[6], "glyph not mirrored correctly\n");
1416     ok(pwOutGlyphs3[7] == pwOutGlyphs2[7], "glyph not mirrored correctly\n");
1417     ok(pwOutGlyphs3[8] == pwOutGlyphs2[8], "glyph not mirrored correctly\n");
1418
1419     ScriptFreeCache( &psc);
1420     ok (!psc, "psc is not null after ScriptFreeCache\n");
1421 }
1422
1423 static void test_ScriptGetFontProperties(HDC hdc)
1424 {
1425     HRESULT         hr;
1426     SCRIPT_CACHE    psc,old_psc;
1427     SCRIPT_FONTPROPERTIES sfp;
1428
1429     /* Some sanity checks for ScriptGetFontProperties */
1430
1431     hr = ScriptGetFontProperties(NULL,NULL,NULL);
1432     ok( hr == E_INVALIDARG, "(NULL,NULL,NULL), expected E_INVALIDARG, got %08x\n", hr);
1433
1434     hr = ScriptGetFontProperties(NULL,NULL,&sfp);
1435     ok( hr == E_INVALIDARG, "(NULL,NULL,&sfp), expected E_INVALIDARG, got %08x\n", hr);
1436
1437     /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1438     psc = NULL;
1439     hr = ScriptGetFontProperties(NULL,&psc,NULL);
1440     ok( hr == E_INVALIDARG, "(NULL,&psc,NULL), expected E_INVALIDARG, got %08x\n", hr);
1441     ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1442
1443     /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1444     psc = NULL;
1445     hr = ScriptGetFontProperties(NULL,&psc,&sfp);
1446     ok( hr == E_PENDING, "(NULL,&psc,&sfp), expected E_PENDING, got %08x\n", hr);
1447     ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1448
1449     hr = ScriptGetFontProperties(hdc,NULL,NULL);
1450     ok( hr == E_INVALIDARG, "(hdc,NULL,NULL), expected E_INVALIDARG, got %08x\n", hr);
1451
1452     hr = ScriptGetFontProperties(hdc,NULL,&sfp);
1453     ok( hr == E_INVALIDARG, "(hdc,NULL,&sfp), expected E_INVALIDARG, got %08x\n", hr);
1454
1455     /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1456     psc = NULL;
1457     hr = ScriptGetFontProperties(hdc,&psc,NULL);
1458     ok( hr == E_INVALIDARG, "(hdc,&psc,NULL), expected E_INVALIDARG, got %08x\n", hr);
1459     ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1460
1461     /* Pass an invalid sfp */
1462     psc = NULL;
1463     sfp.cBytes = sizeof(SCRIPT_FONTPROPERTIES) - 1;
1464     hr = ScriptGetFontProperties(hdc,&psc,&sfp);
1465     ok( hr == E_INVALIDARG, "(hdc,&psc,&sfp) invalid, expected E_INVALIDARG, got %08x\n", hr);
1466     ok( psc != NULL, "Expected a pointer in psc, got NULL\n");
1467     ScriptFreeCache(&psc);
1468     ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1469
1470     /* Give it the correct cBytes, we don't care about what's coming back */
1471     sfp.cBytes = sizeof(SCRIPT_FONTPROPERTIES);
1472     psc = NULL;
1473     hr = ScriptGetFontProperties(hdc,&psc,&sfp);
1474     ok( hr == S_OK, "(hdc,&psc,&sfp) partly initialized, expected S_OK, got %08x\n", hr);
1475     ok( psc != NULL, "Expected a pointer in psc, got NULL\n");
1476
1477     /* Save the psc pointer */
1478     old_psc = psc;
1479     /* Now a NULL hdc again */
1480     hr = ScriptGetFontProperties(NULL,&psc,&sfp);
1481     ok( hr == S_OK, "(NULL,&psc,&sfp), expected S_OK, got %08x\n", hr);
1482     ok( psc == old_psc, "Expected psc not to be changed, was %p is now %p\n", old_psc, psc);
1483     ScriptFreeCache(&psc);
1484     ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1485 }
1486
1487 static void test_ScriptTextOut(HDC hdc)
1488 {
1489     HRESULT         hr;
1490
1491     int             cInChars;
1492     int             cMaxItems;
1493     SCRIPT_ITEM     pItem[255];
1494     int             pcItems;
1495     WCHAR           TestItem1[] = {'T', 'e', 's', 't', 'a', 0}; 
1496
1497     SCRIPT_CACHE    psc;
1498     int             cChars;
1499     int             cMaxGlyphs;
1500     unsigned short  pwOutGlyphs1[256];
1501     WORD            pwLogClust[256];
1502     SCRIPT_VISATTR  psva[256];
1503     int             pcGlyphs;
1504     int             piAdvance[256];
1505     GOFFSET         pGoffset[256];
1506     ABC             pABC[256];
1507     RECT            rect;
1508     int             piX;
1509     int             iCP = 1;
1510     BOOL            fTrailing = FALSE;
1511     SCRIPT_LOGATTR  *psla;
1512     SCRIPT_LOGATTR  sla[256];
1513
1514     /* This is a valid test that will cause parsing to take place                             */
1515     cInChars = 5;
1516     cMaxItems = 255;
1517     hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1518     ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1519     /*  This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
1520      *  returned.                                                                             */
1521     ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
1522     if (pcItems > 0)
1523         ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
1524             "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1525             pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
1526
1527     /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
1528      * ie. ScriptItemize has succeeded and that pItem has been set                            */
1529     cInChars = 5;
1530     if (hr == 0) {
1531         psc = NULL;                                   /* must be null on first call           */
1532         cChars = cInChars;
1533         cMaxGlyphs = 256;
1534         hr = ScriptShape(hdc, &psc, TestItem1, cChars,
1535                          cMaxGlyphs, &pItem[0].a,
1536                          pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1537         ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1538         ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1539         ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1540         if (hr ==0) {
1541             /* Note hdc is needed as glyph info is not yet in psc                  */
1542             hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1543                              pGoffset, pABC);
1544             ok (hr == 0, "Should return 0 not (%08x)\n", hr);
1545             ScriptFreeCache(&psc);              /* Get rid of psc for next test set */
1546             ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1547
1548             hr = ScriptTextOut(NULL, NULL, 0, 0, 0, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, NULL);
1549             ok (hr == E_INVALIDARG, "Should return 0 not (%08x)\n", hr);
1550
1551             hr = ScriptTextOut(NULL, NULL, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1552                                piAdvance, NULL, pGoffset);
1553             ok( hr == E_INVALIDARG, "(NULL,NULL,TestItem1, cInChars, dwFlags, pwOutGlyphs3), "
1554                                     "expected E_INVALIDARG, got %08x\n", hr);
1555
1556             /* Set psc to NULL, to be able to check if a pointer is returned in psc */
1557             psc = NULL;
1558             hr = ScriptTextOut(NULL, &psc, 0, 0, 0, NULL, NULL, NULL, 0, NULL, 0,
1559                                NULL, NULL, NULL);
1560             ok( hr == E_INVALIDARG, "(NULL,&psc,NULL,0,0,0,NULL,), expected E_INVALIDARG, "
1561                                     "got %08x\n", hr);
1562             ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1563
1564             /* hdc is required for this one rather than the usual optional          */
1565             psc = NULL;
1566             hr = ScriptTextOut(NULL, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1567                                piAdvance, NULL, pGoffset);
1568             ok( hr == E_INVALIDARG, "(NULL,&psc,), expected E_INVALIDARG, got %08x\n", hr);
1569             ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1570
1571             /* Set that it returns 0 status */
1572             hr = ScriptTextOut(hdc, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1573                                piAdvance, NULL, pGoffset);
1574             ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
1575
1576             /* Test Rect Rgn is acceptable */
1577             rect.top = 10;
1578             rect.bottom = 20;
1579             rect.left = 10;
1580             rect.right = 40;
1581             hr = ScriptTextOut(hdc, &psc, 0, 0, 0, &rect, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1582                                piAdvance, NULL, pGoffset);
1583             ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
1584
1585             iCP = 1;
1586             hr = ScriptCPtoX(iCP, fTrailing, cChars, pcGlyphs, (const WORD *) &pwLogClust,
1587                             (const SCRIPT_VISATTR *) &psva, (const int *)&piAdvance, &pItem[0].a, &piX);
1588             ok(hr == S_OK, "ScriptCPtoX Stub should return S_OK not %08x\n", hr);
1589
1590             psla = (SCRIPT_LOGATTR *)&sla;
1591             hr = ScriptBreak(TestItem1, cChars, &pItem[0].a, psla);
1592             ok(hr == S_OK, "ScriptBreak Stub should return S_OK not %08x\n", hr);
1593
1594             /* Clean up and go   */
1595             ScriptFreeCache(&psc);
1596             ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1597         }
1598     }
1599 }
1600
1601 static void test_ScriptTextOut2(HDC hdc)
1602 {
1603 /*  Intent is to validate that the HDC passed into ScriptTextOut is
1604  *  used instead of the (possibly) invalid cached one
1605  */
1606     HRESULT         hr;
1607
1608     HDC             hdc1, hdc2;
1609     int             cInChars;
1610     int             cMaxItems;
1611     SCRIPT_ITEM     pItem[255];
1612     int             pcItems;
1613     WCHAR           TestItem1[] = {'T', 'e', 's', 't', 'a', 0};
1614
1615     SCRIPT_CACHE    psc;
1616     int             cChars;
1617     int             cMaxGlyphs;
1618     unsigned short  pwOutGlyphs1[256];
1619     WORD            pwLogClust[256];
1620     SCRIPT_VISATTR  psva[256];
1621     int             pcGlyphs;
1622     int             piAdvance[256];
1623     GOFFSET         pGoffset[256];
1624     ABC             pABC[256];
1625
1626     /* Create an extra DC that will be used until the ScriptTextOut */
1627     hdc1 = CreateCompatibleDC(hdc);
1628     ok (hdc1 != 0, "CreateCompatibleDC failed to create a DC\n");
1629     hdc2 = CreateCompatibleDC(hdc);
1630     ok (hdc2 != 0, "CreateCompatibleDC failed to create a DC\n");
1631
1632     /* This is a valid test that will cause parsing to take place                             */
1633     cInChars = 5;
1634     cMaxItems = 255;
1635     hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1636     ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1637     /*  This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
1638      *  returned.                                                                             */
1639     ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
1640     if (pcItems > 0)
1641         ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars,
1642             "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1643             pItem[0].iCharPos, cInChars, pItem[1].iCharPos);
1644
1645     /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
1646      * ie. ScriptItemize has succeeded and that pItem has been set                            */
1647     cInChars = 5;
1648     if (hr == 0) {
1649         psc = NULL;                                   /* must be null on first call           */
1650         cChars = cInChars;
1651         cMaxGlyphs = 256;
1652         hr = ScriptShape(hdc2, &psc, TestItem1, cChars,
1653                          cMaxGlyphs, &pItem[0].a,
1654                          pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1655         ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1656         ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1657         ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1658         if (hr ==0) {
1659             /* Note hdc is needed as glyph info is not yet in psc                  */
1660             hr = ScriptPlace(hdc2, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1661                              pGoffset, pABC);
1662             ok (hr == 0, "Should return 0 not (%08x)\n", hr);
1663
1664             /*   key part!!!   cached dc is being deleted  */
1665             hr = DeleteDC(hdc2);
1666             ok(hr == 1, "DeleteDC should return 1 not %08x\n", hr);
1667
1668             /* At this point the cached hdc (hdc2) has been destroyed,
1669              * however, we are passing in a *real* hdc (the original hdc).
1670              * The text should be written to that DC
1671              */
1672             hr = ScriptTextOut(hdc1, &psc, 0, 0, 0, NULL, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1673                                piAdvance, NULL, pGoffset);
1674             ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
1675             ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1676
1677             DeleteDC(hdc1);
1678
1679             /* Clean up and go   */
1680             ScriptFreeCache(&psc);
1681             ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1682         }
1683     }
1684 }
1685
1686 static void test_ScriptTextOut3(HDC hdc)
1687 {
1688     HRESULT         hr;
1689
1690     int             cInChars;
1691     int             cMaxItems;
1692     SCRIPT_ITEM     pItem[255];
1693     int             pcItems;
1694     WCHAR           TestItem1[] = {' ','\r', 0};
1695
1696     SCRIPT_CACHE    psc;
1697     int             cChars;
1698     int             cMaxGlyphs;
1699     unsigned short  pwOutGlyphs1[256];
1700     WORD            pwLogClust[256];
1701     SCRIPT_VISATTR  psva[256];
1702     int             pcGlyphs;
1703     int             piAdvance[256];
1704     GOFFSET         pGoffset[256];
1705     ABC             pABC[256];
1706     RECT            rect;
1707
1708     /* This is to ensure that non exisiting glyphs are translated into a valid glyph number */
1709     cInChars = 2;
1710     cMaxItems = 255;
1711     hr = ScriptItemize(TestItem1, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems);
1712     ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr);
1713     /*  This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is *
1714      *  returned.                                                                             */
1715     ok (pcItems > 0, "The number of SCRIPT_ITEMS should be greater than 0\n");
1716     if (pcItems > 0)
1717         ok (pItem[0].iCharPos == 0 && pItem[2].iCharPos == cInChars,
1718             "Start pos not = 0 (%d) or end pos not = %d (%d)\n",
1719             pItem[0].iCharPos, cInChars, pItem[2].iCharPos);
1720
1721     /* It would appear that we have a valid SCRIPT_ANALYSIS and can continue
1722      * ie. ScriptItemize has succeeded and that pItem has been set                            */
1723     cInChars = 2;
1724     if (hr == 0) {
1725         psc = NULL;                                   /* must be null on first call           */
1726         cChars = cInChars;
1727         cMaxGlyphs = 256;
1728         hr = ScriptShape(hdc, &psc, TestItem1, cChars,
1729                          cMaxGlyphs, &pItem[0].a,
1730                          pwOutGlyphs1, pwLogClust, psva, &pcGlyphs);
1731         ok (hr == 0, "ScriptShape should return 0 not (%08x)\n", hr);
1732         ok (psc != NULL, "psc should not be null and have SCRIPT_CACHE buffer address\n");
1733         ok (pcGlyphs == cChars, "Chars in (%d) should equal Glyphs out (%d)\n", cChars, pcGlyphs);
1734         if (hr ==0) {
1735             /* Note hdc is needed as glyph info is not yet in psc                  */
1736             hr = ScriptPlace(hdc, &psc, pwOutGlyphs1, pcGlyphs, psva, &pItem[0].a, piAdvance,
1737                              pGoffset, pABC);
1738             ok (hr == 0, "Should return 0 not (%08x)\n", hr);
1739
1740             /* Test Rect Rgn is acceptable */
1741             rect.top = 10;
1742             rect.bottom = 20;
1743             rect.left = 10;
1744             rect.right = 40;
1745             hr = ScriptTextOut(hdc, &psc, 0, 0, 0, &rect, &pItem[0].a, NULL, 0, pwOutGlyphs1, pcGlyphs,
1746                                piAdvance, NULL, pGoffset);
1747             ok (hr == 0, "ScriptTextOut should return 0 not (%08x)\n", hr);
1748
1749         }
1750         /* Clean up and go   */
1751         ScriptFreeCache(&psc);
1752         ok( psc == NULL, "Expected psc to be NULL, got %p\n", psc);
1753     }
1754 }
1755
1756 static void test_ScriptXtoX(void)
1757 /****************************************************************************************
1758  *  This routine tests the ScriptXtoCP and ScriptCPtoX functions using static variables *
1759  ****************************************************************************************/
1760 {
1761     static const WCHAR test[] = {'t', 'e', 's', 't',0};
1762     SCRIPT_ITEM items[2];
1763     int iX, iCP;
1764     int cChars;
1765     int cGlyphs;
1766     WORD pwLogClust[10] = {0, 0, 0, 1, 1, 2, 2, 3, 3, 3};
1767     WORD pwLogClust_RTL[10] = {3, 3, 3, 2, 2, 1, 1, 0, 0, 0};
1768     SCRIPT_VISATTR psva[10];
1769     int piAdvance[10] = {200, 190, 210, 180, 170, 204, 189, 195, 212, 203};
1770     int piCP, piX;
1771     int piTrailing;
1772     BOOL fTrailing;
1773     HRESULT hr;
1774     static const int offsets[13] = {0, 66, 133, 200, 295, 390, 495, 600, 1051, 1502, 1953, 1953, 1953};
1775     static const int offsets_RTL[13] = {780, 720, 660, 600, 495, 390, 295, 200, 133, 66, 0, 0, 0};
1776
1777     hr = ScriptItemize(test, lstrlenW(test), sizeof(items)/sizeof(items[0]), NULL, NULL, items, NULL);
1778     ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
1779
1780     iX = -1;
1781     cChars = 10;
1782     cGlyphs = 10;
1783     hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1784     ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1785     if (piTrailing)
1786         ok(piCP == -1, "Negative iX should return piCP=-1 not %d\n", piCP);
1787     else /* win2k3 */
1788         ok(piCP == 10, "Negative iX should return piCP=10 not %d\n", piCP);
1789
1790     for(iCP = 0; iCP < 10; iCP++)
1791     {
1792         iX = offsets[iCP]+1;
1793         cChars = 10;
1794         cGlyphs = 10;
1795         hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1796         ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1797         ok(piCP == iCP, "iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
1798         ok(piTrailing == 0, "iX=%d should return piTrailing=0 not %d\n", iX, piTrailing);
1799     }
1800
1801     for(iCP = 0; iCP < 10; iCP++)
1802     {
1803         iX = offsets[iCP+1]-1;
1804         cChars = 10;
1805         cGlyphs = 10;
1806         hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1807         ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1808         ok(piCP == iCP, "iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
1809         ok(piTrailing == 1, "iX=%d should return piTrailing=1 not %d\n", iX, piTrailing);
1810     }
1811
1812     /* 0,1,2 are actually fractional offsets meaning that they will not be reporting the same iCP as comes in so don't test those */
1813     for(iCP = 3; iCP < 10; iCP++)
1814     {
1815         iX = offsets[iCP];
1816         cChars = 10;
1817         cGlyphs = 10;
1818         hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1819         ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1820         ok(piCP == iCP, "iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
1821         ok(piTrailing == 0, "iX=%d should return piTrailing=0 not %d\n", iX, piTrailing);
1822     }
1823
1824     items[0].a.fRTL = TRUE;
1825
1826     iX = -1;
1827     cChars = 10;
1828     cGlyphs = 10;
1829     hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust_RTL, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1830     ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1831     if (piTrailing)
1832         ok(piCP == -1, "Negative iX should return piCP=-1 not %d\n", piCP);
1833     else /* win2k3 */
1834         ok(piCP == 10, "Negative iX should return piCP=10 not %d\n", piCP);
1835
1836     iX = 1954;
1837     cChars = 10;
1838     cGlyphs = 10;
1839     hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust_RTL, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1840     ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1841     ok(piCP == -1, "iX=%d should return piCP=-1 not %d\n", iX, piCP);
1842     ok(piTrailing == 1, "iX=%d should return piTrailing=1 not %d\n", iX, piTrailing);
1843
1844     for(iCP = 0; iCP < 10; iCP++)
1845     {
1846         iX = offsets_RTL[iCP]-1;
1847         cChars = 10;
1848         cGlyphs = 10;
1849         hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust_RTL, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1850         ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1851         ok(piCP == iCP, "iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
1852         ok(piTrailing == 0, "iX=%d should return piTrailing=0 not %d\n", iX, piTrailing);
1853     }
1854
1855     for(iCP = 0; iCP < 10; iCP++)
1856     {
1857         iX = offsets_RTL[iCP+1]+1;
1858         cChars = 10;
1859         cGlyphs = 10;
1860         hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust_RTL, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1861         ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1862         ok(piCP == iCP, "iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
1863         ok(piTrailing == 1, "iX=%d should return piTrailing=1 not %d\n", iX, piTrailing);
1864     }
1865
1866     for(iCP = 0; iCP < 10; iCP++)
1867     {
1868         iX = offsets_RTL[iCP];
1869         cChars = 10;
1870         cGlyphs = 10;
1871         hr = ScriptXtoCP(iX, cChars, cGlyphs, pwLogClust_RTL, psva, piAdvance, &items[0].a, &piCP, &piTrailing);
1872         ok(hr == S_OK, "ScriptXtoCP should return S_OK not %08x\n", hr);
1873         ok(piCP == iCP, "iX=%d should return piCP=%d not %d\n", iX, iCP, piCP);
1874         ok(piTrailing == 0, "iX=%d should return piTrailing=0 not %d\n", iX, piTrailing);
1875     }
1876
1877     items[0].a.fRTL = FALSE;
1878
1879     for(iCP = 0; iCP <= 11; iCP++)
1880     {
1881         fTrailing = FALSE;
1882         cChars = 10;
1883         cGlyphs = 10;
1884         hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance, &items[0].a, &piX);
1885         ok(hr == S_OK, "ScriptCPtoX should return S_OK not %08x\n", hr);
1886         ok(piX == offsets[iCP],
1887            "iCP=%d should return piX=%d not %d\n", iCP, offsets[iCP], piX);
1888     }
1889
1890     for(iCP = 0; iCP <= 11; iCP++)
1891     {
1892         fTrailing = TRUE;
1893         cChars = 10;
1894         cGlyphs = 10;
1895         hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust, psva, piAdvance, &items[0].a, &piX);
1896         ok(hr == S_OK, "ScriptCPtoX should return S_OK not %08x\n", hr);
1897         ok(piX == offsets[iCP+1],
1898            "iCP=%d should return piX=%d not %d\n", iCP, offsets[iCP+1], piX);
1899     }
1900
1901     items[0].a.fRTL = TRUE;
1902
1903     for(iCP = 0; iCP <= 11; iCP++)
1904     {
1905         fTrailing = FALSE;
1906         cChars = 10;
1907         cGlyphs = 10;
1908         hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust_RTL, psva, piAdvance, &items[0].a, &piX);
1909         ok(hr == S_OK, "ScriptCPtoX should return S_OK not %08x\n", hr);
1910         ok(piX == offsets_RTL[iCP],
1911            "iCP=%d should return piX=%d not %d\n", iCP, offsets_RTL[iCP], piX);
1912     }
1913
1914     for(iCP = 0; iCP <= 11; iCP++)
1915     {
1916         fTrailing = TRUE;
1917         cChars = 10;
1918         cGlyphs = 10;
1919         hr = ScriptCPtoX(iCP, fTrailing, cChars, cGlyphs, pwLogClust_RTL, psva, piAdvance, &items[0].a, &piX);
1920         ok(hr == S_OK, "ScriptCPtoX should return S_OK not %08x\n", hr);
1921         ok(piX == offsets_RTL[iCP+1],
1922            "iCP=%d should return piX=%d not %d\n", iCP, offsets_RTL[iCP+1], piX);
1923     }
1924 }
1925
1926 static void test_ScriptString(HDC hdc)
1927 {
1928 /*******************************************************************************************
1929  *
1930  * This set of tests are for the string functions of uniscribe.  The ScriptStringAnalyse
1931  * function allocates memory pointed to by the SCRIPT_STRING_ANALYSIS ssa pointer.  This
1932  * memory is freed by ScriptStringFree.  There needs to be a valid hdc for this as
1933  * ScriptStringAnalyse calls ScriptSItemize, ScriptShape and ScriptPlace which require it.
1934  *
1935  */
1936
1937     HRESULT         hr;
1938     WCHAR           teststr[] = {'T','e','s','t','1',' ','a','2','b','3', '\0'};
1939     int             len = (sizeof(teststr) / sizeof(WCHAR)) - 1;
1940     int             Glyphs = len * 2 + 16;
1941     int             Charset;
1942     DWORD           Flags = SSA_GLYPHS;
1943     int             ReqWidth = 100;
1944     const int       Dx[5] = {10, 10, 10, 10, 10};
1945     const BYTE      InClass = 0;
1946     SCRIPT_STRING_ANALYSIS ssa = NULL;
1947
1948     int             X = 10; 
1949     int             Y = 100;
1950     UINT            Options = 0; 
1951     const RECT      rc = {0, 50, 100, 100}; 
1952     int             MinSel = 0;
1953     int             MaxSel = 0;
1954     BOOL            Disabled = FALSE;
1955     const int      *clip_len;
1956     int            i;
1957     UINT           *order;
1958
1959
1960     Charset = -1;     /* this flag indicates unicode input */
1961     /* Test without hdc to get E_PENDING */
1962     hr = ScriptStringAnalyse( NULL, teststr, len, Glyphs, Charset, Flags,
1963                               ReqWidth, NULL, NULL, Dx, NULL,
1964                               &InClass, &ssa);
1965     ok(hr == E_PENDING, "ScriptStringAnalyse Stub should return E_PENDING not %08x\n", hr);
1966
1967     /* test with hdc, this should be a valid test  */
1968     hr = ScriptStringAnalyse( hdc, teststr, len, Glyphs, Charset, Flags,
1969                               ReqWidth, NULL, NULL, Dx, NULL,
1970                               &InClass, &ssa);
1971     ok(hr == S_OK, "ScriptStringAnalyse should return S_OK not %08x\n", hr);
1972     ScriptStringFree(&ssa);
1973
1974     /* test makes sure that a call with a valid pssa still works */
1975     hr = ScriptStringAnalyse( hdc, teststr, len, Glyphs, Charset, Flags,
1976                               ReqWidth, NULL, NULL, Dx, NULL,
1977                               &InClass, &ssa);
1978     ok(hr == S_OK, "ScriptStringAnalyse should return S_OK not %08x\n", hr);
1979     ok(ssa != NULL, "ScriptStringAnalyse pssa should not be NULL\n");
1980
1981     if (hr == S_OK)
1982     {
1983         hr = ScriptStringOut(ssa, X, Y, Options, &rc, MinSel, MaxSel, Disabled);
1984         ok(hr == S_OK, "ScriptStringOut should return S_OK not %08x\n", hr);
1985     }
1986
1987      clip_len = ScriptString_pcOutChars(ssa);
1988      ok(*clip_len == len, "ScriptString_pcOutChars failed, got %d, expected %d\n", *clip_len, len);
1989
1990      order = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, *clip_len * sizeof(UINT));
1991      hr = ScriptStringGetOrder(ssa, order);
1992      ok(hr == S_OK, "ScriptStringGetOrder failed, got %08x, expected S_OK\n", hr);
1993
1994      for (i = 0; i < *clip_len; i++) ok(order[i] == i, "%d: got %d expected %d\n", i, order[i], i);
1995      HeapFree(GetProcessHeap(), 0, order);
1996
1997      hr = ScriptStringFree(&ssa);
1998      ok(hr == S_OK, "ScriptStringFree should return S_OK not %08x\n", hr);
1999 }
2000
2001 static void test_ScriptStringXtoCP_CPtoX(HDC hdc)
2002 {
2003 /*****************************************************************************************
2004  *
2005  * This test is for the ScriptStringXtoCP and ScriptStringXtoCP functions.  Due to the
2006  * nature of the fonts between Windows and Wine, the test is implemented by generating
2007  * values using one one function then checking the output of the second.  In this way
2008  * the validity of the functions is established using Windows as a base and confirming
2009  * similar behaviour in wine.
2010  */
2011
2012     HRESULT         hr;
2013     static const WCHAR teststr1[]  = {0x05e9, 'i', 0x05dc, 'n', 0x05d5, 'e', 0x05dd, '.',0};
2014     static const BOOL rtl[] = {1, 0, 1, 0, 1, 0, 1, 0};
2015     void            *String = (WCHAR *) &teststr1;      /* ScriptStringAnalysis needs void */
2016     int             String_len = (sizeof(teststr1)/sizeof(WCHAR))-1;
2017     int             Glyphs = String_len * 2 + 16;       /* size of buffer as recommended  */
2018     int             Charset = -1;                       /* unicode                        */
2019     DWORD           Flags = SSA_GLYPHS;
2020     int             ReqWidth = 100;
2021     const BYTE      InClass = 0;
2022     SCRIPT_STRING_ANALYSIS ssa = NULL;
2023
2024     int             Ch;                                  /* Character position in string */
2025     int             iTrailing;
2026     int             Cp;                                  /* Character position in string */
2027     int             X;
2028     int             trail,lead;
2029     BOOL            fTrailing;
2030
2031     /* Test with hdc, this should be a valid test
2032      * Here we generate an SCRIPT_STRING_ANALYSIS that will be used as input to the
2033      * following character positions to X and X to character position functions.
2034      */
2035
2036     hr = ScriptStringAnalyse( hdc, String, String_len, Glyphs, Charset, Flags,
2037                               ReqWidth, NULL, NULL, NULL, NULL,
2038                               &InClass, &ssa);
2039     ok(hr == S_OK ||
2040        hr == E_INVALIDARG, /* NT */
2041        "ScriptStringAnalyse should return S_OK or E_INVALIDARG not %08x\n", hr);
2042
2043     if  (hr == S_OK)
2044     {
2045         ok(ssa != NULL, "ScriptStringAnalyse ssa should not be NULL\n");
2046
2047         /*
2048          * Loop to generate character positions to provide starting positions for the
2049          * ScriptStringCPtoX and ScriptStringXtoCP functions
2050          */
2051         for (Cp = 0; Cp < String_len; Cp++)
2052         {
2053             /* The fTrailing flag is used to indicate whether the X being returned is at
2054              * the beginning or the end of the character. What happens here is that if
2055              * fTrailing indicates the end of the character, ie. FALSE, then ScriptStringXtoCP
2056              * returns the beginning of the next character and iTrailing is FALSE.  So for this
2057              * loop iTrailing will be FALSE in both cases.
2058              */
2059             hr = ScriptStringCPtoX(ssa, Cp, TRUE, &trail);
2060             ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2061             hr = ScriptStringCPtoX(ssa, Cp, FALSE, &lead);
2062             ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2063             if (rtl[Cp])
2064                 ok(lead > trail, "Leading values should be after trialing for rtl chracters(%i)\n",Cp);
2065             else
2066                 ok(lead < trail, "Trailing values should be after leading for ltr chracters(%i)\n",Cp);
2067
2068             /* move by 1 pixel so that we are not inbetween 2 characters.  That could result in being the lead of a rtl and
2069                at the same time the trail of an ltr */
2070
2071             /* inside the leading edge */
2072             X = lead;
2073             if (rtl[Cp]) X--; else X++;
2074             hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2075             ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2076             ok(Cp == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp, Ch, trail);
2077             ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d\n",
2078                                   iTrailing, X);
2079
2080             /* inside the trailing edge */
2081             X = trail;
2082             if (rtl[Cp]) X++; else X--;
2083             hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2084             ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2085             ok(Cp == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp, Ch, trail);
2086             ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d\n",
2087                                   iTrailing, X);
2088
2089             /* outside the "trailing" edge */
2090             if (Cp < String_len-1)
2091             {
2092                 if (rtl[Cp]) X = lead; else X = trail;
2093                 X++;
2094                 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2095                 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2096                 ok(Cp + 1 == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp + 1, Ch, trail);
2097                 if (rtl[Cp+1])
2098                     ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d\n",
2099                                           iTrailing, X);
2100                 else
2101                     ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d\n",
2102                                           iTrailing, X);
2103             }
2104
2105             /* outside the "leading" edge */
2106             if (Cp != 0)
2107             {
2108                 if (rtl[Cp]) X = trail; else X = lead;
2109                 X--;
2110                 hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2111                 ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2112                 ok(Cp - 1 == Ch, "ScriptStringXtoCP should return Ch = %d not %d for X = %d\n", Cp - 1, Ch, trail);
2113                 if (Cp != 0  && rtl[Cp-1])
2114                     ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = %d\n",
2115                                           iTrailing, X);
2116                 else
2117                     ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = %d\n",
2118                                           iTrailing, X);
2119             }
2120         }
2121
2122         /* Check beyond the leading boundary of the whole string */
2123         if (rtl[0])
2124         {
2125             /* having a leading rtl character seems to confuse usp */
2126             /* this looks to be a windows bug we should emulate */
2127             hr = ScriptStringCPtoX(ssa, 0, TRUE, &X);
2128             ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2129             X--;
2130             hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2131             ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2132             ok(Ch == 1, "ScriptStringXtoCP should return Ch = 1 not %d for X outside leading edge when rtl\n", Ch);
2133             ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = outside leading edge when rtl\n",
2134                                        iTrailing);
2135         }
2136         else
2137         {
2138             hr = ScriptStringCPtoX(ssa, 0, FALSE, &X);
2139             ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2140             X--;
2141             hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2142             ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2143             ok(Ch == -1, "ScriptStringXtoCP should return Ch = -1 not %d for X outside leading edge\n", Ch);
2144             ok(iTrailing == TRUE, "ScriptStringXtoCP should return iTrailing = 1 not %d for X = outside leading edge\n",
2145                                        iTrailing);
2146         }
2147
2148         /* Check beyond the end boundary of the whole string */
2149         if (rtl[String_len-1])
2150         {
2151             hr = ScriptStringCPtoX(ssa, String_len-1, FALSE, &X);
2152             ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2153         }
2154         else
2155         {
2156             hr = ScriptStringCPtoX(ssa, String_len-1, TRUE, &X);
2157             ok(hr == S_OK, "ScriptStringCPtoX should return S_OK not %08x\n", hr);
2158         }
2159         X++;
2160         hr = ScriptStringXtoCP(ssa, X, &Ch, &iTrailing);
2161         ok(hr == S_OK, "ScriptStringXtoCP should return S_OK not %08x\n", hr);
2162         ok(Ch == String_len, "ScriptStringXtoCP should return Ch = %i not %d for X outside trailing edge\n", String_len, Ch);
2163         ok(iTrailing == FALSE, "ScriptStringXtoCP should return iTrailing = 0 not %d for X = outside traling edge\n",
2164                                    iTrailing);
2165
2166         /*
2167          * Cleanup the SSA for the next round of tests
2168          */
2169         hr = ScriptStringFree(&ssa);
2170         ok(hr == S_OK, "ScriptStringFree should return S_OK not %08x\n", hr);
2171
2172         /*
2173          * Test to see that exceeding the number of chars returns E_INVALIDARG.  First
2174          * generate an SSA for the subsequent tests.
2175          */
2176         hr = ScriptStringAnalyse( hdc, String, String_len, Glyphs, Charset, Flags,
2177                                   ReqWidth, NULL, NULL, NULL, NULL,
2178                                   &InClass, &ssa);
2179         ok(hr == S_OK, "ScriptStringAnalyse should return S_OK not %08x\n", hr);
2180
2181         /*
2182          * When ScriptStringCPtoX is called with a character position Cp that exceeds the
2183          * string length, return E_INVALIDARG.  This also invalidates the ssa so a
2184          * ScriptStringFree should also fail.
2185          */
2186         fTrailing = FALSE;
2187         Cp = String_len + 1;
2188         hr = ScriptStringCPtoX(ssa, Cp, fTrailing, &X);
2189         ok(hr == E_INVALIDARG, "ScriptStringCPtoX should return E_INVALIDARG not %08x\n", hr);
2190
2191         ScriptStringFree(&ssa);
2192     }
2193 }
2194
2195 static void test_ScriptCacheGetHeight(HDC hdc)
2196 {
2197     HRESULT hr;
2198     SCRIPT_CACHE sc = NULL;
2199     LONG height;
2200
2201     hr = ScriptCacheGetHeight(NULL, NULL, NULL);
2202     ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2203
2204     hr = ScriptCacheGetHeight(NULL, &sc, NULL);
2205     ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2206
2207     hr = ScriptCacheGetHeight(NULL, &sc, &height);
2208     ok(hr == E_PENDING, "expected E_PENDING, got 0x%08x\n", hr);
2209
2210     height = 0;
2211
2212     hr = ScriptCacheGetHeight(hdc, &sc, &height);
2213     ok(hr == S_OK, "expected S_OK, got 0x%08x\n", hr);
2214     ok(height > 0, "expected height > 0\n");
2215
2216     ScriptFreeCache(&sc);
2217 }
2218
2219 static void test_ScriptGetGlyphABCWidth(HDC hdc)
2220 {
2221     HRESULT hr;
2222     SCRIPT_CACHE sc = NULL;
2223     ABC abc;
2224
2225     hr = ScriptGetGlyphABCWidth(NULL, NULL, 'a', NULL);
2226     ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2227
2228     hr = ScriptGetGlyphABCWidth(NULL, &sc, 'a', NULL);
2229     ok(broken(hr == E_PENDING) ||
2230        hr == E_INVALIDARG, /* WIN7 */
2231        "expected E_INVALIDARG, got 0x%08x\n", hr);
2232
2233     hr = ScriptGetGlyphABCWidth(NULL, &sc, 'a', &abc);
2234     ok(hr == E_PENDING, "expected E_PENDING, got 0x%08x\n", hr);
2235
2236     if (0) {    /* crashes on WinXP */
2237     hr = ScriptGetGlyphABCWidth(hdc, &sc, 'a', NULL);
2238     ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2239     }
2240
2241     hr = ScriptGetGlyphABCWidth(hdc, &sc, 'a', &abc);
2242     ok(hr == S_OK, "expected S_OK, got 0x%08x\n", hr);
2243
2244     ScriptFreeCache(&sc);
2245 }
2246
2247 static void test_ScriptLayout(void)
2248 {
2249     HRESULT hr;
2250     static const BYTE levels[][10] =
2251     {
2252         { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
2253         { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
2254         { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 },
2255         { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 },
2256
2257         { 0, 0, 0, 0, 0, 1, 1, 1, 1, 1},
2258         { 1, 1, 1, 2, 2, 2, 1, 1, 1, 1 },
2259         { 2, 2, 2, 1, 1, 1, 2, 2, 2, 2 },
2260         { 0, 0, 1, 1, 2, 2, 1, 1, 0, 0 },
2261         { 1, 1, 2, 2, 3, 3, 2, 2, 1, 1 },
2262
2263         { 0, 0, 1, 1, 2, 2, 1, 1, 0, 1 },
2264         { 1, 0, 1, 2, 2, 1, 2, 1, 0, 1 },
2265     };
2266     static const int expect_l2v[][10] =
2267     {
2268         { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2269         { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2270         { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2271         { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2272
2273         { 0, 1, 2, 3, 4, 9, 8 ,7 ,6, 5},
2274 /**/    { 9, 8, 7, 4, 5, 6, 3 ,2 ,1, 0},
2275 /**/    { 7, 8, 9, 6, 5, 4, 0 ,1 ,2, 3},
2276         { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2277         { 9, 8, 2, 3, 5, 4, 6 ,7 ,1, 0},
2278
2279         { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2280 /**/    { 0, 1, 7, 5, 6, 4, 3 ,2 ,8, 9},
2281     };
2282     static const int expect_v2l[][10] =
2283     {
2284         { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2285         { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2286         { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 },
2287         { 9, 8, 7, 6, 5, 4, 3, 2, 1, 0 },
2288
2289         { 0, 1, 2, 3, 4, 9, 8 ,7 ,6, 5},
2290         { 9, 8, 7, 6, 3, 4, 5 ,2 ,1, 0},
2291         { 6, 7, 8, 9, 5, 4, 3 ,0 ,1, 2},
2292         { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2293         { 9, 8, 2, 3, 5, 4, 6 ,7 ,1, 0},
2294
2295         { 0, 1, 7, 6, 4, 5, 3 ,2 ,8, 9},
2296         { 0, 1, 7, 6, 5, 3, 4 ,2 ,8, 9},
2297     };
2298
2299     int i, j, vistolog[sizeof(levels[0])], logtovis[sizeof(levels[0])];
2300
2301     hr = ScriptLayout(sizeof(levels[0]), NULL, vistolog, logtovis);
2302     ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2303
2304     hr = ScriptLayout(sizeof(levels[0]), levels[0], NULL, NULL);
2305     ok(hr == E_INVALIDARG, "expected E_INVALIDARG, got 0x%08x\n", hr);
2306
2307     for (i = 0; i < sizeof(levels)/sizeof(levels[0]); i++)
2308     {
2309         hr = ScriptLayout(sizeof(levels[0]), levels[i], vistolog, logtovis);
2310         ok(hr == S_OK, "expected S_OK, got 0x%08x\n", hr);
2311
2312         for (j = 0; j < sizeof(levels[i]); j++)
2313         {
2314             ok(expect_v2l[i][j] == vistolog[j],
2315                "failure: levels[%d][%d] = %d, vistolog[%d] = %d\n",
2316                i, j, levels[i][j], j, vistolog[j] );
2317         }
2318
2319         for (j = 0; j < sizeof(levels[i]); j++)
2320         {
2321             ok(expect_l2v[i][j] == logtovis[j],
2322                "failure: levels[%d][%d] = %d, logtovis[%d] = %d\n",
2323                i, j, levels[i][j], j, logtovis[j] );
2324         }
2325     }
2326 }
2327
2328 static BOOL CALLBACK enum_proc(LGRPID group, LCID lcid, LPSTR locale, LONG_PTR lparam)
2329 {
2330     HRESULT hr;
2331     SCRIPT_DIGITSUBSTITUTE sds;
2332     SCRIPT_CONTROL sc;
2333     SCRIPT_STATE ss;
2334     LCID lcid_old;
2335
2336     if (!IsValidLocale(lcid, LCID_INSTALLED)) return TRUE;
2337
2338     memset(&sds, 0, sizeof(sds));
2339     memset(&sc, 0, sizeof(sc));
2340     memset(&ss, 0, sizeof(ss));
2341
2342     lcid_old = GetThreadLocale();
2343     if (!SetThreadLocale(lcid)) return TRUE;
2344
2345     hr = ScriptRecordDigitSubstitution(lcid, &sds);
2346     ok(hr == S_OK, "ScriptRecordDigitSubstitution failed: 0x%08x\n", hr);
2347
2348     hr = ScriptApplyDigitSubstitution(&sds, &sc, &ss);
2349     ok(hr == S_OK, "ScriptApplyDigitSubstitution failed: 0x%08x\n", hr);
2350
2351     SetThreadLocale(lcid_old);
2352     return TRUE;
2353 }
2354
2355 static void test_digit_substitution(void)
2356 {
2357     BOOL ret;
2358     unsigned int i;
2359     static const LGRPID groups[] =
2360     {
2361         LGRPID_WESTERN_EUROPE,
2362         LGRPID_CENTRAL_EUROPE,
2363         LGRPID_BALTIC,
2364         LGRPID_GREEK,
2365         LGRPID_CYRILLIC,
2366         LGRPID_TURKISH,
2367         LGRPID_JAPANESE,
2368         LGRPID_KOREAN,
2369         LGRPID_TRADITIONAL_CHINESE,
2370         LGRPID_SIMPLIFIED_CHINESE,
2371         LGRPID_THAI,
2372         LGRPID_HEBREW,
2373         LGRPID_ARABIC,
2374         LGRPID_VIETNAMESE,
2375         LGRPID_INDIC,
2376         LGRPID_GEORGIAN,
2377         LGRPID_ARMENIAN
2378     };
2379     HMODULE hKernel32;
2380     static BOOL (WINAPI * pEnumLanguageGroupLocalesA)(LANGGROUPLOCALE_ENUMPROCA,LGRPID,DWORD,LONG_PTR);
2381
2382     hKernel32 = GetModuleHandleA("kernel32.dll");
2383     pEnumLanguageGroupLocalesA = (void*)GetProcAddress(hKernel32, "EnumLanguageGroupLocalesA");
2384
2385     if (!pEnumLanguageGroupLocalesA)
2386     {
2387         win_skip("EnumLanguageGroupLocalesA not available on this platform\n");
2388         return;
2389     }
2390
2391     for (i = 0; i < sizeof(groups)/sizeof(groups[0]); i++)
2392     {
2393         ret = pEnumLanguageGroupLocalesA(enum_proc, groups[i], 0, 0);
2394         if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2395         {
2396             win_skip("EnumLanguageGroupLocalesA not implemented on this platform\n");
2397             break;
2398         }
2399         
2400         ok(ret, "EnumLanguageGroupLocalesA failed unexpectedly: %u\n", GetLastError());
2401     }
2402 }
2403
2404 static void test_ScriptGetProperties(void)
2405 {
2406     const SCRIPT_PROPERTIES **props;
2407     HRESULT hr;
2408     int num;
2409
2410     hr = ScriptGetProperties(NULL, NULL);
2411     ok(hr == E_INVALIDARG, "ScriptGetProperties succeeded\n");
2412
2413     hr = ScriptGetProperties(NULL, &num);
2414     ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
2415
2416     hr = ScriptGetProperties(&props, NULL);
2417     ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
2418
2419     hr = ScriptGetProperties(&props, &num);
2420     ok(hr == S_OK, "ScriptGetProperties failed: 0x%08x\n", hr);
2421 }
2422
2423 static void test_ScriptBreak(void)
2424 {
2425     static const WCHAR test[] = {' ','\r','\n',0};
2426     SCRIPT_ITEM items[4];
2427     SCRIPT_LOGATTR la;
2428     HRESULT hr;
2429
2430     hr = ScriptItemize(test, 3, 4, NULL, NULL, items, NULL);
2431     ok(!hr, "ScriptItemize should return S_OK not %08x\n", hr);
2432
2433     memset(&la, 0, sizeof(la));
2434     hr = ScriptBreak(test, 1, &items[0].a, &la);
2435     ok(!hr, "ScriptBreak should return S_OK not %08x\n", hr);
2436
2437     ok(!la.fSoftBreak, "fSoftBreak set\n");
2438     ok(la.fWhiteSpace, "fWhiteSpace not set\n");
2439     ok(la.fCharStop, "fCharStop not set\n");
2440     ok(!la.fWordStop, "fWordStop set\n");
2441     ok(!la.fInvalid, "fInvalid set\n");
2442     ok(!la.fReserved, "fReserved set\n");
2443
2444     memset(&la, 0, sizeof(la));
2445     hr = ScriptBreak(test + 1, 1, &items[1].a, &la);
2446     ok(!hr, "ScriptBreak should return S_OK not %08x\n", hr);
2447
2448     ok(!la.fSoftBreak, "fSoftBreak set\n");
2449     ok(!la.fWhiteSpace, "fWhiteSpace set\n");
2450     ok(la.fCharStop, "fCharStop not set\n");
2451     ok(!la.fWordStop, "fWordStop set\n");
2452     ok(!la.fInvalid, "fInvalid set\n");
2453     ok(!la.fReserved, "fReserved set\n");
2454
2455     memset(&la, 0, sizeof(la));
2456     hr = ScriptBreak(test + 2, 1, &items[2].a, &la);
2457     ok(!hr, "ScriptBreak should return S_OK not %08x\n", hr);
2458
2459     ok(!la.fSoftBreak, "fSoftBreak set\n");
2460     ok(!la.fWhiteSpace, "fWhiteSpace set\n");
2461     ok(la.fCharStop, "fCharStop not set\n");
2462     ok(!la.fWordStop, "fWordStop set\n");
2463     ok(!la.fInvalid, "fInvalid set\n");
2464     ok(!la.fReserved, "fReserved set\n");
2465 }
2466
2467 static void test_newlines(void)
2468 {
2469     static const WCHAR test1[] = {'t','e','x','t','\r','t','e','x','t',0};
2470     static const WCHAR test2[] = {'t','e','x','t','\n','t','e','x','t',0};
2471     static const WCHAR test3[] = {'t','e','x','t','\r','\n','t','e','x','t',0};
2472     static const WCHAR test4[] = {'t','e','x','t','\n','\r','t','e','x','t',0};
2473     static const WCHAR test5[] = {'1','2','3','4','\n','\r','1','2','3','4',0};
2474     SCRIPT_ITEM items[5];
2475     HRESULT hr;
2476     int count;
2477
2478     count = 0;
2479     hr = ScriptItemize(test1, lstrlenW(test1), 5, NULL, NULL, items, &count);
2480     ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2481     ok(count == 3, "got %d expected 3\n", count);
2482
2483     count = 0;
2484     hr = ScriptItemize(test2, lstrlenW(test2), 5, NULL, NULL, items, &count);
2485     ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2486     ok(count == 3, "got %d expected 3\n", count);
2487
2488     count = 0;
2489     hr = ScriptItemize(test3, lstrlenW(test3), 5, NULL, NULL, items, &count);
2490     ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2491     ok(count == 4, "got %d expected 4\n", count);
2492
2493     count = 0;
2494     hr = ScriptItemize(test4, lstrlenW(test4), 5, NULL, NULL, items, &count);
2495     ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2496     ok(count == 4, "got %d expected 4\n", count);
2497
2498     count = 0;
2499     hr = ScriptItemize(test5, lstrlenW(test5), 5, NULL, NULL, items, &count);
2500     ok(hr == S_OK, "ScriptItemize failed: 0x%08x\n", hr);
2501     ok(count == 4, "got %d expected 4\n", count);
2502 }
2503
2504 START_TEST(usp10)
2505 {
2506     HWND            hwnd;
2507     HDC             hdc;
2508     LOGFONTA        lf;
2509     HFONT           hfont;
2510
2511     unsigned short  pwOutGlyphs[256];
2512
2513     /* We need a valid HDC to drive a lot of Script functions which requires the following    *
2514      * to set up for the tests.                                                               */
2515     hwnd = CreateWindowExA(0, "static", "", WS_POPUP, 0,0,100,100,
2516                            0, 0, 0, NULL);
2517     assert(hwnd != 0);
2518     ShowWindow(hwnd, SW_SHOW);
2519     UpdateWindow(hwnd);
2520
2521     hdc = GetDC(hwnd);                                      /* We now have a hdc             */
2522     ok( hdc != NULL, "HDC failed to be created %p\n", hdc);
2523
2524     memset(&lf, 0, sizeof(LOGFONTA));
2525     lstrcpyA(lf.lfFaceName, "Tahoma");
2526     lf.lfHeight = 10;
2527     lf.lfWeight = 3;
2528     lf.lfWidth = 10;
2529
2530     hfont = SelectObject(hdc, CreateFontIndirectA(&lf));
2531     ok(hfont != NULL, "SelectObject failed: %p\n", hfont);
2532
2533     test_ScriptItemize();
2534     test_ScriptItemIzeShapePlace(hdc,pwOutGlyphs);
2535     test_ScriptGetCMap(hdc, pwOutGlyphs);
2536     test_ScriptCacheGetHeight(hdc);
2537     test_ScriptGetGlyphABCWidth(hdc);
2538     test_ScriptShape(hdc);
2539     test_ScriptShapeOpenType(hdc);
2540     test_ScriptPlace(hdc);
2541
2542     test_ScriptGetFontProperties(hdc);
2543     test_ScriptTextOut(hdc);
2544     test_ScriptTextOut2(hdc);
2545     test_ScriptTextOut3(hdc);
2546     test_ScriptXtoX();
2547     test_ScriptString(hdc);
2548     test_ScriptStringXtoCP_CPtoX(hdc);
2549
2550     test_ScriptLayout();
2551     test_digit_substitution();
2552     test_ScriptGetProperties();
2553     test_ScriptBreak();
2554     test_newlines();
2555
2556     ReleaseDC(hwnd, hdc);
2557     DestroyWindow(hwnd);
2558 }