Tarantool development patches archive
 help / color / mirror / Atom feed
* [PATCH v1] test: app/socket flaky fails at 1118 line
@ 2019-08-14  5:27 Alexander V. Tikhonov
  2019-08-14 12:12 ` Vladimir Davydov
  0 siblings, 1 reply; 2+ messages in thread
From: Alexander V. Tikhonov @ 2019-08-14  5:27 UTC (permalink / raw)
  To: Vladimir Davydov; +Cc: Alexander V. Tikhonov, tarantool-patches

Found that on hard loaded hosts the test flaky fails at:

[004] --- app/socket.result	Mon Jul 15 07:18:57 2019
[004] +++ app/socket.reject	Tue Jul 16 16:37:35 2019
[004] @@ -1118,7 +1118,7 @@
[004]  ...
[004]  ch:get(1)
[004]  ---
[004] -- true
[004] +- null
[004]  ...
[004]  s:error()
[004]  ---

The issue was found at the fiber function:

f = fiber.create(function() s:read(12) ch:put(true) end)

that reads from socket and puts into the fiber with possible
delay which caused the issue. To aovid of it the fiber
function must be called in one shot by using the 'setopt
delimiter' functionality.

Fixes #4354
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4354-1118-app-socket
Issue: https://github.com/tarantool/tarantool/issues/4353

 test/app/socket.result   | 13 ++++++++++++-
 test/app/socket.test.lua |  7 ++++++-
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/test/app/socket.result b/test/app/socket.result
index 77eff7370..138946158 100644
--- a/test/app/socket.result
+++ b/test/app/socket.result
@@ -1109,9 +1109,20 @@ s = socket.tcp_connect('127.0.0.1', port)
 ch = fiber.channel()
 ---
 ...
-f = fiber.create(function() s:read(12) ch:put(true) end)
+test_run:cmd("setopt delimiter ';'")
+---
+- true
+...
+f = fiber.create(function()
+    s:read(12)
+    ch:put(true)
+end);
 ---
 ...
+test_run:cmd("setopt delimiter ''");
+---
+- true
+...
 s:close()
 ---
 - true
diff --git a/test/app/socket.test.lua b/test/app/socket.test.lua
index 7ae9a98aa..68ac4b4ac 100644
--- a/test/app/socket.test.lua
+++ b/test/app/socket.test.lua
@@ -359,7 +359,12 @@ test_run:cmd("setopt delimiter ''");
 
 s = socket.tcp_connect('127.0.0.1', port)
 ch = fiber.channel()
-f = fiber.create(function() s:read(12) ch:put(true) end)
+test_run:cmd("setopt delimiter ';'")
+f = fiber.create(function()
+    s:read(12)
+    ch:put(true)
+end);
+test_run:cmd("setopt delimiter ''");
 s:close()
 ch:get(1)
 s:error()
-- 
2.17.1

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v1] test: app/socket flaky fails at 1118 line
  2019-08-14  5:27 [PATCH v1] test: app/socket flaky fails at 1118 line Alexander V. Tikhonov
@ 2019-08-14 12:12 ` Vladimir Davydov
  0 siblings, 0 replies; 2+ messages in thread
From: Vladimir Davydov @ 2019-08-14 12:12 UTC (permalink / raw)
  To: Alexander V. Tikhonov; +Cc: tarantool-patches

On Wed, Aug 14, 2019 at 08:27:59AM +0300, Alexander V. Tikhonov wrote:
> diff --git a/test/app/socket.test.lua b/test/app/socket.test.lua
> index 7ae9a98aa..68ac4b4ac 100644
> --- a/test/app/socket.test.lua
> +++ b/test/app/socket.test.lua
> @@ -359,7 +359,12 @@ test_run:cmd("setopt delimiter ''");
>  
>  s = socket.tcp_connect('127.0.0.1', port)
>  ch = fiber.channel()
> -f = fiber.create(function() s:read(12) ch:put(true) end)
> +test_run:cmd("setopt delimiter ';'")
> +f = fiber.create(function()
> +    s:read(12)
> +    ch:put(true)
> +end);
> +test_run:cmd("setopt delimiter ''");
>  s:close()
>  ch:get(1)
>  s:error()

For the record. Discussed f2f, agreed that this patch doesn't make any
difference. There must be some other explanation of the test failure.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-08-14 12:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-14  5:27 [PATCH v1] test: app/socket flaky fails at 1118 line Alexander V. Tikhonov
2019-08-14 12:12 ` Vladimir Davydov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox