4 * Copyright 2008 Robert Shearman for CodeWeavers
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
29 #include "wine/test.h"
31 #define TEST_URL "http://urlcachetest.winehq.org/index.html"
33 static BOOL (WINAPI *pDeleteUrlCacheEntryA)(LPCSTR);
34 static BOOL (WINAPI *pUnlockUrlCacheEntryFileA)(LPCSTR,DWORD);
36 static char filenameA[MAX_PATH + 1];
38 static void check_cache_entry_infoA(const char *returnedfrom, LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo)
40 ok(lpCacheEntryInfo->dwStructSize == sizeof(*lpCacheEntryInfo), "%s: dwStructSize was %d\n", returnedfrom, lpCacheEntryInfo->dwStructSize);
41 ok(!strcmp(lpCacheEntryInfo->lpszSourceUrlName, TEST_URL), "%s: lpszSourceUrlName should be %s instead of %s\n", returnedfrom, TEST_URL, lpCacheEntryInfo->lpszSourceUrlName);
42 ok(!strcmp(lpCacheEntryInfo->lpszLocalFileName, filenameA), "%s: lpszLocalFileName should be %s instead of %s\n", returnedfrom, filenameA, lpCacheEntryInfo->lpszLocalFileName);
43 ok(!strcmp(lpCacheEntryInfo->lpszFileExtension, "html"), "%s: lpszFileExtension should be html instead of %s\n", returnedfrom, lpCacheEntryInfo->lpszFileExtension);
46 static void test_find_url_cache_entriesA(void)
51 DWORD cbCacheEntryInfo;
52 DWORD cbCacheEntryInfoSaved;
53 LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo;
56 hEnumHandle = FindFirstUrlCacheEntry(NULL, NULL, &cbCacheEntryInfo);
57 ok(!hEnumHandle, "FindFirstUrlCacheEntry should have failed\n");
58 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "FindFirstUrlCacheEntry should have set last error to ERROR_INSUFFICIENT_BUFFER instead of %d\n", GetLastError());
59 lpCacheEntryInfo = HeapAlloc(GetProcessHeap(), 0, cbCacheEntryInfo * sizeof(char));
60 cbCacheEntryInfoSaved = cbCacheEntryInfo;
61 hEnumHandle = FindFirstUrlCacheEntry(NULL, lpCacheEntryInfo, &cbCacheEntryInfo);
62 ok(hEnumHandle != NULL, "FindFirstUrlCacheEntry failed with error %d\n", GetLastError());
65 if (!strcmp(lpCacheEntryInfo->lpszSourceUrlName, TEST_URL))
70 cbCacheEntryInfo = cbCacheEntryInfoSaved;
71 ret = FindNextUrlCacheEntry(hEnumHandle, lpCacheEntryInfo, &cbCacheEntryInfo);
74 if (GetLastError() == ERROR_INSUFFICIENT_BUFFER)
76 lpCacheEntryInfo = HeapReAlloc(GetProcessHeap(), 0, lpCacheEntryInfo, cbCacheEntryInfo);
77 cbCacheEntryInfoSaved = cbCacheEntryInfo;
78 ret = FindNextUrlCacheEntry(hEnumHandle, lpCacheEntryInfo, &cbCacheEntryInfo);
81 ok(ret, "FindNextUrlCacheEntry failed with error %d\n", GetLastError());
85 ok(found, "committed url cache entry not found during enumeration\n");
87 ret = FindCloseUrlCache(hEnumHandle);
88 ok(ret, "FindCloseUrlCache failed with error %d\n", GetLastError());
91 static void test_GetUrlCacheEntryInfoExA(void)
94 DWORD cbCacheEntryInfo;
95 LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo;
97 ret = GetUrlCacheEntryInfoEx(NULL, NULL, NULL, NULL, NULL, NULL, 0);
98 ok(!ret, "GetUrlCacheEntryInfoEx with NULL URL and NULL args should have failed\n");
99 ok(GetLastError() == ERROR_INVALID_PARAMETER, "GetUrlCacheEntryInfoEx with NULL URL and NULL args should have set last error to ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
101 ret = GetUrlCacheEntryInfoEx(TEST_URL, NULL, NULL, NULL, NULL, NULL, 0);
102 ok(ret, "GetUrlCacheEntryInfoEx with NULL args failed with error %d\n", GetLastError());
104 cbCacheEntryInfo = 0;
105 ret = GetUrlCacheEntryInfoEx(TEST_URL, NULL, &cbCacheEntryInfo, NULL, NULL, NULL, 0);
106 ok(!ret, "GetUrlCacheEntryInfoEx with zero-length buffer should fail\n");
107 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "GetUrlCacheEntryInfoEx should have set last error to ERROR_INSUFFICIENT_BUFFER instead of %d\n", GetLastError());
109 lpCacheEntryInfo = HeapAlloc(GetProcessHeap(), 0, cbCacheEntryInfo);
110 ret = GetUrlCacheEntryInfoEx(TEST_URL, lpCacheEntryInfo, &cbCacheEntryInfo, NULL, NULL, NULL, 0);
111 ok(ret, "GetUrlCacheEntryInfoEx failed with error %d\n", GetLastError());
113 check_cache_entry_infoA("GetUrlCacheEntryInfoEx", lpCacheEntryInfo);
115 cbCacheEntryInfo = 100000;
116 SetLastError(0xdeadbeef);
117 ret = GetUrlCacheEntryInfoEx(TEST_URL, NULL, &cbCacheEntryInfo, NULL, NULL, NULL, 0);
118 ok(!ret, "GetUrlCacheEntryInfoEx with zero-length buffer should fail\n");
119 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "GetUrlCacheEntryInfoEx should have set last error to ERROR_INSUFFICIENT_BUFFER instead of %d\n", GetLastError());
121 HeapFree(GetProcessHeap(), 0, lpCacheEntryInfo);
124 static void test_RetrieveUrlCacheEntryA(void)
127 DWORD cbCacheEntryInfo;
129 cbCacheEntryInfo = 0;
130 SetLastError(0xdeadbeef);
131 ret = RetrieveUrlCacheEntryFile(NULL, NULL, &cbCacheEntryInfo, 0);
132 ok(!ret, "RetrieveUrlCacheEntryFile should have failed\n");
133 ok(GetLastError() == ERROR_INVALID_PARAMETER, "RetrieveUrlCacheEntryFile should have set last error to ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
137 /* Crashes on Win9x, NT4 and W2K */
138 SetLastError(0xdeadbeef);
139 ret = RetrieveUrlCacheEntryFile(TEST_URL, NULL, NULL, 0);
140 ok(!ret, "RetrieveUrlCacheEntryFile should have failed\n");
141 ok(GetLastError() == ERROR_INVALID_PARAMETER, "RetrieveUrlCacheEntryFile should have set last error to ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
144 SetLastError(0xdeadbeef);
145 cbCacheEntryInfo = 100000;
146 ret = RetrieveUrlCacheEntryFile(NULL, NULL, &cbCacheEntryInfo, 0);
147 ok(!ret, "RetrieveUrlCacheEntryFile should have failed\n");
148 ok(GetLastError() == ERROR_INVALID_PARAMETER, "RetrieveUrlCacheEntryFile should have set last error to ERROR_INVALID_PARAMETER instead of %d\n", GetLastError());
151 static void test_urlcacheA(void)
157 LPINTERNET_CACHE_ENTRY_INFO lpCacheEntryInfo;
158 DWORD cbCacheEntryInfo;
159 static const FILETIME filetime_zero;
161 ret = CreateUrlCacheEntry(TEST_URL, 0, "html", filenameA, 0);
162 ok(ret, "CreateUrlCacheEntry failed with error %d\n", GetLastError());
164 hFile = CreateFileA(filenameA, GENERIC_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE,
165 NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
166 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA failed with error %d\n", GetLastError());
168 ret = WriteFile(hFile, &zero_byte, sizeof(zero_byte), &written, NULL);
169 ok(ret, "WriteFile failed with error %d\n", GetLastError());
173 ret = CommitUrlCacheEntry(TEST_URL, filenameA, filetime_zero, filetime_zero, NORMAL_CACHE_ENTRY, NULL, 0, "html", NULL);
174 ok(ret, "CommitUrlCacheEntry failed with error %d\n", GetLastError());
176 cbCacheEntryInfo = 0;
177 ret = RetrieveUrlCacheEntryFile(TEST_URL, NULL, &cbCacheEntryInfo, 0);
178 ok(!ret, "RetrieveUrlCacheEntryFile should have failed\n");
179 ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER, "RetrieveUrlCacheEntryFile should have set last error to ERROR_INSUFFICIENT_BUFFER instead of %d\n", GetLastError());
181 lpCacheEntryInfo = HeapAlloc(GetProcessHeap(), 0, cbCacheEntryInfo);
182 ret = RetrieveUrlCacheEntryFile(TEST_URL, lpCacheEntryInfo, &cbCacheEntryInfo, 0);
183 ok(ret, "RetrieveUrlCacheEntryFile failed with error %d\n", GetLastError());
185 check_cache_entry_infoA("RetrieveUrlCacheEntryFile", lpCacheEntryInfo);
187 HeapFree(GetProcessHeap(), 0, lpCacheEntryInfo);
189 if (pUnlockUrlCacheEntryFileA)
191 ret = pUnlockUrlCacheEntryFileA(TEST_URL, 0);
192 ok(ret, "UnlockUrlCacheEntryFileA failed with error %d\n", GetLastError());
195 /* test Find*UrlCacheEntry functions */
196 test_find_url_cache_entriesA();
198 test_GetUrlCacheEntryInfoExA();
199 test_RetrieveUrlCacheEntryA();
201 if (pDeleteUrlCacheEntryA)
203 ret = pDeleteUrlCacheEntryA(TEST_URL);
204 ok(ret, "DeleteUrlCacheEntryA failed with error %d\n", GetLastError());
207 ret = DeleteFile(filenameA);
209 ok(!ret && GetLastError() == ERROR_FILE_NOT_FOUND, "local file should no longer exist\n");
212 static void test_FindCloseUrlCache(void)
216 r = FindCloseUrlCache(NULL);
217 err = GetLastError();
218 ok(0 == r, "expected 0, got %d\n", r);
219 ok(ERROR_INVALID_HANDLE == err, "expected %d, got %d\n", ERROR_INVALID_HANDLE, err);
225 hdll = GetModuleHandleA("wininet.dll");
226 pDeleteUrlCacheEntryA = (void*)GetProcAddress(hdll, "DeleteUrlCacheEntryA");
227 pUnlockUrlCacheEntryFileA = (void*)GetProcAddress(hdll, "UnlockUrlCacheEntryFileA");
229 test_FindCloseUrlCache();