aboutsummaryrefslogtreecommitdiffstats
path: root/test/lua/unit/utf.lua
blob: 2549c501c5e7cc4d328130f8a6a8c2d6fdda2257 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
-- Test utf routines

context("UTF8 check functions", function()
  local ffi = require("ffi")
  ffi.cdef[[
    void rspamd_str_lc_utf8 (char *str, unsigned int size);
  ]]

  test("UTF lowercase", function()
    local cases = {
      {"АбЫрвАлг", "абырвалг"},
      {"АAБBвc", "аaбbвc"}
    }
    
    for _,c in ipairs(cases) do
      local buf = ffi.new("char[?]", #c[1])
      ffi.copy(buf, c[1])
      ffi.C.rspamd_str_lc_utf8(buf, #c[1])
      local s = ffi.string(buf)
      assert_equal(s, c[2])
    end
  end)
end)