From fa66c2954b37ea27779ba652aa415b3b29421f8c Mon Sep 17 00:00:00 2001 From: "Alexander V. Tikhonov" <avtikhon@tarantool.org> Date: Mon, 5 Oct 2020 12:04:04 +0300 Subject: [PATCH] test: move error messages into logs gh-5383 Set error message to log output in test: vinyl/gc.test.lua --- test/vinyl/gc.result | 18 ++++++++++-------- test/vinyl/gc.test.lua | 16 +++++++++------- 2 files changed, 19 insertions(+), 15 deletions(-) diff --git a/test/vinyl/gc.result b/test/vinyl/gc.result index 11e316197f..39cd3600b1 100644 --- a/test/vinyl/gc.result +++ b/test/vinyl/gc.result @@ -39,10 +39,12 @@ function ls_data() return fio.glob(fio.pathjoin(path, '*')) end function ls_vylog() return fio.glob(fio.pathjoin(box.cfg.vinyl_dir, '*.vylog')) end --- ... -function gc_info() return box.info.gc() end +function gc() temp:auto_increment{} box.snapshot() end --- ... -function gc() temp:auto_increment{} box.snapshot() end +function check_files_number(fnum) return (#files == fnum or \ + (require('log').error(files) or \ + require('log').error(box.info.gc()))) end --- ... -- Check that run files are deleted by gc. @@ -61,7 +63,7 @@ gc() files = ls_data() --- ... -#files == 2 or {files, gc_info()} +check_files_number(2) --- - true ... @@ -69,7 +71,7 @@ files = ls_data() files = ls_vylog() --- ... -#files == 2 or {files, gc_info()} +check_files_number(2) --- - true ... @@ -83,7 +85,7 @@ gc() files = ls_data() --- ... -#files == 0 or {files, gc_info()} +check_files_number(0) --- - true ... @@ -98,7 +100,7 @@ gc() files = ls_vylog() --- ... -#files == 2 or {files, gc_info()} +check_files_number(2) --- - true ... @@ -110,7 +112,7 @@ gc() files = ls_vylog() --- ... -#files == 1 or {files, gc_info()} +check_files_number(1) --- - true ... @@ -121,7 +123,7 @@ gc() files = ls_vylog() --- ... -#files == 0 or {files, gc_info()} +check_files_number(0) --- - true ... diff --git a/test/vinyl/gc.test.lua b/test/vinyl/gc.test.lua index 02cb6d32fe..a95883a1a0 100644 --- a/test/vinyl/gc.test.lua +++ b/test/vinyl/gc.test.lua @@ -19,8 +19,10 @@ path = fio.pathjoin(box.cfg.vinyl_dir, tostring(s.id), tostring(s.index.pk.id)) function ls_data() return fio.glob(fio.pathjoin(path, '*')) end function ls_vylog() return fio.glob(fio.pathjoin(box.cfg.vinyl_dir, '*.vylog')) end -function gc_info() return box.info.gc() end function gc() temp:auto_increment{} box.snapshot() end +function check_files_number(fnum) return (#files == fnum or \ + (require('log').error(files) or \ + require('log').error(box.info.gc()))) end -- Check that run files are deleted by gc. s:insert{1} box.snapshot() -- dump @@ -28,17 +30,17 @@ s:insert{2} box.snapshot() -- dump + compaction while s.index.pk:stat().run_count > 1 do fiber.sleep(0.01) end -- wait for compaction gc() files = ls_data() -#files == 2 or {files, gc_info()} +check_files_number(2) -- Check that gc keeps the current and previous log files. files = ls_vylog() -#files == 2 or {files, gc_info()} +check_files_number(2) -- Check that files left from dropped indexes are deleted by gc. s:drop() gc() files = ls_data() -#files == 0 or {files, gc_info()} +check_files_number(0) -- -- Check that vylog files are removed if vinyl is not used. @@ -48,18 +50,18 @@ files = ls_data() -- dropped index records are still stored in vylog. gc() files = ls_vylog() -#files == 2 or {files, gc_info()} +check_files_number(2) -- All records should have been purged from the log by now -- so we should only keep the previous log file. gc() files = ls_vylog() -#files == 1 or {files, gc_info()} +check_files_number(1) -- The previous log file should be removed by the next gc. gc() files = ls_vylog() -#files == 0 or {files, gc_info()} +check_files_number(0) temp:drop() -- GitLab