prosody: Don't add a datamanager callback when anonymous_login=true (mod_auth_anonymo...
[prosody.git] / tests / test_sasl.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10 --- WARNING! ---
11 -- This file contains a mix of encodings below.
12 -- Many editors will unquestioningly convert these for you.
13 -- Please be careful :(  (I recommend Scite)
14 ---------------------------------
15
16 local gmatch = string.gmatch;
17 local t_concat, t_insert = table.concat, table.insert;
18 local to_byte, to_char = string.byte, string.char;
19
20 local function _latin1toutf8(str)
21         if not str then return str; end
22         local p = {};
23         for ch in gmatch(str, ".") do
24                 ch = to_byte(ch);
25                 if (ch < 0x80) then
26                         t_insert(p, to_char(ch));
27                 elseif (ch < 0xC0) then
28                         t_insert(p, to_char(0xC2, ch));
29                 else
30                         t_insert(p, to_char(0xC3, ch - 64));
31                 end
32         end
33         return t_concat(p);
34 end
35
36 function latin1toutf8()
37         local function assert_utf8(latin, utf8)
38                         assert_equal(_latin1toutf8(latin), utf8, "Incorrect UTF8 from Latin1: "..tostring(latin));
39         end
40         
41         assert_utf8("", "")
42         assert_utf8("test", "test")
43         assert_utf8(nil, nil)
44         assert_utf8("foobar.råkat.se", "foobar.rÃ¥kat.se")
45 end