[tarantool-patches] [PATCH v7] Configurable syslog destination

Olga Krishtal krishtal.olja at gmail.com
Wed Aug 8 13:40:34 MSK 2018


2018-08-08 12:00 GMT+03:00 Vladimir Davydov <vdavydov.dev at gmail.com>:

> On Tue, Aug 07, 2018 at 11:16:03PM +0300, Olga Arkhangelskaia wrote:
> > diff --git a/test/box-tap/cfg.test.lua b/test/box-tap/cfg.test.lua
> > index 53e3c629a..cb61607fe 100755
> > --- a/test/box-tap/cfg.test.lua
> > +++ b/test/box-tap/cfg.test.lua
> > @@ -6,7 +6,7 @@ local socket = require('socket')
> >  local fio = require('fio')
> >  local uuid = require('uuid')
> >  local msgpack = require('msgpack')
> > -test:plan(93)
> > +test:plan(95)
> >
> >  ------------------------------------------------------------
> --------------------
> >  -- Invalid values
> > @@ -455,5 +455,80 @@ code = string.format(code_fmt, dir, instance_uuid,
> uuid.new())
> >  test:is(run_script(code), PANIC, "replicaset_uuid mismatch")
> >  fio.rmdir(dir)
> >
> > +--
> > +-- Check syslog unix socket configuration
> > +--
> > +code = [[
> > +local socket = require('socket')
> > +local log = require('log')
> > +local fio = require('fio')
> > +
> > +path = fio.pathjoin(fio.cwd(), 'log_unix_socket_test.sock')
> > +unix_socket = socket('AF_UNIX', 'SOCK_DGRAM', 0)
> > +unix_socket:bind('unix/', path)
> > +
> > +opt = string.format("syslog:server=unix:%s,identity=tarantool", path)
> > +local res = 1
> > +local buf = 'Started\n'
> > +box.cfg{log = opt}
> > +
> > +-- make sure that socket would not block
> > +while unix_socket:readable(1) do
>
> This timeout is way too long. It will increase the test run time by
> 1 second. Plus 1 second per each socket.readable call below, that is
> 4 seconds in total.
>
> We strive to make our tests run faster whenever possible. AFAIU you
> don't need to wait for that long. A timeout of say 1 ms (0.001) should
> do just fine. Please fix the timeout and re-push the test. No need to
> resend the patch - just reply to this email once you're done.
>
>

Done
Have pushed branch

OKriw/gh-3487-syslog-conf-dest-1.10




> Other than that the patch looks good to me. I'll merge it into the trunk
> once you fix the timeouts. Thanks.
>
> > +    buf = buf .. unix_socket:recv(1000)
> > +end
> > +log.info("Test socket syslog destination")
> > +while unix_socket:readable(1) do
> > +    buf = buf .. unix_socket:recv(1000)
> > +    if buf:match('Test socket syslog destination') then res = 0 end
> > +end
> > +
> > +unix_socket:close()
>
> > +os.remove(path)
> > +os.exit(res)
> > +]]
> > +test:is(run_script(code), 0, "unix socket syslog log configuration")
> > +
> > +--
> > +-- Check syslog remote configuration
> > +--
> > +code = [[
> > +local socket = require('socket')
> > +local log = require('log')
> > +
> > +addr = '127.0.0.1'
> > +port = 1000 + math.random(32768)
> > +
> > +sc = socket('AF_INET', 'SOCK_DGRAM', 'udp')
> > +local attempt = 0
> > +while attempt < 10 do
> > +    if not sc:bind (addr, port) then
> > +        port = 1000 + math.random(32768)
> > +        attempt = attempt + 1
> > +    else
> > +        break
> > +    end
> > +end
> > +sc:bind(addr, port)
> > +
> > +local opt = string.format("syslog:server=%s:%u,identity=tarantool",
> addr, port)
> > +local res = 1
> > +local buf = 'Started\n'
> > +box.cfg{log = opt}
> > +
> > +-- make sure that socket would not block
> > +while sc:readable(1) do
> > +    buf = buf .. sc:recv(1000)
> > +end
> > +log.info('Test syslog destination')
> > +while sc:readable(1) do
> > +    buf = buf .. sc:recv(1000)
> > +    if buf:match('Test syslog destination') then res = 0 end
> > +end
> > +
> > +sc:close()
> > +os.exit(res)
> > +]]
> > +test:is(run_script(code), 0, "remote syslog log configuration")
> > +
> >  test:check()
> >  os.exit(0)
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.tarantool.org/pipermail/tarantool-patches/attachments/20180808/4803a13f/attachment.html>


More information about the Tarantool-patches mailing list