mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
Wip
This commit is contained in:
parent
3e5211eb79
commit
60cba94f27
3 changed files with 11 additions and 0 deletions
|
@ -40,3 +40,9 @@ ntex-compio = { path = "ntex-compio" }
|
|||
ntex-glommio = { path = "ntex-glommio" }
|
||||
ntex-tokio = { path = "ntex-tokio" }
|
||||
ntex-async-std = { path = "ntex-async-std" }
|
||||
|
||||
compio-buf = { path = "../dev/compio/compio-buf", optional = true }
|
||||
compio-io = { path = "../dev/compio/compio-io", optional = true }
|
||||
compio-net = { path = "../dev/compio/compio-net", optional = true }
|
||||
compio-driver = { path = "../dev/compio/compio-driver", optional = true }
|
||||
compio-runtime = { path = "../dev/compio/compio-runtime", optional = true }
|
||||
|
|
|
@ -111,6 +111,8 @@ webpki-roots = { version = "0.26", optional = true }
|
|||
brotli2 = { version = "0.3.2", optional = true }
|
||||
flate2 = { version = "1.0", optional = true }
|
||||
|
||||
compio-driver = "*"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.11"
|
||||
rand = "0.8"
|
||||
|
|
|
@ -72,6 +72,7 @@ async fn test_listen() {
|
|||
#[ntex::test]
|
||||
#[cfg(unix)]
|
||||
async fn test_run() {
|
||||
let _ = env_logger::try_init();
|
||||
let addr = TestServer::unused_addr();
|
||||
let (tx, rx) = mpsc::channel();
|
||||
|
||||
|
@ -80,8 +81,10 @@ async fn test_run() {
|
|||
sys.run(move || {
|
||||
let srv = build()
|
||||
.backlog(100)
|
||||
.workers(1)
|
||||
.disable_signals()
|
||||
.bind("test", addr, move |_| {
|
||||
compio_driver::enable_logging();
|
||||
fn_service(|io: Io| async move {
|
||||
io.send(Bytes::from_static(b"test"), &BytesCodec)
|
||||
.await
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue