From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id E4B0B27911 for ; Wed, 1 Aug 2018 07:07:41 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id U-TkqTNlN4E6 for ; Wed, 1 Aug 2018 07:07:41 -0400 (EDT) Received: from smtp43.i.mail.ru (smtp43.i.mail.ru [94.100.177.103]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 8B166277A9 for ; Wed, 1 Aug 2018 07:07:41 -0400 (EDT) From: Olga Arkhangelskaia Subject: [tarantool-patches] [PATCH v2 2/2] box-tap: test to check logger invalid config. Date: Wed, 1 Aug 2018 14:07:10 +0300 Message-Id: <20180801110710.10292-3-arkholga@tarantool.org> In-Reply-To: <20180801110710.10292-1-arkholga@tarantool.org> References: <20180801110710.10292-1-arkholga@tarantool.org> Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-subscribe: List-owner: List-post: List-archive: To: tarantool-patches@freelists.org Cc: Olga Arkhangelskaia Added test to check that logger doesn't except invalid configuration. In scope of gh-3553 --- test/box-tap/cfg.test.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/box-tap/cfg.test.lua b/test/box-tap/cfg.test.lua index ea6f4d646..2d77c9f3e 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(95) +test:plan(98) -------------------------------------------------------------------------------- -- Invalid values @@ -39,6 +39,8 @@ invalid('listen', '//!') invalid('log', ':') invalid('log', 'syslog:xxx=') invalid('log_level', 'unknown') +invalid('log_format', "xxx") +invalid('log', ":test:") invalid('vinyl_memory', -1) invalid('vinyl_read_threads', 0) invalid('vinyl_write_threads', 1) @@ -56,6 +58,7 @@ end invalid_combinations("log, log_nonblock", {log = "1.log", log_nonblock = true}) invalid_combinations("log, log_format", {log = "syslog:identity=tarantool", log_format = 'json'}) +invalid_combinations("log, log_nonblock", {log_nonblock = true}) test:is(type(box.cfg), 'function', 'box is not started') -- 2.14.3 (Apple Git-98)