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
40 #include "wine/test.h"
42 static HRESULT WINAPI Unknown_QueryInterface(IUnknown *pUnknown, REFIID riid, void **ppvObject)
44 if (IsEqualGUID(&IID_IUnknown, riid))
46 *ppvObject = pUnknown;
52 static ULONG WINAPI Unknown_AddRef(IUnknown *pUnknown)
57 static ULONG WINAPI Unknown_Release(IUnknown *pUnknown)
62 static IUnknownVtbl unknownVtbl = {
63 Unknown_QueryInterface,
68 static IUnknown unknown = {
72 static const char *printGUID(const GUID *guid)
74 static char guidSTR[39];
76 if (!guid) return NULL;
78 sprintf(guidSTR, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
79 guid->Data1, guid->Data2, guid->Data3,
80 guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
81 guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7]);
85 static void test_Aggregability(void)
88 IUnknown *pUnknown = NULL;
90 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUnknown, (void**)&pUnknown);
91 ok(SUCCEEDED(hr), "could not create instance of CLSID_InternetShortcut with IID_IUnknown, hr = 0x%x\n", hr);
93 IUnknown_Release(pUnknown);
95 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&pUnknown);
96 ok(SUCCEEDED(hr), "could not create instance of CLSID_InternetShortcut with IID_IUniformResourceLocatorA, hr = 0x%x\n", hr);
98 IUnknown_Release(pUnknown);
100 hr = CoCreateInstance(&CLSID_InternetShortcut, &unknown, CLSCTX_ALL, &IID_IUnknown, (void**)&pUnknown);
101 ok(FAILED(hr), "aggregation didn't fail like it should, hr = 0x%x\n", hr);
103 IUnknown_Release(pUnknown);
106 static void can_query_interface(IUnknown *pUnknown, REFIID riid)
109 IUnknown *newInterface;
110 hr = IUnknown_QueryInterface(pUnknown, riid, (void**)&newInterface);
111 ok(SUCCEEDED(hr), "interface %s could not be queried\n", printGUID(riid));
113 IUnknown_Release(newInterface);
116 static void test_QueryInterface(void)
121 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUnknown, (void**)&pUnknown);
124 can_query_interface(pUnknown, &IID_IUniformResourceLocatorA);
125 can_query_interface(pUnknown, &IID_IUniformResourceLocatorW);
126 can_query_interface(pUnknown, &IID_IPersistFile);
127 IUnknown_Release(pUnknown);
130 skip("could not create a CLSID_InternetShortcut for QueryInterface tests, hr=0x%x\n", hr);
133 static CHAR *set_and_get_url(IUniformResourceLocatorA *urlA, LPCSTR input, DWORD flags)
136 hr = urlA->lpVtbl->SetURL(urlA, input, flags);
140 hr = urlA->lpVtbl->GetURL(urlA, &output);
144 skip("GetUrl failed, hr=0x%x\n", hr);
147 skip("SetUrl (%s, 0x%x) failed, hr=0x%x\n", input, flags, hr);
151 static void check_string_transform(IUniformResourceLocatorA *urlA, LPCSTR input, DWORD flags, LPCSTR expectedOutput)
153 CHAR *output = set_and_get_url(urlA, input, flags);
156 ok(lstrcmpA(output, expectedOutput) == 0, "unexpected URL change %s -> %s (expected %s)\n",
157 input, output, expectedOutput);
158 CoTaskMemFree(output);
162 static BOOL check_ie(void)
167 hres = CoCreateInstance(&CLSID_HTMLDocument, NULL, CLSCTX_INPROC_SERVER|CLSCTX_INPROC_HANDLER,
168 &IID_IHTMLDocument5, (void**)&doc);
172 IHTMLDocument5_Release(doc);
176 static void test_ReadAndWriteProperties(void)
179 IUniformResourceLocatorA *urlA;
180 IUniformResourceLocatorA *urlAFromFile;
181 WCHAR fileNameW[MAX_PATH];
182 static const WCHAR shortcutW[] = {'t','e','s','t','s','h','o','r','t','c','u','t','.','u','r','l',0};
183 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};
185 char testurl[] = "http://some/bogus/url.html";
187 ps[0].ulKind = PRSPEC_PROPID;
188 ps[0].propid = PID_IS_ICONFILE;
189 ps[1].ulKind = PRSPEC_PROPID;
190 ps[1].propid = PID_IS_ICONINDEX;
192 /* Make sure we have a valid temporary directory */
193 GetTempPathW(MAX_PATH, fileNameW);
194 lstrcatW(fileNameW, shortcutW);
196 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlA);
200 IPropertyStorage *pPropStgWrite;
201 IPropertySetStorage *pPropSetStg;
203 pv[0].vt = VT_LPWSTR;
204 pv[0].pwszVal = (void *) iconPath;
206 pv[1].iVal = iconIndex;
207 hr = urlA->lpVtbl->QueryInterface(urlA, &IID_IPropertySetStorage, (void **) &pPropSetStg);
208 ok(hr == S_OK, "Unable to get an IPropertySetStorage, hr=0x%x\n", hr);
210 hr = IPropertySetStorage_Open(pPropSetStg, &FMTID_Intshcut, STGM_READWRITE | STGM_SHARE_EXCLUSIVE, &pPropStgWrite);
211 ok(hr == S_OK, "Unable to get an IPropertyStorage for writing, hr=0x%x\n", hr);
213 hr = IPropertyStorage_WriteMultiple(pPropStgWrite, 2, ps, pv, 0);
214 ok(hr == S_OK, "Unable to set properties, hr=0x%x\n", hr);
216 hr = IPropertyStorage_Commit(pPropStgWrite, STGC_DEFAULT);
217 ok(hr == S_OK, "Failed to commit properties, hr=0x%x\n", hr);
219 pPropStgWrite->lpVtbl->Release(pPropStgWrite);
221 /* We need to set a URL -- IPersistFile refuses to save without one. */
222 hr = urlA->lpVtbl->SetURL(urlA, testurl, 0);
223 ok(hr == S_OK, "Failed to set a URL. hr=0x%x\n", hr);
225 /* Write this shortcut out to a file so that we can test reading it in again. */
226 hr = urlA->lpVtbl->QueryInterface(urlA, &IID_IPersistFile, (void **) &pf);
227 ok(hr == S_OK, "Failed to get the IPersistFile for writing. hr=0x%x\n", hr);
229 hr = IPersistFile_Save(pf, fileNameW, TRUE);
230 ok(hr == S_OK, "Failed to save via IPersistFile. hr=0x%x\n", hr);
232 IPersistFile_Release(pf);
233 urlA->lpVtbl->Release(urlA);
234 IPropertySetStorage_Release(pPropSetStg);
237 skip("could not create a CLSID_InternetShortcut for property tests, hr=0x%x\n", hr);
239 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlAFromFile);
242 IPropertySetStorage *pPropSetStg;
243 IPropertyStorage *pPropStgRead;
244 PROPVARIANT pvread[2];
248 /* Now read that .url file back in. */
249 hr = urlAFromFile->lpVtbl->QueryInterface(urlAFromFile, &IID_IPersistFile, (void **) &pf);
250 ok(hr == S_OK, "Failed to get the IPersistFile for reading. hr=0x%x\n", hr);
252 hr = IPersistFile_Load(pf, fileNameW, 0);
253 ok(hr == S_OK, "Failed to load via IPersistFile. hr=0x%x\n", hr);
254 IPersistFile_Release(pf);
257 hr = urlAFromFile->lpVtbl->GetURL(urlAFromFile, &url);
258 ok(lstrcmp(url, testurl) == 0, "Wrong url read from file: %s\n",url);
261 hr = urlAFromFile->lpVtbl->QueryInterface(urlAFromFile, &IID_IPropertySetStorage, (void **) &pPropSetStg);
262 ok(hr == S_OK, "Unable to get an IPropertySetStorage, hr=0x%x\n", hr);
264 hr = IPropertySetStorage_Open(pPropSetStg, &FMTID_Intshcut, STGM_READ | STGM_SHARE_EXCLUSIVE, &pPropStgRead);
265 ok(hr == S_OK, "Unable to get an IPropertyStorage for reading, hr=0x%x\n", hr);
267 hr = IPropertyStorage_ReadMultiple(pPropStgRead, 2, ps, pvread);
268 ok(hr == S_OK, "Unable to read properties, hr=0x%x\n", hr);
270 ok(pvread[1].iVal == iconIndex, "Read wrong icon index: %d\n", pvread[1].iVal);
272 ok(lstrcmpW(pvread[0].pwszVal, iconPath) == 0, "Wrong icon path read: %s\n",wine_dbgstr_w(pvread[0].pwszVal));
274 PropVariantClear(&pvread[0]);
275 PropVariantClear(&pvread[1]);
276 IPropertyStorage_Release(pPropStgRead);
277 IPropertySetStorage_Release(pPropSetStg);
278 urlAFromFile->lpVtbl->Release(urlAFromFile);
279 DeleteFileW(fileNameW);
282 skip("could not create a CLSID_InternetShortcut for property tests, hr=0x%x\n", hr);
285 static void test_NullURLs(void)
288 IUniformResourceLocatorA *urlA;
290 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlA);
295 hr = urlA->lpVtbl->GetURL(urlA, &url);
296 ok(SUCCEEDED(hr), "getting uninitialized URL unexpectedly failed, hr=0x%x\n", hr);
297 ok(url == NULL, "uninitialized URL is not NULL but %s\n", url);
299 hr = urlA->lpVtbl->SetURL(urlA, NULL, 0);
300 ok(SUCCEEDED(hr), "setting NULL URL unexpectedly failed, hr=0x%x\n", hr);
302 hr = urlA->lpVtbl->GetURL(urlA, &url);
303 ok(SUCCEEDED(hr), "getting NULL URL unexpectedly failed, hr=0x%x\n", hr);
304 ok(url == NULL, "URL unexpectedly not NULL but %s\n", url);
306 urlA->lpVtbl->Release(urlA);
309 skip("could not create a CLSID_InternetShortcut for NullURL tests, hr=0x%x\n", hr);
312 static void test_SetURLFlags(void)
315 IUniformResourceLocatorA *urlA;
317 hr = CoCreateInstance(&CLSID_InternetShortcut, NULL, CLSCTX_ALL, &IID_IUniformResourceLocatorA, (void**)&urlA);
320 check_string_transform(urlA, "somerandomstring", 0, "somerandomstring");
321 check_string_transform(urlA, "www.winehq.org", 0, "www.winehq.org");
325 check_string_transform(urlA, "www.winehq.org", IURL_SETURL_FL_GUESS_PROTOCOL, "http://www.winehq.org/");
326 check_string_transform(urlA, "ftp.winehq.org", IURL_SETURL_FL_GUESS_PROTOCOL, "ftp://ftp.winehq.org/");
329 urlA->lpVtbl->Release(urlA);
332 skip("could not create a CLSID_InternetShortcut for SetUrl tests, hr=0x%x\n", hr);
335 static void test_InternetShortcut(void)
339 test_Aggregability();
340 test_QueryInterface();
343 test_ReadAndWriteProperties();
350 test_InternetShortcut();