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) 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 pipepong2 test.
43 * This test creates two pipes and passes two pipe fd's
44 * to the pipepong2 test. Then this test writes "ping" to
45 * to the pipepong2 test and the pipepong2 test writes "pong"
46 * back. To run this pair of tests, just invoke pipeping2.
48 * Tested areas: process creation, pipes, file descriptor
60 #define NUM_ITERATIONS 10
62 static char *child_argv
[] = { "pipepong2", NULL
};
66 PRFileDesc
*in_pipe
[2];
67 PRFileDesc
*out_pipe
[2];
76 status
= PR_CreatePipe(&in_pipe
[0], &in_pipe
[1]);
77 if (status
== PR_FAILURE
) {
78 fprintf(stderr
, "PR_CreatePipe failed\n");
81 status
= PR_CreatePipe(&out_pipe
[0], &out_pipe
[1]);
82 if (status
== PR_FAILURE
) {
83 fprintf(stderr
, "PR_CreatePipe failed\n");
87 status
= PR_SetFDInheritable(in_pipe
[0], PR_FALSE
);
88 if (status
== PR_FAILURE
) {
89 fprintf(stderr
, "PR_SetFDInheritable failed\n");
92 status
= PR_SetFDInheritable(in_pipe
[1], PR_TRUE
);
93 if (status
== PR_FAILURE
) {
94 fprintf(stderr
, "PR_SetFDInheritable failed\n");
97 status
= PR_SetFDInheritable(out_pipe
[0], PR_TRUE
);
98 if (status
== PR_FAILURE
) {
99 fprintf(stderr
, "PR_SetFDInheritable failed\n");
102 status
= PR_SetFDInheritable(out_pipe
[1], PR_FALSE
);
103 if (status
== PR_FAILURE
) {
104 fprintf(stderr
, "PR_SetFDInheritable failed\n");
108 attr
= PR_NewProcessAttr();
110 fprintf(stderr
, "PR_NewProcessAttr failed\n");
114 status
= PR_ProcessAttrSetInheritableFD(attr
, out_pipe
[0], "PIPE_READ");
115 if (status
== PR_FAILURE
) {
116 fprintf(stderr
, "PR_ProcessAttrSetInheritableFD failed\n");
119 status
= PR_ProcessAttrSetInheritableFD(attr
, in_pipe
[1], "PIPE_WRITE");
120 if (status
== PR_FAILURE
) {
121 fprintf(stderr
, "PR_ProcessAttrSetInheritableFD failed\n");
125 process
= PR_CreateProcess(child_argv
[0], child_argv
, NULL
, attr
);
126 if (process
== NULL
) {
127 fprintf(stderr
, "PR_CreateProcess failed\n");
130 PR_DestroyProcessAttr(attr
);
131 status
= PR_Close(out_pipe
[0]);
132 if (status
== PR_FAILURE
) {
133 fprintf(stderr
, "PR_Close failed\n");
136 status
= PR_Close(in_pipe
[1]);
137 if (status
== PR_FAILURE
) {
138 fprintf(stderr
, "PR_Close failed\n");
142 for (idx
= 0; idx
< NUM_ITERATIONS
; idx
++) {
144 printf("ping process: sending \"%s\"\n", buf
);
145 nBytes
= PR_Write(out_pipe
[1], buf
, 5);
147 fprintf(stderr
, "PR_Write failed: (%d, %d)\n",
148 PR_GetError(), PR_GetOSError());
151 memset(buf
, 0, sizeof(buf
));
152 nBytes
= PR_Read(in_pipe
[0], buf
, sizeof(buf
));
154 fprintf(stderr
, "PR_Read failed\n");
157 printf("ping process: received \"%s\"\n", buf
);
159 fprintf(stderr
, "ping process: expected 5 bytes but got %d bytes\n",
163 if (strcmp(buf
, "pong") != 0) {
164 fprintf(stderr
, "ping process: expected \"pong\" but got \"%s\"\n",
170 status
= PR_Close(in_pipe
[0]);
171 if (status
== PR_FAILURE
) {
172 fprintf(stderr
, "PR_Close failed\n");
175 status
= PR_Close(out_pipe
[1]);
176 if (status
== PR_FAILURE
) {
177 fprintf(stderr
, "PR_Close failed\n");
180 status
= PR_WaitProcess(process
, &exitCode
);
181 if (status
== PR_FAILURE
) {
182 fprintf(stderr
, "PR_WaitProcess failed\n");