2 * Unit test of the ShellExecute function.
4 * Copyright 2005 Francois Gouget 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
22 * - test the default verb selection
23 * - test selection of an alternate class
24 * - try running executables in more ways
25 * - try passing arguments to executables
26 * - ShellExecute("foo.shlexec") with no path should work if foo.shlexec is
28 * - test associations that use %l, %L or "%1" instead of %1
29 * - we may want to test ShellExecuteEx() instead of ShellExecute()
30 * and then we could also check its return value
31 * - ShellExecuteEx() also calls SetLastError() with meaningful values which
43 #include "wine/test.h"
45 #include "shell32_test.h"
48 static char argv0[MAX_PATH];
51 static char tmpdir[MAX_PATH];
52 static char child_file[MAX_PATH];
53 static DLLVERSIONINFO dllver;
58 * ShellExecute wrappers
61 static void dump_child(void);
64 static void init_event(const char* child_file)
67 event_name=strrchr(child_file, '\\')+1;
68 hEvent=CreateEvent(NULL, FALSE, FALSE, event_name);
71 static void strcat_param(char* str, const char* param)
85 static char shell_call[2048]="";
86 static int shell_execute(LPCSTR operation, LPCSTR file, LPCSTR parameters, LPCSTR directory)
90 strcpy(shell_call, "ShellExecute(");
91 strcat_param(shell_call, operation);
92 strcat(shell_call, ", ");
93 strcat_param(shell_call, file);
94 strcat(shell_call, ", ");
95 strcat_param(shell_call, parameters);
96 strcat(shell_call, ", ");
97 strcat_param(shell_call, directory);
98 strcat(shell_call, ")");
99 if (winetest_debug > 1)
100 trace("%s\n", shell_call);
102 DeleteFile(child_file);
103 SetLastError(0xcafebabe);
105 /* FIXME: We cannot use ShellExecuteEx() here because if there is no
106 * association it displays the 'Open With' dialog and I could not find
107 * a flag to prevent this.
109 rc=(int)ShellExecute(NULL, operation, file, parameters, directory,
115 wait_rc=WaitForSingleObject(hEvent, 5000);
116 ok(wait_rc==WAIT_OBJECT_0, "WaitForSingleObject returned %d\n", wait_rc);
118 /* The child process may have changed the result file, so let profile
119 * functions know about it
121 WritePrivateProfileStringA(NULL, NULL, NULL, child_file);
128 static int shell_execute_ex(DWORD mask, LPCSTR operation, LPCSTR file,
129 LPCSTR parameters, LPCSTR directory)
131 SHELLEXECUTEINFO sei;
135 strcpy(shell_call, "ShellExecuteEx(");
136 strcat_param(shell_call, operation);
137 strcat(shell_call, ", ");
138 strcat_param(shell_call, file);
139 strcat(shell_call, ", ");
140 strcat_param(shell_call, parameters);
141 strcat(shell_call, ", ");
142 strcat_param(shell_call, directory);
143 strcat(shell_call, ")");
144 if (winetest_debug > 1)
145 trace("%s\n", shell_call);
147 sei.cbSize=sizeof(sei);
148 sei.fMask=SEE_MASK_NOCLOSEPROCESS | mask;
150 sei.lpVerb=operation;
152 sei.lpParameters=parameters;
153 sei.lpDirectory=directory;
154 sei.nShow=SW_SHOWNORMAL;
155 sei.hInstApp=NULL; /* Out */
161 sei.hProcess=NULL; /* Out */
163 DeleteFile(child_file);
164 SetLastError(0xcafebabe);
165 success=ShellExecuteEx(&sei);
166 rc=(int)sei.hInstApp;
167 ok((success && rc > 32) || (!success && rc <= 32),
168 "%s rc=%d and hInstApp=%d is not allowed\n", shell_call, success, rc);
173 if (sei.hProcess!=NULL)
175 wait_rc=WaitForSingleObject(sei.hProcess, 5000);
176 ok(wait_rc==WAIT_OBJECT_0, "WaitForSingleObject(hProcess) returned %d\n", wait_rc);
178 wait_rc=WaitForSingleObject(hEvent, 5000);
179 ok(wait_rc==WAIT_OBJECT_0, "WaitForSingleObject returned %d\n", wait_rc);
181 /* The child process may have changed the result file, so let profile
182 * functions know about it
184 WritePrivateProfileStringA(NULL, NULL, NULL, child_file);
195 * Functions to create / delete associations wrappers
199 static void create_test_association(const char* extension)
201 HKEY hkey, hkey_shell;
202 char class[MAX_PATH];
205 sprintf(class, "shlexec%s", extension);
206 rc=RegCreateKeyEx(HKEY_CLASSES_ROOT, extension, 0, NULL, 0, KEY_SET_VALUE,
208 assert(rc==ERROR_SUCCESS);
209 rc=RegSetValueEx(hkey, NULL, 0, REG_SZ, (LPBYTE) class, strlen(class)+1);
210 assert(rc==ERROR_SUCCESS);
213 rc=RegCreateKeyEx(HKEY_CLASSES_ROOT, class, 0, NULL, 0,
214 KEY_CREATE_SUB_KEY | KEY_ENUMERATE_SUB_KEYS, NULL, &hkey, NULL);
215 assert(rc==ERROR_SUCCESS);
216 rc=RegCreateKeyEx(hkey, "shell", 0, NULL, 0,
217 KEY_CREATE_SUB_KEY, NULL, &hkey_shell, NULL);
218 assert(rc==ERROR_SUCCESS);
220 CloseHandle(hkey_shell);
223 static void delete_test_association(const char* extension)
225 char class[MAX_PATH];
227 sprintf(class, "shlexec%s", extension);
228 SHDeleteKey(HKEY_CLASSES_ROOT, class);
229 SHDeleteKey(HKEY_CLASSES_ROOT, extension);
232 static void create_test_verb(const char* extension, const char* verb,
233 int rawcmd, const char* cmdtail)
235 HKEY hkey_shell, hkey_verb, hkey_cmd;
236 char shell[MAX_PATH];
240 sprintf(shell, "shlexec%s\\shell", extension);
241 rc=RegOpenKeyEx(HKEY_CLASSES_ROOT, shell, 0,
242 KEY_CREATE_SUB_KEY, &hkey_shell);
243 assert(rc==ERROR_SUCCESS);
244 rc=RegCreateKeyEx(hkey_shell, verb, 0, NULL, 0, KEY_CREATE_SUB_KEY,
245 NULL, &hkey_verb, NULL);
246 assert(rc==ERROR_SUCCESS);
247 rc=RegCreateKeyEx(hkey_verb, "command", 0, NULL, 0, KEY_SET_VALUE,
248 NULL, &hkey_cmd, NULL);
249 assert(rc==ERROR_SUCCESS);
253 rc=RegSetValueEx(hkey_cmd, NULL, 0, REG_SZ, (LPBYTE)cmdtail, strlen(cmdtail)+1);
257 cmd=malloc(strlen(argv0)+10+strlen(child_file)+2+strlen(cmdtail)+1);
258 sprintf(cmd,"%s shlexec \"%s\" %s", argv0, child_file, cmdtail);
259 rc=RegSetValueEx(hkey_cmd, NULL, 0, REG_SZ, (LPBYTE)cmd, strlen(cmd)+1);
260 assert(rc==ERROR_SUCCESS);
264 CloseHandle(hkey_shell);
265 CloseHandle(hkey_verb);
266 CloseHandle(hkey_cmd);
273 * Functions to check that the child process was started just right
274 * (borrowed from dlls/kernel32/tests/process.c)
278 static const char* encodeA(const char* str)
280 static char encoded[2*1024+1];
285 len = strlen(str) + 1;
286 if (len >= sizeof(encoded)/2)
288 fprintf(stderr, "string is too long!\n");
292 for (i = 0; i < len; i++)
293 sprintf(&ptr[i * 2], "%02x", (unsigned char)str[i]);
298 static unsigned decode_char(char c)
300 if (c >= '0' && c <= '9') return c - '0';
301 if (c >= 'a' && c <= 'f') return c - 'a' + 10;
302 assert(c >= 'A' && c <= 'F');
306 static char* decodeA(const char* str)
308 static char decoded[1024];
312 len = strlen(str) / 2;
313 if (!len--) return NULL;
314 if (len >= sizeof(decoded))
316 fprintf(stderr, "string is too long!\n");
320 for (i = 0; i < len; i++)
321 ptr[i] = (decode_char(str[2 * i]) << 4) | decode_char(str[2 * i + 1]);
326 static void childPrintf(HANDLE h, const char* fmt, ...)
332 va_start(valist, fmt);
333 vsprintf(buffer, fmt, valist);
335 WriteFile(h, buffer, strlen(buffer), &w, NULL);
338 static void doChild(int argc, char** argv)
345 hFile=CreateFileA(filename, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0);
346 if (hFile == INVALID_HANDLE_VALUE)
350 childPrintf(hFile, "[Arguments]\r\n");
351 if (winetest_debug > 2)
352 trace("argcA=%d\n", argc);
353 childPrintf(hFile, "argcA=%d\r\n", argc);
354 for (i = 0; i < argc; i++)
356 if (winetest_debug > 2)
357 trace("argvA%d=%s\n", i, argv[i]);
358 childPrintf(hFile, "argvA%d=%s\r\n", i, encodeA(argv[i]));
362 init_event(filename);
367 static char* getChildString(const char* sect, const char* key)
372 GetPrivateProfileStringA(sect, key, "-", buf, sizeof(buf), child_file);
373 if (buf[0] == '\0' || (buf[0] == '-' && buf[1] == '\0')) return NULL;
374 assert(!(strlen(buf) & 1));
379 static void dump_child(void)
381 if (winetest_debug > 1)
387 c=GetPrivateProfileIntA("Arguments", "argcA", -1, child_file);
388 trace("argcA=%d\n",c);
391 sprintf(key, "argvA%d", i);
392 str=getChildString("Arguments", key);
393 trace("%s=%s\n", key, str);
398 static int StrCmpPath(const char* s1, const char* s2)
400 if (!s1 && !s2) return 0;
411 if ((*s1=='/' || *s1=='\\') && (*s2=='/' || *s2=='\\'))
413 while (*s1=='/' || *s1=='\\')
415 while (*s2=='/' || *s2=='\\')
418 else if (toupper(*s1)==toupper(*s2))
435 static int _okChildString(const char* file, int line, const char* key, const char* expected)
438 result=getChildString("Arguments", key);
439 return ok_(file, line)(lstrcmpiA(result, expected) == 0,
440 "%s expected '%s', got '%s'\n", key, expected, result);
443 static int _okChildPath(const char* file, int line, const char* key, const char* expected)
446 result=getChildString("Arguments", key);
447 return ok_(file, line)(StrCmpPath(result, expected) == 0,
448 "%s expected '%s', got '%s'\n", key, expected, result);
451 static int _okChildInt(const char* file, int line, const char* key, int expected)
454 result=GetPrivateProfileIntA("Arguments", key, expected, child_file);
455 return ok_(file, line)(result == expected,
456 "%s expected %d, but got %d\n", key, expected, result);
459 #define okChildString(key, expected) _okChildString(__FILE__, __LINE__, (key), (expected))
460 #define okChildPath(key, expected) _okChildPath(__FILE__, __LINE__, (key), (expected))
461 #define okChildInt(key, expected) _okChildInt(__FILE__, __LINE__, (key), (expected))
471 static const char* testfiles[]=
473 "%s\\test file.shlexec",
474 "%s\\%%nasty%% $file.shlexec",
475 "%s\\test file.noassoc",
476 "%s\\test file.noassoc.shlexec",
477 "%s\\test file.shlexec.noassoc",
478 "%s\\test_shortcut_shlexec.lnk",
479 "%s\\test_shortcut_exe.lnk",
481 "%s\\test file.shlfoo",
483 "%s\\masked file.shlexec",
491 const char* basename;
496 static filename_tests_t filename_tests[]=
498 /* Test bad / nonexistent filenames */
499 {NULL, "%s\\nonexistent.shlexec", 0x11, SE_ERR_FNF},
500 {NULL, "%s\\nonexistent.noassoc", 0x11, SE_ERR_FNF},
503 {NULL, "%s\\test file.shlexec", 0x0, 33},
504 {NULL, "%s\\test file.shlexec.", 0x0, 33},
505 {NULL, "%s\\%%nasty%% $file.shlexec", 0x0, 33},
506 {NULL, "%s/test file.shlexec", 0x0, 33},
508 /* Test filenames with no association */
509 {NULL, "%s\\test file.noassoc", 0x0, SE_ERR_NOASSOC},
511 /* Test double extensions */
512 {NULL, "%s\\test file.noassoc.shlexec", 0x0, 33},
513 {NULL, "%s\\test file.shlexec.noassoc", 0x0, SE_ERR_NOASSOC},
515 /* Test alternate verbs */
516 {"LowerL", "%s\\nonexistent.shlexec", 0x11, SE_ERR_FNF},
517 {"LowerL", "%s\\test file.noassoc", 0x0, SE_ERR_NOASSOC},
519 {"QuotedLowerL", "%s\\test file.shlexec", 0x0, 33},
520 {"QuotedUpperL", "%s\\test file.shlexec", 0x0, 33},
522 /* Test file masked due to space */
523 {NULL, "%s\\masked file.shlexec", 0x1, 33},
524 /* Test if quoting prevents the masking */
525 {NULL, "%s\\masked file.shlexec", 0x40, 33},
530 static filename_tests_t noquotes_tests[]=
532 /* Test unquoted '%1' thingies */
533 {"NoQuotes", "%s\\test file.shlexec", 0xa, 33},
534 {"LowerL", "%s\\test file.shlexec", 0xa, 33},
535 {"UpperL", "%s\\test file.shlexec", 0xa, 33},
540 static void test_filename(void)
542 char filename[MAX_PATH];
543 const filename_tests_t* test;
548 while (test->basename)
550 sprintf(filename, test->basename, tmpdir);
551 if (strchr(filename, '/'))
561 if ((test->todo & 0x40)==0)
563 rc=shell_execute(test->verb, filename, NULL, NULL);
567 char quoted[MAX_PATH + 2];
568 sprintf(quoted, "\"%s\"", filename);
569 rc=shell_execute(test->verb, quoted, NULL, NULL);
573 if ((test->todo & 0x1)==0)
575 ok(rc==test->rc, "%s failed: rc=%d err=%d\n", shell_call,
580 ok(rc==test->rc, "%s failed: rc=%d err=%d\n", shell_call,
586 if ((test->todo & 0x2)==0)
588 okChildInt("argcA", 5);
592 okChildInt("argcA", 5);
594 verb=(test->verb ? test->verb : "Open");
595 if ((test->todo & 0x4)==0)
597 okChildString("argvA3", verb);
601 okChildString("argvA3", verb);
603 if ((test->todo & 0x8)==0)
605 okChildPath("argvA4", filename);
609 okChildPath("argvA4", filename);
616 while (test->basename)
618 sprintf(filename, test->basename, tmpdir);
619 rc=shell_execute(test->verb, filename, NULL, NULL);
622 if ((test->todo & 0x1)==0)
624 ok(rc==test->rc, "%s failed: rc=%d err=%d\n", shell_call,
629 ok(rc==test->rc, "%s failed: rc=%d err=%d\n", shell_call,
638 verb=(test->verb ? test->verb : "Open");
639 if ((test->todo & 0x4)==0)
641 okChildString("argvA3", verb);
645 okChildString("argvA3", verb);
654 space=strchr(str, ' ');
657 sprintf(attrib, "argvA%d", count);
658 if ((test->todo & 0x8)==0)
660 okChildPath(attrib, str);
664 okChildPath(attrib, str);
671 if ((test->todo & 0x2)==0)
673 okChildInt("argcA", count);
677 okChildInt("argcA", count);
683 if (dllver.dwMajorVersion != 0)
685 /* The more recent versions of shell32.dll accept quoted filenames
686 * while older ones (e.g. 4.00) don't. Still we want to test this
687 * because IE 6 depends on the new behavior.
688 * One day we may need to check the exact version of the dll but for
689 * now making sure DllGetVersion() is present is sufficient.
691 sprintf(filename, "\"%s\\test file.shlexec\"", tmpdir);
692 rc=shell_execute(NULL, filename, NULL, NULL);
693 ok(rc > 32, "%s failed: rc=%d err=%d\n", shell_call, rc,
695 okChildInt("argcA", 5);
696 okChildString("argvA3", "Open");
697 sprintf(filename, "%s\\test file.shlexec", tmpdir);
698 okChildPath("argvA4", filename);
702 static void test_find_executable(void)
704 char filename[MAX_PATH];
705 char command[MAX_PATH];
706 const filename_tests_t* test;
709 create_test_association(".sfe");
710 create_test_verb(".sfe", "Open", 1, "%1");
712 /* Don't test FindExecutable(..., NULL), it always crashes */
714 strcpy(command, "your word");
715 rc=(int)FindExecutableA(NULL, NULL, command);
716 ok(rc == SE_ERR_FNF || rc > 32 /* nt4 */, "FindExecutable(NULL) returned %d\n", rc);
717 ok(strcmp(command, "your word") != 0, "FindExecutable(NULL) returned command=[%s]\n", command);
719 strcpy(command, "your word");
720 rc=(int)FindExecutableA(tmpdir, NULL, command);
721 ok(rc == SE_ERR_NOASSOC /* >= win2000 */ || rc > 32 /* win98, nt4 */, "FindExecutable(NULL) returned %d\n", rc);
722 ok(strcmp(command, "your word") != 0, "FindExecutable(NULL) returned command=[%s]\n", command);
724 sprintf(filename, "%s\\test file.sfe", tmpdir);
725 rc=(int)FindExecutableA(filename, NULL, command);
726 ok(rc > 32, "FindExecutable(%s) returned %d\n", filename, rc);
727 /* Depending on the platform, command could be '%1' or 'test file.sfe' */
729 rc=(int)FindExecutableA("test file.sfe", tmpdir, command);
730 ok(rc > 32, "FindExecutable(%s) returned %d\n", filename, rc);
732 rc=(int)FindExecutableA("test file.sfe", NULL, command);
733 todo_wine ok(rc == SE_ERR_FNF, "FindExecutable(%s) returned %d\n", filename, rc);
735 delete_test_association(".sfe");
737 create_test_association(".shl");
738 create_test_verb(".shl", "Open", 0, "Open");
740 sprintf(filename, "%s\\test file.shl", tmpdir);
741 rc=(int)FindExecutableA(filename, NULL, command);
742 ok(rc == SE_ERR_FNF /* NT4 */ || rc > 32, "FindExecutable(%s) returned %d\n", filename, rc);
744 sprintf(filename, "%s\\test file.shlfoo", tmpdir);
745 rc=(int)FindExecutableA(filename, NULL, command);
747 delete_test_association(".shl");
751 /* On Windows XP and 2003 FindExecutable() is completely broken.
752 * Probably what it does is convert the filename to 8.3 format,
753 * which as a side effect converts the '.shlfoo' extension to '.shl',
754 * and then tries to find an association for '.shl'. This means it
755 * will normally fail on most extensions with more than 3 characters,
757 * Also it means we cannot do any other test.
759 trace("FindExecutable() is broken -> skipping 4+ character extension tests\n");
764 while (test->basename)
766 sprintf(filename, test->basename, tmpdir);
767 if (strchr(filename, '/'))
778 /* Win98 does not '\0'-terminate command! */
779 memset(command, '\0', sizeof(command));
780 rc=(int)FindExecutableA(filename, NULL, command);
783 if ((test->todo & 0x10)==0)
785 ok(rc==test->rc, "FindExecutable(%s) failed: rc=%d\n", filename, rc);
789 ok(rc==test->rc, "FindExecutable(%s) failed: rc=%d\n", filename, rc);
794 equal=strcmp(command, argv0) == 0 ||
795 /* NT4 returns an extra 0x8 character! */
796 (strlen(command) == strlen(argv0)+1 && strncmp(command, argv0, strlen(argv0)) == 0);
797 if ((test->todo & 0x20)==0)
799 ok(equal, "FindExecutable(%s) returned command='%s' instead of '%s'\n",
800 filename, command, argv0);
804 ok(equal, "FindExecutable(%s) returned command='%s' instead of '%s'\n",
805 filename, command, argv0);
813 static filename_tests_t lnk_tests[]=
815 /* Pass bad / nonexistent filenames as a parameter */
816 {NULL, "%s\\nonexistent.shlexec", 0xa, 33},
817 {NULL, "%s\\nonexistent.noassoc", 0xa, 33},
819 /* Pass regular paths as a parameter */
820 {NULL, "%s\\test file.shlexec", 0xa, 33},
821 {NULL, "%s/%%nasty%% $file.shlexec", 0xa, 33},
823 /* Pass filenames with no association as a parameter */
824 {NULL, "%s\\test file.noassoc", 0xa, 33},
829 static void test_lnks(void)
831 char filename[MAX_PATH];
832 char params[MAX_PATH];
833 const filename_tests_t* test;
836 sprintf(filename, "%s\\test_shortcut_shlexec.lnk", tmpdir);
837 rc=shell_execute_ex(SEE_MASK_NOZONECHECKS, NULL, filename, NULL, NULL);
838 ok(rc > 32, "%s failed: rc=%d err=%d\n", shell_call, rc,
840 okChildInt("argcA", 5);
841 okChildString("argvA3", "Open");
842 sprintf(filename, "%s\\test file.shlexec", tmpdir);
843 okChildPath("argvA4", filename);
845 sprintf(filename, "%s\\test_shortcut_exe.lnk", tmpdir);
846 rc=shell_execute_ex(SEE_MASK_NOZONECHECKS, NULL, filename, NULL, NULL);
847 ok(rc > 32, "%s failed: rc=%d err=%d\n", shell_call, rc,
849 okChildInt("argcA", 4);
850 okChildString("argvA3", "Lnk");
852 if (dllver.dwMajorVersion>=6)
855 /* Recent versions of shell32.dll accept '/'s in shortcut paths.
856 * Older versions don't or are quite buggy in this regard.
858 sprintf(filename, "%s\\test_shortcut_exe.lnk", tmpdir);
866 rc=shell_execute_ex(SEE_MASK_NOZONECHECKS, NULL, filename, NULL, NULL);
867 ok(rc > 32, "%s failed: rc=%d err=%d\n", shell_call, rc,
869 okChildInt("argcA", 4);
870 okChildString("argvA3", "Lnk");
873 sprintf(filename, "%s\\test_shortcut_exe.lnk", tmpdir);
875 while (test->basename)
878 sprintf(params+1, test->basename, tmpdir);
880 rc=shell_execute_ex(SEE_MASK_NOZONECHECKS, NULL, filename, params,
884 if ((test->todo & 0x1)==0)
886 ok(rc==test->rc, "%s failed: rc=%d err=%d\n", shell_call,
891 ok(rc==test->rc, "%s failed: rc=%d err=%d\n", shell_call,
896 if ((test->todo & 0x2)==0)
898 okChildInt("argcA", 5);
902 okChildInt("argcA", 5);
904 if ((test->todo & 0x4)==0)
906 okChildString("argvA3", "Lnk");
910 okChildString("argvA3", "Lnk");
912 sprintf(params, test->basename, tmpdir);
913 if ((test->todo & 0x8)==0)
915 okChildPath("argvA4", params);
919 okChildPath("argvA4", params);
927 static void test_exes(void)
929 char filename[MAX_PATH];
933 sprintf(params, "shlexec \"%s\" Exec", child_file);
935 /* We need NOZONECHECKS on Win2003 to block a dialog */
936 rc=shell_execute_ex(SEE_MASK_NOZONECHECKS, NULL, argv0, params,
938 ok(rc > 32, "%s returned %d\n", shell_call, rc);
939 okChildInt("argcA", 4);
940 okChildString("argvA3", "Exec");
942 sprintf(filename, "%s\\test file.noassoc", tmpdir);
943 if (CopyFile(argv0, filename, FALSE))
945 rc=shell_execute(NULL, filename, params, NULL);
947 ok(rc==SE_ERR_NOASSOC, "%s succeeded: rc=%d\n", shell_call, rc);
952 static void test_exes_long(void)
954 char filename[MAX_PATH];
956 char longparam[MAX_PATH];
959 for (rc = 0; rc < MAX_PATH; rc++)
960 longparam[rc]='a'+rc%26;
961 longparam[MAX_PATH-1]=0;
964 sprintf(params, "shlexec \"%s\" %s", child_file,longparam);
966 /* We need NOZONECHECKS on Win2003 to block a dialog */
967 rc=shell_execute_ex(SEE_MASK_NOZONECHECKS, NULL, argv0, params,
969 ok(rc > 32, "%s returned %d\n", shell_call, rc);
970 okChildInt("argcA", 4);
971 okChildString("argvA3", longparam);
973 sprintf(filename, "%s\\test file.noassoc", tmpdir);
974 if (CopyFile(argv0, filename, FALSE))
976 rc=shell_execute(NULL, filename, params, NULL);
978 ok(rc==SE_ERR_NOASSOC, "%s succeeded: rc=%d\n", shell_call, rc);
984 static void init_test(void)
987 HRESULT (WINAPI *pDllGetVersion)(DLLVERSIONINFO*);
988 char filename[MAX_PATH];
989 WCHAR lnkfile[MAX_PATH];
991 const char* const * testfile;
996 hdll=GetModuleHandleA("shell32.dll");
997 pDllGetVersion=(void*)GetProcAddress(hdll, "DllGetVersion");
1000 dllver.cbSize=sizeof(dllver);
1001 pDllGetVersion(&dllver);
1002 trace("major=%d minor=%d build=%d platform=%d\n",
1003 dllver.dwMajorVersion, dllver.dwMinorVersion,
1004 dllver.dwBuildNumber, dllver.dwPlatformID);
1008 memset(&dllver, 0, sizeof(dllver));
1011 r = CoInitialize(NULL);
1012 ok(SUCCEEDED(r), "CoInitialize failed (0x%08x)\n", r);
1016 rc=GetModuleFileName(NULL, argv0, sizeof(argv0));
1017 assert(rc!=0 && rc<sizeof(argv0));
1018 if (GetFileAttributes(argv0)==INVALID_FILE_ATTRIBUTES)
1020 strcat(argv0, ".so");
1021 ok(GetFileAttributes(argv0)!=INVALID_FILE_ATTRIBUTES,
1022 "unable to find argv0!\n");
1025 GetTempPathA(sizeof(tmpdir)/sizeof(*tmpdir), tmpdir);
1026 assert(GetTempFileNameA(tmpdir, "wt", 0, child_file)!=0);
1027 init_event(child_file);
1029 /* Set up the test files */
1035 sprintf(filename, *testfile, tmpdir);
1036 hfile=CreateFile(filename, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS,
1037 FILE_ATTRIBUTE_NORMAL, NULL);
1038 if (hfile==INVALID_HANDLE_VALUE)
1040 trace("unable to create '%s': err=%d\n", filename, GetLastError());
1047 /* Setup the test shortcuts */
1048 sprintf(filename, "%s\\test_shortcut_shlexec.lnk", tmpdir);
1049 MultiByteToWideChar(CP_ACP, 0, filename, -1, lnkfile, sizeof(lnkfile)/sizeof(*lnkfile));
1050 desc.description=NULL;
1052 sprintf(filename, "%s\\test file.shlexec", tmpdir);
1055 desc.arguments="ignored";
1060 create_lnk(lnkfile, &desc, 0);
1062 sprintf(filename, "%s\\test_shortcut_exe.lnk", tmpdir);
1063 MultiByteToWideChar(CP_ACP, 0, filename, -1, lnkfile, sizeof(lnkfile)/sizeof(*lnkfile));
1064 desc.description=NULL;
1068 sprintf(params, "shlexec \"%s\" Lnk", child_file);
1069 desc.arguments=params;
1074 create_lnk(lnkfile, &desc, 0);
1076 /* Create a basic association suitable for most tests */
1077 create_test_association(".shlexec");
1078 create_test_verb(".shlexec", "Open", 0, "Open \"%1\"");
1079 create_test_verb(".shlexec", "NoQuotes", 0, "NoQuotes %1");
1080 create_test_verb(".shlexec", "LowerL", 0, "LowerL %l");
1081 create_test_verb(".shlexec", "QuotedLowerL", 0, "QuotedLowerL \"%l\"");
1082 create_test_verb(".shlexec", "UpperL", 0, "UpperL %L");
1083 create_test_verb(".shlexec", "QuotedUpperL", 0, "QuotedUpperL \"%L\"");
1086 static void cleanup_test(void)
1088 char filename[MAX_PATH];
1089 const char* const * testfile;
1091 /* Delete the test files */
1095 sprintf(filename, *testfile, tmpdir);
1096 DeleteFile(filename);
1099 DeleteFile(child_file);
1101 /* Delete the test association */
1102 delete_test_association(".shlexec");
1104 CloseHandle(hEvent);
1112 myARGC = winetest_get_mainargs(&myARGV);
1115 doChild(myARGC, myARGV);
1122 test_find_executable();