This commit is contained in:
Nikolay Kim 2025-02-26 22:18:36 -03:00
parent 3e5211eb79
commit 60cba94f27
3 changed files with 11 additions and 0 deletions

View file

@ -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 }

View file

@ -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"

View file

@ -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