From: Serge Petrenko <sergepetrenko@tarantool.org>
To: tarantool-patches@freelists.org
Cc: Serge Petrenko <sergepetrenko@tarantool.org>
Subject: [tarantool-patches] [PATCH] tarantoolctl: return an error on enter to a dead socket.
Date: Mon, 16 Jul 2018 11:26:55 +0300 [thread overview]
Message-ID: <20180716082655.42311-1-sergepetrenko@tarantool.org> (raw)
Tarantoolctl enter didn't check whether connection to a socket was established
if a socket file existed. It just executed a local console.
Fix this by adding a check and an error, also add a test case.
Closes #3364
---
https://github.com/tarantool/tarantool/issues/3364
https://github.com/tarantool/tarantool/tree/sergepetrenko/gh-3364-tarantoolctl-enter-fix
| 19 ++++++++++++-------
test/app-tap/tarantoolctl.test.lua | 29 ++++++++++++++++++++++++++++-
2 files changed, 40 insertions(+), 8 deletions(-)
--git a/extra/dist/tarantoolctl.in b/extra/dist/tarantoolctl.in
index 2dd5d74ef..8085ede63 100755
--- a/extra/dist/tarantoolctl.in
+++ b/extra/dist/tarantoolctl.in
@@ -638,15 +638,20 @@ local function enter()
end
return 1
end
-
- local cmd = string.format(
- "require('console').connect('%s', { connect_timeout = %s })",
- console_sock, TIMEOUT_INFINITY
- )
-
- console.on_start(function(self) self:eval(cmd) end)
+ local status, ret
+ console.on_start(function(self)
+ pcall(console.connect, console_sock,
+ {connect_timeout = TIMEOUT_INFINITY})
+ if not status then
+ log.error("Can't connect to %s (%s)", console_sock_path, ret)
+ self.running = false
+ end
+ end)
console.on_client_disconnect(function(self) self.running = false end)
console.start()
+ if not status then
+ return 1
+ end
return 0
end
diff --git a/test/app-tap/tarantoolctl.test.lua b/test/app-tap/tarantoolctl.test.lua
index 6946c8312..f40a90c55 100755
--- a/test/app-tap/tarantoolctl.test.lua
+++ b/test/app-tap/tarantoolctl.test.lua
@@ -150,7 +150,7 @@ local function check_ok(test, dir, cmd, args, e_res, e_stdout, e_stderr)
end
local test = tap.test('tarantoolctl')
-test:plan(6)
+test:plan(7)
-- basic start/stop test
-- must be stopped afterwards
@@ -250,6 +250,33 @@ do
end
end
+-- check enter
+do
+ local dir = fio.tempdir()
+
+ local code = [[ box.cfg{} ]]
+ create_script(dir, 'script.lua', code)
+
+ local status, err = pcall(function()
+ test:test("check error codes in case of enter", function(test_i)
+ test_i:plan(6)
+ check_ok(test_i, dir, 'enter', 'script', 1, nil, "Can't connect to")
+ check_ok(test_i, dir, 'start', 'script', 0)
+ os.execute(("kill $(cat %s/script.pid)"):format(dir))
+ check_ok(test_i, dir, 'enter', 'script', 1, nil, "Can't connect to")
+ check_ok(test_i, dir, 'stop','script', 0)
+ end)
+ end)
+
+ cleanup_instance(dir, 'script')
+ recursive_rmdir(dir)
+
+ if status == false then
+ prit(("Error: %s"):format(err))
+ os.exit()
+ end
+end
+
-- check basic help
do
local dir = fio.tempdir()
--
2.15.2 (Apple Git-101.1)
next reply other threads:[~2018-07-16 8:27 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-16 8:26 Serge Petrenko [this message]
2018-07-18 5:19 ` [tarantool-patches] " Konstantin Osipov
2018-07-18 9:19 ` Sergey Petrenko
2018-08-03 8:52 ` Sergey Petrenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180716082655.42311-1-sergepetrenko@tarantool.org \
--to=sergepetrenko@tarantool.org \
--cc=tarantool-patches@freelists.org \
--subject='Re: [tarantool-patches] [PATCH] tarantoolctl: return an error on enter to a dead socket.' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox