From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp3.mail.ru (smtp3.mail.ru [94.100.179.58]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id E5507469719 for ; Tue, 15 Sep 2020 21:05:23 +0300 (MSK) Date: Tue, 15 Sep 2020 18:05:23 +0000 From: Nikita Pettik Message-ID: <20200915180523.GD23208@tarantool.org> References: <1599560532-27089-1-git-send-email-alyapunov@tarantool.org> <1599560532-27089-13-git-send-email-alyapunov@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1599560532-27089-13-git-send-email-alyapunov@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v4 12/12] txm: add a test List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aleksandr Lyapunov Cc: tarantool-patches@dev.tarantool.org On 08 Sep 13:22, Aleksandr Lyapunov wrote: > Part of #4897 > --- > diff --git a/test/box/tx_man.test.lua b/test/box/tx_man.test.lua > new file mode 100644 > index 0000000..de5a734 > --- /dev/null > +++ b/test/box/tx_man.test.lua > @@ -0,0 +1,122 @@ > +env = require('test_run') > +test_run = env.new() > +test_run:cmd("create server tx_man with script='box/tx_man.lua'") > +test_run:cmd("start server tx_man") > +test_run:cmd("switch tx_man") > + > +txn_proxy = require('txn_proxy') > + > +s = box.schema.space.create('test') > +i = s:create_index('pk', {parts={{1, 'uint'}}}) > +i = s:create_index('sec', {parts={{2, 'uint'}}}) > + Uncovered test scenarious: more than two indexes; more than one space; unique secondary indexes; recovery; triggers; rollbacks...