From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- netwerk/test/TestIDN.cpp | 52 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 netwerk/test/TestIDN.cpp (limited to 'netwerk/test/TestIDN.cpp') diff --git a/netwerk/test/TestIDN.cpp b/netwerk/test/TestIDN.cpp new file mode 100644 index 000000000..77d57f14d --- /dev/null +++ b/netwerk/test/TestIDN.cpp @@ -0,0 +1,52 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "TestCommon.h" +#include +#include "nsIIDNService.h" +#include "nsCOMPtr.h" +#include "nsIServiceManager.h" +#include "nsServiceManagerUtils.h" +#include "nsNetCID.h" +#include "nsStringAPI.h" + +int main(int argc, char **argv) { + if (test_common_init(&argc, &argv) != 0) + return -1; + + // Test case from RFC 3492 (7.1 - Simplified Chinese) + const char plain[] = + "\xE4\xBB\x96\xE4\xBB\xAC\xE4\xB8\xBA\xE4\xBB\x80\xE4\xB9\x88\xE4\xB8\x8D\xE8\xAF\xB4\xE4\xB8\xAD\xE6\x96\x87"; + const char encoded[] = "xn--ihqwcrb4cv8a8dqg056pqjye"; + + nsCOMPtr converter = do_GetService(NS_IDNSERVICE_CONTRACTID); + NS_ASSERTION(converter, "idnSDK not installed!"); + if (converter) { + nsAutoCString buf; + nsresult rv = converter->ConvertUTF8toACE(NS_LITERAL_CSTRING(plain), buf); + NS_ASSERTION(NS_SUCCEEDED(rv), "error ConvertUTF8toACE"); + NS_ASSERTION(buf.Equals(NS_LITERAL_CSTRING(encoded)), + "encode result incorrect"); + printf("encoded = %s\n", buf.get()); + + buf.Truncate(); + rv = converter->ConvertACEtoUTF8(NS_LITERAL_CSTRING(encoded), buf); + NS_ASSERTION(NS_SUCCEEDED(rv), "error ConvertACEtoUTF8"); + NS_ASSERTION(buf.Equals(NS_LITERAL_CSTRING(plain)), + "decode result incorrect"); + printf("decoded = "); + NS_ConvertUTF8toUTF16 utf(buf); + const char16_t *u = utf.get(); + for (int i = 0; u[i]; i++) { + printf("U+%.4X ", u[i]); + } + printf("\n"); + + bool isAce; + rv = converter->IsACE(NS_LITERAL_CSTRING("www.xn--ihqwcrb4cv8a8dqg056pqjye.com"), &isAce); + NS_ASSERTION(NS_SUCCEEDED(rv), "error IsACE"); + NS_ASSERTION(isAce, "IsACE incorrect result"); + } + return 0; +} -- cgit v1.2.3