Signed-off-by: Florian Eder <others.meder(a)gmail.com> --- programs/robocopy/tests/robocopy.c | 136 +++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) diff --git a/programs/robocopy/tests/robocopy.c b/programs/robocopy/tests/robocopy.c index 96d31d9e8c6..8c94311f74d 100644 --- a/programs/robocopy/tests/robocopy.c +++ b/programs/robocopy/tests/robocopy.c @@ -375,6 +375,110 @@ static void check_move_1_test(void) check_folder_and_delete(L"robocopy_destination", TRUE); } +static void check_wildcard_1_test(void) +{ + check_files_equal(L"robocopy_source\\fileA.a", L"robocopy_destination\\fileA.a", TRUE); + check_files_equal(L"robocopy_source\\fileB.b", L"robocopy_destination\\fileB.b", TRUE); + + check_file_and_delete(L"robocopy_source\\fileA.a", TRUE); + check_file_and_delete(L"robocopy_source\\fileB.b", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\fileC.c", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\fileD.d", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\folderD\\fileE.e", TRUE); + check_file_and_delete(L"robocopy_source\\folderB\\fileF.f", TRUE); + check_file_and_delete(L"robocopy_source\\folderB\\fileG.g", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA\\folderD", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA\\folderE", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA", TRUE); + check_folder_and_delete(L"robocopy_source\\folderB", TRUE); + check_folder_and_delete(L"robocopy_source\\folderC", TRUE); + check_folder_and_delete(L"robocopy_source", TRUE); + + check_file_and_delete(L"robocopy_destination\\fileA.a", TRUE); + check_file_and_delete(L"robocopy_destination\\fileB.b", TRUE); + check_file_and_delete(L"robocopy_destination\\folderA\\fileC.c", FALSE); + check_file_and_delete(L"robocopy_destination\\folderA\\fileD.d", FALSE); + check_file_and_delete(L"robocopy_destination\\folderA\\folderD\\fileE.e", FALSE); + check_file_and_delete(L"robocopy_destination\\folderB\\fileF.f", FALSE); + check_file_and_delete(L"robocopy_destination\\folderB\\fileG.g", FALSE); + check_folder_and_delete(L"robocopy_destination\\folderA\\folderD", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderA\\folderE", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderA", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderB", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderC", TRUE); + check_folder_and_delete(L"robocopy_destination", TRUE); +} + +static void check_wildcard_2_test(void) +{ + check_files_equal(L"robocopy_source\\fileA.a", L"robocopy_destination\\fileA.a", TRUE); + check_files_equal(L"robocopy_source\\folderA\\fileC.c", L"robocopy_destination\\folderA\\fileC.c", TRUE); + check_files_equal(L"robocopy_source\\folderA\\folderD\\fileE.e", L"robocopy_destination\\folderA\\folderD\\fileE.e", TRUE); + + check_file_and_delete(L"robocopy_source\\fileA.a", TRUE); + check_file_and_delete(L"robocopy_source\\fileB.b", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\fileC.c", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\fileD.d", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\folderD\\fileE.e", TRUE); + check_file_and_delete(L"robocopy_source\\folderB\\fileF.f", TRUE); + check_file_and_delete(L"robocopy_source\\folderB\\fileG.g", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA\\folderD", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA\\folderE", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA", TRUE); + check_folder_and_delete(L"robocopy_source\\folderB", TRUE); + check_folder_and_delete(L"robocopy_source\\folderC", TRUE); + check_folder_and_delete(L"robocopy_source", TRUE); + + check_file_and_delete(L"robocopy_destination\\fileA.a", TRUE); + check_file_and_delete(L"robocopy_destination\\fileB.b", FALSE); + check_file_and_delete(L"robocopy_destination\\folderA\\fileC.c", TRUE); + check_file_and_delete(L"robocopy_destination\\folderA\\fileD.d", FALSE); + check_file_and_delete(L"robocopy_destination\\folderA\\folderD\\fileE.e", TRUE); + check_file_and_delete(L"robocopy_destination\\folderB\\fileF.f", FALSE); + check_file_and_delete(L"robocopy_destination\\folderB\\fileG.g", FALSE); + check_folder_and_delete(L"robocopy_destination\\folderA\\folderD", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderA\\folderE", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderA", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderB", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderC", TRUE); + check_folder_and_delete(L"robocopy_destination", TRUE); +} + +static void check_wildcard_3_test(void) +{ + check_files_equal(L"robocopy_source\\fileA.a", L"robocopy_destination\\fileA.a", TRUE); + check_files_equal(L"robocopy_source\\folderA\\fileC.c", L"robocopy_destination\\folderA\\fileC.c", TRUE); + check_files_equal(L"robocopy_source\\folderA\\folderD\\fileE.e", L"robocopy_destination\\folderA\\folderD\\fileE.e", TRUE); + + check_file_and_delete(L"robocopy_source\\fileA.a", TRUE); + check_file_and_delete(L"robocopy_source\\fileB.b", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\fileC.c", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\fileD.d", TRUE); + check_file_and_delete(L"robocopy_source\\folderA\\folderD\\fileE.e", TRUE); + check_file_and_delete(L"robocopy_source\\folderB\\fileF.f", TRUE); + check_file_and_delete(L"robocopy_source\\folderB\\fileG.g", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA\\folderD", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA\\folderE", TRUE); + check_folder_and_delete(L"robocopy_source\\folderA", TRUE); + check_folder_and_delete(L"robocopy_source\\folderB", TRUE); + check_folder_and_delete(L"robocopy_source\\folderC", TRUE); + check_folder_and_delete(L"robocopy_source", TRUE); + + check_file_and_delete(L"robocopy_destination\\fileA.a", TRUE); + check_file_and_delete(L"robocopy_destination\\fileB.b", FALSE); + check_file_and_delete(L"robocopy_destination\\folderA\\fileC.c", TRUE); + check_file_and_delete(L"robocopy_destination\\folderA\\fileD.d", FALSE); + check_file_and_delete(L"robocopy_destination\\folderA\\folderD\\fileE.e", TRUE); + check_file_and_delete(L"robocopy_destination\\folderB\\fileF.f", FALSE); + check_file_and_delete(L"robocopy_destination\\folderB\\fileG.g", FALSE); + check_folder_and_delete(L"robocopy_destination\\folderA\\folderD", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderA\\folderE", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderA", TRUE); + check_folder_and_delete(L"robocopy_destination\\folderB", FALSE); + check_folder_and_delete(L"robocopy_destination\\folderC", TRUE); + check_folder_and_delete(L"robocopy_destination", TRUE); +} + START_TEST(robocopy) { WCHAR temp_command_line[2048], previous_cwd_path[4096], temp_path[4096]; @@ -477,6 +581,38 @@ START_TEST(robocopy) check_move_1_test(); winetest_pop_context(); + winetest_push_context("wildcard test 1"); + create_test_source_folder(); + execute_robocopy(L"robocopy.exe robocopy_source robocopy_destination *.a fileB.? /mir /r:1 /w:0", 1); + check_wildcard_1_test(); + winetest_pop_context(); + + winetest_push_context("wildcard test 2"); + create_test_source_folder(); + execute_robocopy(L"robocopy.exe robocopy_source robocopy_destination fileC.c file?.e f???A.? /mir /r:1 /w:0", 1); + check_wildcard_2_test(); + winetest_pop_context(); + + winetest_push_context("wildcard test 3"); + create_test_source_folder(); + execute_robocopy(L"robocopy.exe robocopy_source robocopy_destination file?.* /xf fileB* *D* /mir /xf *.f ???*.g /r:1 /w:0", 1); + check_wildcard_2_test(); + winetest_pop_context(); + + winetest_push_context("wildcard test 4"); + create_test_source_folder(); + create_test_folder(L"robocopy_destination"); + create_test_file(L"robocopy_destination\\fileA.a", 9000, 0, -10); + execute_robocopy(L"robocopy.exe robocopy_source robocopy_destination fileC.c file?.e f???A.? /mir /r:1 /w:0", 1); + check_wildcard_2_test(); + winetest_pop_context(); + + winetest_push_context("wildcard test 5"); + create_test_source_folder(); + execute_robocopy(L"robocopy.exe robocopy_source robocopy_destination F??E?.* /xf *B* *.d /mir /xd f?l*B /r:1 /w:0", 1); + check_wildcard_3_test(); + winetest_pop_context(); + /* Reset CWD to previous folder */ ok(SetCurrentDirectoryW(previous_cwd_path), "couldn't set CWD to previous CWD folder \"%S\"", previous_cwd_path); } \ No newline at end of file -- 2.32.0