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) 1999-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 ***** */
42 * This test runs in conjunction with the sockpong test.
43 * This test creates a socket pair and passes one socket
44 * to the sockpong test. Then this test writes "ping" to
45 * to the sockpong test and the sockpong test writes "pong"
46 * back. To run this pair of tests, just invoke sockping.
48 * Tested areas: process creation, socket pairs, file
49 * descriptor inheritance.
60 #define NUM_ITERATIONS 10
62 static char *child_argv
[] = { "sockpong", NULL
};
75 status
= PR_NewTCPSocketPair(sock
);
76 if (status
== PR_FAILURE
) {
77 fprintf(stderr
, "PR_NewTCPSocketPair failed\n");
81 status
= PR_SetFDInheritable(sock
[0], PR_FALSE
);
82 if (status
== PR_FAILURE
) {
83 fprintf(stderr
, "PR_SetFDInheritable failed: (%d, %d)\n",
84 PR_GetError(), PR_GetOSError());
87 status
= PR_SetFDInheritable(sock
[1], PR_TRUE
);
88 if (status
== PR_FAILURE
) {
89 fprintf(stderr
, "PR_SetFDInheritable failed: (%d, %d)\n",
90 PR_GetError(), PR_GetOSError());
94 attr
= PR_NewProcessAttr();
96 fprintf(stderr
, "PR_NewProcessAttr failed\n");
100 status
= PR_ProcessAttrSetInheritableFD(attr
, sock
[1], "SOCKET");
101 if (status
== PR_FAILURE
) {
102 fprintf(stderr
, "PR_ProcessAttrSetInheritableFD failed\n");
106 process
= PR_CreateProcess(child_argv
[0], child_argv
, NULL
, attr
);
107 if (process
== NULL
) {
108 fprintf(stderr
, "PR_CreateProcess failed\n");
111 PR_DestroyProcessAttr(attr
);
112 status
= PR_Close(sock
[1]);
113 if (status
== PR_FAILURE
) {
114 fprintf(stderr
, "PR_Close failed\n");
118 for (idx
= 0; idx
< NUM_ITERATIONS
; idx
++) {
120 printf("ping process: sending \"%s\"\n", buf
);
121 nBytes
= PR_Write(sock
[0], buf
, 5);
123 fprintf(stderr
, "PR_Write failed: (%d, %d)\n",
124 PR_GetError(), PR_GetOSError());
127 memset(buf
, 0, sizeof(buf
));
128 nBytes
= PR_Read(sock
[0], buf
, sizeof(buf
));
130 fprintf(stderr
, "PR_Read failed: (%d, %d)\n",
131 PR_GetError(), PR_GetOSError());
134 printf("ping process: received \"%s\"\n", buf
);
136 fprintf(stderr
, "ping process: expected 5 bytes but got %d bytes\n",
140 if (strcmp(buf
, "pong") != 0) {
141 fprintf(stderr
, "ping process: expected \"pong\" but got \"%s\"\n",
147 status
= PR_Close(sock
[0]);
148 if (status
== PR_FAILURE
) {
149 fprintf(stderr
, "PR_Close failed\n");
152 status
= PR_WaitProcess(process
, &exitCode
);
153 if (status
== PR_FAILURE
) {
154 fprintf(stderr
, "PR_WaitProcess failed\n");