]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/tcp-stress.rs
efad0cecbde96289442c8c32cdc41b25b5b7f42c
[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 extern crate green;
20 extern crate rustuv;
21 extern crate debug;
22
23 use std::io::net::tcp::{TcpListener, TcpStream};
24 use std::io::{Acceptor, Listener};
25 use std::task::TaskBuilder;
26
27 #[start]
28 fn start(argc: int, argv: **u8) -> int {
29     green::start(argc, argv, rustuv::event_loop, main)
30 }
31
32 fn main() {
33     // This test has a chance to time out, try to not let it time out
34     spawn(proc() {
35         use std::io::timer;
36         timer::sleep(30 * 1000);
37         println!("timed out!");
38         unsafe { libc::exit(1) }
39     });
40
41     let (tx, rx) = channel();
42     spawn(proc() {
43         let mut listener = TcpListener::bind("127.0.0.1", 0).unwrap();
44         tx.send(listener.socket_name().unwrap());
45         let mut acceptor = listener.listen();
46         loop {
47             let mut stream = match acceptor.accept() {
48                 Ok(stream) => stream,
49                 Err(error) => {
50                     debug!("accept failed: {:?}", error);
51                     continue;
52                 }
53             };
54             stream.read_byte();
55             stream.write([2]);
56         }
57     });
58     let addr = rx.recv();
59
60     let (tx, rx) = channel();
61     for _ in range(0u, 1000) {
62         let tx = tx.clone();
63         TaskBuilder::new().stack_size(64 * 1024).spawn(proc() {
64             let host = addr.ip.to_str();
65             let port = addr.port;
66             match TcpStream::connect(host.as_slice(), port) {
67                 Ok(stream) => {
68                     let mut stream = stream;
69                     stream.write([1]);
70                     let mut buf = [0];
71                     stream.read(buf);
72                 },
73                 Err(e) => debug!("{:?}", e)
74             }
75             tx.send(());
76         });
77     }
78
79     // Wait for all clients to exit, but don't wait for the server to exit. The
80     // server just runs infinitely.
81     drop(tx);
82     for _ in range(0u, 1000) {
83         rx.recv();
84     }
85     unsafe { libc::exit(0) }
86 }