grin/p2p/tests/network_conn.rs

41 lines
1.2 KiB
Rust
Raw Normal View History

// Copyright 2016 The Grin Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
extern crate grin_p2p as p2p;
extern crate mioco;
extern crate env_logger;
use std::io;
use std::thread;
use std::time;
#[test]
fn peer_handshake() {
env_logger::init().unwrap();
mioco::start(|| -> io::Result<()> {
let server = p2p::Server::new();
server.start();
// given server a little time to start
mioco::sleep(time::Duration::from_millis(200));
let addr = p2p::DEFAULT_LISTEN_ADDR.parse().unwrap();
try!(p2p::Server::connect_as_client(addr).map_err(|_| io::Error::last_os_error()));
server.stop();
mioco::shutdown();
}).unwrap().unwrap();
}