1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-03 16:51:58 +00:00

Merge pull request #473 from kornelski/usetest

Fix tests on Unix
This commit is contained in:
Nikolay Kim 2018-08-17 07:20:47 -07:00 committed by GitHub
commit 8fe30a5b66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,13 +59,14 @@ const STR: &str = "Hello World Hello World Hello World Hello World Hello World \
#[test]
#[cfg(unix)]
fn test_start() {
use std::{mpsc, net};
use std::sync::mpsc;
use actix::System;
let _ = test::TestServer::unused_addr();
let (tx, rx) = mpsc::channel();
thread::spawn(|| {
actix::System::run(move || {
System::run(move || {
let srv = server::new(|| {
vec![App::new().resource("/", |r| {
r.method(http::Method::GET).f(|_| HttpResponse::Ok())
@ -118,6 +119,10 @@ fn test_start() {
#[test]
#[cfg(unix)]
fn test_shutdown() {
use std::sync::mpsc;
use std::net;
use actix::System;
let _ = test::TestServer::unused_addr();
let (tx, rx) = mpsc::channel();
@ -157,6 +162,9 @@ fn test_shutdown() {
#[test]
#[cfg(unix)]
fn test_panic() {
use std::sync::mpsc;
use actix::System;
let _ = test::TestServer::unused_addr();
let (tx, rx) = mpsc::channel();