diff --git a/src/box/lua/net_box.c b/src/box/lua/net_box.c index 229dec590cf986038d7550fcc21bd399b38ceb51..43a7d78a1122499581d490ba38e5ef380a72152b 100644 --- a/src/box/lua/net_box.c +++ b/src/box/lua/net_box.c @@ -235,6 +235,8 @@ netbox_request_complete(struct netbox_request *request) static inline bool netbox_request_wait(struct netbox_request *request, double *timeout) { + if (*timeout == 0) + return false; double ts = ev_monotonic_now(loop()); int rc = fiber_cond_wait_timeout(&request->cond, *timeout); *timeout -= ev_monotonic_now(loop()) - ts; diff --git a/test/box/net.box_fiber-async_gh-3107.result b/test/box/net.box_fiber-async_gh-3107.result index aaaca351a5790e2d1918cf75f57672c04caadef0..ec2fd4f6441a030e29b7bca5e1fc475514fa89ee 100644 --- a/test/box/net.box_fiber-async_gh-3107.result +++ b/test/box/net.box_fiber-async_gh-3107.result @@ -104,6 +104,54 @@ err:find('Usage') ~= nil --- - true ... +-- +-- Check that there's no unexpected yields. +-- +function assert_no_csw(func, ...) \ + local csw1 = fiber.info()[fiber.id()].csw \ + local ret = {func(...)} \ + local csw2 = fiber.info()[fiber.id()].csw \ + assert(csw2 - csw1 == 0) \ + return unpack(ret) \ +end +--- +... +future = c:call('long_function', {1, 2, 3}, {is_async = true}) +--- +... +assert_no_csw(future.is_ready, future) +--- +- false +... +assert_no_csw(future.result, future) +--- +- null +- Response is not ready +... +assert_no_csw(future.wait_result, future, 0) +--- +- null +- Timeout exceeded +... +finalize_long() +--- +... +future:wait_result() +--- +- [1, 2, 3] +... +assert_no_csw(future.is_ready, future) +--- +- true +... +assert_no_csw(future.result, future) +--- +- [1, 2, 3] +... +assert_no_csw(future.wait_result, future) +--- +- [1, 2, 3] +... box.schema.func.drop('long_function') --- ... diff --git a/test/box/net.box_fiber-async_gh-3107.test.lua b/test/box/net.box_fiber-async_gh-3107.test.lua index d23f368cbce462cd522d3c5edc833a0e9293d1fe..71ba50b62ccbf722cab7d4df6414ed743f107f00 100644 --- a/test/box/net.box_fiber-async_gh-3107.test.lua +++ b/test/box/net.box_fiber-async_gh-3107.test.lua @@ -36,6 +36,26 @@ err:find('Usage') ~= nil _, err = pcall(future.wait_result, future, '100') err:find('Usage') ~= nil +-- +-- Check that there's no unexpected yields. +-- +function assert_no_csw(func, ...) \ + local csw1 = fiber.info()[fiber.id()].csw \ + local ret = {func(...)} \ + local csw2 = fiber.info()[fiber.id()].csw \ + assert(csw2 - csw1 == 0) \ + return unpack(ret) \ +end +future = c:call('long_function', {1, 2, 3}, {is_async = true}) +assert_no_csw(future.is_ready, future) +assert_no_csw(future.result, future) +assert_no_csw(future.wait_result, future, 0) +finalize_long() +future:wait_result() +assert_no_csw(future.is_ready, future) +assert_no_csw(future.result, future) +assert_no_csw(future.wait_result, future) + box.schema.func.drop('long_function') c:close()