2 * Copyright 2009 Andrew Eikum for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include <wine/test.h>
27 struct location_test {
41 static const struct location_test location_tests[] = {
44 "http://www.winehq.org?search#hash",
45 "http://www.winehq.org/?search#hash",
56 "http://www.winehq.org/file?search#hash",
57 "http://www.winehq.org/file?search#hash",
68 "ftp://ftp.winehq.org/",
69 "ftp://ftp.winehq.org/",
80 "ftp://ftp.winehq.org/file",
81 "ftp://ftp.winehq.org/file",
92 "file://C:\\windows\\win.ini",
93 "file:///C:/windows/win.ini",
98 "C:\\windows\\win.ini",
104 static int str_eq_wa(LPCWSTR strw, const char *stra)
108 if(strw == NULL || stra == NULL){
109 if((void*)strw == (void*)stra)
114 WideCharToMultiByte(CP_ACP, 0, strw, -1, buf, sizeof(buf), NULL, NULL);
115 return !lstrcmpA(stra, buf);
118 static void test_href(IHTMLLocation *loc, const struct location_test *test)
123 hres = IHTMLLocation_get_href(loc, NULL);
124 ok(hres == E_POINTER,
125 "%s: get_href should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
126 test->name, E_POINTER, hres);
128 hres = IHTMLLocation_get_href(loc, &str);
129 ok(hres == S_OK, "%s: get_href failed: 0x%08x\n", test->name, hres);
131 ok(str_eq_wa(str, test->href),
132 "%s: expected retrieved href to be L\"%s\", was: %s\n",
133 test->name, test->href, wine_dbgstr_w(str));
137 static void test_protocol(IHTMLLocation *loc, const struct location_test *test)
142 hres = IHTMLLocation_get_protocol(loc, NULL);
143 ok(hres == E_POINTER,
144 "%s: get_protocol should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
145 test->name, E_POINTER, hres);
147 hres = IHTMLLocation_get_protocol(loc, &str);
148 ok(hres == S_OK, "%s: get_protocol failed: 0x%08x\n", test->name, hres);
150 ok(str_eq_wa(str, test->protocol),
151 "%s: expected retrieved protocol to be L\"%s\", was: %s\n",
152 test->name, test->protocol, wine_dbgstr_w(str));
156 static void test_host(IHTMLLocation *loc, const struct location_test *test)
161 hres = IHTMLLocation_get_host(loc, NULL);
162 ok(hres == E_POINTER,
163 "%s: get_host should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
164 test->name, E_POINTER, hres);
166 hres = IHTMLLocation_get_host(loc, &str);
167 ok(hres == S_OK, "%s: get_host failed: 0x%08x\n", test->name, hres);
169 ok(str_eq_wa(str, test->host),
170 "%s: expected retrieved host to be L\"%s\", was: %s\n",
171 test->name, test->host, wine_dbgstr_w(str));
175 static void test_hostname(IHTMLLocation *loc, const struct location_test *test)
180 hres = IHTMLLocation_get_hostname(loc, NULL);
181 ok(hres == E_POINTER,
182 "%s: get_hostname should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
183 test->name, E_POINTER, hres);
185 hres = IHTMLLocation_get_hostname(loc, &str);
186 ok(hres == S_OK, "%s: get_hostname failed: 0x%08x\n", test->name, hres);
188 ok(str_eq_wa(str, test->hostname),
189 "%s: expected retrieved hostname to be L\"%s\", was: %s\n",
190 test->name, test->hostname, wine_dbgstr_w(str));
194 static void test_port(IHTMLLocation *loc, const struct location_test *test)
199 hres = IHTMLLocation_get_port(loc, NULL);
200 ok(hres == E_POINTER,
201 "%s: get_port should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
202 test->name, E_POINTER, hres);
204 hres = IHTMLLocation_get_port(loc, &str);
205 ok(hres == S_OK, "%s: get_port failed: 0x%08x\n", test->name, hres);
207 ok(str_eq_wa(str, test->port),
208 "%s: expected retrieved port to be L\"%s\", was: %s\n",
209 test->name, test->port, wine_dbgstr_w(str));
213 static void test_pathname(IHTMLLocation *loc, const struct location_test *test)
218 hres = IHTMLLocation_get_pathname(loc, NULL);
219 ok(hres == E_POINTER,
220 "%s: get_pathname should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
221 test->name, E_POINTER, hres);
223 hres = IHTMLLocation_get_pathname(loc, &str);
224 ok(hres == S_OK, "%s: get_pathname failed: 0x%08x\n", test->name, hres);
226 ok(str_eq_wa(str, test->pathname),
227 "%s: expected retrieved pathname to be L\"%s\", was: %s\n",
228 test->name, test->pathname, wine_dbgstr_w(str));
232 static void test_search(IHTMLLocation *loc, const struct location_test *test)
237 hres = IHTMLLocation_get_search(loc, NULL);
238 ok(hres == E_POINTER,
239 "%s: get_search should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
240 test->name, E_POINTER, hres);
242 hres = IHTMLLocation_get_search(loc, &str);
243 ok(hres == S_OK, "%s: get_search failed: 0x%08x\n", test->name, hres);
245 ok(str_eq_wa(str, test->search),
246 "%s: expected retrieved search to be L\"%s\", was: %s\n",
247 test->name, test->search, wine_dbgstr_w(str));
251 static void test_hash(IHTMLLocation *loc, const struct location_test *test)
256 hres = IHTMLLocation_get_hash(loc, NULL);
257 ok(hres == E_POINTER,
258 "%s: get_hash should have failed with E_POINTER (0x%08x), was: 0x%08x\n",
259 test->name, E_POINTER, hres);
261 hres = IHTMLLocation_get_hash(loc, &str);
262 ok(hres == S_OK, "%s: get_hash failed: 0x%08x\n", test->name, hres);
264 ok(str_eq_wa(str, test->hash),
265 "%s: expected retrieved hash to be L\"%s\", was: %s\n",
266 test->name, test->hash, wine_dbgstr_w(str));
270 static void perform_test(const struct location_test* test)
272 WCHAR url[INTERNET_MAX_URL_LENGTH];
276 IPersistMoniker *persist_mon;
278 IHTMLDocument6 *doc6;
279 IHTMLLocation *location;
281 hres = CreateBindCtx(0, &bc);
282 ok(hres == S_OK, "%s: CreateBindCtx failed: 0x%08x\n", test->name, hres);
286 MultiByteToWideChar(CP_ACP, 0, test->url, -1, url, sizeof(url)/sizeof(WCHAR));
287 hres = CreateURLMoniker(NULL, url, &url_mon);
288 ok(hres == S_OK, "%s: CreateURLMoniker failed: 0x%08x\n", test->name, hres);
290 IBindCtx_Release(bc);
294 hres = CoCreateInstance(&CLSID_HTMLDocument, NULL,
295 CLSCTX_INPROC_SERVER | CLSCTX_INPROC_HANDLER, &IID_IHTMLDocument2,
297 ok(hres == S_OK, "%s: CoCreateInstance failed: 0x%08x\n", test->name, hres);
299 IMoniker_Release(url_mon);
300 IBindCtx_Release(bc);
304 hres = IHTMLDocument2_QueryInterface(doc, &IID_IHTMLDocument6, (void**)&doc6);
306 IHTMLDocument6_Release(doc6);
308 win_skip("%s: Could not get IHTMLDocument6, probably too old IE. Requires IE 8+\n", test->name);
309 IMoniker_Release(url_mon);
310 IBindCtx_Release(bc);
314 hres = IHTMLDocument2_QueryInterface(doc, &IID_IPersistMoniker,
315 (void**)&persist_mon);
316 ok(hres == S_OK, "%s: IHTMlDocument2_QueryInterface failed: 0x%08x\n", test->name, hres);
318 IHTMLDocument2_Release(doc);
319 IMoniker_Release(url_mon);
320 IBindCtx_Release(bc);
324 hres = IPersistMoniker_Load(persist_mon, FALSE, url_mon, bc,
325 STGM_SHARE_EXCLUSIVE | STGM_READWRITE);
326 ok(hres == S_OK, "%s: IPersistMoniker_Load failed: 0x%08x\n", test->name, hres);
328 IPersistMoniker_Release(persist_mon);
329 IHTMLDocument2_Release(doc);
330 IMoniker_Release(url_mon);
331 IBindCtx_Release(bc);
335 hres = IHTMLDocument2_get_location(doc, &location);
336 ok(hres == S_OK, "%s: IHTMLDocument2_get_location failed: 0x%08x\n", test->name, hres);
338 IPersistMoniker_Release(persist_mon);
339 IHTMLDocument2_Release(doc);
340 IMoniker_Release(url_mon);
341 IBindCtx_Release(bc);
345 test_href(location, test);
346 test_protocol(location, test);
347 test_host(location, test);
348 test_hostname(location, test);
349 test_port(location, test);
350 test_pathname(location, test);
351 test_search(location, test);
352 test_hash(location, test);
354 IHTMLLocation_Release(location);
355 IPersistMoniker_Release(persist_mon);
356 IHTMLDocument2_Release(doc);
357 IMoniker_Release(url_mon);
358 IBindCtx_Release(bc);
361 START_TEST(htmllocation)
367 for(i=0; i < sizeof(location_tests)/sizeof(*location_tests); i++)
368 perform_test(location_tests+i);