2008-04-10 13:01:38 +02:00
|
|
|
/*
|
2008-06-23 21:08:01 +02:00
|
|
|
* Tests for special shell folders
|
2008-04-10 13:01:38 +02:00
|
|
|
*
|
|
|
|
* Copyright 2008 Robert Shearman for CodeWeavers
|
2008-06-23 21:08:15 +02:00
|
|
|
* Copyright 2008 Owen Rudge
|
2008-04-10 13:01:38 +02:00
|
|
|
*
|
|
|
|
* 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 <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#include "shellapi.h"
|
|
|
|
#include "shlobj.h"
|
|
|
|
|
|
|
|
#include "wine/test.h"
|
|
|
|
|
2008-06-23 21:08:01 +02:00
|
|
|
/* Tests for My Network Places */
|
2008-04-10 13:01:38 +02:00
|
|
|
static void test_parse_for_entire_network(void)
|
|
|
|
{
|
2008-12-02 08:50:49 +01:00
|
|
|
static WCHAR my_network_places_path[] = {
|
|
|
|
':',':','{','2','0','8','D','2','C','6','0','-','3','A','E','A','-',
|
|
|
|
'1','0','6','9','-','A','2','D','7','-','0','8','0','0','2','B','3','0','3','0','9','D','}', 0 };
|
2008-12-02 08:25:20 +01:00
|
|
|
static WCHAR entire_network_path[] = {
|
2008-04-10 13:01:38 +02:00
|
|
|
':',':','{','2','0','8','D','2','C','6','0','-','3','A','E','A','-',
|
|
|
|
'1','0','6','9','-','A','2','D','7','-','0','8','0','0','2','B','3','0','3','0','9','D',
|
|
|
|
'}','\\','E','n','t','i','r','e','N','e','t','w','o','r','k',0 };
|
|
|
|
IShellFolder *psfDesktop;
|
|
|
|
HRESULT hr;
|
|
|
|
DWORD eaten = 0xdeadbeef;
|
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
DWORD attr = ~0;
|
|
|
|
DWORD expected_attr;
|
2008-07-01 07:48:38 +02:00
|
|
|
DWORD alter_attr;
|
2008-04-10 13:01:38 +02:00
|
|
|
|
|
|
|
hr = SHGetDesktopFolder(&psfDesktop);
|
|
|
|
ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
|
|
|
|
|
2008-12-02 08:50:49 +01:00
|
|
|
hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, my_network_places_path, &eaten, &pidl, &attr);
|
|
|
|
ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
|
|
|
|
todo_wine
|
|
|
|
ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
|
|
|
|
expected_attr = SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_DROPTARGET|SFGAO_HASPROPSHEET|SFGAO_CANRENAME|SFGAO_CANLINK;
|
|
|
|
todo_wine
|
|
|
|
ok((attr == expected_attr) || /* Win9x, NT4 */
|
|
|
|
(attr == (expected_attr | SFGAO_STREAM)) || /* W2K */
|
|
|
|
(attr == (expected_attr | SFGAO_CANDELETE)) || /* XP, W2K3 */
|
|
|
|
(attr == (expected_attr | SFGAO_CANDELETE | SFGAO_NONENUMERATED)), /* Vista */
|
|
|
|
"Unexpected attributes : %08x\n", attr);
|
|
|
|
|
|
|
|
ILFree(pidl);
|
|
|
|
|
|
|
|
/* Start clean again */
|
|
|
|
eaten = 0xdeadbeef;
|
|
|
|
attr = ~0;
|
|
|
|
|
2008-12-02 08:25:20 +01:00
|
|
|
hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, entire_network_path, &eaten, &pidl, &attr);
|
2008-12-02 08:50:49 +01:00
|
|
|
if (hr == HRESULT_FROM_WIN32(ERROR_BAD_NET_NAME) || hr == HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER))
|
|
|
|
{
|
|
|
|
win_skip("'EntireNetwork' is not available on Win9x, NT4 and Vista\n");
|
|
|
|
return;
|
|
|
|
}
|
2008-04-10 13:01:38 +02:00
|
|
|
ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
|
|
|
|
todo_wine
|
|
|
|
ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
|
|
|
|
expected_attr = SFGAO_HASSUBFOLDER|SFGAO_FOLDER|SFGAO_FILESYSANCESTOR|SFGAO_STORAGEANCESTOR|SFGAO_HASPROPSHEET|SFGAO_CANLINK;
|
2008-07-01 07:48:38 +02:00
|
|
|
alter_attr = (expected_attr & (~SFGAO_STORAGEANCESTOR)) | SFGAO_STREAM;
|
2008-04-10 13:01:38 +02:00
|
|
|
todo_wine
|
2008-07-01 07:48:38 +02:00
|
|
|
ok(attr == expected_attr ||
|
|
|
|
attr == alter_attr, /* win2k */
|
|
|
|
"attr should be 0x%x or 0x%x, not 0x%x\n", expected_attr, alter_attr, attr);
|
2008-04-10 13:01:38 +02:00
|
|
|
|
|
|
|
ILFree(pidl);
|
|
|
|
}
|
|
|
|
|
2008-06-23 21:08:15 +02:00
|
|
|
/* Tests for Control Panel */
|
|
|
|
static void test_parse_for_control_panel(void)
|
|
|
|
{
|
|
|
|
/* path of My Computer\Control Panel */
|
2008-12-02 08:25:20 +01:00
|
|
|
static WCHAR control_panel_path[] = {
|
2008-06-23 21:08:15 +02:00
|
|
|
':',':','{','2','0','D','0','4','F','E','0','-','3','A','E','A','-','1','0','6','9','-','A','2','D','8','-','0','8','0','0','2','B','3','0','3','0','9','D','}','\\',
|
|
|
|
':',':','{','2','1','E','C','2','0','2','0','-','3','A','E','A','-','1','0','6','9','-','A','2','D','D','-','0','8','0','0','2','B','3','0','3','0','9','D','}', 0 };
|
|
|
|
IShellFolder *psfDesktop;
|
|
|
|
HRESULT hr;
|
|
|
|
DWORD eaten = 0xdeadbeef;
|
|
|
|
LPITEMIDLIST pidl;
|
|
|
|
DWORD attr = ~0;
|
|
|
|
|
|
|
|
hr = SHGetDesktopFolder(&psfDesktop);
|
|
|
|
ok(hr == S_OK, "SHGetDesktopFolder failed with error 0x%x\n", hr);
|
|
|
|
|
2008-12-02 08:25:20 +01:00
|
|
|
hr = IShellFolder_ParseDisplayName(psfDesktop, NULL, NULL, control_panel_path, &eaten, &pidl, &attr);
|
2008-06-23 21:08:15 +02:00
|
|
|
ok(hr == S_OK, "IShellFolder_ParseDisplayName failed with error 0x%x\n", hr);
|
|
|
|
todo_wine ok(eaten == 0xdeadbeef, "eaten should not have been set to %u\n", eaten);
|
2008-12-04 11:39:09 +01:00
|
|
|
todo_wine
|
|
|
|
ok((attr == (SFGAO_CANLINK | SFGAO_FOLDER)) || /* Win9x, NT4 */
|
|
|
|
(attr == (SFGAO_CANLINK | SFGAO_FOLDER | SFGAO_HASSUBFOLDER | SFGAO_STREAM)) || /* W2K */
|
|
|
|
(attr == (SFGAO_CANLINK | SFGAO_FOLDER | SFGAO_HASSUBFOLDER)) || /* W2K, XP, W2K3 */
|
|
|
|
(attr == (SFGAO_CANLINK | SFGAO_NONENUMERATED)) || /* Vista */
|
|
|
|
(attr == SFGAO_CANLINK), /* Vista, W2K8 */
|
|
|
|
"Unexpected attributes : %08x\n", attr);
|
2008-06-23 21:08:15 +02:00
|
|
|
|
|
|
|
ILFree(pidl);
|
|
|
|
}
|
|
|
|
|
2008-04-10 13:01:38 +02:00
|
|
|
|
2008-06-23 21:08:01 +02:00
|
|
|
START_TEST(shfldr_special)
|
2008-04-10 13:01:38 +02:00
|
|
|
{
|
|
|
|
test_parse_for_entire_network();
|
2008-06-23 21:08:15 +02:00
|
|
|
test_parse_for_control_panel();
|
2008-04-10 13:01:38 +02:00
|
|
|
}
|