]> source.dussan.org Git - rspamd.git/commitdiff
[Test] Fix punny trie test
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 10 Sep 2019 13:36:12 +0000 (14:36 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 10 Sep 2019 13:36:12 +0000 (14:36 +0100)
test/lua/unit/trie.lua

index 22b872df868f80fb020a93b318e2bb4b80641dd6..9532eae529e79d35b000ea9285f70db9a46126d4 100644 (file)
@@ -11,19 +11,6 @@ context("Trie search functions", function()
     'str\1ing'
   }
 
-  local function comparetables(t1, t2)
-    if #t1 ~= #t2 then return false end
-    for i=1,#t1 do
-      if type(t1[i]) ~= type(t2[i]) then return false
-      elseif type(t1[i]) == 'table' then
-        if not comparetables(t1[i], t2[i]) then return false end
-      elseif t1[i] ~= t2[i] then
-        return false
-      end
-    end
-    return true
-  end
-
   local trie = t.create(patterns)
 
   local cases = {
@@ -33,6 +20,14 @@ context("Trie search functions", function()
     {'str\1ing test', true, {{7, 5}, {12, 1}, {12, 2}}},
   }
 
+  local function cmp_tables(t1, t2)
+    if t1[2] ~= t2[2] then
+      return t1[2] < t2[2]
+    else
+      return t1[1] < t2[1]
+    end
+  end
+
   for i,c in ipairs(cases) do
     test("Trie search " .. i, function()
       local res = {}
@@ -47,13 +42,12 @@ context("Trie search functions", function()
       assert_equal(c[2], ret, tostring(c[2]) .. ' while matching ' .. c[1])
 
       if ret then
-        table.sort(res, function(a, b) return a[2] > b[2] end)
-        table.sort(c[3], function(a, b) return a[2] > b[2] end)
-        local cmp = comparetables(res, c[3])
-        assert_true(cmp, 'valid results for case: ' .. c[1] ..
-                ' got: ' .. logger.slog('%s', res) .. ' expected: ' ..
-                logger.slog('%s', c[3])
-        )
+        table.sort(c[3], cmp_tables)
+        table.sort(res, cmp_tables)
+        assert_rspamd_table_eq({
+          expect = c[3],
+          actual = res
+        })
       end
     end)
   end
@@ -74,13 +68,12 @@ context("Trie search functions", function()
             table.insert(res, {pos, pat})
           end
         end
-        table.sort(res, function(a, b) return a[2] > b[2] end)
-        table.sort(c[3], function(a, b) return a[2] > b[2] end)
-        local cmp = comparetables(res, c[3])
-        assert_true(cmp, 'valid results for case: ' .. c[1] ..
-            ' got: ' .. logger.slog('%s', res) .. ' expected: ' ..
-            logger.slog('%s', c[3])
-        )
+        table.sort(c[3], cmp_tables)
+        table.sort(res, cmp_tables)
+        assert_rspamd_table_eq({
+          expect = c[3],
+          actual = res
+        })
       end
     end)
   end