2 * Unit tests to document InternetShortcut's behaviour
4 * Copyright 2008 Damjan Jovanovic
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #define NONAMELESSUNION
41 #include "wine/test.h"
43 static HRESULT WINAPI Unknown_QueryInterface(IUnknown *pUnknown, REFIID riid, void **ppvObject)
45 if (IsEqualGUID(&IID_IUnknown, riid))
47 *ppvObject = pUnknown;
53 static ULONG WINAPI Unknown_AddRef(IUnknown *pUnknown)
58 static ULONG WINAPI Unknown_Release(IUnknown *pUnknown)
63 static IUnknownVtbl unknownVtbl = {
64 Unknown_QueryInterface,
69 static IUnknown unknown = {
73 static const char *printGUID(const GUID *guid)
75 static char guidSTR[39];
77 if (!guid) return NULL;
79 sprintf(guidSTR, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
80 guid->Data1, guid->Data2, guid->Data3,
81 guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
82 guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
86 static void test_Aggregability(void)
89 IUnknown *pUnknown = NULL;
91 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUnknown, (void**)&pUnknown);
92 ok(SUCCEEDED(hr), "could not create instance of CLSID_InternetShortcut with IID_IUnknown, hr = 0x%x\n", hr);
94 IUnknown_Release(pUnknown);
96 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&pUnknown);
97 ok(SUCCEEDED(hr), "could not create instance of CLSID_InternetShortcut with IID_IUniformResourceLocatorA, hr = 0x%x\n", hr);
99 IUnknown_Release(pUnknown);
101 hr = CoCreateInstance(&CLSID_InternetShortcut, &unknown, CLSCTX_ALL, &IID_IUnknown, (void**)&pUnknown);
102 ok(FAILED(hr), "aggregation didn't fail like it should, hr = 0x%x\n", hr);
104 IUnknown_Release(pUnknown);
107 static void can_query_interface(IUnknown *pUnknown, REFIID riid)
110 IUnknown *newInterface;
111 hr = IUnknown_QueryInterface(pUnknown, riid, (void**)&newInterface);
112 ok(SUCCEEDED(hr), "interface %s could not be queried\n", printGUID(riid));
114 IUnknown_Release(newInterface);
117 static void test_QueryInterface(void)
122 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUnknown, (void**)&pUnknown);
125 can_query_interface(pUnknown, &IID_IUniformResourceLocatorA);
126 can_query_interface(pUnknown, &IID_IUniformResourceLocatorW);
127 can_query_interface(pUnknown, &IID_IPersistFile);
128 IUnknown_Release(pUnknown);
131 skip("could not create a CLSID_InternetShortcut for QueryInterface tests, hr=0x%x\n", hr);
134 static CHAR *set_and_get_url(IUniformResourceLocatorA *urlA, LPCSTR input, DWORD flags)
137 hr = urlA->lpVtbl->SetURL(urlA, input, flags);
141 hr = urlA->lpVtbl->GetURL(urlA, &output);
145 skip("GetUrl failed, hr=0x%x\n", hr);
148 skip("SetUrl (%s, 0x%x) failed, hr=0x%x\n", input, flags, hr);
152 static void check_string_transform(IUniformResourceLocatorA *urlA, LPCSTR input, DWORD flags, LPCSTR expectedOutput)
154 CHAR *output = set_and_get_url(urlA, input, flags);
157 ok(lstrcmpA(output, expectedOutput) == 0, "unexpected URL change %s -> %s (expected %s)\n",
158 input, output, expectedOutput);
159 CoTaskMemFree(output);
163 static BOOL check_ie(void)
168 hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
169 &IID_IHTMLDocument5, (void**)&doc);
173 IHTMLDocument5_Release(doc);
177 static void test_ReadAndWriteProperties(void)
180 IUniformResourceLocatorA *urlA;
181 IUniformResourceLocatorA *urlAFromFile;
182 WCHAR fileNameW[MAX_PATH];
183 static const WCHAR shortcutW[] = {'t','e','s','t','s','h','o','r','t','c','u','t','.','u','r','l',0};
184 WCHAR iconPath[] = {'f','i','l','e',':','/','/','/','C',':','/','a','r','b','i','t','r','a','r','y','/','i','c','o','n','/','p','a','t','h',0};
186 char testurl[] = "http://some/bogus/url.html";
188 ps[0].ulKind = PRSPEC_PROPID;
189 U(ps[0]).propid = PID_IS_ICONFILE;
190 ps[1].ulKind = PRSPEC_PROPID;
191 U(ps[1]).propid = PID_IS_ICONINDEX;
193 /* Make sure we have a valid temporary directory */
194 GetTempPathW(MAX_PATH, fileNameW);
195 lstrcatW(fileNameW, shortcutW);
197 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlA);
201 IPropertyStorage *pPropStgWrite;
202 IPropertySetStorage *pPropSetStg;
205 /* We need to set a URL -- IPersistFile refuses to save without one. */
206 hr = urlA->lpVtbl->SetURL(urlA, testurl, 0);
207 ok(hr == S_OK, "Failed to set a URL. hr=0x%x\n", hr);
209 /* Write this shortcut out to a file so that we can test reading it in again. */
210 hr = urlA->lpVtbl->QueryInterface(urlA, &IID_IPersistFile, (void **) &pf);
211 ok(hr == S_OK, "Failed to get the IPersistFile for writing. hr=0x%x\n", hr);
213 hr = IPersistFile_Save(pf, fileNameW, TRUE);
214 ok(hr == S_OK, "Failed to save via IPersistFile. hr=0x%x\n", hr);
216 IPersistFile_Release(pf);
218 pv[0].vt = VT_LPWSTR;
219 U(pv[0]).pwszVal = (void *) iconPath;
221 U(pv[1]).iVal = iconIndex;
222 hr = urlA->lpVtbl->QueryInterface(urlA, &IID_IPropertySetStorage, (void **) &pPropSetStg);
223 ok(hr == S_OK, "Unable to get an IPropertySetStorage, hr=0x%x\n", hr);
225 hr = IPropertySetStorage_Open(pPropSetStg, &FMTID_Intshcut, STGM_READWRITE | STGM_SHARE_EXCLUSIVE, &pPropStgWrite);
226 ok(hr == S_OK, "Unable to get an IPropertyStorage for writing, hr=0x%x\n", hr);
228 hr = IPropertyStorage_WriteMultiple(pPropStgWrite, 2, ps, pv, 0);
229 ok(hr == S_OK, "Unable to set properties, hr=0x%x\n", hr);
231 hr = IPropertyStorage_Commit(pPropStgWrite, STGC_DEFAULT);
232 ok(hr == S_OK, "Failed to commit properties, hr=0x%x\n", hr);
234 pPropStgWrite->lpVtbl->Release(pPropStgWrite);
235 urlA->lpVtbl->Release(urlA);
236 IPropertySetStorage_Release(pPropSetStg);
239 skip("could not create a CLSID_InternetShortcut for property tests, hr=0x%x\n", hr);
241 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlAFromFile);
244 IPropertySetStorage *pPropSetStg;
245 IPropertyStorage *pPropStgRead;
246 PROPVARIANT pvread[2];
250 /* Now read that .url file back in. */
251 hr = urlAFromFile->lpVtbl->QueryInterface(urlAFromFile, &IID_IPersistFile, (void **) &pf);
252 ok(hr == S_OK, "Failed to get the IPersistFile for reading. hr=0x%x\n", hr);
254 hr = IPersistFile_Load(pf, fileNameW, 0);
255 ok(hr == S_OK, "Failed to load via IPersistFile. hr=0x%x\n", hr);
256 IPersistFile_Release(pf);
259 hr = urlAFromFile->lpVtbl->GetURL(urlAFromFile, &url);
260 ok(lstrcmp(url, testurl) == 0, "Wrong url read from file: %s\n",url);
263 hr = urlAFromFile->lpVtbl->QueryInterface(urlAFromFile, &IID_IPropertySetStorage, (void **) &pPropSetStg);
264 ok(hr == S_OK, "Unable to get an IPropertySetStorage, hr=0x%x\n", hr);
266 hr = IPropertySetStorage_Open(pPropSetStg, &FMTID_Intshcut, STGM_READ | STGM_SHARE_EXCLUSIVE, &pPropStgRead);
267 ok(hr == S_OK, "Unable to get an IPropertyStorage for reading, hr=0x%x\n", hr);
269 hr = IPropertyStorage_ReadMultiple(pPropStgRead, 2, ps, pvread);
270 ok(hr == S_OK, "Unable to read properties, hr=0x%x\n", hr);
272 todo_wine /* Wine doesn't yet support setting properties after save */
274 ok(U(pvread[1]).iVal == iconIndex, "Read wrong icon index: %d\n", U(pvread[1]).iVal);
276 ok(lstrcmpW(U(pvread[0]).pwszVal, iconPath) == 0, "Wrong icon path read: %s\n", wine_dbgstr_w(U(pvread[0]).pwszVal));
279 PropVariantClear(&pvread[0]);
280 PropVariantClear(&pvread[1]);
281 IPropertyStorage_Release(pPropStgRead);
282 IPropertySetStorage_Release(pPropSetStg);
283 urlAFromFile->lpVtbl->Release(urlAFromFile);
284 DeleteFileW(fileNameW);
287 skip("could not create a CLSID_InternetShortcut for property tests, hr=0x%x\n", hr);
290 static void test_NullURLs(void)
293 IUniformResourceLocatorA *urlA;
295 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlA);
300 hr = urlA->lpVtbl->GetURL(urlA, &url);
301 ok(SUCCEEDED(hr), "getting uninitialized URL unexpectedly failed, hr=0x%x\n", hr);
302 ok(url == NULL, "uninitialized URL is not NULL but %s\n", url);
304 hr = urlA->lpVtbl->SetURL(urlA, NULL, 0);
305 ok(SUCCEEDED(hr), "setting NULL URL unexpectedly failed, hr=0x%x\n", hr);
307 hr = urlA->lpVtbl->GetURL(urlA, &url);
308 ok(SUCCEEDED(hr), "getting NULL URL unexpectedly failed, hr=0x%x\n", hr);
309 ok(url == NULL, "URL unexpectedly not NULL but %s\n", url);
311 urlA->lpVtbl->Release(urlA);
314 skip("could not create a CLSID_InternetShortcut for NullURL tests, hr=0x%x\n", hr);
317 static void test_SetURLFlags(void)
320 IUniformResourceLocatorA *urlA;
322 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlA);
325 check_string_transform(urlA, "somerandomstring", 0, "somerandomstring");
326 check_string_transform(urlA, "www.winehq.org", 0, "www.winehq.org");
330 check_string_transform(urlA, "www.winehq.org", IURL_SETURL_FL_GUESS_PROTOCOL, "http://www.winehq.org/");
331 check_string_transform(urlA, "ftp.winehq.org", IURL_SETURL_FL_GUESS_PROTOCOL, "ftp://ftp.winehq.org/");
334 urlA->lpVtbl->Release(urlA);
337 skip("could not create a CLSID_InternetShortcut for SetUrl tests, hr=0x%x\n", hr);
340 static void test_InternetShortcut(void)
344 test_Aggregability();
345 test_QueryInterface();
348 test_ReadAndWriteProperties();
355 test_InternetShortcut();