| /* |
| * UrlMon IUri tests |
| * |
| * Copyright 2010 Thomas Mullaly |
| * |
| * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
| */ |
| |
| /* |
| * IUri testing framework goals: |
| * - Test invalid args |
| * - invalid flags |
| * - invalid args (IUri, uri string) |
| * - Test parsing for components when no canonicalization occurs |
| * - Test parsing for components when canonicalization occurs. |
| * - More tests... |
| */ |
| |
| #include <wine/test.h> |
| #include <stdarg.h> |
| #include <stddef.h> |
| |
| #define COBJMACROS |
| |
| #include "windef.h" |
| #include "winbase.h" |
| #include "urlmon.h" |
| #include "shlwapi.h" |
| |
| #define URI_STR_PROPERTY_COUNT Uri_PROPERTY_STRING_LAST+1 |
| #define URI_DWORD_PROPERTY_COUNT (Uri_PROPERTY_DWORD_LAST - Uri_PROPERTY_DWORD_START)+1 |
| |
| static HRESULT (WINAPI *pCreateUri)(LPCWSTR, DWORD, DWORD_PTR, IUri**); |
| |
| static const WCHAR http_urlW[] = { 'h','t','t','p',':','/','/','w','w','w','.','w','i','n','e','h','q', |
| '.','o','r','g','/',0}; |
| |
| typedef struct _uri_create_flag_test { |
| DWORD flags; |
| HRESULT expected; |
| } uri_create_flag_test; |
| |
| static const uri_create_flag_test invalid_flag_tests[] = { |
| /* Set of invalid flag combinations to test for. */ |
| {Uri_CREATE_DECODE_EXTRA_INFO | Uri_CREATE_NO_DECODE_EXTRA_INFO, E_INVALIDARG}, |
| {Uri_CREATE_CANONICALIZE | Uri_CREATE_NO_CANONICALIZE, E_INVALIDARG}, |
| {Uri_CREATE_CRACK_UNKNOWN_SCHEMES | Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES, E_INVALIDARG}, |
| {Uri_CREATE_PRE_PROCESS_HTML_URI | Uri_CREATE_NO_PRE_PROCESS_HTML_URI, E_INVALIDARG}, |
| {Uri_CREATE_IE_SETTINGS | Uri_CREATE_NO_IE_SETTINGS, E_INVALIDARG} |
| }; |
| |
| typedef struct _uri_str_property { |
| const char* value; |
| HRESULT expected; |
| BOOL todo; |
| } uri_str_property; |
| |
| typedef struct _uri_dword_property { |
| DWORD value; |
| HRESULT expected; |
| BOOL todo; |
| } uri_dword_property; |
| |
| typedef struct _uri_properties { |
| const char* uri; |
| DWORD create_flags; |
| HRESULT create_expected; |
| BOOL create_todo; |
| |
| uri_str_property str_props[URI_STR_PROPERTY_COUNT]; |
| uri_dword_property dword_props[URI_DWORD_PROPERTY_COUNT]; |
| } uri_properties; |
| |
| static const uri_properties uri_tests[] = { |
| { "http://www.winehq.org/tests/../tests/../..", 0, S_OK, FALSE, |
| { |
| {"http://www.winehq.org/",S_OK,TRUE}, /* ABSOLUTE_URI */ |
| {"www.winehq.org",S_OK,TRUE}, /* AUTHORITY */ |
| {"http://www.winehq.org/",S_OK,TRUE}, /* DISPLAY_URI */ |
| {"winehq.org",S_OK,TRUE}, /* DOMAIN */ |
| {"",S_FALSE,TRUE}, /* EXTENSION */ |
| {"",S_FALSE,TRUE}, /* FRAGMENT */ |
| {"www.winehq.org",S_OK,TRUE}, /* HOST */ |
| {"",S_FALSE,TRUE}, /* PASSWORD */ |
| {"/",S_OK,TRUE}, /* PATH */ |
| {"/",S_OK,TRUE}, /* PATH_AND_QUERY */ |
| {"",S_FALSE,TRUE}, /* QUERY */ |
| {"http://www.winehq.org/tests/../tests/../..",S_OK,TRUE}, /* RAW_URI */ |
| {"http",S_OK,TRUE}, /* SCHEME_NAME */ |
| {"",S_FALSE,TRUE}, /* USER_INFO */ |
| {"",S_FALSE,TRUE} /* USER_NAME */ |
| }, |
| { |
| {Uri_HOST_DNS,S_OK,TRUE}, /* HOST_TYPE */ |
| {80,S_OK,TRUE}, /* PORT */ |
| {URL_SCHEME_HTTP,S_OK,TRUE}, /* SCHEME */ |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} /* ZONE */ |
| } |
| }, |
| { "http://winehq.org/tests/.././tests", 0, S_OK, FALSE, |
| { |
| {"http://winehq.org/tests",S_OK,TRUE}, |
| {"winehq.org",S_OK,TRUE}, |
| {"http://winehq.org/tests",S_OK,TRUE}, |
| {"winehq.org",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"winehq.org",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/tests",S_OK,TRUE}, |
| {"/tests",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"http://winehq.org/tests/.././tests",S_OK,TRUE}, |
| {"http",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_DNS,S_OK,TRUE}, |
| {80,S_OK,TRUE}, |
| {URL_SCHEME_HTTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "HtTp://www.winehq.org/tests/..?query=x&return=y", 0, S_OK, FALSE, |
| { |
| {"http://www.winehq.org/?query=x&return=y",S_OK,TRUE}, |
| {"www.winehq.org",S_OK,TRUE}, |
| {"http://www.winehq.org/?query=x&return=y",S_OK,TRUE}, |
| {"winehq.org",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"www.winehq.org",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/",S_OK,TRUE}, |
| {"/?query=x&return=y",S_OK,TRUE}, |
| {"?query=x&return=y",S_OK,TRUE}, |
| {"HtTp://www.winehq.org/tests/..?query=x&return=y",S_OK,TRUE}, |
| {"http",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_DNS,S_OK,TRUE}, |
| {80,S_OK,TRUE}, |
| {URL_SCHEME_HTTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE}, |
| } |
| }, |
| { "hTTp://us%45r%3Ainfo@examp%4CE.com:80/path/a/b/./c/../%2E%2E/Forbidden'<|> Characters", 0, S_OK, FALSE, |
| { |
| {"http://usEr%3Ainfo@example.com/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,TRUE}, |
| {"usEr%3Ainfo@example.com",S_OK,TRUE}, |
| {"http://example.com/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,TRUE}, |
| {"example.com",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"example.com",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,TRUE}, |
| {"/path/a/Forbidden'%3C%7C%3E%20Characters",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"hTTp://us%45r%3Ainfo@examp%4CE.com:80/path/a/b/./c/../%2E%2E/Forbidden'<|> Characters",S_OK,TRUE}, |
| {"http",S_OK,TRUE}, |
| {"usEr%3Ainfo",S_OK,TRUE}, |
| {"usEr%3Ainfo",S_OK,TRUE} |
| }, |
| { |
| {Uri_HOST_DNS,S_OK,TRUE}, |
| {80,S_OK,TRUE}, |
| {URL_SCHEME_HTTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE}, |
| } |
| }, |
| { "ftp://winepass:wine@ftp.winehq.org:9999/dir/foo bar.txt", 0, S_OK, FALSE, |
| { |
| {"ftp://winepass:wine@ftp.winehq.org:9999/dir/foo%20bar.txt",S_OK,TRUE}, |
| {"winepass:wine@ftp.winehq.org:9999",S_OK,TRUE}, |
| {"ftp://ftp.winehq.org:9999/dir/foo%20bar.txt",S_OK,TRUE}, |
| {"winehq.org",S_OK,TRUE}, |
| {".txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"ftp.winehq.org",S_OK,TRUE}, |
| {"wine",S_OK,TRUE}, |
| {"/dir/foo%20bar.txt",S_OK,TRUE}, |
| {"/dir/foo%20bar.txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"ftp://winepass:wine@ftp.winehq.org:9999/dir/foo bar.txt",S_OK,TRUE}, |
| {"ftp",S_OK,TRUE}, |
| {"winepass:wine",S_OK,TRUE}, |
| {"winepass",S_OK,TRUE} |
| }, |
| { |
| {Uri_HOST_DNS,S_OK,TRUE}, |
| {9999,S_OK,TRUE}, |
| {URL_SCHEME_FTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "file://c:\\tests\\../tests/foo%20bar.mp3", 0, S_OK, FALSE, |
| { |
| {"file:///c:/tests/foo%2520bar.mp3",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"file:///c:/tests/foo%2520bar.mp3",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {".mp3",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/c:/tests/foo%2520bar.mp3",S_OK,TRUE}, |
| {"/c:/tests/foo%2520bar.mp3",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"file://c:\\tests\\../tests/foo%20bar.mp3",S_OK,TRUE}, |
| {"file",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_UNKNOWN,S_OK,TRUE}, |
| {0,S_FALSE,TRUE}, |
| {URL_SCHEME_FILE,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "FILE://localhost/test dir\\../tests/test%20file.README.txt", 0, S_OK, FALSE, |
| { |
| {"file:///tests/test%20file.README.txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"file:///tests/test%20file.README.txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {".txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/tests/test%20file.README.txt",S_OK,TRUE}, |
| {"/tests/test%20file.README.txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"FILE://localhost/test dir\\../tests/test%20file.README.txt",S_OK,TRUE}, |
| {"file",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_UNKNOWN,S_OK,TRUE}, |
| {0,S_FALSE,TRUE}, |
| {URL_SCHEME_FILE,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "urn:nothing:should:happen here", 0, S_OK, FALSE, |
| { |
| {"urn:nothing:should:happen here",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"urn:nothing:should:happen here",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"nothing:should:happen here",S_OK,TRUE}, |
| {"nothing:should:happen here",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"urn:nothing:should:happen here",S_OK,TRUE}, |
| {"urn",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_UNKNOWN,S_OK,TRUE}, |
| {0,S_FALSE,TRUE}, |
| {URL_SCHEME_UNKNOWN,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "http://127.0.0.1/tests/../test dir/./test.txt", 0, S_OK, FALSE, |
| { |
| {"http://127.0.0.1/test%20dir/test.txt",S_OK,TRUE}, |
| {"127.0.0.1",S_OK,TRUE}, |
| {"http://127.0.0.1/test%20dir/test.txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {".txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"127.0.0.1",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/test%20dir/test.txt",S_OK,TRUE}, |
| {"/test%20dir/test.txt",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"http://127.0.0.1/tests/../test dir/./test.txt",S_OK,TRUE}, |
| {"http",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_IPV4,S_OK,TRUE}, |
| {80,S_OK,TRUE}, |
| {URL_SCHEME_HTTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "http://[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]", 0, S_OK, FALSE, |
| { |
| {"http://[fedc:ba98:7654:3210:fedc:ba98:7654:3210]/",S_OK,TRUE}, |
| {"[fedc:ba98:7654:3210:fedc:ba98:7654:3210]",S_OK,TRUE}, |
| {"http://[fedc:ba98:7654:3210:fedc:ba98:7654:3210]/",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"fedc:ba98:7654:3210:fedc:ba98:7654:3210",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/",S_OK,TRUE}, |
| {"/",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"http://[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]",S_OK,TRUE}, |
| {"http",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_IPV6,S_OK,TRUE}, |
| {80,S_OK,TRUE}, |
| {URL_SCHEME_HTTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "ftp://[::13.1.68.3]", 0, S_OK, FALSE, |
| { |
| {"ftp://[::13.1.68.3]/",S_OK,TRUE}, |
| {"[::13.1.68.3]",S_OK,TRUE}, |
| {"ftp://[::13.1.68.3]/",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"::13.1.68.3",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/",S_OK,TRUE}, |
| {"/",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"ftp://[::13.1.68.3]",S_OK,TRUE}, |
| {"ftp",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE} |
| }, |
| { |
| {Uri_HOST_IPV6,S_OK,TRUE}, |
| {21,S_OK,TRUE}, |
| {URL_SCHEME_FTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| }, |
| { "http://[FEDC:BA98:0:0:0:0:0:3210]", 0, S_OK, FALSE, |
| { |
| {"http://[fedc:ba98::3210]/",S_OK,TRUE}, |
| {"[fedc:ba98::3210]",S_OK,TRUE}, |
| {"http://[fedc:ba98::3210]/",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"fedc:ba98::3210",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"/",S_OK,TRUE}, |
| {"/",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"http://[FEDC:BA98:0:0:0:0:0:3210]",S_OK,TRUE}, |
| {"http",S_OK,TRUE}, |
| {"",S_FALSE,TRUE}, |
| {"",S_FALSE,TRUE}, |
| }, |
| { |
| {Uri_HOST_IPV6,S_OK,TRUE}, |
| {80,S_OK,TRUE}, |
| {URL_SCHEME_HTTP,S_OK,TRUE}, |
| {URLZONE_INVALID,E_NOTIMPL,FALSE} |
| } |
| } |
| }; |
| |
| static inline LPWSTR a2w(LPCSTR str) { |
| LPWSTR ret = NULL; |
| |
| if(str) { |
| DWORD len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0); |
| ret = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR)); |
| MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len); |
| } |
| |
| return ret; |
| } |
| |
| static inline BOOL heap_free(void* mem) { |
| return HeapFree(GetProcessHeap(), 0, mem); |
| } |
| |
| static inline DWORD strcmp_aw(LPCSTR strA, LPCWSTR strB) { |
| LPWSTR strAW = a2w(strA); |
| DWORD ret = lstrcmpW(strAW, strB); |
| heap_free(strAW); |
| return ret; |
| } |
| |
| /* |
| * Simple tests to make sure the CreateUri function handles invalid flag combinations |
| * correctly. |
| */ |
| static void test_CreateUri_InvalidFlags(void) { |
| DWORD i; |
| |
| for(i = 0; i < sizeof(invalid_flag_tests)/sizeof(invalid_flag_tests[0]); ++i) { |
| HRESULT hr; |
| IUri *uri = (void*) 0xdeadbeef; |
| |
| hr = pCreateUri(http_urlW, invalid_flag_tests[i].flags, 0, &uri); |
| todo_wine { |
| ok(hr == invalid_flag_tests[i].expected, "Error: CreateUri returned 0x%08x, expected 0x%08x, flags=0x%08x\n", |
| hr, invalid_flag_tests[i].expected, invalid_flag_tests[i].flags); |
| } |
| todo_wine { ok(uri == NULL, "Error: expected the IUri to be NULL, but it was %p instead\n", uri); } |
| } |
| } |
| |
| static void test_CreateUri_InvalidArgs(void) { |
| HRESULT hr; |
| IUri *uri = (void*) 0xdeadbeef; |
| |
| hr = pCreateUri(http_urlW, 0, 0, NULL); |
| ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x\n", hr, E_INVALIDARG); |
| |
| hr = pCreateUri(NULL, 0, 0, &uri); |
| ok(hr == E_INVALIDARG, "Error: CreateUri returned 0x%08x, expected 0x%08x\n", hr, E_INVALIDARG); |
| ok(uri == NULL, "Error: Expected the IUri to be NULL, but it was %p instead\n", uri); |
| } |
| |
| static void test_IUri_GetPropertyBSTR(void) { |
| DWORD i; |
| |
| for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) { |
| uri_properties test = uri_tests[i]; |
| HRESULT hr; |
| IUri *uri = NULL; |
| LPWSTR uriW; |
| |
| uriW = a2w(test.uri); |
| hr = pCreateUri(uriW, test.create_flags, 0, &uri); |
| if(test.create_todo) { |
| todo_wine { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| } else { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| |
| if(SUCCEEDED(hr)) { |
| DWORD j; |
| |
| /* Checks all the string properties of the uri. */ |
| for(j = Uri_PROPERTY_STRING_START; j <= Uri_PROPERTY_STRING_LAST; ++j) { |
| BSTR received = NULL; |
| uri_str_property prop = test.str_props[j]; |
| |
| hr = IUri_GetPropertyBSTR(uri, j, &received, 0); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "GetPropertyBSTR returned 0x%08x, expected 0x%08x. On uri_tests[%d].str_props[%d].\n", |
| hr, prop.expected, i, j); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Expected %s but got %s on uri_tests[%d].str_props[%d].\n", |
| prop.value, wine_dbgstr_w(received), i, j); |
| } |
| } else { |
| ok(hr == prop.expected, "GetPropertyBSTR returned 0x%08x, expected 0x%08x. On uri_tests[%d].str_props[%d].\n", |
| hr, prop.expected, i, j); |
| ok(!strcmp_aw(prop.value, received), "Expected %s but got %s on uri_tests[%d].str_props[%d].\n", |
| prop.value, wine_dbgstr_w(received), i, j); |
| } |
| |
| SysFreeString(received); |
| } |
| } |
| |
| if(uri) IUri_Release(uri); |
| |
| heap_free(uriW); |
| } |
| } |
| |
| static void test_IUri_GetPropertyDWORD(void) { |
| IUri *uri = NULL; |
| HRESULT hr; |
| DWORD i; |
| |
| hr = pCreateUri(http_urlW, 0, 0, &uri); |
| ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK); |
| if(SUCCEEDED(hr)) { |
| hr = IUri_GetPropertyDWORD(uri, Uri_PROPERTY_DWORD_START, NULL, 0); |
| ok(hr == E_INVALIDARG, "Error: GetPropertyDWORD returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG); |
| } |
| if(uri) IUri_Release(uri); |
| |
| for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) { |
| uri_properties test = uri_tests[i]; |
| LPWSTR uriW; |
| uri = NULL; |
| |
| uriW = a2w(test.uri); |
| hr = pCreateUri(uriW, test.create_flags, 0, &uri); |
| if(test.create_todo) { |
| todo_wine { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| } else { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x. Failed on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| |
| if(SUCCEEDED(hr)) { |
| DWORD j; |
| |
| /* Checks all the DWORD properties of the uri. */ |
| for(j = 0; j < sizeof(test.dword_props)/sizeof(test.dword_props[0]); ++j) { |
| DWORD received; |
| uri_dword_property prop = test.dword_props[j]; |
| |
| hr = IUri_GetPropertyDWORD(uri, j+Uri_PROPERTY_DWORD_START, &received, 0); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "GetPropertyDWORD returned 0x%08x, expected 0x%08x. On uri_tests[%d].dword_props[%d].\n", |
| hr, prop.expected, i, j); |
| } |
| todo_wine { |
| ok(prop.value == received, "Expected %d but got %d on uri_tests[%d].dword_props[%d].\n", |
| prop.value, received, i, j); |
| } |
| } else { |
| ok(hr == prop.expected, "GetPropertyDWORD returned 0x%08x, expected 0x%08x. On uri_tests[%d].dword_props[%d].\n", |
| hr, prop.expected, i, j); |
| ok(prop.value == received, "Expected %d but got %d on uri_tests[%d].dword_props[%d].\n", |
| prop.value, received, i, j); |
| } |
| } |
| } |
| |
| if(uri) IUri_Release(uri); |
| |
| heap_free(uriW); |
| } |
| } |
| |
| /* Tests all the 'Get*' property functions which deal with strings. */ |
| static void test_IUri_GetStrProperties(void) { |
| IUri *uri = NULL; |
| HRESULT hr; |
| DWORD i; |
| |
| /* Make sure all the 'Get*' string property functions handle invalid args correctly. */ |
| hr = pCreateUri(http_urlW, 0, 0, &uri); |
| ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK); |
| if(SUCCEEDED(hr)) { |
| hr = IUri_GetAbsoluteUri(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetAuthority(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetAuthority returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetDisplayUri(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetDomain(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetDomain returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetExtension(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetExtension returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetFragment(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetFragment returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetPassword(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetPassword returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetPath(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetPath returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetPathAndQuery(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetQuery(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetQuery returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetRawUri(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetRawUri returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetSchemeName(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetSchemeName returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetUserInfo(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetUserInfo returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| |
| hr = IUri_GetUserName(uri, NULL); |
| ok(hr == E_POINTER, "Error: GetUserName returned 0x%08x, expected 0x%08x.\n", hr, E_POINTER); |
| } |
| if(uri) IUri_Release(uri); |
| |
| for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) { |
| uri_properties test = uri_tests[i]; |
| LPWSTR uriW; |
| uri = NULL; |
| |
| uriW = a2w(test.uri); |
| hr = pCreateUri(uriW, test.create_flags, 0, &uri); |
| if(test.create_todo) { |
| todo_wine { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| } else { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| |
| if(SUCCEEDED(hr)) { |
| uri_str_property prop; |
| BSTR received = NULL; |
| |
| /* GetAbsoluteUri() tests. */ |
| prop = test.str_props[Uri_PROPERTY_ABSOLUTE_URI]; |
| hr = IUri_GetAbsoluteUri(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetAbsoluteUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetAuthority() tests. */ |
| prop = test.str_props[Uri_PROPERTY_AUTHORITY]; |
| hr = IUri_GetAuthority(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetAuthority returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetAuthority returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetDisplayUri() tests. */ |
| prop = test.str_props[Uri_PROPERTY_DISPLAY_URI]; |
| hr = IUri_GetDisplayUri(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_test[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetDisplayUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetDomain() tests. */ |
| prop = test.str_props[Uri_PROPERTY_DOMAIN]; |
| hr = IUri_GetDomain(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetDomain returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetDomain returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetExtension() tests. */ |
| prop = test.str_props[Uri_PROPERTY_EXTENSION]; |
| hr = IUri_GetExtension(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetExtension returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetExtension returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetFragment() tests. */ |
| prop = test.str_props[Uri_PROPERTY_FRAGMENT]; |
| hr = IUri_GetFragment(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetFragment returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetFragment returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetPassword() tests. */ |
| prop = test.str_props[Uri_PROPERTY_PASSWORD]; |
| hr = IUri_GetPassword(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetPassword returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetPassword returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetPath() tests. */ |
| prop = test.str_props[Uri_PROPERTY_PATH]; |
| hr = IUri_GetPath(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetPath returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetPath returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetPathAndQuery() tests. */ |
| prop = test.str_props[Uri_PROPERTY_PATH_AND_QUERY]; |
| hr = IUri_GetPathAndQuery(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetPathAndQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetQuery() tests. */ |
| prop = test.str_props[Uri_PROPERTY_QUERY]; |
| hr = IUri_GetQuery(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetQuery returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetRawUri() tests. */ |
| prop = test.str_props[Uri_PROPERTY_RAW_URI]; |
| hr = IUri_GetRawUri(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetRawUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetRawUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetSchemeName() tests. */ |
| prop = test.str_props[Uri_PROPERTY_SCHEME_NAME]; |
| hr = IUri_GetSchemeName(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetSchemeName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetSchemeName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetUserInfo() tests. */ |
| prop = test.str_props[Uri_PROPERTY_USER_INFO]; |
| hr = IUri_GetUserInfo(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetUserInfo returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetUserInfo returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| received = NULL; |
| |
| /* GetUserName() tests. */ |
| prop = test.str_props[Uri_PROPERTY_USER_NAME]; |
| hr = IUri_GetUserName(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetUserName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetUserName returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(!strcmp_aw(prop.value, received), "Error: Expected %s but got %s on uri_tests[%d].\n", |
| prop.value, wine_dbgstr_w(received), i); |
| } |
| SysFreeString(received); |
| } |
| |
| if(uri) IUri_Release(uri); |
| |
| heap_free(uriW); |
| } |
| } |
| |
| static void test_IUri_GetDwordProperties(void) { |
| IUri *uri = NULL; |
| HRESULT hr; |
| DWORD i; |
| |
| /* Make sure all the 'Get*' dword property functions handle invalid args correctly. */ |
| hr = pCreateUri(http_urlW, 0, 0, &uri); |
| ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK); |
| if(SUCCEEDED(hr)) { |
| hr = IUri_GetHostType(uri, NULL); |
| ok(hr == E_INVALIDARG, "Error: GetHostType returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG); |
| |
| hr = IUri_GetPort(uri, NULL); |
| ok(hr == E_INVALIDARG, "Error: GetPort returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG); |
| |
| hr = IUri_GetScheme(uri, NULL); |
| ok(hr == E_INVALIDARG, "Error: GetScheme returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG); |
| |
| hr = IUri_GetZone(uri, NULL); |
| ok(hr == E_INVALIDARG, "Error: GetZone returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG); |
| } |
| if(uri) IUri_Release(uri); |
| |
| for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) { |
| uri_properties test = uri_tests[i]; |
| LPWSTR uriW; |
| uri = NULL; |
| |
| uriW = a2w(test.uri); |
| hr = pCreateUri(uriW, test.create_flags, 0, &uri); |
| if(test.create_todo) { |
| todo_wine { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| } else { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| |
| if(SUCCEEDED(hr)) { |
| uri_dword_property prop; |
| DWORD received; |
| |
| /* Assign an insane value so tests don't accidentally pass when |
| * they shouldn't! |
| */ |
| received = -9999999; |
| |
| /* GetHostType() tests. */ |
| prop = test.dword_props[Uri_PROPERTY_HOST_TYPE-Uri_PROPERTY_DWORD_START]; |
| hr = IUri_GetHostType(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetHostType returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetHostType returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| received = -9999999; |
| |
| /* GetPort() tests. */ |
| prop = test.dword_props[Uri_PROPERTY_PORT-Uri_PROPERTY_DWORD_START]; |
| hr = IUri_GetPort(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetPort returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetPort returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| received = -9999999; |
| |
| /* GetScheme() tests. */ |
| prop = test.dword_props[Uri_PROPERTY_SCHEME-Uri_PROPERTY_DWORD_START]; |
| hr = IUri_GetScheme(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetScheme returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetScheme returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| received = -9999999; |
| |
| /* GetZone() tests. */ |
| prop = test.dword_props[Uri_PROPERTY_ZONE-Uri_PROPERTY_DWORD_START]; |
| hr = IUri_GetZone(uri, &received); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetZone returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| } |
| todo_wine { |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetZone returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, prop.expected, i); |
| ok(received == prop.value, "Error: Expected %d but got %d on uri_tests[%d].\n", prop.value, received, i); |
| } |
| } |
| |
| if(uri) IUri_Release(uri); |
| |
| heap_free(uriW); |
| } |
| } |
| |
| static void test_IUri_GetPropertyLength(void) { |
| IUri *uri = NULL; |
| HRESULT hr; |
| DWORD i; |
| |
| /* Make sure it handles invalid args correctly. */ |
| hr = pCreateUri(http_urlW, 0, 0, &uri); |
| ok(hr == S_OK, "Error: CreateUri returned 0x%08x, expected 0x%08x.\n", hr, S_OK); |
| if(SUCCEEDED(hr)) { |
| DWORD received = 0xdeadbeef; |
| |
| hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_STRING_START, NULL, 0); |
| ok(hr == E_INVALIDARG, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG); |
| |
| hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_DWORD_START, &received, 0); |
| ok(hr == E_INVALIDARG, "Error: GetPropertyLength return 0x%08x, expected 0x%08x.\n", hr, E_INVALIDARG); |
| ok(received == 0xdeadbeef, "Error: Expected 0xdeadbeef but got 0x%08x.\n", received); |
| } |
| if(uri) IUri_Release(uri); |
| |
| for(i = 0; i < sizeof(uri_tests)/sizeof(uri_tests[0]); ++i) { |
| uri_properties test = uri_tests[i]; |
| LPWSTR uriW; |
| uri = NULL; |
| |
| uriW = a2w(test.uri); |
| hr = pCreateUri(uriW, test.create_flags, 0, &uri); |
| if(test.create_todo) { |
| todo_wine { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_tests[%d].\n", |
| hr, test.create_expected, i); |
| } |
| } else { |
| ok(hr == test.create_expected, "Error: CreateUri returned 0x%08x, expected 0x%08x on uri_test[%d].\n", |
| hr, test.create_expected, i); |
| } |
| |
| if(SUCCEEDED(hr)) { |
| DWORD j; |
| |
| for(j = Uri_PROPERTY_STRING_START; j <= Uri_PROPERTY_STRING_LAST; ++j) { |
| DWORD expectedLen, receivedLen; |
| uri_str_property prop = test.str_props[j]; |
| |
| expectedLen = lstrlen(prop.value); |
| |
| /* This won't be neccessary once GetPropertyLength is implemented. */ |
| receivedLen = -1; |
| |
| hr = IUri_GetPropertyLength(uri, j, &receivedLen, 0); |
| if(prop.todo) { |
| todo_wine { |
| ok(hr == prop.expected, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x on uri_tests[%d].str_props[%d].\n", |
| hr, prop.expected, i, j); |
| } |
| todo_wine { |
| ok(receivedLen == expectedLen, "Error: Expected a length of %d but got %d on uri_tests[%d].str_props[%d].\n", |
| expectedLen, receivedLen, i, j); |
| } |
| } else { |
| ok(hr == prop.expected, "Error: GetPropertyLength returned 0x%08x, expected 0x%08x on uri_tests[%d].str_props[%d].\n", |
| hr, prop.expected, i, j); |
| ok(receivedLen == expectedLen, "Error: Expected a length of %d but %d on uri_tests[%d].str_props[%d].\n", |
| expectedLen, receivedLen, i, j); |
| } |
| } |
| } |
| |
| if(uri) IUri_Release(uri); |
| |
| heap_free(uriW); |
| } |
| } |
| |
| START_TEST(uri) { |
| HMODULE hurlmon; |
| |
| hurlmon = GetModuleHandle("urlmon.dll"); |
| pCreateUri = (void*) GetProcAddress(hurlmon, "CreateUri"); |
| |
| if(!pCreateUri) { |
| win_skip("CreateUri is not present, skipping tests.\n"); |
| return; |
| } |
| |
| trace("test CreateUri invalid flags...\n"); |
| test_CreateUri_InvalidFlags(); |
| |
| trace("test CreateUri invalid args...\n"); |
| test_CreateUri_InvalidArgs(); |
| |
| trace("test IUri_GetPropertyBSTR...\n"); |
| test_IUri_GetPropertyBSTR(); |
| |
| trace("test IUri_GetPropertyDWORD...\n"); |
| test_IUri_GetPropertyDWORD(); |
| |
| trace("test IUri_GetStrProperties...\n"); |
| test_IUri_GetStrProperties(); |
| |
| trace("test IUri_GetDwordProperties...\n"); |
| test_IUri_GetDwordProperties(); |
| |
| trace("test IUri_GetPropertyLength...\n"); |
| test_IUri_GetPropertyLength(); |
| } |