]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/tcp-stress.rs
rollup merge of #18407 : thestinger/arena
[rust.git] / src / test / run-pass / tcp-stress.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // ignore-linux see joyent/libuv#1189
12 // ignore-android needs extra network permissions
13 // exec-env:RUST_LOG=debug
14
15 #![feature(phase)]
16 #[phase(plugin, link)]
17 extern crate log;
18 extern crate libc;
19
20 use std::io::net::tcp::{TcpListener, TcpStream};
21 use std::io::{Acceptor, Listener};
22 use std::task::TaskBuilder;
23 use std::time::Duration;
24
25 fn main() {
26     // This test has a chance to time out, try to not let it time out
27     spawn(proc() {
28         use std::io::timer;
29         timer::sleep(Duration::milliseconds(30 * 1000));
30         println!("timed out!");
31         unsafe { libc::exit(1) }
32     });
33
34     let (tx, rx) = channel();
35     spawn(proc() {
36         let mut listener = TcpListener::bind("127.0.0.1", 0).unwrap();
37         tx.send(listener.socket_name().unwrap());
38         let mut acceptor = listener.listen();
39         loop {
40             let mut stream = match acceptor.accept() {
41                 Ok(stream) => stream,
42                 Err(error) => {
43                     debug!("accept panicked: {}", error);
44                     continue;
45                 }
46             };
47             stream.read_byte();
48             stream.write([2]);
49         }
50     });
51     let addr = rx.recv();
52
53     let (tx, rx) = channel();
54     for _ in range(0u, 1000) {
55         let tx = tx.clone();
56         TaskBuilder::new().stack_size(64 * 1024).spawn(proc() {
57             let host = addr.ip.to_string();
58             let port = addr.port;
59             match TcpStream::connect(host.as_slice(), port) {
60                 Ok(stream) => {
61                     let mut stream = stream;
62                     stream.write([1]);
63                     let mut buf = [0];
64                     stream.read(buf);
65                 },
66                 Err(e) => debug!("{}", e)
67             }
68             tx.send(());
69         });
70     }
71
72     // Wait for all clients to exit, but don't wait for the server to exit. The
73     // server just runs infinitely.
74     drop(tx);
75     for _ in range(0u, 1000) {
76         rx.recv();
77     }
78     unsafe { libc::exit(0) }
79 }