1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is the Netscape Portable Runtime (NSPR).
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 /***********************************************************************
42 ** Description: This program tests PR_Poll with sockets.
43 ** error reporting operation is tested
45 ** Modification History:
46 ** 19-May-97 AGarcia- Converted the test to accomodate the debug_mode flag.
47 ** The debug mode will print all of the printfs associated with this test.
48 ** The regress mode will be the default mode. Since the regress tool limits
49 ** the output to a one line status:PASS or FAIL,all of the printf statements
50 ** have been handled with an if (debug_mode) statement.
51 ** 04-June-97 AGarcia removed the Test_Result function. Regress tool has been updated to
52 ** recognize the return code from tha main program.
53 ***********************************************************************/
59 printf( "This test is not ported to the BeOS\n" );
64 /***********************************************************************
66 ***********************************************************************/
67 /* Used to get the command line option */
76 PRIntn failed_already
=0;
80 ClientThreadFunc(void *arg
)
82 PRFileDesc
*badFD
= (PRFileDesc
*) arg
;
87 close(PR_FileDesc2NativeHandle(badFD
));
89 soclose(PR_FileDesc2NativeHandle(badFD
));
90 #elif defined(WIN32) || defined(WIN16)
91 closesocket(PR_FileDesc2NativeHandle(badFD
));
93 _PR_MD_CLOSE_SOCKET(PR_FileDesc2NativeHandle(badFD
));
95 #error "Unknown architecture"
99 int main(int argc
, char **argv
)
101 PRFileDesc
*listenSock1
, *listenSock2
;
103 PRUint16 listenPort1
, listenPort2
;
106 PRPollDesc pds0
[10], pds1
[10], *pds
, *other_pds
;
110 /* The command line argument: -d is used to determine if the test is being run
111 in debug mode. The regress tool requires only one line output:PASS or FAIL.
112 All of the printfs associated with this test has been handled with a if (debug_mode)
117 PLOptState
*opt
= PL_CreateOptState(argc
, argv
, "d:");
118 while (PL_OPT_EOL
!= (os
= PL_GetNextOpt(opt
)))
120 if (PL_OPT_BAD
== os
) continue;
123 case 'd': /* debug mode */
130 PL_DestroyOptState(opt
);
134 PR_Init(PR_USER_THREAD
, PR_PRIORITY_NORMAL
, 0);
138 printf("This program tests PR_Poll with sockets.\n");
139 printf("error reporting is tested.\n\n");
142 /* Create two listening sockets */
143 if ((listenSock1
= PR_NewTCPSocket()) == NULL
) {
144 fprintf(stderr
, "Can't create a new TCP socket\n");
148 addr
.inet
.family
= AF_INET
;
149 addr
.inet
.ip
= PR_htonl(INADDR_ANY
);
150 addr
.inet
.port
= PR_htons(0);
151 if (PR_Bind(listenSock1
, &addr
) == PR_FAILURE
) {
152 fprintf(stderr
, "Can't bind socket\n");
156 if (PR_GetSockName(listenSock1
, &addr
) == PR_FAILURE
) {
157 fprintf(stderr
, "PR_GetSockName failed\n");
161 listenPort1
= PR_ntohs(addr
.inet
.port
);
162 if (PR_Listen(listenSock1
, 5) == PR_FAILURE
) {
163 fprintf(stderr
, "Can't listen on a socket\n");
168 if ((listenSock2
= PR_NewTCPSocket()) == NULL
) {
169 fprintf(stderr
, "Can't create a new TCP socket\n");
173 addr
.inet
.family
= AF_INET
;
174 addr
.inet
.ip
= PR_htonl(INADDR_ANY
);
175 addr
.inet
.port
= PR_htons(0);
176 if (PR_Bind(listenSock2
, &addr
) == PR_FAILURE
) {
177 fprintf(stderr
, "Can't bind socket\n");
181 if (PR_GetSockName(listenSock2
, &addr
) == PR_FAILURE
) {
182 fprintf(stderr
, "PR_GetSockName failed\n");
186 listenPort2
= PR_ntohs(addr
.inet
.port
);
187 if (PR_Listen(listenSock2
, 5) == PR_FAILURE
) {
188 fprintf(stderr
, "Can't listen on a socket\n");
192 PR_snprintf(buf
, sizeof(buf
),
193 "The server thread is listening on ports %hu and %hu\n\n",
194 listenPort1
, listenPort2
);
195 if (debug_mode
) printf("%s", buf
);
197 /* Set up the poll descriptor array */
200 memset(pds
, 0, sizeof(pds
));
201 pds
[0].fd
= listenSock1
;
202 pds
[0].in_flags
= PR_POLL_READ
;
203 pds
[1].fd
= listenSock2
;
204 pds
[1].in_flags
= PR_POLL_READ
;
209 if (debug_mode
) printf("PR_Poll should detect a bad file descriptor\n");
210 if ((badFD
= PR_NewTCPSocket()) == NULL
) {
211 fprintf(stderr
, "Can't create a TCP socket\n");
216 pds
[2].in_flags
= PR_POLL_READ
;
219 if (PR_CreateThread(PR_USER_THREAD
, ClientThreadFunc
,
220 badFD
, PR_PRIORITY_NORMAL
, PR_LOCAL_THREAD
,
221 PR_UNJOINABLE_THREAD
, 0) == NULL
) {
222 fprintf(stderr
, "cannot create thread\n");
226 retVal
= PR_Poll(pds
, npds
, PR_INTERVAL_NO_TIMEOUT
);
227 if (retVal
!= 1 || (unsigned short) pds
[2].out_flags
!= PR_POLL_NVAL
) {
228 fprintf(stderr
, "Failed to detect the bad fd: "
229 "PR_Poll returns %d, out_flags is 0x%hx\n",
230 retVal
, pds
[2].out_flags
);
234 if (debug_mode
) printf("PR_Poll detected the bad fd. Test passed.\n\n");