commit 37f19ff: [Test] Add some tests for IDNA dots in urls

Vsevolod Stakhov vsevolod at highsecure.ru
Fri Sep 18 14:49:09 UTC 2020


Author: Vsevolod Stakhov
Date: 2020-09-18 15:44:35 +0100
URL: https://github.com/rspamd/rspamd/commit/37f19ff44db4601bea40fef01db776c312e48ea1 (HEAD -> master)

[Test] Add some tests for IDNA dots in urls

---
 test/lua/unit/url.lua | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/test/lua/unit/url.lua b/test/lua/unit/url.lua
index 9647db79b..bd5fc062c 100644
--- a/test/lua/unit/url.lua
+++ b/test/lua/unit/url.lua
@@ -118,6 +118,21 @@ context("URL check functions", function()
     {"http:www.twitter.com#test", true, {
       host = 'www.twitter.com', fragment = 'test'
     }},
+    {"http://example。com#test", true, {
+      host = 'example.com', fragment = 'test'
+    }},
+    {"http://hoho.example。com#test", true, {
+      host = 'hoho.example.com', fragment = 'test'
+    }},
+    {"http://hoho。example。com#test", true, {
+      host = 'hoho.example.com', fragment = 'test'
+    }},
+    {"http://hoho.example。com#test", true, {
+      host = 'hoho.example.com', fragment = 'test'
+    }},
+    {"http://hehe。example。com#test", true, {
+      host = 'hehe.example.com', fragment = 'test'
+    }},
   }
 
   -- Some cases from https://code.google.com/p/google-url/source/browse/trunk/src/url_canon_unittest.cc


More information about the Commits mailing list