409 lines
15 KiB
C
409 lines
15 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 = 1024;
|
|
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 = 1024;
|
|
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);
|
|
}
|
|
|
|
/* test cases for resizing of the file dialog */
|
|
struct {
|
|
DWORD flags;
|
|
int resize_init; /* change in CDN_INITDONE handler */
|
|
int resize_folderchg; /* change in CDN_FOLDERCHANGE handler */
|
|
int resize_timer1; /* change in first WM_TIMER handler */
|
|
int resize_check; /* expected change (in second WM_TIMER handler) */
|
|
BOOL todo; /* mark that test todo_wine */
|
|
} resize_testcases[] = {
|
|
{ 0 , 10, 10, 10, 30,FALSE}, /* 0 */
|
|
{ 0 ,-10,-10,-10,-30,FALSE},
|
|
{ OFN_ENABLESIZING , 0, 0, 0, 0,FALSE},
|
|
{ OFN_ENABLESIZING , 0, 0,-10, 0,FALSE},
|
|
{ OFN_ENABLESIZING , 0, 0, 10, 10,FALSE},
|
|
{ OFN_ENABLESIZING , 0,-10, 0, 10, TRUE}, /* 5 */
|
|
{ OFN_ENABLESIZING , 0, 10, 0, 10,FALSE},
|
|
{ OFN_ENABLESIZING ,-10, 0, 0, 10, TRUE},
|
|
{ OFN_ENABLESIZING , 10, 0, 0, 10,FALSE},
|
|
/* mark the end */
|
|
{ 0xffffffff }
|
|
};
|
|
|
|
static LONG_PTR WINAPI resize_template_hook(HWND dlg, UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
static RECT initrc, rc;
|
|
static int index, count;
|
|
HWND parent = GetParent( dlg);
|
|
int resize;
|
|
switch( msg)
|
|
{
|
|
case WM_INITDIALOG:
|
|
{
|
|
DWORD style;
|
|
|
|
index = ((OPENFILENAME*)lParam)->lCustData;
|
|
count = 0;
|
|
/* test style */
|
|
style = GetWindowLong( parent, GWL_STYLE);
|
|
if( resize_testcases[index].flags & OFN_ENABLESIZING)
|
|
if( !(style & WS_SIZEBOX)) {
|
|
win_skip( "OFN_ENABLESIZING flag not supported.\n");
|
|
PostMessage( parent, WM_COMMAND, IDCANCEL, 0);
|
|
} else
|
|
ok( style & WS_SIZEBOX,
|
|
"testid %d: dialog should have a WS_SIZEBOX style.\n", index);
|
|
else
|
|
ok( !(style & WS_SIZEBOX),
|
|
"testid %d: dialog should not have a WS_SIZEBOX style.\n", index);
|
|
break;
|
|
}
|
|
case WM_NOTIFY:
|
|
{
|
|
if(( (LPNMHDR)lParam)->code == CDN_INITDONE){
|
|
GetWindowRect( parent, &initrc);
|
|
if( (resize = resize_testcases[index].resize_init)){
|
|
MoveWindow( parent, initrc.left,initrc.top, initrc.right - initrc.left + resize,
|
|
initrc.bottom - initrc.top + resize, TRUE);
|
|
}
|
|
} else if(( (LPNMHDR)lParam)->code == CDN_FOLDERCHANGE){
|
|
if( (resize = resize_testcases[index].resize_folderchg)){
|
|
GetWindowRect( parent, &rc);
|
|
MoveWindow( parent, rc.left,rc.top, rc.right - rc.left + resize,
|
|
rc.bottom - rc.top + resize, TRUE);
|
|
}
|
|
SetTimer( dlg, 0, 100, 0);
|
|
}
|
|
break;
|
|
}
|
|
case WM_TIMER:
|
|
{
|
|
if( count == 0){
|
|
if( (resize = resize_testcases[index].resize_timer1)){
|
|
GetWindowRect( parent, &rc);
|
|
MoveWindow( parent, rc.left,rc.top, rc.right - rc.left + resize,
|
|
rc.bottom - rc.top + resize, TRUE);
|
|
}
|
|
} else if( count == 1){
|
|
resize = resize_testcases[index].resize_check;
|
|
GetWindowRect( parent, &rc);
|
|
if( resize_testcases[index].todo){
|
|
todo_wine {
|
|
ok( resize == rc.right - rc.left - initrc.right + initrc.left,
|
|
"testid %d size-x change %d expected %d\n", index,
|
|
rc.right - rc.left - initrc.right + initrc.left, resize);
|
|
ok( resize == rc.bottom - rc.top - initrc.bottom + initrc.top,
|
|
"testid %d size-y change %d expected %d\n", index,
|
|
rc.bottom - rc.top - initrc.bottom + initrc.top, resize);
|
|
}
|
|
}else{
|
|
ok( resize == rc.right - rc.left - initrc.right + initrc.left,
|
|
"testid %d size-x change %d expected %d\n", index,
|
|
rc.right - rc.left - initrc.right + initrc.left, resize);
|
|
ok( resize == rc.bottom - rc.top - initrc.bottom + initrc.top,
|
|
"testid %d size-y change %d expected %d\n", index,
|
|
rc.bottom - rc.top - initrc.bottom + initrc.top, resize);
|
|
}
|
|
KillTimer( dlg, 0);
|
|
PostMessage( parent, WM_COMMAND, IDCANCEL, 0);
|
|
}
|
|
count++;
|
|
}
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static void test_resize(void)
|
|
{
|
|
OPENFILENAME ofn = { sizeof(OPENFILENAME)};
|
|
char filename[1024] = {0};
|
|
DWORD ret;
|
|
int i;
|
|
|
|
ofn.lpstrFile = filename;
|
|
ofn.nMaxFile = 1024;
|
|
ofn.lpfnHook = (LPOFNHOOKPROC) resize_template_hook;
|
|
ofn.hInstance = GetModuleHandle(NULL);
|
|
ofn.lpTemplateName = "template_sz";
|
|
for( i = 0; resize_testcases[i].flags != 0xffffffff; i++) {
|
|
ofn.lCustData = i;
|
|
ofn.Flags = resize_testcases[i].flags |
|
|
OFN_ENABLEHOOK | OFN_EXPLORER| OFN_ENABLETEMPLATE ;
|
|
ret = GetOpenFileName(&ofn);
|
|
ok(!ret, "GetOpenFileName 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();
|
|
test_resize();
|
|
}
|