214 lines
8.4 KiB
C
214 lines
8.4 KiB
C
/* Unit test suite for Path functions
|
|
*
|
|
* Copyright 2002 Matthew Mastracci
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
#include "wine/test.h"
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "wine/unicode.h"
|
|
#include "winreg.h"
|
|
#include "shlwapi.h"
|
|
#include "wininet.h"
|
|
|
|
const char* TEST_URL_1 = "http://www.winehq.org/tests?date=10/10/1923";
|
|
const char* TEST_URL_2 = "http://localhost:8080/tests%2e.html?date=Mon%2010/10/1923";
|
|
const char* TEST_URL_3 = "http://foo:bar@localhost:21/internal.php?query=x&return=y";
|
|
|
|
typedef struct _TEST_URL_CANONICALIZE {
|
|
char *url;
|
|
DWORD flags;
|
|
HRESULT expectret;
|
|
char *expecturl;
|
|
} TEST_URL_CANONICALIZE;
|
|
|
|
const TEST_URL_CANONICALIZE TEST_CANONICALIZE[] = {
|
|
{"http://www.winehq.org/tests/../tests", 0, S_OK, "http://www.winehq.org/tests"},
|
|
{"http://www.winehq.org/tests\n", URL_WININET_COMPATIBILITY|URL_ESCAPE_SPACES_ONLY|URL_ESCAPE_UNSAFE, S_OK, "http://www.winehq.org/tests"},
|
|
{"http://www.winehq.org/tests\r", URL_WININET_COMPATIBILITY|URL_ESCAPE_SPACES_ONLY|URL_ESCAPE_UNSAFE, S_OK, "http://www.winehq.org/tests"},
|
|
{"http://www.winehq.org/tests\r", 0, S_OK, "http://www.winehq.org/tests"},
|
|
{"http://www.winehq.org/tests\r", URL_DONT_SIMPLIFY, S_OK, "http://www.winehq.org/tests"},
|
|
{"http://www.winehq.org/tests/../tests/", 0, S_OK, "http://www.winehq.org/tests/"},
|
|
{"http://www.winehq.org/tests/../tests/..", 0, S_OK, "http://www.winehq.org/"},
|
|
{"http://www.winehq.org/tests/../tests/../", 0, S_OK, "http://www.winehq.org/"},
|
|
{"http://www.winehq.org/tests/..", 0, S_OK, "http://www.winehq.org/"},
|
|
{"http://www.winehq.org/tests/../", 0, S_OK, "http://www.winehq.org/"},
|
|
{"http://www.winehq.org/tests/..?query=x&return=y", 0, S_OK, "http://www.winehq.org/?query=x&return=y"},
|
|
{"http://www.winehq.org/tests/../?query=x&return=y", 0, S_OK, "http://www.winehq.org/?query=x&return=y"},
|
|
{"http://www.winehq.org/tests/..#example", 0, S_OK, "http://www.winehq.org/#example"},
|
|
{"http://www.winehq.org/tests/../#example", 0, S_OK, "http://www.winehq.org/#example"},
|
|
{"http://www.winehq.org/tests/../#example", URL_DONT_SIMPLIFY, S_OK, "http://www.winehq.org/tests/../#example"},
|
|
};
|
|
|
|
typedef struct _TEST_URL_ESCAPE {
|
|
char *url;
|
|
DWORD flags;
|
|
DWORD expectescaped;
|
|
HRESULT expectret;
|
|
char *expecturl;
|
|
} TEST_URL_ESCAPE;
|
|
|
|
const TEST_URL_ESCAPE TEST_ESCAPE[] = {
|
|
{"http://www.winehq.org/tests0", 0, 0, S_OK, "http://www.winehq.org/tests0"},
|
|
{"http://www.winehq.org/tests1\n", 0, 0, S_OK, "http://www.winehq.org/tests1%0A"},
|
|
{"http://www.winehq.org/tests2\r", 0, 0, S_OK, "http://www.winehq.org/tests2%0D"},
|
|
{"http://www.winehq.org/tests3\r", URL_ESCAPE_SPACES_ONLY|URL_ESCAPE_UNSAFE, 0, S_OK, "http://www.winehq.org/tests3\r"},
|
|
{"http://www.winehq.org/tests4\r", URL_ESCAPE_SPACES_ONLY, 0, S_OK, "http://www.winehq.org/tests4\r"},
|
|
{"http://www.winehq.org/tests5\r", URL_WININET_COMPATIBILITY|URL_ESCAPE_SPACES_ONLY, 0, S_OK, "http://www.winehq.org/tests5\r"},
|
|
{"/direct/swhelp/series6/6.2i_latestservicepack.dat\r", URL_ESCAPE_SPACES_ONLY, 0, S_OK, "/direct/swhelp/series6/6.2i_latestservicepack.dat\r"},
|
|
};
|
|
|
|
static LPWSTR GetWideString(const char* szString)
|
|
{
|
|
LPWSTR wszString = (LPWSTR) HeapAlloc(GetProcessHeap(), 0,
|
|
(2*INTERNET_MAX_URL_LENGTH) * sizeof(WCHAR));
|
|
|
|
MultiByteToWideChar(0, 0, szString, -1, wszString, INTERNET_MAX_URL_LENGTH);
|
|
|
|
return wszString;
|
|
}
|
|
|
|
static void FreeWideString(LPWSTR wszString)
|
|
{
|
|
HeapFree(GetProcessHeap(), 0, wszString);
|
|
}
|
|
|
|
static void hash_url(const char* szUrl)
|
|
{
|
|
LPCSTR szTestUrl = szUrl;
|
|
LPWSTR wszTestUrl = GetWideString(szTestUrl);
|
|
|
|
DWORD cbSize = sizeof(DWORD);
|
|
DWORD dwHash1, dwHash2;
|
|
ok(UrlHashA(szTestUrl, (LPBYTE)&dwHash1, cbSize) == S_OK, "UrlHashA didn't return S_OK\n");
|
|
ok(UrlHashW(wszTestUrl, (LPBYTE)&dwHash2, cbSize) == S_OK, "UrlHashW didn't return S_OK\n");
|
|
|
|
FreeWideString(wszTestUrl);
|
|
|
|
ok(dwHash1 == dwHash2, "Hashes didn't compare\n");
|
|
}
|
|
|
|
static void test_UrlHash(void)
|
|
{
|
|
hash_url(TEST_URL_1);
|
|
hash_url(TEST_URL_2);
|
|
hash_url(TEST_URL_3);
|
|
}
|
|
|
|
static void test_url_part(const char* szUrl, DWORD dwPart, DWORD dwFlags, const char* szExpected)
|
|
{
|
|
CHAR szPart[INTERNET_MAX_URL_LENGTH];
|
|
WCHAR wszPart[INTERNET_MAX_URL_LENGTH];
|
|
LPWSTR wszUrl = GetWideString(szUrl);
|
|
LPWSTR wszConvertedPart;
|
|
|
|
DWORD dwSize;
|
|
|
|
dwSize = INTERNET_MAX_URL_LENGTH;
|
|
ok( UrlGetPartA(szUrl, szPart, &dwSize, dwPart, dwFlags) == S_OK, "UrlGetPartA for \"%s\" part 0x%08lx didn't return S_OK but \"%s\"\n", szUrl, dwPart, szPart);
|
|
dwSize = INTERNET_MAX_URL_LENGTH;
|
|
ok( UrlGetPartW(wszUrl, wszPart, &dwSize, dwPart, dwFlags) == S_OK, "UrlGetPartW didn't return S_OK\n" );
|
|
|
|
wszConvertedPart = GetWideString(szPart);
|
|
|
|
ok(strcmpW(wszPart,wszConvertedPart)==0, "Strings didn't match between ascii and unicode UrlGetPart!\n");
|
|
|
|
FreeWideString(wszUrl);
|
|
FreeWideString(wszConvertedPart);
|
|
|
|
/* Note that v6.0 and later don't return '?' with the query */
|
|
ok(strcmp(szPart,szExpected)==0 ||
|
|
(*szExpected=='?' && !strcmp(szPart,szExpected+1)),
|
|
"Expected %s, but got %s\n", szExpected, szPart);
|
|
}
|
|
|
|
static void test_UrlGetPart(void)
|
|
{
|
|
test_url_part(TEST_URL_3, URL_PART_HOSTNAME, 0, "localhost");
|
|
test_url_part(TEST_URL_3, URL_PART_PORT, 0, "21");
|
|
test_url_part(TEST_URL_3, URL_PART_USERNAME, 0, "foo");
|
|
test_url_part(TEST_URL_3, URL_PART_PASSWORD, 0, "bar");
|
|
test_url_part(TEST_URL_3, URL_PART_SCHEME, 0, "http");
|
|
test_url_part(TEST_URL_3, URL_PART_QUERY, 0, "?query=x&return=y");
|
|
}
|
|
|
|
static void test_url_escape(const char *szUrl, DWORD dwFlags, HRESULT dwExpectReturn, const char *szExpectUrl)
|
|
{
|
|
CHAR szReturnUrl[INTERNET_MAX_URL_LENGTH];
|
|
DWORD dwEscaped;
|
|
|
|
dwEscaped=INTERNET_MAX_URL_LENGTH;
|
|
ok(UrlEscapeA(szUrl, szReturnUrl, &dwEscaped, dwFlags) == dwExpectReturn, "UrlEscapeA didn't return 0x%08lx\n", dwExpectReturn);
|
|
ok(strcmp(szReturnUrl,szExpectUrl)==0, "Expected \"%s\", but got \"%s\"\n", szExpectUrl, szReturnUrl);
|
|
}
|
|
static void test_url_canonicalize(const char *szUrl, DWORD dwFlags, HRESULT dwExpectReturn, const char *szExpectUrl)
|
|
{
|
|
CHAR szReturnUrl[INTERNET_MAX_URL_LENGTH];
|
|
WCHAR wszReturnUrl[INTERNET_MAX_URL_LENGTH];
|
|
LPWSTR wszUrl = GetWideString(szUrl);
|
|
LPWSTR wszExpectUrl = GetWideString(szExpectUrl);
|
|
LPWSTR wszConvertedUrl;
|
|
|
|
DWORD dwSize;
|
|
|
|
dwSize = INTERNET_MAX_URL_LENGTH;
|
|
ok(UrlCanonicalizeA(szUrl, szReturnUrl, &dwSize, dwFlags) == dwExpectReturn, "UrlCanonicalizeA didn't return 0x%08lx\n", dwExpectReturn);
|
|
ok(strcmp(szReturnUrl,szExpectUrl)==0, "Expected %s, but got %s\n", szExpectUrl, szReturnUrl);
|
|
|
|
dwSize = INTERNET_MAX_URL_LENGTH;
|
|
ok(UrlCanonicalizeW(wszUrl, wszReturnUrl, &dwSize, dwFlags) == dwExpectReturn, "UrlCanonicalizeW didn't return 0x%08lx\n", dwExpectReturn);
|
|
wszConvertedUrl = GetWideString(szReturnUrl);
|
|
ok(strcmpW(wszReturnUrl, wszConvertedUrl)==0, "Strings didn't match between ascii and unicode UrlCanonicalize!\n");
|
|
FreeWideString(wszConvertedUrl);
|
|
|
|
|
|
FreeWideString(wszUrl);
|
|
FreeWideString(wszExpectUrl);
|
|
}
|
|
|
|
|
|
static void test_UrlEscape(void)
|
|
{
|
|
int i;
|
|
for(i=0; i<sizeof(TEST_ESCAPE)/sizeof(TEST_ESCAPE[0]); i++) {
|
|
test_url_escape(TEST_ESCAPE[i].url, TEST_ESCAPE[i].flags,
|
|
TEST_ESCAPE[i].expectret, TEST_ESCAPE[i].expecturl);
|
|
}
|
|
}
|
|
|
|
static void test_UrlCanonicalize(void)
|
|
{
|
|
int i;
|
|
for(i=0; i<sizeof(TEST_CANONICALIZE)/sizeof(TEST_CANONICALIZE[0]); i++) {
|
|
test_url_canonicalize(TEST_CANONICALIZE[i].url, TEST_CANONICALIZE[i].flags,
|
|
TEST_CANONICALIZE[i].expectret, TEST_CANONICALIZE[i].expecturl);
|
|
}
|
|
}
|
|
|
|
START_TEST(path)
|
|
{
|
|
test_UrlHash();
|
|
test_UrlGetPart();
|
|
test_UrlCanonicalize();
|
|
test_UrlEscape();
|
|
}
|