From dd40ef157b64aa6d2b3032f2d97468aae31747ed Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 5 Mar 2024 07:47:32 +0530 Subject: fmt: init stylua --- tests.lua | 43 +++++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 22 deletions(-) (limited to 'tests.lua') diff --git a/tests.lua b/tests.lua index 5520bcb..737f4e4 100755 --- a/tests.lua +++ b/tests.lua @@ -1,35 +1,34 @@ #!/usr/bin/env lua -local opensubtitles = require 'server.opensubtitles' +local opensubtitles = require("server.opensubtitles") -local note = function (success, name) - local sign +local note = function(success, name) + local sign - if success then - sign = '✅' - else - sign = '❌' - end + if success then + sign = "✅" + else + sign = "❌" + end - print(sign .. ' : ' .. name) + print(sign .. " : " .. name) end +local test_opensubtitles = function() + local ohash, name, id -local test_opensubtitles = function () - local ohash, name, id + ohash = "395787dbe5b42001" + name = "Fight.Club.1999.REMASTERED.720p.BRRip.XviD.AC3-RARBG" + id = opensubtitles.search_ohash(ohash, name, "eng") + note(id and id:match("%d+$") == "5449593", "search_ohash") - ohash = '395787dbe5b42001' - name = 'Fight.Club.1999.REMASTERED.720p.BRRip.XviD.AC3-RARBG' - id = opensubtitles.search_ohash(ohash, name, 'eng') - note(id and id:match('%d+$') == '5449593', 'search_ohash') + name = "Fight.Club.10th.Anniversary.Edition.1999.720p.BrRip.x264.YIFY" + id = opensubtitles.search_filesize(1074575924, name, "eng") + note(id and id:match("%d+$") == "4987774", "search_filesize") - name = 'Fight.Club.10th.Anniversary.Edition.1999.720p.BrRip.x264.YIFY' - id = opensubtitles.search_filesize(1074575924, name, 'eng') - note(id and id:match('%d+$') == '4987774', 'search_filesize') - - name = 'Fight.Club.1999.REMASTERED.720p.BRRip.XviD.AC3-RARBG' - id = opensubtitles.search_name(name, 'eng') - note(id and id:match('%d+$') == '5449593', 'search_name') + name = "Fight.Club.1999.REMASTERED.720p.BRRip.XviD.AC3-RARBG" + id = opensubtitles.search_name(name, "eng") + note(id and id:match("%d+$") == "5449593", "search_name") end test_opensubtitles() -- cgit v1.2.3