Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / test_exec.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2006-2008 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import exec
18
19 var hw = new Process("echo", "A", "hello", "world!")
20 hw.wait
21 print hw.status
22
23 print ""
24
25 var ip = new ProcessReader("echo", "B hello world!")
26 ip.read_line.output
27 ip.eof.output
28 ip.wait
29 print ip.status
30
31 print ""
32
33 var op = new ProcessWriter.from_a("cat", null)
34 op.write("C hello world!\n")
35 op.close
36 op.wait
37 print op.status
38
39 print ""
40
41 var iop = new ProcessDuplex.from_a("cat", null)
42 iop.write("D hello world!\n")
43 iop.read_line.output
44 iop.close
45 iop.wait
46 print iop.status
47
48 print ""
49
50 var e1 = new Process("sh", "-c", "echo E; exit 1")
51 e1.wait
52 print e1.status
53
54 print ""
55
56 var ioperr = new ProcessDuplex.from_a("bad command", null)
57 ioperr.write("D hello world!\n")
58 ioperr.read_line.output
59 ioperr.close
60 ioperr.wait
61 print ioperr.status