From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-f176.google.com (mail-lj1-f176.google.com [209.85.208.176]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 4138942EF5C for ; Mon, 29 Jun 2020 14:24:02 +0300 (MSK) Received: by mail-lj1-f176.google.com with SMTP id q7so4347880ljm.1 for ; Mon, 29 Jun 2020 04:24:02 -0700 (PDT) From: Cyrill Gorcunov Date: Mon, 29 Jun 2020 14:23:19 +0300 Message-Id: <20200629112319.154909-4-gorcunov@gmail.com> In-Reply-To: <20200629112319.154909-1-gorcunov@gmail.com> References: <20200629112319.154909-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 3/3] test: app-tap/logger -- test json in boottime logger List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml Make sure we're allowed to setup json formatter before box.cfg() call, ie that named boot-time logger. Part-of #5121 Signed-off-by: Cyrill Gorcunov --- test/app-tap/logger.test.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/app-tap/logger.test.lua b/test/app-tap/logger.test.lua index ae4a3b99a..41276c3d0 100755 --- a/test/app-tap/logger.test.lua +++ b/test/app-tap/logger.test.lua @@ -3,11 +3,13 @@ local test = require('tap').test('log') test:plan(62) --- gh-3946: Assertion failure when using log_format() before box.cfg() +-- +-- gh-5121: Allow to use 'json' output before box.cfg() +-- local log = require('log') -log.log_format('plain') _, err = pcall(log.log_format, 'json') -test:ok(err:find("json can\'t be used") ~= nil) +test:ok(err == nil) +log.log_format('plain') -- -- gh-689: various settings change from box.cfg/log.cfg interfaces -- 2.26.2