hello
", }, { .name = "/~foo/%E2%80%BEbaz.html", // UTF-8 + percent encoded (IRI standard) .code = "200 Dontcare", .body = "hello
", }, }; /* Tilde '~' in SHIFT_JIS should be translated to '‾' in UTF-8 and vice versa. * * The MinGW libiconv seems to have a bug, it simply doesn't translate it. * Same problem with Alpine musl / busybox. * * So we add a runtime test here. */ { char *dst = NULL; if (wget_memiconv("SHIFT_JIS", "~", 1, "utf-8", &dst, NULL) || strcmp(dst, "‾")) { wget_error_printf("SHIFT_JIS -> UTF-8: Tilde (~) failed to translate into '‾', test skipped.\n"); wget_free(dst); return WGET_TEST_EXIT_SKIP; } wget_free(dst); } // functions won't come back if an error occurs wget_test_start_server( WGET_TEST_RESPONSE_URLS, &urls, countof(urls), WGET_TEST_FEATURE_MHD, 0); // test-iri-disabled wget_test( // WGET_TEST_KEEP_TMPFILES, 1, WGET_TEST_OPTIONS, "--no-robots -nH -r --local-encoding=UTF-8", WGET_TEST_REQUEST_URL, "~foo/", WGET_TEST_EXPECTED_ERROR_CODE, 0, WGET_TEST_EXPECTED_FILES, &(wget_test_file_t []) { { urls[0].name + 1, urls[0].body }, // ~foo/index.html { urls[1].name + 1, urls[1].body }, // ~foo/bar.html { "~foo/‾baz.html", urls[2].body }, // unescaped + UTF-8, matching local-encoding { NULL } }, 0); exit(0); }