fl_print_format(" - '%[%r%]': A date like '%[%r%]'.%r", print->to, context.set.notable, kt_remove_date_format_13_s, context.set.notable, context.set.notable, kt_remove_date_format_example_13_s, context.set.notable, f_string_eol_s);
fl_print_format(" - '%[%r%]': A date like '%[%r%]'.%r%r", print->to, context.set.notable, kt_remove_date_format_14_s, context.set.notable, context.set.notable, kt_remove_date_format_example_14_s, context.set.notable, f_string_eol_s, f_string_eol_s);
+ fl_print_format(" Valid formats for the '%[Time%]' and '%[EpochTime%]' formats might look like the following:%r", print->to, context.set.notable, context.set.notable, context.set.notable, context.set.notable, f_string_eol_s);
+ fl_print_format(" - '%[%r%]': An EpochTime with an explicit year.%r", print->to, context.set.notable, kt_remove_date_time_example_00_s, context.set.notable, f_string_eol_s);
+ fl_print_format(" - '%[%r%]': A Time with an explicit year.%r", print->to, context.set.notable, kt_remove_date_time_example_01_s, context.set.notable, f_string_eol_s);
+ fl_print_format(" - '%[%r%]': An EpochTime with an implicit year (relative to the UNIX Epoch).%r", print->to, context.set.notable, kt_remove_date_time_example_02_s, context.set.notable, f_string_eol_s);
+ fl_print_format(" - '%[%r%]': A Time with an implicit year (relative to the current year).%r%r", print->to, context.set.notable, kt_remove_date_time_example_03_s, context.set.notable, f_string_eol_s, f_string_eol_s);
+
fl_print_format(" The '%[%r%r%]' parameter accepts either ", print->to, context.set.notable, f_console_symbol_long_normal_s, kt_remove_long_remember_s, context.set.notable, f_string_eol_s);
fl_print_format("%[%r%]", print->to, context.set.notable, kt_remove_yes_s, context.set.notable);
fl_print_format(" or %[%r%] to designate whether or not to remember already pocessed paths.%r", print->to, context.set.notable, kt_remove_no_s, context.set.notable, f_string_eol_s);
extern "C" {
#endif
+void test__kt_remove__date_changed__date_works(void **state) {
+
+ mock_unwrap = 0;
+ mock_unwrap_f_time_clock_get = 0;
+
+ const f_string_static_t target = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
+
+ const uint8_t types_total = 8;
+ const uint8_t dates_total = 18;
+ const uint8_t params_total = 15;
+
+ struct stat stats[types_total];
+
+ memset(stats, 0, sizeof(struct stat) * types_total);
+
+ stats[0].st_mode = F_file_mode_all_d | F_file_type_block_d;
+ stats[1].st_mode = F_file_mode_all_d | F_file_type_character_d;
+ stats[2].st_mode = F_file_mode_all_d | F_file_type_directory_d;
+ stats[3].st_mode = F_file_mode_all_d | F_file_type_fifo_d;
+ stats[4].st_mode = F_file_mode_all_d | F_file_type_link_d;
+ stats[5].st_mode = F_file_mode_all_d | F_file_type_regular_d;
+ stats[6].st_mode = F_file_mode_all_d | F_file_type_socket_d;
+ stats[7].st_mode = F_file_mode_all_d & ~S_IFMT;
+
+ const f_string_static_t parameters[] = {
+ kt_remove_date_format_example_00_s,
+ kt_remove_date_format_example_01_s,
+ kt_remove_date_format_example_02_s,
+ kt_remove_date_format_example_03_s,
+ kt_remove_date_format_example_04_s,
+ kt_remove_date_format_example_05_s,
+ kt_remove_date_format_example_06_s,
+ kt_remove_date_format_example_07_s,
+ kt_remove_date_format_example_08_s,
+ kt_remove_date_format_example_09_s,
+ kt_remove_date_format_example_10_s,
+ kt_remove_date_format_example_11_s,
+ kt_remove_date_format_example_12_s,
+ kt_remove_date_format_example_13_s,
+ kt_remove_date_format_example_14_s,
+ };
+
+ const f_string_static_t operators[] = {
+ kt_remove_date_symbol_equal_s,
+ kt_remove_date_symbol_equal_s,
+ kt_remove_date_symbol_equal_s,
+ kt_remove_date_symbol_less_s,
+ kt_remove_date_symbol_less_s,
+ kt_remove_date_symbol_less_s,
+ kt_remove_date_symbol_less_equal_s,
+ kt_remove_date_symbol_less_equal_s,
+ kt_remove_date_symbol_less_equal_s,
+ kt_remove_date_symbol_more_s,
+ kt_remove_date_symbol_more_s,
+ kt_remove_date_symbol_more_s,
+ kt_remove_date_symbol_more_equal_s,
+ kt_remove_date_symbol_more_equal_s,
+ kt_remove_date_symbol_more_equal_s,
+ kt_remove_date_symbol_not_s,
+ kt_remove_date_symbol_not_s,
+ kt_remove_date_symbol_not_s,
+ };
+
+ const f_time_spec_t time_spec_dates[] = {
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Equal
+ macro_f_time_spec_t_initialize_1(2 * kt_remove_time_seconds_in_year_d, 789),
+ macro_f_time_spec_t_initialize_1(1672429502, 0),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Less
+ macro_f_time_spec_t_initialize_1(2 * kt_remove_time_seconds_in_year_d, 789),
+ macro_f_time_spec_t_initialize_1(1672429502, 0),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Less Equal
+ macro_f_time_spec_t_initialize_1(2 * kt_remove_time_seconds_in_year_d, 789),
+ macro_f_time_spec_t_initialize_1(1672429502, 0),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // More
+ macro_f_time_spec_t_initialize_1(2 * kt_remove_time_seconds_in_year_d, 789),
+ macro_f_time_spec_t_initialize_1(1672429502, 0),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // More Equal
+ macro_f_time_spec_t_initialize_1(2 * kt_remove_time_seconds_in_year_d, 789),
+ macro_f_time_spec_t_initialize_1(1672429502, 0),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Not
+ macro_f_time_spec_t_initialize_1(2 * kt_remove_time_seconds_in_year_d, 789),
+ macro_f_time_spec_t_initialize_1(1672429502, 0),
+ };
+
+ bool time_spec_removes[] = {
+ F_false, // Equal
+ F_false,
+ F_false,
+ F_true, // Less
+ F_false,
+ F_false,
+ F_true, // Less Equal
+ F_false,
+ F_false,
+ F_false, // More
+ F_true,
+ F_true,
+ F_false, // More Equal
+ F_true,
+ F_true,
+ F_true, // Not
+ F_true,
+ F_true,
+ };
+
+ {
+ uint8_t type = 0;
+ uint8_t date = 0;
+ uint8_t param = 0;
+
+ for (; type < types_total; ++type) {
+
+ for (date = 12; date < dates_total; ++date) {
+
+ for (param = 0; param < params_total; ++param) {
+
+ const f_string_t argv[] = { "mocked_main", target.string, "-" KT_REMOVE_short_changed_s, operators[date].string, parameters[param].string, 0 };
+
+ stats[type].st_ctim = time_spec_dates[date];
+
+ // Pre-process file.
+ will_return(__wrap_f_file_exists, F_true);
+ will_return(__wrap_f_file_is, macro_f_file_type_is_link(stats[type].st_mode));
+ will_return(__wrap_f_file_stat, &stats[type]);
+ will_return(__wrap_f_file_stat, F_okay);
+
+ if (macro_f_file_type_is_directory(stats[type].st_mode)) {
+ will_return(__wrap_f_directory_empty, F_true);
+ }
+
+ if (time_spec_removes[date]) {
+ if (macro_f_file_type_is_directory(stats[type].st_mode)) {
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &target);
+ will_return(__wrap_fl_directory_do, &target);
+ will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_directory_e | f_directory_recurse_do_flag_top_after_e);
+ will_return(__wrap_f_directory_remove, F_okay);
+ }
+ else {
+ will_return(__wrap_f_file_remove, F_okay);
+ }
+ }
+
+ const int result = kt_main_test__remove(5, argv, 0);
+
+ assert_int_equal(result, 0);
+ } // for
+ } // for
+ } // for
+ }
+}
+
void test__kt_remove__date_changed__now_works(void **state) {
mock_unwrap = 0;
const f_time_spec_t time_spec_clocks = macro_f_time_spec_t_initialize_1(2 * 86400, 123);
bool time_spec_removes[] = {
- F_true, // Equal
+ F_true, // Equal
F_false,
F_false,
F_false,
F_true,
F_false,
F_true,
- F_true, // Less Equal
+ F_true, // Less Equal
F_true,
F_false,
F_true,
F_false,
F_true,
F_false,
- F_true, // More Equal
+ F_true, // More Equal
F_false,
F_true,
F_false,
const f_time_spec_t time_spec_clocks = macro_f_time_spec_t_initialize_1(2 * 86400, 123);
bool time_spec_removes[] = {
- F_true, // Equal
+ F_true, // Equal
F_true,
F_false,
F_false,
F_false,
F_false,
F_true,
- F_true, // Less Equal
+ F_true, // Less Equal
F_true,
F_false,
F_true,
F_false,
F_true,
F_false,
- F_true, // More Equal
+ F_true, // More Equal
F_true,
F_true,
F_false,
F_false,
F_true,
F_false,
- F_true, // Less
+ F_true, // Less
F_true,
F_false,
F_true,
- F_true, // Less Equal
+ F_true, // Less Equal
F_true,
F_true,
F_true,
F_false, // More
F_false,
- F_true,
+ F_false,
F_false,
F_false, // More Equal
F_false,
F_true,
F_false,
- F_true, // Not
+ F_true, // Not
F_true,
F_false,
F_true,
uint8_t type = 0;
uint8_t date = 0;
- for (; type < 1/*types_total*/; ++type) {
+ for (; type < types_total; ++type) {
- for (date = 10; date < 11/*dates_total*/; ++date) {
+ for (date = 0; date < dates_total; ++date) {
const f_string_t argv[] = { "mocked_main", target.string, "-" KT_REMOVE_short_changed_s, operators[date].string, parameter.string, 0 };
F_false,
F_false,
F_true,
- F_true, // More
+ F_true, // More
F_true,
F_true,
F_false,
- F_true, // More Equal
+ F_true, // More Equal
F_true,
F_true,
F_true,
- F_true, // Not
+ F_true, // Not
F_true,
F_true,
F_false,