From ee95ad82492312a87cbf96ba23f781d90cfe6b1d Mon Sep 17 00:00:00 2001 From: Alexander Turenko <alexander.turenko@tarantool.org> Date: Tue, 22 Aug 2023 19:21:48 +0300 Subject: [PATCH] test/config: temporary disable pap-sha256 test cases They're failing on Tarantool EE, because pap-sha256 requires to setup a secure connection. The test doesn't do that. The test is to be updated later. Now, just disable these test cases. Part of #8967 NO_DOC=A testing change. NO_CHANGELOG=see NO_DOC --- test/config-luatest/credentials_applier_test.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/config-luatest/credentials_applier_test.lua b/test/config-luatest/credentials_applier_test.lua index b9ea65acb4..13172654cc 100644 --- a/test/config-luatest/credentials_applier_test.lua +++ b/test/config-luatest/credentials_applier_test.lua @@ -500,7 +500,11 @@ g.test_set_password = function(g) local auth_types = { 'chap-sha1', - 'pap-sha256', + -- TODO: The pap-sha256 authentication method requires + -- an encrypted connection, so it is left untested for + -- now. + -- + -- 'pap-sha256', } for _, auth_type in ipairs(auth_types) do -- GitLab