mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
471e010d18
svn path=/trunk/; revision=40949
279 lines
9.6 KiB
C
279 lines
9.6 KiB
C
/*
|
|
* Unit test suite for comdlg32 API functions: file dialogs
|
|
*
|
|
* Copyright 2007 Google (Lei Zhang)
|
|
*
|
|
* 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
|
|
*
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <wine/test.h>
|
|
|
|
#include "initguid.h"
|
|
#include "shlguid.h"
|
|
#define COBJMACROS
|
|
#include "shobjidl.h"
|
|
|
|
/* ##### */
|
|
|
|
static UINT_PTR CALLBACK OFNHookProc( HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
LPNMHDR nmh;
|
|
|
|
if( msg == WM_NOTIFY)
|
|
{
|
|
nmh = (LPNMHDR) lParam;
|
|
if( nmh->code == CDN_INITDONE)
|
|
{
|
|
PostMessage( GetParent(hDlg), WM_COMMAND, IDCANCEL, FALSE);
|
|
} else if (nmh->code == CDN_FOLDERCHANGE )
|
|
{
|
|
char buf[1024];
|
|
int ret;
|
|
|
|
memset(buf, 0x66, sizeof(buf));
|
|
ret = SendMessage( GetParent(hDlg), CDM_GETFOLDERIDLIST, 5, (LPARAM)buf);
|
|
ok(ret > 0, "CMD_GETFOLDERIDLIST not implemented\n");
|
|
if (ret > 5)
|
|
ok(buf[0] == 0x66 && buf[1] == 0x66, "CMD_GETFOLDERIDLIST: The buffer was touched on failure\n");
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* bug 6829 */
|
|
static void test_DialogCancel(void)
|
|
{
|
|
OPENFILENAMEA ofn;
|
|
BOOL result;
|
|
char szFileName[MAX_PATH] = "";
|
|
char szInitialDir[MAX_PATH];
|
|
|
|
GetWindowsDirectory(szInitialDir, MAX_PATH);
|
|
|
|
ZeroMemory(&ofn, sizeof(ofn));
|
|
|
|
ofn.lStructSize = sizeof(ofn);
|
|
ofn.hwndOwner = NULL;
|
|
ofn.lpstrFilter = "Text Files (*.txt)\0*.txt\0All Files (*.*)\0*.*\0";
|
|
ofn.lpstrFile = szFileName;
|
|
ofn.nMaxFile = MAX_PATH;
|
|
ofn.Flags = OFN_EXPLORER | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY | OFN_ENABLEHOOK;
|
|
ofn.lpstrDefExt = "txt";
|
|
ofn.lpfnHook = OFNHookProc;
|
|
ofn.lpstrInitialDir = szInitialDir;
|
|
|
|
PrintDlgA(NULL);
|
|
ok(CDERR_INITIALIZATION == CommDlgExtendedError(), "expected %d, got %d\n",
|
|
CDERR_INITIALIZATION, CommDlgExtendedError());
|
|
|
|
result = GetOpenFileNameA(&ofn);
|
|
ok(0 == result, "expected %d, got %d\n", 0, result);
|
|
ok(0 == CommDlgExtendedError(), "expected %d, got %d\n", 0,
|
|
CommDlgExtendedError());
|
|
|
|
PrintDlgA(NULL);
|
|
ok(CDERR_INITIALIZATION == CommDlgExtendedError(), "expected %d, got %d\n",
|
|
CDERR_INITIALIZATION, CommDlgExtendedError());
|
|
|
|
result = GetSaveFileNameA(&ofn);
|
|
ok(0 == result, "expected %d, got %d\n", 0, result);
|
|
ok(0 == CommDlgExtendedError(), "expected %d, got %d\n", 0,
|
|
CommDlgExtendedError());
|
|
|
|
PrintDlgA(NULL);
|
|
ok(CDERR_INITIALIZATION == CommDlgExtendedError(), "expected %d, got %d\n",
|
|
CDERR_INITIALIZATION, CommDlgExtendedError());
|
|
|
|
/* Before passing the ofn to Unicode functions, remove the ANSI strings */
|
|
ofn.lpstrFilter = NULL;
|
|
ofn.lpstrInitialDir = NULL;
|
|
ofn.lpstrDefExt = NULL;
|
|
|
|
PrintDlgA(NULL);
|
|
ok(CDERR_INITIALIZATION == CommDlgExtendedError(), "expected %d, got %d\n",
|
|
CDERR_INITIALIZATION, CommDlgExtendedError());
|
|
|
|
SetLastError(0xdeadbeef);
|
|
result = GetOpenFileNameW((LPOPENFILENAMEW) &ofn);
|
|
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
win_skip("GetOpenFileNameW is not implemented\n");
|
|
else
|
|
{
|
|
ok(0 == result, "expected %d, got %d\n", 0, result);
|
|
ok(0 == CommDlgExtendedError() ||
|
|
CDERR_INITIALIZATION == CommDlgExtendedError(), /* win9x */
|
|
"expected %d or %d, got %d\n", 0, CDERR_INITIALIZATION,
|
|
CommDlgExtendedError());
|
|
}
|
|
|
|
SetLastError(0xdeadbeef);
|
|
result = GetSaveFileNameW((LPOPENFILENAMEW) &ofn);
|
|
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
|
win_skip("GetSaveFileNameW is not implemented\n");
|
|
else
|
|
{
|
|
ok(0 == result, "expected %d, got %d\n", 0, result);
|
|
ok(0 == CommDlgExtendedError() ||
|
|
CDERR_INITIALIZATION == CommDlgExtendedError(), /* win9x */
|
|
"expected %d or %d, got %d\n", 0, CDERR_INITIALIZATION,
|
|
CommDlgExtendedError());
|
|
}
|
|
}
|
|
|
|
static UINT_PTR CALLBACK create_view_window2_hook(HWND dlg, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
if (msg == WM_NOTIFY)
|
|
{
|
|
if (((LPNMHDR)lParam)->code == CDN_FOLDERCHANGE)
|
|
{
|
|
IShellBrowser *shell_browser = (IShellBrowser *)SendMessage(GetParent(dlg), WM_USER + 7 /* WM_GETISHELLBROWSER */, 0, 0);
|
|
IShellView *shell_view = NULL;
|
|
IShellView2 *shell_view2 = NULL;
|
|
SV2CVW2_PARAMS view_params;
|
|
FOLDERSETTINGS folder_settings;
|
|
HRESULT hr;
|
|
RECT rect = {0, 0, 0, 0};
|
|
|
|
hr = IShellBrowser_QueryActiveShellView(shell_browser, &shell_view);
|
|
ok(SUCCEEDED(hr), "QueryActiveShellView returned %#x\n", hr);
|
|
if (FAILED(hr)) goto cleanup;
|
|
|
|
hr = IShellView_QueryInterface(shell_view, &IID_IShellView2, (void **)&shell_view2);
|
|
if (hr == E_NOINTERFACE)
|
|
{
|
|
win_skip("IShellView2 not supported\n");
|
|
goto cleanup;
|
|
}
|
|
ok(SUCCEEDED(hr), "QueryInterface returned %#x\n", hr);
|
|
if (FAILED(hr)) goto cleanup;
|
|
|
|
hr = IShellView2_DestroyViewWindow(shell_view2);
|
|
ok(SUCCEEDED(hr), "DestroyViewWindow returned %#x\n", hr);
|
|
|
|
folder_settings.ViewMode = FVM_LIST;
|
|
folder_settings.fFlags = 0;
|
|
|
|
view_params.cbSize = sizeof(view_params);
|
|
view_params.psvPrev = NULL;
|
|
view_params.pfs = &folder_settings;
|
|
view_params.psbOwner = shell_browser;
|
|
view_params.prcView = ▭
|
|
view_params.pvid = NULL;
|
|
view_params.hwndView = NULL;
|
|
|
|
hr = IShellView2_CreateViewWindow2(shell_view2, &view_params);
|
|
ok(SUCCEEDED(hr), "CreateViewWindow2 returned %#x\n", hr);
|
|
if (FAILED(hr)) goto cleanup;
|
|
|
|
hr = IShellView2_GetCurrentInfo(shell_view2, &folder_settings);
|
|
ok(SUCCEEDED(hr), "GetCurrentInfo returned %#x\n", hr);
|
|
ok(folder_settings.ViewMode == FVM_LIST, "view mode is %d, expected %d\n", folder_settings.ViewMode, FVM_LIST);
|
|
|
|
hr = IShellView2_DestroyViewWindow(shell_view2);
|
|
ok(SUCCEEDED(hr), "DestroyViewWindow returned %#x\n", hr);
|
|
|
|
/* XP and W2K3 need this. On Win9x and W2K the call to DestroyWindow() fails and has
|
|
* no side effects. NT4 doesn't get here. (FIXME: Vista doesn't get here yet).
|
|
*/
|
|
DestroyWindow(view_params.hwndView);
|
|
|
|
view_params.pvid = &VID_Details;
|
|
hr = IShellView2_CreateViewWindow2(shell_view2, &view_params);
|
|
ok(SUCCEEDED(hr), "CreateViewWindow2 returned %#x\n", hr);
|
|
if (FAILED(hr)) goto cleanup;
|
|
|
|
hr = IShellView2_GetCurrentInfo(shell_view2, &folder_settings);
|
|
ok(SUCCEEDED(hr), "GetCurrentInfo returned %#x\n", hr);
|
|
ok(folder_settings.ViewMode == FVM_DETAILS ||
|
|
broken(folder_settings.ViewMode == FVM_LIST), /* Win9x */
|
|
"view mode is %d, expected %d\n", folder_settings.ViewMode, FVM_DETAILS);
|
|
|
|
cleanup:
|
|
if (shell_view2) IShellView2_Release(shell_view2);
|
|
if (shell_view) IShellView_Release(shell_view);
|
|
PostMessage(GetParent(dlg), WM_COMMAND, IDCANCEL, 0);
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static LONG_PTR WINAPI template_hook(HWND dlg, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
if (msg == WM_INITDIALOG)
|
|
{
|
|
HWND p,cb;
|
|
INT sel;
|
|
p = GetParent(dlg);
|
|
ok(p!=NULL, "Failed to get parent of template\n");
|
|
cb = GetDlgItem(p,0x470);
|
|
ok(cb!=NULL, "Failed to get filter combobox\n");
|
|
sel = SendMessage(cb, CB_GETCURSEL, 0, 0);
|
|
ok (sel != -1, "Failed to get selection from filter listbox\n");
|
|
}
|
|
if (msg == WM_NOTIFY)
|
|
{
|
|
if (((LPNMHDR)lParam)->code == CDN_FOLDERCHANGE)
|
|
PostMessage(GetParent(dlg), WM_COMMAND, IDCANCEL, 0);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void test_create_view_window2(void)
|
|
{
|
|
OPENFILENAMEA ofn = {0};
|
|
char filename[1024] = {0};
|
|
DWORD ret;
|
|
|
|
ofn.lStructSize = sizeof(ofn);
|
|
ofn.lpstrFile = filename;
|
|
ofn.nMaxFile = 1042;
|
|
ofn.lpfnHook = create_view_window2_hook;
|
|
ofn.Flags = OFN_ENABLEHOOK | OFN_EXPLORER;
|
|
ret = GetOpenFileNameA(&ofn);
|
|
ok(!ret, "GetOpenFileNameA returned %#x\n", ret);
|
|
ret = CommDlgExtendedError();
|
|
ok(!ret, "CommDlgExtendedError returned %#x\n", ret);
|
|
}
|
|
|
|
static void test_create_view_template(void)
|
|
{
|
|
OPENFILENAMEA ofn = {0};
|
|
char filename[1024] = {0};
|
|
DWORD ret;
|
|
|
|
ofn.lStructSize = sizeof(ofn);
|
|
ofn.lpstrFile = filename;
|
|
ofn.nMaxFile = 1042;
|
|
ofn.lpfnHook = (LPOFNHOOKPROC)template_hook;
|
|
ofn.Flags = OFN_ENABLEHOOK | OFN_EXPLORER| OFN_ENABLETEMPLATE;
|
|
ofn.hInstance = GetModuleHandleA(NULL);
|
|
ofn.lpTemplateName = "template1";
|
|
ofn.lpstrFilter="text\0*.txt\0All\0*\0\0";
|
|
ret = GetOpenFileNameA(&ofn);
|
|
ok(!ret, "GetOpenFileNameA returned %#x\n", ret);
|
|
ret = CommDlgExtendedError();
|
|
ok(!ret, "CommDlgExtendedError returned %#x\n", ret);
|
|
}
|
|
|
|
START_TEST(filedlg)
|
|
{
|
|
test_DialogCancel();
|
|
test_create_view_window2();
|
|
test_create_view_template();
|
|
}
|