From 37f19ff44db4601bea40fef01db776c312e48ea1 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 18 Sep 2020 15:44:35 +0100 Subject: [PATCH] [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 9647db79b7..bd5fc062c1 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 -- 2.47.3