ole32/tests: Do not compare returned by DeleteFile value with TRUE.
[wine] / dlls / kernel / tests / comm.c
1 /* Unit test suite for comm functions
2  *
3  * Copyright 2003 Kevin Groeneveld
4  * Copyright 2005 Uwe Bonnes
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include <stdio.h>
22
23 #include "wine/test.h"
24 #include "winbase.h"
25 #include "winnls.h"
26
27 #define TIMEOUT 1000   /* one second for Timeouts*/
28 #define SLOWBAUD 150
29 #define FASTBAUD 115200
30 #define TIMEDELTA 100  /* 100 ms uncertainty allowed */
31
32 /* Define the appropriate LOOPBACK(s) TRUE if you have a Loopback cable with
33  * the mentioned shorts connected to your Serial port
34  */
35 #define LOOPBACK_TXD_RXD  FALSE /* Sub-D 9: Short 2-3 */
36 #define LOOPBACK_CTS_RTS  FALSE /* Sub-D 9: Short 7-8 */
37 #define LOOPBACK_DTR_DSR  FALSE /* Sub-D 9: Short 4-6 */
38 #define LOOPBACK_DTR_RING FALSE /* Sub-D 9: Short 4-9 */
39 #define LOOPBACK_DTR_DCD  FALSE /* Sub-D 9: Short 4-1 */
40 /* Many Linux serial drivers have the TIOCM_LOOP flag in the TIOCM_SET ioctl
41  * available. For the 8250 this is equivalent to TXD->RXD, OUT2->DCD,
42  * OUT1->RI, RTS->CTS and DTR->DSR
43  */
44
45 typedef struct
46 {
47         char string[100];
48         BOOL result;
49         BOOL old_style;
50         DCB dcb1, dcb2;
51         COMMTIMEOUTS timeouts1, timeouts2;
52 } TEST;
53
54 static TEST test[] =
55 {
56         {
57                 "baud=9600 parity=e data=5 stop=1 xon=on odsr=off octs=off dtr=on rts=on idsr=on",
58                 TRUE, FALSE,
59                 { 0x00000000, 0x00002580, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x05, 0x02, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
60                 { 0xffffffff, 0x00002580, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x05, 0x02, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
61                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
62                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
63         },
64         {
65                 "baud=0 parity=M data=6 stop=1.5 xon=off odsr=on octs=ON dtr=off rts=off idsr=OFF",
66                 TRUE, FALSE,
67                 { 0x00000000, 0x00000000, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x06, 0x03, 0x01, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
68                 { 0xffffffff, 0x00000000, 1, 1, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x06, 0x03, 0x01, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
69                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
70                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
71         },
72         {
73                 "BAUD=4000000000 parity=n data=7 stop=2 to=off",
74                 TRUE, FALSE,
75                 { 0x00000000, 0xee6b2800, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x00, 0x02, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
76                 { 0xffffffff, 0xee6b2800, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0x00, 0x02, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
77                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
78                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 }
79         },
80         {
81                 "Baud=115200 Parity=O Data=8 To=On",
82                 TRUE, FALSE,
83                 { 0x00000000, 0x0001c200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x08, 0x01, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
84                 { 0xffffffff, 0x0001c200, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x08, 0x01, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
85                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0000EA60 },
86                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0000EA60 }
87         },
88         {
89                 "PaRiTy=s           Data=7          DTR=on",
90                 TRUE, FALSE,
91                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x04, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
92                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0x04, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
93                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
94                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
95         },
96         {
97                 "data=4",
98                 FALSE, FALSE,
99                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
100                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
101                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
102                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
103         },
104         {
105                 "data=9",
106                 FALSE, FALSE,
107                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
108                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
109                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
110                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
111         },
112         {
113                 "parity=no",
114                 FALSE, FALSE,
115                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
116                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
117                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
118                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
119         },
120         {
121                 "stop=0",
122                 FALSE, FALSE,
123                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
124                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
125                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
126                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
127         },
128         {
129                 "stop=1.501",
130                 FALSE, FALSE,
131                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
132                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
133                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
134                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
135         },
136         {
137                 "stop=3",
138                 FALSE, FALSE,
139                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
140                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
141                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
142                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
143         },
144         {
145                 "to=foobar",
146                 FALSE, FALSE,
147                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
148                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
149                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
150                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
151         },
152         {
153                 " baud=9600",
154                 FALSE, FALSE,
155                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
156                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
157                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
158                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
159         },
160         {
161                 "baud= 9600",
162                 FALSE, FALSE,
163                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
164                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
165                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
166                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
167         },
168         {
169                 "baud=9600,data=8",
170                 FALSE, FALSE,
171                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
172                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
173                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
174                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
175         },
176         {
177                 "11,n,8,1",
178                 TRUE, TRUE,
179                 { 0x00000000, 0x0000006e, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x08, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
180                 { 0xffffffff, 0x0000006e, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x08, 0x00, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
181                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
182                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
183         },
184         {
185                 "30 ,E, 5,1.5",
186                 TRUE, TRUE,
187                 { 0x00000000, 0x0000012c, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x05, 0x02, 0x01, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
188                 { 0xffffffff, 0x0000012c, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x05, 0x02, 0x01, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
189                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
190                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
191         },
192         {
193                 "60, m, 6, 2 ",
194                 TRUE, TRUE,
195                 { 0x00000000, 0x00000258, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x06, 0x03, 0x02, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
196                 { 0xffffffff, 0x00000258, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x06, 0x03, 0x02, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
197                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
198                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
199         },
200         {
201                 "12 , o , 7 , 1",
202                 TRUE, TRUE,
203                 { 0x00000000, 0x000004b0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x01, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
204                 { 0xffffffff, 0x000004b0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0x01, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
205                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
206                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
207         },
208         {
209                 "24,s,8,1.5",
210                 TRUE, TRUE,
211                 { 0x00000000, 0x00000960, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x08, 0x04, 0x01, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
212                 { 0xffffffff, 0x00000960, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x08, 0x04, 0x01, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
213                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
214                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
215         },
216         {
217                 "48,n,8,1,p",
218                 TRUE, TRUE,
219                 { 0x00000000, 0x000012c0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x08, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
220                 { 0xffffffff, 0x000012c0, 1, 1, 1, 1, 2, 1, 1, 0, 0, 1, 1, 2, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x08, 0x00, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
221                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
222                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
223         },
224         {
225                 "96,N,8,1 , x ",
226                 TRUE, TRUE,
227                 { 0x00000000, 0x00002580, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x08, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
228                 { 0xffffffff, 0x00002580, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x08, 0x00, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
229                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
230                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
231         },
232         {
233                 "19, e, 7, 1, x",
234                 TRUE, TRUE,
235                 { 0x00000000, 0x00004b00, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x02, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
236                 { 0xffffffff, 0x00004b00, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0x02, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
237                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
238                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
239         },
240         {
241                 "0,M,7,1,P",
242                 TRUE, TRUE,
243                 { 0x00000000, 0x00000000, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x03, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
244                 { 0xffffffff, 0x00000000, 1, 1, 1, 1, 2, 1, 1, 0, 0, 1, 1, 2, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0x03, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
245                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
246                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
247         },
248         {
249                 "4000000000,O,7,1.5,X",
250                 TRUE, TRUE,
251                 { 0x00000000, 0xee6b2800, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x01, 0x01, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
252                 { 0xffffffff, 0xee6b2800, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0x01, 0x01, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
253                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
254                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
255         },
256         {
257                 "96,N,8,1 to=on",
258                 FALSE, TRUE,
259                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
260                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
261                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
262                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
263         },
264         {
265                 "96,NO,8,1",
266                 FALSE, TRUE,
267                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
268                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
269                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
270                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
271         },
272         {
273                 "96,N,4,1",
274                 FALSE, TRUE,
275                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
276                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
277                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
278                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
279         },
280         {
281                 "96,N,9,1",
282                 FALSE, TRUE,
283                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
284                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
285                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
286                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
287         },
288         {
289                 "96,N,8,0",
290                 FALSE, TRUE,
291                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
292                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
293                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
294                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
295         },
296         {
297                 "96,N,8,3",
298                 FALSE, TRUE,
299                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
300                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
301                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
302                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
303         },
304         {
305                 "96,N,8,1,K",
306                 FALSE, TRUE,
307                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
308                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
309                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
310                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
311         },
312         {
313                 "COM0:baud=115200",
314                 FALSE, FALSE,
315                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
316                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
317                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
318                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
319         },
320         {
321                 "COMx:baud=38400 data=8",
322                 TRUE, FALSE,
323                 { 0x00000000, 0x00009600, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x08, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
324                 { 0xffffffff, 0x00009600, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x08, 0xff, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
325                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
326                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
327         },
328         {
329                 "COMx  :to=on stop=1.5",
330                 TRUE, FALSE,
331                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x01, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
332                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0x01, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
333                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0000EA60 },
334                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x0000EA60 }
335         },
336         {
337                 "COMx:               baud=12345     data=7",
338                 TRUE, FALSE,
339                 { 0x00000000, 0x00003039, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
340                 { 0xffffffff, 0x00003039, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0xff, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
341                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
342                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
343         },
344         {
345                 "COMx : xon=on odsr=off",
346                 TRUE, FALSE,
347                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
348                 { 0xffffffff, 0xffffffff, 1, 1, 1, 0, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
349                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
350                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
351         },
352         {
353                 "COM0:9600,N,8,1",
354                 FALSE, TRUE,
355                 { 0x00000000, 0x00000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x00, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
356                 { 0xffffffff, 0xffffffff, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 3, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0xff, 0xff, 0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
357                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
358                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
359         },
360         {
361                 "COMx:9600,N,8,1",
362                 TRUE, TRUE,
363                 { 0x00000000, 0x00002580, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x08, 0x00, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
364                 { 0xffffffff, 0x00002580, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x08, 0x00, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
365                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
366                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
367         },
368         {
369                 "COMx:  11,E,7,2",
370                 TRUE, TRUE,
371                 { 0x00000000, 0x0000006e, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x07, 0x02, 0x02, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
372                 { 0xffffffff, 0x0000006e, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x07, 0x02, 0x02, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
373                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
374                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
375         },
376         {
377                 "COMx  :19,M,5,1",
378                 TRUE, TRUE,
379                 { 0x00000000, 0x00004b00, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x05, 0x03, 0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
380                 { 0xffffffff, 0x00004b00, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x05, 0x03, 0x00, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
381                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
382                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
383         },
384         {
385                 "COMx  :    57600,S,6,2,x",
386                 TRUE, TRUE,
387                 { 0x00000000, 0x0000e100, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0x00000, 0x0000, 0x0000, 0x0000, 0x06, 0x04, 0x02, (char)0x00, (char)0x00, (char)0x00, (char)0x00, (char)0x00, 0x0000 },
388                 { 0xffffffff, 0x0000e100, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0x1ffff, 0xffff, 0xffff, 0xffff, 0x06, 0x04, 0x02, (char)0xff, (char)0xff, (char)0xff, (char)0xff, (char)0xff, 0xffff },
389                 { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000 },
390                 { 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff }
391         },
392 };
393
394 #define TEST_COUNT (sizeof(test) / sizeof(TEST))
395
396 /* This function can be useful if you are modifiying the test cases and want to
397    output the contents of a DCB structure. */
398 /*static print_dcb(DCB *pdcb)
399 {
400         printf("0x%08x, 0x%08x, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, %u, 0x%05x, 0x%04x, 0x%04x, 0x%04x, 0x%02x, 0x%02x, 0x%02x, (char)0x%02x, (char)0x%02x, (char)0x%02x, (char)0x%02x, (char)0x%02x, 0x%04x\n",
401                 pdcb->DCBlength,
402                 pdcb->BaudRate,
403                 pdcb->fBinary,
404                 pdcb->fParity,
405                 pdcb->fOutxCtsFlow,
406                 pdcb->fOutxDsrFlow,
407                 pdcb->fDtrControl,
408                 pdcb->fDsrSensitivity,
409                 pdcb->fTXContinueOnXoff,
410                 pdcb->fOutX,
411                 pdcb->fInX,
412                 pdcb->fErrorChar,
413                 pdcb->fNull,
414                 pdcb->fRtsControl,
415                 pdcb->fAbortOnError,
416                 pdcb->fDummy2,
417                 pdcb->wReserved,
418                 pdcb->XonLim,
419                 pdcb->XoffLim,
420                 pdcb->ByteSize,
421                 pdcb->Parity,
422                 pdcb->StopBits,
423                 pdcb->XonChar & 0xff,
424                 pdcb->XoffChar & 0xff,
425                 pdcb->ErrorChar & 0xff,
426                 pdcb->EofChar & 0xff,
427                 pdcb->EvtChar & 0xff,
428                 pdcb->wReserved1 & 0xffff );
429 } */
430
431 static void check_result(const char *function, TEST *ptest, int initial_value, BOOL result)
432 {
433         DWORD LastError = GetLastError();
434         DWORD CorrectError = (ptest->result ? 0xdeadbeef : ERROR_INVALID_PARAMETER);
435
436         ok(LastError == CorrectError, "%s(\"%s\"), 0x%02x: GetLastError() returned 0x%08lx, should be 0x%08lx\n", function, ptest->string, initial_value, LastError, CorrectError);
437         ok(result == ptest->result, "%s(\"%s\"), 0x%02x: return value should be %s\n", function, ptest->string, initial_value, ptest->result ? "TRUE" : "FALSE");
438 }
439
440 #define check_dcb_member(a,b) ok(pdcb1->a == pdcb2->a, "%s(\"%s\"), 0x%02x: "#a" is "b", should be "b"\n", function, ptest->string, initial_value, pdcb1->a, pdcb2->a)
441 #define check_dcb_member2(a,c,b) if(pdcb2->a == c) { check_dcb_member(a,b); } else { ok(pdcb1->a == pdcb2->a || pdcb1->a == c, "%s(\"%s\"), 0x%02x: "#a" is "b", should be "b" or "b"\n", function, ptest->string, initial_value, pdcb1->a, pdcb2->a, c); }
442
443 static void check_dcb(const char *function, TEST *ptest, int initial_value, DCB *pdcb1, DCB *pdcb2)
444 {
445         /* DCBlength is a special case since Win 9x sets it but NT does not.
446            We will accept either as correct. */
447         check_dcb_member2(DCBlength, (DWORD)sizeof(DCB), "%lu");
448
449         /* For old style control strings Win 9x does not set the next five members, NT does. */
450         if(ptest->old_style && ptest->result)
451         {
452                 check_dcb_member2(fOutxCtsFlow, ((unsigned int)initial_value & 1), "%u");
453                 check_dcb_member2(fDtrControl, ((unsigned int)initial_value & 3), "%u");
454                 check_dcb_member2(fOutX, ((unsigned int)initial_value & 1), "%u");
455                 check_dcb_member2(fInX, ((unsigned)initial_value & 1), "%u");
456                 check_dcb_member2(fRtsControl, ((unsigned)initial_value & 3), "%u");
457         }
458         else
459         {
460                 check_dcb_member(fOutxCtsFlow, "%u");
461                 check_dcb_member(fDtrControl, "%u");
462                 check_dcb_member(fOutX, "%u");
463                 check_dcb_member(fInX, "%u");
464                 check_dcb_member(fRtsControl, "%u");
465         }
466
467         if(ptest->result)
468         {
469                 /* For the idsr=xxx parameter, NT sets fDsrSensitivity, 9x sets
470                    fOutxDsrFlow. */
471                 if(!ptest->old_style)
472                 {
473                         check_dcb_member2(fOutxDsrFlow, pdcb2->fDsrSensitivity, "%u");
474                         check_dcb_member2(fDsrSensitivity, pdcb2->fOutxDsrFlow, "%u");
475                 }
476                 else
477                 {
478                         /* For old style control strings Win 9x does not set the
479                            fOutxDsrFlow member, NT does. */
480                         check_dcb_member2(fOutxDsrFlow, ((unsigned int)initial_value & 1), "%u");
481                         check_dcb_member(fDsrSensitivity, "%u");
482                 }
483         }
484         else
485         {
486                 check_dcb_member(fOutxDsrFlow, "%u");
487                 check_dcb_member(fDsrSensitivity, "%u");
488         }
489
490         /* Check the result of the DCB members. */
491         check_dcb_member(BaudRate, "%lu");
492         check_dcb_member(fBinary, "%u");
493         check_dcb_member(fParity, "%u");
494         check_dcb_member(fTXContinueOnXoff, "%u");
495         check_dcb_member(fErrorChar, "%u");
496         check_dcb_member(fNull, "%u");
497         check_dcb_member(fAbortOnError, "%u");
498         check_dcb_member(fDummy2, "%u");
499         check_dcb_member(wReserved, "%u");
500         check_dcb_member(XonLim, "%u");
501         check_dcb_member(XoffLim, "%u");
502         check_dcb_member(ByteSize, "%u");
503         check_dcb_member(Parity, "%u");
504         check_dcb_member(StopBits, "%u");
505         check_dcb_member(XonChar, "%d");
506         check_dcb_member(XoffChar, "%d");
507         check_dcb_member(ErrorChar, "%d");
508         check_dcb_member(EofChar, "%d");
509         check_dcb_member(EvtChar, "%d");
510         check_dcb_member(wReserved1, "%u");
511 }
512
513 #define check_timeouts_member(a) ok(ptimeouts1->a == ptimeouts2->a, "%s(\"%s\"), 0x%02x: "#a" is %lu, should be %lu\n", function, ptest->string, initial_value, ptimeouts1->a, ptimeouts2->a);
514
515 static void check_timeouts(const char *function, TEST *ptest, int initial_value, COMMTIMEOUTS *ptimeouts1, COMMTIMEOUTS *ptimeouts2)
516 {
517         check_timeouts_member(ReadIntervalTimeout);
518         check_timeouts_member(ReadTotalTimeoutMultiplier);
519         check_timeouts_member(ReadTotalTimeoutConstant);
520         check_timeouts_member(WriteTotalTimeoutMultiplier);
521         check_timeouts_member(WriteTotalTimeoutConstant);
522 }
523
524 static void test_BuildCommDCBA(TEST *ptest, int initial_value, DCB *pexpected_dcb)
525 {
526         BOOL result;
527         DCB dcb;
528
529         /* set initial conditions */
530         memset(&dcb, initial_value, sizeof(DCB));
531         SetLastError(0xdeadbeef);
532
533         result = BuildCommDCBA(ptest->string, &dcb);
534
535         /* check results */
536         check_result("BuildCommDCBA", ptest, initial_value, result);
537         check_dcb("BuildCommDCBA", ptest, initial_value, &dcb, pexpected_dcb);
538 }
539
540 static void test_BuildCommDCBAndTimeoutsA(TEST *ptest, int initial_value, DCB *pexpected_dcb, COMMTIMEOUTS *pexpected_timeouts)
541 {
542         BOOL result;
543         DCB dcb;
544         COMMTIMEOUTS timeouts;
545
546         /* set initial conditions */
547         memset(&dcb, initial_value, sizeof(DCB));
548         memset(&timeouts, initial_value, sizeof(COMMTIMEOUTS));
549         SetLastError(0xdeadbeef);
550
551         result = BuildCommDCBAndTimeoutsA(ptest->string, &dcb, &timeouts);
552
553         /* check results */
554         check_result("BuildCommDCBAndTimeoutsA", ptest, initial_value, result);
555         check_dcb("BuildCommDCBAndTimeoutsA", ptest, initial_value, &dcb, pexpected_dcb);
556         check_timeouts("BuildCommDCBAndTimeoutsA", ptest, initial_value, &timeouts, pexpected_timeouts);
557 }
558
559 static void test_BuildCommDCBW(TEST *ptest, int initial_value, DCB *pexpected_dcb)
560 {
561         BOOL result;
562         DCB dcb;
563         WCHAR wide_string[sizeof(ptest->string)];
564
565         MultiByteToWideChar(CP_ACP, 0, ptest->string, -1, wide_string, sizeof(wide_string) / sizeof(WCHAR));
566
567         /* set initial conditions */
568         memset(&dcb, initial_value, sizeof(DCB));
569         SetLastError(0xdeadbeef);
570
571         result = BuildCommDCBW(wide_string, &dcb);
572
573         if(GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
574                 return;
575
576         /* check results */
577         check_result("BuildCommDCBW", ptest, initial_value, result);
578         check_dcb("BuildCommDCBW", ptest, initial_value, &dcb, pexpected_dcb);
579 }
580
581 static void test_BuildCommDCBAndTimeoutsW(TEST *ptest, int initial_value, DCB *pexpected_dcb, COMMTIMEOUTS *pexpected_timeouts)
582 {
583         BOOL result;
584         DCB dcb;
585         COMMTIMEOUTS timeouts;
586         WCHAR wide_string[sizeof(ptest->string)];
587
588         MultiByteToWideChar(CP_ACP, 0, ptest->string, -1, wide_string, sizeof(wide_string) / sizeof(WCHAR));
589
590         /* set initial conditions */
591         memset(&dcb, initial_value, sizeof(DCB));
592         memset(&timeouts, initial_value, sizeof(COMMTIMEOUTS));
593         SetLastError(0xdeadbeef);
594
595         result = BuildCommDCBAndTimeoutsW(wide_string, &dcb, &timeouts);
596
597         if(GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
598                 return;
599
600         /* check results */
601         check_result("BuildCommDCBAndTimeoutsA", ptest, initial_value, result);
602         check_dcb("BuildCommDCBAndTimeoutsA", ptest, initial_value, &dcb, pexpected_dcb);
603         check_timeouts("BuildCommDCBAndTimeoutsA", ptest, initial_value, &timeouts, pexpected_timeouts);
604 }
605
606 static void test_BuildCommDCB(void)
607 {
608         char port_name[] = "COMx";
609         char port = 0;
610         unsigned int i;
611         char *ptr;
612
613         /* Some of these tests require a valid COM port.  This loop will try to find
614            a valid port. */
615         for(port_name[3] = '1'; port_name[3] <= '9'; port_name[3]++)
616         {
617                 COMMCONFIG commconfig;
618                 DWORD size = sizeof(COMMCONFIG);
619
620                 if(GetDefaultCommConfig(port_name, &commconfig, &size))
621                 {
622                         port = port_name[3];
623                         break;
624                 }
625         }
626
627         if(!port)
628                 trace("Could not find a valid COM port.  Some tests will be skipped.\n");
629
630         for(i = 0; i < TEST_COUNT; i++)
631         {
632                 /* Check if this test case needs a valid COM port. */
633                 ptr = strstr(test[i].string, "COMx");
634
635                 /* If required, substitute valid port number into device control string. */
636                 if(ptr)
637                 {
638                         if(port)
639                                 ptr[3] = port;
640                         else
641                                 continue;
642                 }
643
644                 test_BuildCommDCBA(&test[i], 0x00, &test[i].dcb1);
645                 test_BuildCommDCBA(&test[i], 0xff, &test[i].dcb2);
646                 test_BuildCommDCBAndTimeoutsA(&test[i], 0x00, &test[i].dcb1, &test[i].timeouts1);
647                 test_BuildCommDCBAndTimeoutsA(&test[i], 0xff, &test[i].dcb2, &test[i].timeouts2);
648
649                 test_BuildCommDCBW(&test[i], 0x00, &test[i].dcb1);
650                 test_BuildCommDCBW(&test[i], 0xff, &test[i].dcb2);
651                 test_BuildCommDCBAndTimeoutsW(&test[i], 0x00, &test[i].dcb1, &test[i].timeouts1);
652                 test_BuildCommDCBAndTimeoutsW(&test[i], 0xff, &test[i].dcb2, &test[i].timeouts2);
653         }
654 }
655
656 static HANDLE test_OpenComm(BOOL doOverlap)
657 {
658     HANDLE hcom = INVALID_HANDLE_VALUE;
659     char port_name[] = "COMx";
660     static BOOL shown = FALSE;
661     DWORD errors;
662     COMSTAT comstat;
663
664     /* Try to find a port */
665     for(port_name[3] = '1'; port_name[3] <= '9'; port_name[3]++)
666     {
667         hcom = CreateFile( port_name, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING,
668                            (doOverlap)?FILE_FLAG_OVERLAPPED:0, NULL );
669         if (hcom != INVALID_HANDLE_VALUE)
670             break;
671     }
672     if(!shown)
673     {
674         if (hcom == INVALID_HANDLE_VALUE)
675             trace("Could not find a valid COM port.  Skipping test_ReadTimeOut\n");
676         else
677             trace("Found Com port %s. Connected devices may disturbe results\n", port_name);
678         /*shown = TRUE; */
679     }
680     if (hcom != INVALID_HANDLE_VALUE)
681     {
682         ok(ClearCommError(hcom,&errors,&comstat), "Unexpected errors on open\n");
683         ok(comstat.cbInQue == 0, "Unexpected %ld chars in InQueue\n",comstat.cbInQue);
684         ok(comstat.cbOutQue == 0, "Still pending %ld charcters in OutQueue\n", comstat.cbOutQue);
685         ok(errors == 0, "Unexpected errors 0x%08lx\n", errors);
686     }
687     return hcom;
688 }
689
690 static void test_GetModemStatus(HANDLE hcom)
691 {
692     DWORD ModemStat;
693
694     ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
695     trace("GetCommModemStatus returned 0x%08lx->%s%s%s%s\n", ModemStat,
696           (ModemStat &MS_RLSD_ON)?"MS_RLSD_ON ":"",
697           (ModemStat &MS_RING_ON)?"MS_RING_ON ":"",
698           (ModemStat &MS_DSR_ON)?"MS_DSR_ON ":"",
699           (ModemStat &MS_CTS_ON)?"MS_CTS_ON ":"");
700 }
701
702 /* When we don't write anything, Read should time out even on a loopbacked port */
703 static void test_ReadTimeOut(HANDLE hcom)
704 {
705     DCB dcb;
706     COMMTIMEOUTS timeouts;
707     char rbuf[32];
708     DWORD before, after, read, timediff, LastError;
709     BOOL res;
710
711     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
712     dcb.BaudRate = FASTBAUD;
713     dcb.ByteSize = 8;
714     dcb.Parity = NOPARITY;
715     dcb.fRtsControl=RTS_CONTROL_ENABLE;
716     dcb.fDtrControl=DTR_CONTROL_ENABLE;
717     dcb.StopBits = ONESTOPBIT;
718     ok(SetCommState(hcom, &dcb), "SetCommState failed\n");
719
720     ZeroMemory( &timeouts, sizeof(timeouts));
721     timeouts.ReadTotalTimeoutConstant = TIMEOUT;
722     ok(SetCommTimeouts(hcom, &timeouts),"SetCommTimeouts failed\n");
723
724     before = GetTickCount();
725     SetLastError(0xdeadbeef);
726     res = ReadFile(hcom, rbuf, sizeof(rbuf), &read, NULL);
727     LastError = GetLastError();
728     after = GetTickCount();
729     ok( res == TRUE, "A timed-out read should return TRUE\n");
730     ok( LastError == 0xdeadbeef, "err=%ld\n", LastError);
731     timediff = after - before;
732     ok( timediff > TIMEOUT>>2 && timediff < TIMEOUT *2,
733         "Unexpected TimeOut %ld, expected %d\n", timediff, TIMEOUT);
734 }
735
736 static void test_waittxempty(HANDLE hcom)
737 {
738     DCB dcb;
739     COMMTIMEOUTS timeouts;
740     char tbuf[]="test_waittxempty";
741     DWORD before, after, written, timediff, evtmask = 0;
742     BOOL res_write, res;
743     DWORD baud = SLOWBAUD;
744
745     trace("test_waittxempty\n");
746     /* set a low baud rate to have ample time*/
747     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
748     dcb.BaudRate = baud;
749     dcb.ByteSize = 8;
750     dcb.Parity = NOPARITY;
751     dcb.fRtsControl=RTS_CONTROL_ENABLE;
752     dcb.fDtrControl=DTR_CONTROL_ENABLE;
753     dcb.StopBits = ONESTOPBIT;
754     ok(SetCommState(hcom, &dcb), "SetCommState failed\n");
755
756     ZeroMemory( &timeouts, sizeof(timeouts));
757     timeouts.ReadTotalTimeoutConstant = TIMEOUT;
758     ok(SetCommTimeouts(hcom, &timeouts),"SetCommTimeouts failed\n");
759
760     ok(SetupComm(hcom,1024,1024),"SetUpComm failed\n");
761     ok(SetCommMask(hcom, EV_TXEMPTY), "SetCommMask failed\n");
762
763     before = GetTickCount();
764     res_write=WriteFile(hcom, tbuf, sizeof(tbuf), &written, NULL);
765     after = GetTickCount();
766     ok(res_write == TRUE, "WriteFile failed\n");
767     ok(written == sizeof(tbuf),
768        "WriteFile: Unexpected write_size %ld , expected %d\n", written, sizeof(tbuf));
769
770     trace("WriteFile succeeded, took %ld ms to write %d Bytes at %ld Baud\n",
771           after - before, sizeof(tbuf), baud);
772
773     before = GetTickCount();
774     res = WaitCommEvent(hcom, &evtmask, NULL);
775     after = GetTickCount();
776
777     ok(res == TRUE, "WaitCommEvent failed\n");
778     ok((evtmask & EV_TXEMPTY),
779                  "WaitCommEvent: Unexpected EvtMask 0x%08lx, expected 0x%08x\n",
780                  evtmask, EV_TXEMPTY);
781
782     timediff = after - before;
783
784     trace("WaitCommEvent for EV_TXEMPTY took %ld ms\n", timediff);
785     /* 050604: This shows a difference between XP (tested with mingw compiled crosstest):
786        XP returns Writefile only after everything went out of the Serial port,
787        while wine returns immedate.
788        Thus on XP, WaintCommEvent after setting the CommMask for EV_TXEMPTY
789        nearly return immediate,
790        while on wine the most time is spent here
791     */
792 }
793
794 /* A new open handle should not return error or have bytes in the Queues */
795 static void test_ClearCommErrors(HANDLE hcom)
796 {
797     DWORD   errors;
798     COMSTAT lpStat;
799
800     ok(ClearCommError(hcom, &errors, &lpStat), "ClearCommError failed\n");
801     ok(lpStat.cbInQue == 0, "Unexpected %ld chars in InQueue\n", lpStat.cbInQue);
802     ok(lpStat.cbOutQue == 0, "Unexpected %ld chars in OutQueue\n", lpStat.cbOutQue);
803     ok(errors == 0, "ClearCommErrors: Unexpected error 0x%08lx\n", errors);
804     trace("test_ClearCommErrors done\n");
805 }
806
807 /**/
808 static void test_LoopbackRead(HANDLE hcom)
809 {
810     DCB dcb;
811     COMMTIMEOUTS timeouts;
812     char rbuf[32];
813     DWORD before, after, diff, read, read1, written, evtmask=0, i;
814     BOOL res;
815     char tbuf[]="test_LoopbackRead";
816
817     trace("Starting test_LoopbackRead\n");
818     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
819     dcb.BaudRate = FASTBAUD;
820     dcb.ByteSize = 8;
821     dcb.Parity = NOPARITY;
822     dcb.fRtsControl=RTS_CONTROL_ENABLE;
823     dcb.fDtrControl=DTR_CONTROL_ENABLE;
824     dcb.StopBits = ONESTOPBIT;
825     ok(SetCommState(hcom, &dcb), "SetCommState failed\n");
826
827     ZeroMemory( &timeouts, sizeof(timeouts));
828     timeouts.ReadTotalTimeoutConstant = TIMEOUT;
829     ok(SetCommTimeouts(hcom, &timeouts),"SetCommTimeouts failed\n");
830
831     ok(SetCommMask(hcom, EV_TXEMPTY), "SetCommMask failed\n");
832
833     before = GetTickCount();
834     ok(WriteFile(hcom,tbuf,sizeof(tbuf),&written, NULL), "WriteFile failed\n");
835     after = GetTickCount();
836     ok(written == sizeof(tbuf),"WriteFile %ld bytes written, expected %d\n",
837        written, sizeof(tbuf));
838     diff = after -before;
839
840     /* make sure all bytes are written, so Readfile will succeed in one call*/
841     ok(WaitCommEvent(hcom, &evtmask, NULL), "WaitCommEvent failed\n");
842     before = GetTickCount();
843     ok(evtmask == EV_TXEMPTY,
844                  "WaitCommEvent: Unexpected EvtMask 0x%08lx, expected 0x%08x\n",
845                  evtmask, EV_TXEMPTY);
846     trace("Write %ld ms WaitCommEvent EV_TXEMPTY %ld ms\n", diff, before- after);
847
848     read=0;
849     ok(ReadFile(hcom, rbuf, sizeof(rbuf), &read, NULL), "Readfile failed\n");
850     ok(read == sizeof(tbuf),"ReadFile read %ld bytes, expected %d \"%s\"\n", read, sizeof(tbuf),rbuf);
851
852     /* Now do the same withe a slower Baud rate.
853        As we request more characters then written, we will hit the timeout
854     */
855
856     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
857     dcb.BaudRate = 9600;
858     dcb.ByteSize = 8;
859     dcb.Parity = NOPARITY;
860     dcb.fRtsControl=RTS_CONTROL_ENABLE;
861     dcb.fDtrControl=DTR_CONTROL_ENABLE;
862     dcb.StopBits = ONESTOPBIT;
863     ok(SetCommState(hcom, &dcb), "SetCommState failed\n");
864
865     ok(SetCommMask(hcom, EV_RXCHAR), "SetCommMask failed\n");
866     ok(WriteFile(hcom,tbuf,sizeof(tbuf),&written, NULL), "WriteFile failed\n");
867     ok(written == sizeof(tbuf),"WriteFile %ld bytes written, expected %d\n",
868        written, sizeof(tbuf));
869
870     trace("WaitCommEventEV_RXCHAR\n");
871     ok(WaitCommEvent(hcom, &evtmask, NULL), "WaitCommEvent failed\n");
872     ok(evtmask == EV_RXCHAR, "WaitCommEvent: Unexpected EvtMask 0x%08lx, expected 0x%08x\n",
873        evtmask, EV_RXCHAR);
874
875     before = GetTickCount();
876     res = ReadFile(hcom, rbuf, sizeof(rbuf), &read, NULL);
877     after = GetTickCount();
878     ok(res, "Readfile failed\n");
879     ok(read == sizeof(tbuf),"ReadFile read %ld bytes, expected %d\n", read, sizeof(tbuf));
880     diff = after - before;
881     trace("Readfile for %d chars with %d avail took %ld ms\n",
882           sizeof(rbuf), sizeof(tbuf), diff);
883     ok( (diff > TIMEOUT - TIMEDELTA) && (diff < TIMEOUT + TIMEDELTA),
884         "Timedout Wait took %ld ms, expected around %d\n", diff, TIMEOUT);
885
886     /* now do a plain read with slow speed
887      * This will result in several low level reads and a timeout to happen
888      */
889     dcb.BaudRate = SLOWBAUD;
890     ok(SetCommState(hcom, &dcb), "SetCommState failed\n");
891     ok(WriteFile(hcom,tbuf,sizeof(tbuf),&written, NULL), "WriteFile failed\n");
892     before = GetTickCount();
893     read = 0;
894     read1 =0;
895     i=0;
896     do 
897     {
898         res = ReadFile(hcom, rbuf+read, sizeof(rbuf-read), &read1, NULL);
899         ok(res, "Readfile failed\n");
900         read += read1;
901         i++;
902     }
903     while ((read < sizeof(tbuf)) && (i <10));
904     after =  GetTickCount();
905     ok( read == sizeof(tbuf),"ReadFile read %ld bytes, expected %d\n", read, sizeof(tbuf));
906     trace("Plain Read for %d char at %d baud took %ld ms\n", sizeof(tbuf), SLOWBAUD, after-before);
907     
908 }
909
910 static void test_LoopbackCtsRts(HANDLE hcom)
911 {
912     DWORD ModemStat, defaultStat;
913     DCB dcb;
914
915     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
916     if (dcb.fRtsControl == RTS_CONTROL_HANDSHAKE)
917     {
918         trace("RTS_CONTROL_HANDSHAKE is set, so don't manipulate RTS\n");
919         return;
920     }
921     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
922     /* XP returns some values in the low nibble, so mask them out*/
923     defaultStat &= MS_CTS_ON|MS_DSR_ON|MS_RING_ON|MS_RLSD_ON;
924     if(defaultStat & MS_CTS_ON)
925     {
926         ok(EscapeCommFunction(hcom, CLRRTS), "EscapeCommFunction failed to clear RTS\n");
927         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
928         ok ((ModemStat & MS_CTS_ON) == 0, "CTS didn't react: 0x%04lx,  expected 0x%04lx\n",
929             ModemStat, (defaultStat & ~MS_CTS_ON));
930         ok(EscapeCommFunction(hcom, SETRTS), "EscapeCommFunction failed to clear RTS\n");
931         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
932         ok (ModemStat ==  defaultStat, "Failed to restore CTS: 0x%04lx, expected 0x%04lx\n",
933             ModemStat, defaultStat);
934     }
935     else
936     {
937         ok(EscapeCommFunction(hcom, SETRTS), "EscapeCommFunction failed to set RTS\n");
938         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
939         ok ((ModemStat & MS_CTS_ON) == MS_CTS_ON,
940             "CTS didn't react: 0x%04lx,  expected 0x%04lx\n",
941             ModemStat, (defaultStat | MS_CTS_ON));
942         ok(EscapeCommFunction(hcom, CLRRTS), "EscapeCommFunction failed to clear RTS\n");
943         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
944         ok (ModemStat ==  defaultStat, "Failed to restore CTS: 0x%04lx, expected 0x%04lx\n",
945             ModemStat, defaultStat);
946     }
947 }
948
949 static void test_LoopbackDtrDcd(HANDLE hcom)
950 {
951     DWORD ModemStat, defaultStat;
952     DCB dcb;
953
954     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
955     if (dcb.fDtrControl == DTR_CONTROL_HANDSHAKE)
956     {
957         trace("DTR_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
958         return;
959     }
960     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
961     /* XP returns some values in the low nibble, so mask them out*/
962     defaultStat &= MS_CTS_ON|MS_DSR_ON|MS_RING_ON|MS_RLSD_ON;
963     if(defaultStat & MS_RLSD_ON)
964     {
965         ok(EscapeCommFunction(hcom, CLRDTR), "EscapeCommFunction failed to clear DTR\n");
966         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
967         ok ((ModemStat & MS_RLSD_ON) == 0, "RLSD didn't react: 0x%04lx,  expected 0x%04lx\n",
968             ModemStat, (defaultStat & ~MS_RLSD_ON));
969         ok(EscapeCommFunction(hcom, SETDTR), "EscapeCommFunction failed to set DTR\n");
970         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
971         ok (ModemStat ==  defaultStat, "Failed to restore RLSD: 0x%04lx, expected 0x%04lx\n",
972             ModemStat, defaultStat);
973     }
974     else
975     {
976         ok(EscapeCommFunction(hcom, SETDTR), "EscapeCommFunction failed to set DTR\n");
977         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
978         ok ((ModemStat & MS_RLSD_ON) == MS_RLSD_ON,
979             "RLSD didn't react: 0x%04lx,  expected 0x%04lx\n",
980             ModemStat, (defaultStat | MS_RLSD_ON));
981         ok(EscapeCommFunction(hcom, CLRDTR), "EscapeCommFunction failed to clear DTR\n");
982         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
983         ok (ModemStat ==  defaultStat, "Failed to restore RLSD: 0x%04lx, expected 0x%04lx\n",
984             ModemStat, defaultStat);
985     }
986 }
987
988 static void test_LoopbackDtrDsr(HANDLE hcom)
989 {
990     DWORD ModemStat, defaultStat;
991     DCB dcb;
992
993     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
994     if (dcb.fDtrControl == DTR_CONTROL_DISABLE)
995     {
996         trace("DTR_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
997         return;
998     }
999     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
1000     /* XP returns some values in the low nibble, so mask them out*/
1001     defaultStat &= MS_CTS_ON|MS_DSR_ON|MS_RING_ON|MS_RLSD_ON;
1002     if(defaultStat & MS_DSR_ON)
1003     {
1004         ok(EscapeCommFunction(hcom, CLRDTR), "EscapeCommFunction failed to clear DTR\n");
1005         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1006         ok ((ModemStat & MS_DSR_ON) == 0, "CTS didn't react: 0x%04lx,  expected 0x%04lx\n",
1007             ModemStat, (defaultStat & ~MS_DSR_ON));
1008         ok(EscapeCommFunction(hcom, SETDTR), "EscapeCommFunction failed to clear DTR\n");
1009         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1010         ok (ModemStat ==  defaultStat, "Failed to restore DSR: 0x%04lx, expected 0x%04lx\n",
1011             ModemStat, defaultStat);
1012     }
1013     else
1014     {
1015         ok(EscapeCommFunction(hcom, SETDTR), "EscapeCommFunction failed to set DTR\n");
1016         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1017         ok ((ModemStat & MS_DSR_ON) == MS_DSR_ON,
1018             "CTS didn't react: 0x%04lx,expected 0x%04lx\n",
1019             ModemStat, (defaultStat | MS_DSR_ON));
1020         ok(EscapeCommFunction(hcom, CLRDTR), "EscapeCommFunction failed to clear DTR\n");
1021         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1022         ok (ModemStat ==  defaultStat, "Failed to restore DSR: 0x%04lx, expected 0x%04lx\n",
1023             ModemStat, defaultStat);
1024     }
1025 }
1026
1027 static void test_LoopbackDtrRing(HANDLE hcom)
1028 {
1029     DWORD ModemStat, defaultStat;
1030     DCB dcb;
1031
1032     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
1033     if (dcb.fDtrControl == DTR_CONTROL_HANDSHAKE)
1034     {
1035         trace("DTR_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
1036         return;
1037     }
1038     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
1039     /* XP returns some values in the low nibble, so mask them out*/
1040     defaultStat &= MS_CTS_ON|MS_DSR_ON|MS_RING_ON|MS_RLSD_ON;
1041     if(defaultStat & MS_RING_ON)
1042     {
1043         ok(EscapeCommFunction(hcom, CLRDTR), "EscapeCommFunction failed to clear DTR\n");
1044         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1045         ok ((ModemStat & MS_RING_ON) == 0, "RING didn't react: 0x%04lx,  expected 0x%04lx\n",
1046             ModemStat, (defaultStat & ~MS_RING_ON));
1047         ok(EscapeCommFunction(hcom, SETDTR), "EscapeCommFunction failed to set DTR\n");
1048         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1049         ok (ModemStat ==  defaultStat, "Failed to restore RING: 0x%04lx, expected 0x%04lx\n",
1050             ModemStat, defaultStat);
1051     }
1052     else
1053     {
1054         ok(EscapeCommFunction(hcom, SETDTR), "EscapeCommFunction failed to set DTR\n");
1055         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1056         ok ((ModemStat & MS_RING_ON) == MS_RING_ON,
1057             "RING didn't react: 0x%04lx,expected 0x%04lx\n",
1058             ModemStat, (defaultStat | MS_RING_ON));
1059         ok(EscapeCommFunction(hcom, CLRDTR), "EscapeCommFunction failed to clear DTR\n");
1060         ok(GetCommModemStatus(hcom, &ModemStat), "GetCommModemStatus failed\n");
1061         ok (ModemStat ==  defaultStat, "Failed to restore RING: 0x%04lx, expected 0x%04lx\n",
1062             ModemStat, defaultStat);
1063     }
1064 }
1065
1066 /*
1067  * Set up a WaitCommEvent for anything in the receive buffer,
1068  * then write to TX to put a character
1069  * into the RX buffer
1070  * Need Loopback TX->RX
1071 */
1072
1073 static void  test_WaitRx(HANDLE hcom)
1074 {
1075     OVERLAPPED overlapped, overlapped_w;
1076     HANDLE hComPortEvent, hComWriteEvent;
1077     DWORD before, after, after1, diff, success_wait = FALSE, success_write;
1078     DWORD err_wait, err_write, written, evtmask=0;
1079
1080     ok(SetCommMask(hcom, EV_RXCHAR), "SetCommMask failed\n");
1081     hComPortEvent =  CreateEvent( NULL, TRUE, FALSE, NULL );
1082     ok(hComPortEvent != 0, "CreateEvent failed\n");
1083     ZeroMemory( &overlapped, sizeof(overlapped));
1084     overlapped.hEvent = hComPortEvent;
1085
1086     ok((hComWriteEvent =  CreateEvent( NULL, TRUE, FALSE, NULL )) !=0,
1087        "CreateEvent res 0x%08lx\n",
1088        GetLastError());
1089     ZeroMemory( &overlapped_w, sizeof(overlapped_w));
1090     overlapped_w.hEvent = hComWriteEvent;
1091
1092     before = GetTickCount();
1093     {success_wait = WaitCommEvent(hcom, &evtmask, &overlapped);}
1094     err_wait = GetLastError();
1095     after = GetTickCount();
1096     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx\n", success_wait, err_wait, evtmask);
1097     ok(success_wait || err_wait == ERROR_IO_PENDING, "overlapped WaitCommEvent failed\n");
1098     trace("overlapped WriteCommEvent returned.\n");
1099
1100     success_write= WriteFile(hcom, "X", 1, &written, &overlapped_w);
1101     err_write = GetLastError();
1102     ok(success_write || err_write == ERROR_IO_PENDING,
1103        "overlapped WriteFile failed, err 0x%08lx\n",
1104        err_write);
1105
1106     if (!success_write && (err_write == ERROR_IO_PENDING)) {
1107       success_write = WaitForSingleObjectEx(hComWriteEvent, TIMEOUT, TRUE);
1108       err_write = GetLastError();
1109       ok(success_write == WAIT_OBJECT_0, "WaitForSingleObjectEx, res 0x%08lx, err 0x%08lx\n",
1110          success_write, err_write);
1111     }
1112     Sleep(TIMEOUT >>1);
1113     success_write = GetOverlappedResult(hcom, &overlapped_w, &written, FALSE);
1114     err_write = GetLastError();
1115
1116     trace("Write after Wait res 0x%08lx err 0x%08lx\n",success_write, err_write);
1117     ok(success_write && written ==1, "Write after Wait res 0x%08lx err 0x%08lx\n",
1118        success_write, err_write);
1119
1120     if (!success_wait && (err_wait == ERROR_IO_PENDING)) {
1121       success_wait = WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE);
1122       err_wait = GetLastError();
1123       ok(success_wait == WAIT_OBJECT_0, "wait hComPortEvent, res 0x%08lx, err 0x%08lx\n",
1124          success_wait, err_wait);
1125     }
1126     success_wait = GetOverlappedResult(hcom, &overlapped, &written, FALSE);
1127     err_wait = GetLastError();
1128     after1 = GetTickCount();
1129     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx diff1 %ld, diff2 %ld\n",
1130           success_wait, err_wait, evtmask, after-before, after1-before);
1131
1132     ok(evtmask & EV_RXCHAR, "Detect  EV_RXCHAR: 0x%08lx, expected 0x%08x\n",
1133        evtmask, EV_RXCHAR);
1134     diff = after1 - before;
1135     ok ((diff > (TIMEOUT>>1) -TIMEDELTA) && (diff < (TIMEOUT>>1) + TIMEDELTA),
1136         "Unexpected time %ld, expected around %d\n", diff, TIMEOUT>>1);
1137
1138 }
1139
1140 /* Change the controling line after the given timeout to the given state
1141    By the loopback, this should trigger the WaitCommEvent
1142 */
1143 static DWORD CALLBACK toggle_ctlLine(LPVOID arg)
1144 {
1145     DWORD *args = (DWORD *) arg;
1146     DWORD timeout = args[0];
1147     DWORD ctl     = args[1];
1148     HANDLE hcom   = (HANDLE) args[2];
1149     HANDLE hComPortEvent = (HANDLE) args[3];
1150     DWORD success, err;
1151
1152     trace("toggle_ctlLine timeout %ld clt 0x%08lx handle 0x%08lx\n",
1153           args[0], args[1], args[2]);
1154     Sleep(timeout);
1155     ok(EscapeCommFunction(hcom, ctl),"EscapeCommFunction 0x%08lx failed\n", ctl);
1156     trace("toggle_ctline done\n");
1157     success = WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE);
1158     err = GetLastError();
1159     trace("toggle_ctline WaitForSingleObjectEx res 0x%08lx err 0x%08lx\n",
1160           success, err);
1161     return 0;
1162 }
1163
1164 /*
1165  * Wait for a change in CTS
1166  * Needs Loopback from DTR to CTS
1167  */
1168 static void  test_WaitCts(HANDLE hcom)
1169 {
1170     DCB dcb;
1171     OVERLAPPED overlapped;
1172     HANDLE hComPortEvent;
1173     HANDLE alarmThread;
1174     DWORD args[4], defaultStat;
1175     DWORD alarmThreadId, before, after, after1, diff, success, err, written, evtmask=0;
1176
1177     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
1178     dcb.fRtsControl=RTS_CONTROL_ENABLE;
1179     dcb.fDtrControl=DTR_CONTROL_ENABLE;
1180     ok(SetCommState(hcom, &dcb), "SetCommState failed\n");
1181     if (dcb.fDtrControl == RTS_CONTROL_DISABLE)
1182     {
1183         trace("RTS_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
1184         return;
1185     }
1186     args[0]= TIMEOUT >>1;
1187     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
1188     if(defaultStat & MS_CTS_ON)
1189         args[1] = CLRRTS;
1190     else
1191         args[1] = SETRTS;
1192     args[2]=(DWORD) hcom;
1193
1194     trace("test_WaitCts timeout %ld clt 0x%08lx handle 0x%08lx\n",args[0], args[1], args[2]);
1195
1196     ok(SetCommMask(hcom, EV_CTS), "SetCommMask failed\n");
1197     hComPortEvent =  CreateEvent( NULL, TRUE, FALSE, NULL );
1198     ok(hComPortEvent != 0, "CreateEvent failed\n");
1199     args[3] = (DWORD) hComPortEvent;
1200     alarmThread = CreateThread(NULL, 0, toggle_ctlLine, (void *) &args, 0, &alarmThreadId);
1201     /* Wait a minimum to let the thread start up */
1202     Sleep(10);
1203     trace("Thread created\n");
1204     ok(alarmThread !=0 , "CreateThread Failed\n");
1205
1206     ZeroMemory( &overlapped, sizeof(overlapped));
1207     overlapped.hEvent = hComPortEvent;
1208     before = GetTickCount();
1209     success = WaitCommEvent(hcom, &evtmask, &overlapped);
1210     err = GetLastError();
1211     after = GetTickCount();
1212
1213     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx\n", success, err, evtmask);
1214     ok(success || err == ERROR_IO_PENDING, "overlapped WaitCommEvent failed\n");
1215     trace("overlapped WriteCommEvent returned.\n");
1216     if (!success && (err == ERROR_IO_PENDING))
1217         ok(WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE) == 0,
1218                      "WaitCts hComPortEvent failed\n");
1219     success = GetOverlappedResult(hcom, &overlapped, &written, FALSE);
1220     err = GetLastError();
1221     after1 = GetTickCount();
1222     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx diff1 %ld, diff2 %ld\n",
1223           success, err, evtmask, after-before, after1-before);
1224
1225     ok(evtmask & EV_CTS, "Failed to detect  EV_CTS: 0x%08lx, expected 0x%08x\n",
1226                  evtmask, EV_CTS);
1227     ok(GetCommModemStatus(hcom, &evtmask), "GetCommModemStatus failed\n");
1228     if(defaultStat & MS_CTS_ON)
1229         ok((evtmask & MS_CTS_ON) == 0,"CTS didn't change state!\n");
1230     else
1231         ok((evtmask & MS_CTS_ON), "CTS didn't change state!\n");
1232
1233     diff = after1 - before;
1234     ok ((diff > (TIMEOUT>>1) -TIMEDELTA) && (diff < (TIMEOUT>>1) + TIMEDELTA),
1235                   "Unexpected time %ld, expected around %d\n", diff, TIMEOUT>>1);
1236
1237     /*restore RTS Settings*/
1238     if(defaultStat & MS_CTS_ON)
1239         args[1] = SETRTS;
1240     else
1241         args[1] = CLRRTS;
1242 }
1243
1244 /* Change the  Comm Mask while a Wait is going on
1245    WaitCommevent should return with a EVTMASK set to zero
1246 */
1247 static DWORD CALLBACK reset_CommMask(LPVOID arg)
1248 {
1249     DWORD *args = (DWORD *) arg;
1250     DWORD timeout = args[0];
1251     HANDLE hcom   = (HANDLE) args[1];
1252
1253     trace(" Changing CommMask on the fly for handle %p after timeout %ld\n",
1254           hcom, timeout);
1255     Sleep(timeout);
1256     ok(SetCommMask(hcom, 0),"SetCommMask %p failed\n", hcom);
1257     trace("SetCommMask changed\n");
1258     return 0;
1259 }
1260
1261 /* Set up a Wait for a change on CTS. We don't toggle any line, but we
1262    reset the CommMask and expect the wait to return with a mask of 0
1263    No special port connections needed
1264 */
1265 static void  test_AbortWaitCts(HANDLE hcom)
1266 {
1267     DCB dcb;
1268     OVERLAPPED overlapped;
1269     HANDLE hComPortEvent;
1270     HANDLE alarmThread;
1271     DWORD args[2];
1272     DWORD alarmThreadId, before, after, after1, diff, success, err, written, evtmask=0;
1273
1274     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
1275     if (dcb.fDtrControl == RTS_CONTROL_DISABLE)
1276     {
1277         trace("RTS_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
1278         return;
1279     }
1280     args[0]= TIMEOUT >>1;
1281     args[1]=(DWORD) hcom;
1282
1283     trace("test_AbortWaitCts timeout %ld handle 0x%08lx\n",args[0], args[1]);
1284
1285     ok(SetCommMask(hcom, EV_CTS), "SetCommMask failed\n");
1286     hComPortEvent =  CreateEvent( NULL, TRUE, FALSE, NULL );
1287     ok(hComPortEvent != 0, "CreateEvent failed\n");
1288     alarmThread = CreateThread(NULL, 0, reset_CommMask, (void *) &args, 0, &alarmThreadId);
1289     /* Wait a minimum to let the thread start up */
1290     Sleep(10);
1291     trace("Thread created\n");
1292     ok(alarmThread !=0 , "CreateThread Failed\n");
1293
1294     ZeroMemory( &overlapped, sizeof(overlapped));
1295     overlapped.hEvent = hComPortEvent;
1296     before = GetTickCount();
1297     success = WaitCommEvent(hcom, &evtmask, &overlapped);
1298     err = GetLastError();
1299     after = GetTickCount();
1300
1301     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx\n", success, err, evtmask);
1302     ok(success || err == ERROR_IO_PENDING, "overlapped WaitCommEvent failed\n");
1303     trace("overlapped WriteCommEvent returned.\n");
1304     if (!success && (err == ERROR_IO_PENDING))
1305         ok(WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE) == 0,
1306                      "AbortWaitCts hComPortEvent failed\n");
1307     success = GetOverlappedResult(hcom, &overlapped, &written, FALSE);
1308     err = GetLastError();
1309     after1 = GetTickCount();
1310     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx diff1 %ld, diff2 %ld\n",
1311           success, err, evtmask, after-before, after1-before);
1312
1313     ok(evtmask == 0, "Incorect EventMask 0x%08lx returned on Wait aborted bu SetCommMask, expected 0x%08x\n",
1314                  evtmask, 0);
1315     ok(GetCommModemStatus(hcom, &evtmask), "GetCommModemStatus failed\n");
1316     diff = after1 - before;
1317     ok ((diff > (TIMEOUT>>1) -TIMEDELTA) && (diff < (TIMEOUT>>1) + TIMEDELTA),
1318                   "Unexpected time %ld, expected around %d\n", diff, TIMEOUT>>1);
1319
1320 }
1321
1322 /*
1323  * Wait for a change in DSR
1324  * Needs Loopback from DTR to DSR
1325  */
1326 static void  test_WaitDsr(HANDLE hcom)
1327 {
1328     DCB dcb;
1329     OVERLAPPED overlapped;
1330     HANDLE hComPortEvent;
1331     HANDLE alarmThread;
1332     DWORD args[3], defaultStat;
1333     DWORD alarmThreadId, before, after, after1, diff, success, err, written, evtmask=0;
1334
1335     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
1336     if (dcb.fDtrControl == DTR_CONTROL_DISABLE)
1337     {
1338         trace("DTR_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
1339         return;
1340     }
1341     args[0]= TIMEOUT >>1;
1342     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
1343     if(defaultStat & MS_DSR_ON)
1344         args[1] = CLRDTR;
1345     else
1346         args[1] = SETDTR;
1347     args[2]=(DWORD) hcom;
1348
1349     trace("test_WaitDsr timeout %ld clt 0x%08lx handle 0x%08lx\n",args[0], args[1], args[2]);
1350
1351     ok(SetCommMask(hcom, EV_DSR), "SetCommMask failed\n");
1352     hComPortEvent =  CreateEvent( NULL, TRUE, FALSE, NULL );
1353     ok(hComPortEvent != 0, "CreateEvent failed\n");
1354     alarmThread = CreateThread(NULL, 0, toggle_ctlLine, (void *) &args, 0, &alarmThreadId);
1355     ok(alarmThread !=0 , "CreateThread Failed\n");
1356
1357     ZeroMemory( &overlapped, sizeof(overlapped));
1358     overlapped.hEvent = hComPortEvent;
1359     before = GetTickCount();
1360     success = WaitCommEvent(hcom, &evtmask, &overlapped);
1361     err = GetLastError();
1362     after = GetTickCount();
1363
1364     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx\n", success, err, evtmask);
1365     ok(success || err == ERROR_IO_PENDING, "overlapped WaitCommEvent failed\n");
1366     trace("overlapped WriteCommEvent returned.\n");
1367     if (!success && (err == ERROR_IO_PENDING))
1368         ok(WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE) == 0,
1369                      "wait hComPortEvent failed\n");
1370     success = GetOverlappedResult(hcom, &overlapped, &written, FALSE);
1371     err = GetLastError();
1372     after1 = GetTickCount();
1373     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx diff1 %ld, diff2 %ld\n",
1374           success, err, evtmask, after-before, after1-before);
1375
1376     ok(evtmask & EV_DSR, "Failed to detect  EV_DSR: 0x%08lx, expected 0x%08x\n",
1377                  evtmask, EV_DSR);
1378     ok(GetCommModemStatus(hcom, &evtmask), "GetCommModemStatus failed\n");
1379     if(defaultStat & MS_DSR_ON)
1380         ok((evtmask & MS_DSR_ON) == 0,"DTR didn't change state!\n");
1381     else
1382         ok((evtmask & MS_DSR_ON), "DTR didn't change state!\n");
1383
1384     diff = after1 - before;
1385     ok ((diff > (TIMEOUT>>1) -TIMEDELTA) && (diff < (TIMEOUT>>1) + TIMEDELTA),
1386                   "Unexpected time %ld, expected around %d\n", diff, TIMEOUT>>1);
1387
1388     /*restore RTS Settings*/
1389     if(defaultStat & MS_DSR_ON)
1390         args[1] = SETDTR;
1391     else
1392         args[1] = CLRDTR;
1393 }
1394
1395 /*
1396  * Wait for a Ring
1397  * Needs Loopback from DTR to RING
1398  */
1399 static void  test_WaitRing(HANDLE hcom)
1400 {
1401     DCB dcb;
1402     OVERLAPPED overlapped;
1403     HANDLE hComPortEvent;
1404     HANDLE alarmThread;
1405     DWORD args[3], defaultStat;
1406     DWORD alarmThreadId, before, after, after1, diff, success, err, written, evtmask=0;
1407
1408     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
1409     if (dcb.fDtrControl == DTR_CONTROL_DISABLE)
1410     {
1411         trace("DTR_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
1412         return;
1413     }
1414     args[0]= TIMEOUT >>1;
1415     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
1416     if(defaultStat & MS_RING_ON)
1417         args[1] = CLRDTR;
1418     else
1419         args[1] = SETDTR;
1420     args[2]=(DWORD) hcom;
1421
1422     trace("test_WaitRing timeout %ld clt 0x%08lx handle 0x%08lx\n",args[0], args[1], args[2]);
1423
1424     ok(SetCommMask(hcom, EV_RING), "SetCommMask failed\n");
1425     hComPortEvent =  CreateEvent( NULL, TRUE, FALSE, NULL );
1426     ok(hComPortEvent != 0, "CreateEvent failed\n");
1427     alarmThread = CreateThread(NULL, 0, toggle_ctlLine, (void *) &args, 0, &alarmThreadId);
1428     ok(alarmThread !=0 , "CreateThread Failed\n");
1429
1430     ZeroMemory( &overlapped, sizeof(overlapped));
1431     overlapped.hEvent = hComPortEvent;
1432     before = GetTickCount();
1433     success = WaitCommEvent(hcom, &evtmask, &overlapped);
1434     err = GetLastError();
1435     after = GetTickCount();
1436
1437     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx\n", success, err, evtmask);
1438     ok(success || err == ERROR_IO_PENDING, "overlapped WaitCommEvent failed\n");
1439     trace("overlapped WriteCommEvent returned.\n");
1440     if (!success && (err == ERROR_IO_PENDING))
1441         ok(WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE) == 0,
1442                      "wait hComPortEvent failed\n");
1443     success = GetOverlappedResult(hcom, &overlapped, &written, FALSE);
1444     err = GetLastError();
1445     after1 = GetTickCount();
1446     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx diff1 %ld, diff2 %ld\n",
1447           success, err, evtmask, after-before, after1-before);
1448
1449     ok(evtmask & EV_RING, "Failed to detect  EV_RING: 0x%08lx, expected 0x%08x\n",
1450        evtmask, EV_CTS);
1451     ok(GetCommModemStatus(hcom, &evtmask), "GetCommModemStatus failed\n");
1452     if(defaultStat & MS_RING_ON)
1453         ok((evtmask & MS_RING_ON) == 0,"DTR didn't change state!\n");
1454     else
1455         ok((evtmask & MS_RING_ON), "DTR didn't change state!\n");
1456
1457     diff = after1 - before;
1458     ok ((diff > (TIMEOUT>>1) -TIMEDELTA) && (diff < (TIMEOUT>>1) + TIMEDELTA),
1459                   "Unexpected time %ld, expected around %d\n", diff, TIMEOUT>>1);
1460
1461     /*restore RTS Settings*/
1462     if(defaultStat & MS_RING_ON)
1463         args[1] = SETDTR;
1464     else
1465         args[1] = CLRDTR;
1466 }
1467 /*
1468  * Wait for a change in DCD
1469  * Needs Loopback from DTR to DCD
1470  */
1471 static void  test_WaitDcd(HANDLE hcom)
1472 {
1473     DCB dcb;
1474     OVERLAPPED overlapped;
1475     HANDLE hComPortEvent;
1476     HANDLE alarmThread;
1477     DWORD args[3], defaultStat;
1478     DWORD alarmThreadId, before, after, after1, diff, success, err, written, evtmask=0;
1479
1480     ok(GetCommState(hcom, &dcb), "GetCommState failed\n");
1481     if (dcb.fDtrControl == DTR_CONTROL_DISABLE)
1482     {
1483         trace("DTR_CONTROL_HANDSHAKE is set, so don't manipulate DTR\n");
1484         return;
1485     }
1486     args[0]= TIMEOUT >>1;
1487     ok(GetCommModemStatus(hcom, &defaultStat), "GetCommModemStatus failed\n");
1488     if(defaultStat & MS_RLSD_ON)
1489         args[1] = CLRDTR;
1490     else
1491         args[1] = SETDTR;
1492     args[2]=(DWORD) hcom;
1493
1494     trace("test_WaitDcd timeout %ld clt 0x%08lx handle 0x%08lx\n",args[0], args[1], args[2]);
1495
1496     ok(SetCommMask(hcom, EV_RLSD), "SetCommMask failed\n");
1497     hComPortEvent =  CreateEvent( NULL, TRUE, FALSE, NULL );
1498     ok(hComPortEvent != 0, "CreateEvent failed\n");
1499     alarmThread = CreateThread(NULL, 0, toggle_ctlLine, (void *) &args, 0, &alarmThreadId);
1500     ok(alarmThread !=0 , "CreateThread Failed\n");
1501
1502     ZeroMemory( &overlapped, sizeof(overlapped));
1503     overlapped.hEvent = hComPortEvent;
1504     before = GetTickCount();
1505     success = WaitCommEvent(hcom, &evtmask, &overlapped);
1506     err = GetLastError();
1507     after = GetTickCount();
1508
1509     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx\n", success, err, evtmask);
1510     ok(success || err == ERROR_IO_PENDING, "overlapped WaitCommEvent failed\n");
1511     trace("overlapped WriteCommEvent returned.\n");
1512     if (!success && (err == ERROR_IO_PENDING))
1513         ok(WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE) == 0,
1514                      "wait hComPortEvent failed\n");
1515     success = GetOverlappedResult(hcom, &overlapped, &written, FALSE);
1516     err = GetLastError();
1517     after1 = GetTickCount();
1518     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx diff1 %ld, diff2 %ld\n",
1519           success, err, evtmask, after-before, after1-before);
1520
1521     ok(evtmask & EV_RLSD, "Failed to detect  EV_RLSD: 0x%08lx, expected 0x%08x\n",
1522                  evtmask, EV_CTS);
1523     ok(GetCommModemStatus(hcom, &evtmask), "GetCommModemStatus failed\n");
1524     if(defaultStat & MS_RLSD_ON)
1525         ok((evtmask & MS_RLSD_ON) == 0,"DTR didn't change state!\n");
1526     else
1527         ok((evtmask & MS_RLSD_ON), "DTR didn't change state!\n");
1528
1529     diff = after1 - before;
1530     ok ((diff > (TIMEOUT>>1) -TIMEDELTA) && (diff < (TIMEOUT>>1) + TIMEDELTA),
1531                   "Unexpected time %ld, expected around %d\n", diff, TIMEOUT>>1);
1532
1533     /*restore RTS Settings*/
1534     if(defaultStat & MS_RLSD_ON)
1535         args[1] = SETDTR;
1536     else
1537         args[1] = CLRDTR;
1538 }
1539
1540 /* 
1541    Set Break after timeout
1542 */
1543 static DWORD CALLBACK set_CommBreak(LPVOID arg)
1544 {
1545     DWORD *args = (DWORD *) arg;
1546     DWORD timeout = args[0];
1547     HANDLE hcom   = (HANDLE) args[1];
1548
1549     trace("SetCommBreak for handle %p after timeout %ld\n",
1550           hcom, timeout);
1551     Sleep(timeout);
1552     ok(SetCommBreak(hcom),"SetCommBreak %p failed\n", hcom);
1553     trace("SetCommBreak done\n");
1554     return 0;
1555 }
1556
1557 /*
1558    Wait for the Break condition (TX resp. RX active)
1559    Needs Loopback TX-RX
1560 */
1561 static void  test_WaitBreak(HANDLE hcom)
1562 {
1563     OVERLAPPED overlapped;
1564     HANDLE hComPortEvent;
1565     HANDLE alarmThread;
1566     DWORD args[2];
1567     DWORD alarmThreadId, before, after, after1, diff, success, err, written, evtmask=0;
1568
1569     ok(SetCommMask(hcom, EV_BREAK), "SetCommMask failed\n");
1570     hComPortEvent =  CreateEvent( NULL, TRUE, FALSE, NULL );
1571     ok(hComPortEvent != 0, "CreateEvent failed\n");
1572
1573     trace("test_WaitBreak\n");
1574     args[0]= TIMEOUT >>1;
1575     args[1]=(DWORD) hcom;
1576     alarmThread = CreateThread(NULL, 0, set_CommBreak, (void *) &args, 0, &alarmThreadId);
1577     /* Wait a minimum to let the thread start up */
1578     Sleep(10);
1579     trace("Thread created\n");
1580     ok(alarmThread !=0 , "CreateThread Failed\n");
1581
1582     ZeroMemory( &overlapped, sizeof(overlapped));
1583     overlapped.hEvent = hComPortEvent;
1584     before = GetTickCount();
1585     success = WaitCommEvent(hcom, &evtmask, &overlapped);
1586     err = GetLastError();
1587     after = GetTickCount();
1588
1589     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx\n", success, err, evtmask);
1590     ok(success || err == ERROR_IO_PENDING, "overlapped WaitCommEvent failed\n");
1591     trace("overlapped WriteCommEvent returned.\n");
1592
1593     if (!success && (err == ERROR_IO_PENDING))
1594         ok(WaitForSingleObjectEx(hComPortEvent, TIMEOUT, TRUE) == 0,
1595            "wait hComPortEvent res 0x%08lx\n", GetLastError());
1596     success = GetOverlappedResult(hcom, &overlapped, &written, FALSE);
1597     err = GetLastError();
1598     after1 = GetTickCount();
1599     trace("Success 0x%08lx err 0x%08lx evtmask 0x%08lx diff1 %ld, diff2 %ld\n",
1600           success, err, evtmask, after-before, after1-before);
1601
1602     ok(evtmask & EV_BREAK, "Failed to detect  EV_BREAK: 0x%08lx, expected 0x%08x\n",
1603        evtmask, EV_BREAK);
1604     ok(GetCommModemStatus(hcom, &evtmask), "GetCommModemStatus failed\n");
1605
1606     diff = after1 - before;
1607     ok ((diff > (TIMEOUT>>1) -TIMEDELTA) && (diff < (TIMEOUT>>1) + TIMEDELTA),
1608         "Unexpected time %ld, expected around %d\n", diff, TIMEOUT>>1);
1609
1610     ok(ClearCommBreak(hcom), "ClearCommBreak failed\n");
1611 }
1612
1613 START_TEST(comm)
1614 {
1615     HANDLE hcom;
1616     /* use variabel and not #define to compile the code */
1617     BOOL loopback_txd_rxd  = LOOPBACK_TXD_RXD;
1618     BOOL loopback_rts_cts  = LOOPBACK_CTS_RTS;
1619     BOOL loopback_dtr_dsr  = LOOPBACK_DTR_DSR;
1620     BOOL loopback_dtr_ring = LOOPBACK_DTR_RING;
1621     BOOL loopback_dtr_dcd  = LOOPBACK_DTR_DCD;
1622
1623     test_BuildCommDCB();
1624     hcom = test_OpenComm(FALSE);
1625     if (hcom != INVALID_HANDLE_VALUE)
1626     {
1627         test_GetModemStatus(hcom);
1628         test_ReadTimeOut(hcom);
1629         test_waittxempty(hcom);
1630         CloseHandle(hcom);
1631     }
1632     hcom = test_OpenComm(FALSE);
1633     if (hcom != INVALID_HANDLE_VALUE)
1634     {
1635         Sleep(200); /* Give the laster cahacter of test_waittxempty to drop into the receiver*/
1636         test_ClearCommErrors(hcom);
1637         CloseHandle(hcom);
1638     }
1639     if((loopback_txd_rxd) && ((hcom = test_OpenComm(FALSE))!=INVALID_HANDLE_VALUE))
1640     {
1641         test_LoopbackRead(hcom);
1642         CloseHandle(hcom);
1643     }
1644     if((loopback_rts_cts) && ((hcom = test_OpenComm(FALSE))!=INVALID_HANDLE_VALUE))
1645     {
1646         test_LoopbackCtsRts(hcom);
1647         CloseHandle(hcom);
1648     }
1649     if((loopback_dtr_dsr) && ((hcom = test_OpenComm(FALSE))!=INVALID_HANDLE_VALUE))
1650     {
1651         test_LoopbackDtrDsr(hcom);
1652         CloseHandle(hcom);
1653     }
1654     if((loopback_dtr_ring) && ((hcom = test_OpenComm(FALSE))!=INVALID_HANDLE_VALUE))
1655     {
1656         test_LoopbackDtrRing(hcom);
1657         CloseHandle(hcom);
1658     }
1659     if((loopback_dtr_dcd) && ((hcom = test_OpenComm(FALSE))!=INVALID_HANDLE_VALUE))
1660     {
1661         test_LoopbackDtrDcd(hcom);
1662         CloseHandle(hcom);
1663     }
1664     if((loopback_txd_rxd) && ((hcom = test_OpenComm(TRUE))!=INVALID_HANDLE_VALUE))
1665     {
1666         test_WaitRx(hcom);
1667         CloseHandle(hcom);
1668     }
1669     if((loopback_rts_cts) && ((hcom = test_OpenComm(TRUE))!=INVALID_HANDLE_VALUE))
1670     {
1671         test_WaitCts(hcom);
1672         CloseHandle(hcom);
1673     }
1674     if((hcom = test_OpenComm(TRUE))!=INVALID_HANDLE_VALUE)
1675     {
1676         test_AbortWaitCts(hcom);
1677         CloseHandle(hcom);
1678     }
1679     if((loopback_dtr_dsr) && ((hcom = test_OpenComm(TRUE))!=INVALID_HANDLE_VALUE))
1680     {
1681         test_WaitDsr(hcom);
1682         CloseHandle(hcom);
1683     }
1684     if((loopback_dtr_ring) && ((hcom = test_OpenComm(TRUE))!=INVALID_HANDLE_VALUE))
1685     {
1686         test_WaitRing(hcom);
1687         CloseHandle(hcom);
1688     }
1689     if((loopback_dtr_dcd) && ((hcom = test_OpenComm(TRUE))!=INVALID_HANDLE_VALUE))
1690     {
1691         test_WaitDcd(hcom);
1692         CloseHandle(hcom);
1693     }
1694     if(loopback_txd_rxd && (hcom = test_OpenComm(TRUE))!=INVALID_HANDLE_VALUE)
1695     {
1696         test_WaitBreak(hcom);
1697         CloseHandle(hcom);
1698     }
1699 }