mirror of
				https://github.com/winfsp/winfsp.git
				synced 2025-10-29 11:08:37 -05:00 
			
		
		
		
	tst: winfsp-tests: exec-test
This commit is contained in:
		| @@ -508,7 +508,8 @@ L: | |||||||
|  |  | ||||||
| "%ProjRoot%\build\VStudio\build\%Configuration%\winfsp-tests-%1.exe" ^ | "%ProjRoot%\build\VStudio\build\%Configuration%\winfsp-tests-%1.exe" ^ | ||||||
|     --external --resilient --case-insensitive-cmp --share-prefix="\passthrough\%TMP::=$%\passthrough-%1\test" ^ |     --external --resilient --case-insensitive-cmp --share-prefix="\passthrough\%TMP::=$%\passthrough-%1\test" ^ | ||||||
|     -create_allocation_test -getfileinfo_name_test -rename_flipflop_test -rename_mmap_test -reparse* -stream* |     -create_allocation_test -getfileinfo_name_test -rename_flipflop_test -rename_mmap_test -exec_rename_dir_test ^ | ||||||
|  |     -reparse* -stream* | ||||||
| if !ERRORLEVEL! neq 0 set SamplePassthroughExit=1 | if !ERRORLEVEL! neq 0 set SamplePassthroughExit=1 | ||||||
|  |  | ||||||
| popd | popd | ||||||
| @@ -547,7 +548,7 @@ L: | |||||||
| "%ProjRoot%\build\VStudio\build\%Configuration%\winfsp-tests-%1.exe" ^ | "%ProjRoot%\build\VStudio\build\%Configuration%\winfsp-tests-%1.exe" ^ | ||||||
|     --external --resilient --case-insensitive-cmp --share-prefix="\passthrough-fuse\%TMP::=$%\passthrough-fuse-%1\test" ^ |     --external --resilient --case-insensitive-cmp --share-prefix="\passthrough-fuse\%TMP::=$%\passthrough-fuse-%1\test" ^ | ||||||
|     -create_allocation_test -create_notraverse_test -create_backup_test -create_restore_test -create_namelen_test ^ |     -create_allocation_test -create_notraverse_test -create_backup_test -create_restore_test -create_namelen_test ^ | ||||||
|     -getfileinfo_name_test -setfileinfo_test -delete_access_test -delete_mmap_test -rename_flipflop_test -rename_mmap_test -setsecurity_test ^ |     -getfileinfo_name_test -setfileinfo_test -delete_access_test -delete_mmap_test -rename_flipflop_test -rename_mmap_test -setsecurity_test -exec_rename_dir_test ^ | ||||||
|     -reparse* -stream* |     -reparse* -stream* | ||||||
| if !ERRORLEVEL! neq 0 set SamplePassthroughExit=1 | if !ERRORLEVEL! neq 0 set SamplePassthroughExit=1 | ||||||
|  |  | ||||||
|   | |||||||
| @@ -283,9 +283,62 @@ static void exec_rename_test(void) | |||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | static void exec_rename_dir_dotest(ULONG Flags, PWSTR Prefix, ULONG FileInfoTimeout) | ||||||
|  | { | ||||||
|  |     void *memfs = memfs_start_ex(Flags, FileInfoTimeout); | ||||||
|  |  | ||||||
|  |     WCHAR Dir1Path[MAX_PATH], Dir2Path[MAX_PATH], FilePath[MAX_PATH]; | ||||||
|  |     HANDLE Process; | ||||||
|  |  | ||||||
|  |     StringCbPrintfW(Dir1Path, sizeof Dir1Path, L"%s%s\\dir1", | ||||||
|  |         Prefix ? L"" : L"\\\\?\\GLOBALROOT", Prefix ? Prefix : memfs_volumename(memfs)); | ||||||
|  |  | ||||||
|  |     StringCbPrintfW(Dir2Path, sizeof Dir2Path, L"%s%s\\dir2", | ||||||
|  |         Prefix ? L"" : L"\\\\?\\GLOBALROOT", Prefix ? Prefix : memfs_volumename(memfs)); | ||||||
|  |  | ||||||
|  |     StringCbPrintfW(FilePath, sizeof FilePath, L"%s%s\\dir1\\helper.exe", | ||||||
|  |         Prefix ? L"" : L"\\\\?\\GLOBALROOT", Prefix ? Prefix : memfs_volumename(memfs)); | ||||||
|  |  | ||||||
|  |     ASSERT(CreateDirectoryW(Dir1Path, 0)); | ||||||
|  |  | ||||||
|  |     ExecHelper(FilePath, 1000, &Process); | ||||||
|  |  | ||||||
|  |     ASSERT(MoveFileExW(Dir1Path, Dir2Path, MOVEFILE_REPLACE_EXISTING)); | ||||||
|  |     ASSERT(MoveFileExW(Dir2Path, Dir1Path, MOVEFILE_REPLACE_EXISTING)); | ||||||
|  |  | ||||||
|  |     WaitHelper(Process, 1000); | ||||||
|  |  | ||||||
|  |     ASSERT(DeleteFileW(FilePath)); | ||||||
|  |  | ||||||
|  |     ASSERT(RemoveDirectoryW(Dir1Path)); | ||||||
|  |  | ||||||
|  |     memfs_stop(memfs); | ||||||
|  | } | ||||||
|  |  | ||||||
|  | static void exec_rename_dir_test(void) | ||||||
|  | { | ||||||
|  |     if (NtfsTests) | ||||||
|  |     { | ||||||
|  |         WCHAR DirBuf[MAX_PATH]; | ||||||
|  |         GetTestDirectory(DirBuf); | ||||||
|  |         exec_rename_dir_dotest(-1, DirBuf, 0); | ||||||
|  |     } | ||||||
|  |     if (WinFspDiskTests) | ||||||
|  |     { | ||||||
|  |         exec_rename_dir_dotest(MemfsDisk, 0, 0); | ||||||
|  |         exec_rename_dir_dotest(MemfsDisk, 0, 1000); | ||||||
|  |     } | ||||||
|  |     if (WinFspNetTests) | ||||||
|  |     { | ||||||
|  |         exec_rename_dir_dotest(MemfsNet, L"\\\\memfs\\share", 0); | ||||||
|  |         exec_rename_dir_dotest(MemfsNet, L"\\\\memfs\\share", 1000); | ||||||
|  |     } | ||||||
|  | } | ||||||
|  |  | ||||||
| void exec_tests(void) | void exec_tests(void) | ||||||
| { | { | ||||||
|     TEST(exec_test); |     TEST(exec_test); | ||||||
|     TEST(exec_delete_test); |     TEST(exec_delete_test); | ||||||
|     TEST(exec_rename_test); |     TEST(exec_rename_test); | ||||||
|  |     TEST(exec_rename_dir_test); | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user