]> source.dussan.org Git - rspamd.git/commitdiff
[Test] Improve SMTP address tests
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 25 Apr 2016 08:39:50 +0000 (09:39 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 25 Apr 2016 08:39:50 +0000 (09:39 +0100)
test/lua/unit/smtp_addr.lua

index fab197dc9545b5259bd284ccc695dd28f1ef544d..4dd6fef87c9289c56029b8c9c39c41af5adea07e 100644 (file)
@@ -30,6 +30,7 @@ context("SMTP address check functions", function()
       {'a@example.com', {user = 'a', domain = 'example.com', addr = 'a@example.com'}},
       {'a+b@example.com', {user = 'a+b', domain = 'example.com', addr = 'a+b@example.com'}},
       {'"a"@example.com', {user = 'a', domain = 'example.com', addr = '"a"@example.com'}},
+      {'"a+b"@example.com', {user = 'a+b', domain = 'example.com', addr = '"a+b"@example.com'}},
     }
 
     each(function(case)
@@ -48,9 +49,8 @@ context("SMTP address check functions", function()
           local str = ffi.string(st.addr, st.addr_len)
           assert_equal(str, ex)
         end
-      end, case[1])
+      end, case[2])
       ffi.C.rspamd_email_address_unref(st)
     end, cases_valid)
   end)
-
 end)