Update the DNS public suffix list from publicsuffix.org
Regular update in preparation for 5.13, adding tests for additions
since 5.9.4/5.10.1/5.11.0's update 7e946030
(the last to record its
upstream version sha1). Corrected the license header: it's now
published under MPL 2.0 (not 1.1); and our secondary licensing of it
is as LGPL3. Deferred full header over-haul until we've worked one
out in detail.
[ChangeLog][Third-Party Code] Updated DNS public suffix list
Task-number: QTBUG-72623
Change-Id: Iabdbbbfd79624830396c2a6fe0a73389bd6ce5b7
Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
parent
58cad5caf2
commit
d8cf721d60
@ -20,7 +20,7 @@ supported by Qt (by the QNetworkCookieJar class).",
|
||||
|
||||
"Homepage": "Consult https://github.com/publicsuffix/list for the sha1 but download from ...",
|
||||
"Homepage": "http://publicsuffix.org/",
|
||||
"Version": "Generated on 2018-01-04",
|
||||
"Version": "d6331e2b65fffbe9fe299dae1689db8de8fd6190, fetched on 2019-02-20",
|
||||
"License": "Mozilla Public License 2.0",
|
||||
"LicenseFile": "PSL-LICENSE.txt",
|
||||
"LicenseId": "MPL-2.0",
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -3402,6 +3402,21 @@ void tst_QUrl::effectiveTLDs_data()
|
||||
QTest::newRow("yes16") << QUrl::fromEncoded("http://anything.pagespeedmobilizer.com") << ".pagespeedmobilizer.com";
|
||||
QTest::newRow("yes17") << QUrl::fromEncoded("http://anything.eu-central-1.compute.amazonaws.com") << ".eu-central-1.compute.amazonaws.com";
|
||||
QTest::newRow("yes18") << QUrl::fromEncoded("http://anything.ltd.hk") << ".ltd.hk";
|
||||
QTest::newRow("trentino.it")
|
||||
<< QUrl::fromEncoded("http://any.thing.trentino.it") << ".trentino.it";
|
||||
QTest::newRow("net.ni") << QUrl::fromEncoded("http://test.net.ni") << ".net.ni";
|
||||
QTest::newRow("dyn.cosidns.de")
|
||||
<< QUrl::fromEncoded("http://test.dyn.cosidns.de") << ".dyn.cosidns.de";
|
||||
QTest::newRow("freeddns.org")
|
||||
<< QUrl::fromEncoded("http://test.freeddns.org") << ".freeddns.org";
|
||||
QTest::newRow("app.os.stg.fedoraproject.org")
|
||||
<< QUrl::fromEncoded("http://test.app.os.stg.fedoraproject.org")
|
||||
<< ".app.os.stg.fedoraproject.org";
|
||||
QTest::newRow("development.run") << QUrl::fromEncoded("http://test.development.run") << ".development.run";
|
||||
QTest::newRow("crafting.xyz") << QUrl::fromEncoded("http://test.crafting.xyz") << ".crafting.xyz";
|
||||
QTest::newRow("nym.ie") << QUrl::fromEncoded("http://shamus.nym.ie") << ".nym.ie";
|
||||
QTest::newRow("vapor.cloud") << QUrl::fromEncoded("http://test.vapor.cloud") << ".vapor.cloud";
|
||||
QTest::newRow("official.academy") << QUrl::fromEncoded("http://acredited.official.academy") << ".official.academy";
|
||||
}
|
||||
|
||||
void tst_QUrl::effectiveTLDs()
|
||||
|
Loading…
Reference in New Issue
Block a user