uint8_t result = F_false;
f_string_static_t name_type = f_string_empty_s;
+ f_number_unsigned_t match_nanosecond = 0;
f_number_unsigned_t match_second = 0;
f_number_unsigned_t match_year = 0;
+ f_number_unsigned_t start_nanosecond = 0;
f_number_unsigned_t start_second = 0;
f_number_unsigned_t start_year = 0;
+ f_number_unsigned_t stop_nanosecond = 0;
f_number_unsigned_t stop_second = 0;
f_number_unsigned_t stop_year = 0;
- uint8_t start_is_stop = F_false;
for (i = 0; i < 3; ++i) {
if (kt_remove_signal_check(main)) return;
- match_year = kt_remove_time_year_unix_epoch_d + (times[i].tv_sec / kt_remove_time_seconds_in_year_d);
+ match_nanosecond = times[i].tv_nsec;
match_second = times[i].tv_sec % kt_remove_time_seconds_in_year_d;
+ match_year = kt_remove_time_year_unix_epoch_d + (times[i].tv_sec / kt_remove_time_seconds_in_year_d);
- start_year = dates[i]->array[j].start_year + (dates[i]->array[j].start_second / kt_remove_time_seconds_in_year_d);
- start_second = dates[i]->array[j].start_second % kt_remove_time_seconds_in_year_d;
-
- stop_year = dates[i]->array[j].stop_year + (dates[i]->array[j].stop_second / kt_remove_time_seconds_in_year_d);
- stop_second = dates[i]->array[j].stop_second % kt_remove_time_seconds_in_year_d;
+ start_nanosecond = dates[i]->array[j].start_nanosecond;
+ start_second = dates[i]->array[j].start_second;
+ start_year = dates[i]->array[j].start_year;
- start_is_stop = dates[i]->array[j].start_year == dates[i]->array[j].stop_year && dates[i]->array[j].start_second == dates[i]->array[j].stop_second && dates[i]->array[j].start_nanosecond == dates[i]->array[j].stop_nanosecond;
+ stop_nanosecond = dates[i]->array[j].stop_nanosecond;
+ stop_second = dates[i]->array[j].stop_second;
+ stop_year = dates[i]->array[j].stop_year;
name_type = f_string_empty_s;
result = F_false;
- if (dates[i]->array[j].type == kt_remove_flag_date_today_d || dates[i]->array[j].type == kt_remove_flag_date_tomorrow_d || dates[i]->array[j].type == kt_remove_flag_date_yesterday_d) {
+ // The today, tomorrow, and yesterday ranges are based on a whole day rather than down to an exact nanosecond (which are always 0 for full day ranges).
+ if (dates[i]->array[j].type & kt_remove_flag_date_today_tomorrow_yesterday_d) {
+
+ // Ensure the ranges are a whole day.
+ start_second = dates[i]->array[j].start_second % kt_remove_time_seconds_in_year_d;
+ start_year = dates[i]->array[j].start_year + (dates[i]->array[j].start_second / kt_remove_time_seconds_in_year_d);
+
+ stop_second = start_second + kt_remove_time_seconds_in_day_d;
+
if (dates[i]->array[j].operation == kt_remove_flag_date_equal_d) {
name_type = kt_remove_date_symbol_equal_s;
result = F_false;
if (match_year == start_year) {
- if (match_second > start_second && match_second < stop_second) {
+ if (match_second >= start_second && match_second < stop_second) {
result = F_true;
}
- else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond && (start_is_stop || times[i].tv_nsec < dates[i]->array[j].stop_nanosecond)) {
+ }
+
+ // When stop_year is greater than start_year, then the stop_year represents the first day of the year.
+ else if (stop_year > start_year && match_year == stop_year) {
+ if (match_second >= 0 && match_second < kt_remove_time_seconds_in_day_d) {
result = F_true;
}
}
if (match_second < start_second) {
result = F_true;
}
- else if (match_second == start_second && times[i].tv_nsec < dates[i]->array[j].start_nanosecond) {
- result = F_true;
- }
}
}
else if (dates[i]->array[j].operation == kt_remove_flag_date_less_equal_d) {
if (match_second < stop_second) {
result = F_true;
}
- else if (match_second == stop_second && times[i].tv_nsec <= dates[i]->array[j].start_nanosecond && (start_is_stop || times[i].tv_nsec < dates[i]->array[j].stop_nanosecond)) {
+ }
+
+ // When stop_year is greater than start_year, then the stop_year represents the first day of the year.
+ else if (stop_year > start_year && match_year == stop_year) {
+ if (match_second >= 0 && match_second < kt_remove_time_seconds_in_day_d) {
result = F_true;
}
}
name_type = kt_remove_date_symbol_more_s;
result = F_false;
- if (match_year > stop_year) {
- result = F_true;
- }
- else if (match_year == stop_year) {
- if (match_second > stop_second) {
+ // Note that stop times are exclusive rather than inclusive.
+ // When stop_year is greater than start_year, then the stop_year represents the first day of the year.
+ if (stop_year > start_year) {
+ if (match_year >= stop_year) {
result = F_true;
}
- else if (match_second == stop_second && times[i].tv_nsec > dates[i]->array[j].stop_nanosecond) {
+ }
+ else {
+ if (match_year > start_year) {
result = F_true;
}
+ else if (match_year == start_year) {
+ if (match_second >= stop_second) {
+ result = F_true;
+ }
+ }
}
}
else if (dates[i]->array[j].operation == kt_remove_flag_date_more_equal_d) {
name_type = kt_remove_date_symbol_more_equal_s;
result = F_false;
- if (match_year > start_year) {
+ // Note that stop times are exclusive rather than inclusive.
+ if (match_year == start_year && match_second >= start_second) {
result = F_true;
}
- else if (match_year == start_year) {
- if (match_second > start_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond) {
- result = F_true;
- }
+
+ // When stop_year is greater than start_year, then the stop_year represents the first day of the year.
+ else if (stop_year > start_year && match_year >= stop_year) {
+ result = F_true;
}
}
else if (dates[i]->array[j].operation == kt_remove_flag_date_not_d) {
result = F_true;
if (match_year == start_year) {
- if (match_second > start_second && match_second < stop_second) {
- result = F_false;
- }
- else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond && times[i].tv_nsec < dates[i]->array[j].stop_nanosecond) {
+ if (match_second >= start_second && match_second < stop_second) {
result = F_false;
}
}
}
else if (dates[i]->array[j].operation == kt_remove_flag_date_equal_d) {
name_type = kt_remove_date_symbol_equal_s;
- result = match_year == start_year && match_second == start_second && times[i].tv_nsec == dates[i]->array[j].start_nanosecond;
+ result = match_year == start_year && match_second == start_second && match_nanosecond == start_nanosecond;
}
else if (dates[i]->array[j].operation == kt_remove_flag_date_less_d) {
name_type = kt_remove_date_symbol_less_s;
if (match_second < start_second) {
result = F_true;
}
- else if (match_second == start_second && times[i].tv_nsec < dates[i]->array[j].start_nanosecond) {
+ else if (match_second == start_second && match_nanosecond < start_nanosecond) {
result = F_true;
}
}
if (match_second < stop_second) {
result = F_true;
}
- else if (match_second == stop_second && times[i].tv_nsec <= dates[i]->array[j].stop_nanosecond) {
+ else if (match_second == stop_second && match_nanosecond <= stop_nanosecond) {
result = F_true;
}
}
if (match_second > start_second) {
result = F_true;
}
- else if (match_second == start_second && times[i].tv_nsec > dates[i]->array[j].start_nanosecond) {
+ else if (match_second == start_second && match_nanosecond > start_nanosecond) {
result = F_true;
}
}
if (match_second > start_second) {
result = F_true;
}
- else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond) {
+ else if (match_second == start_second && match_nanosecond >= start_nanosecond) {
result = F_true;
}
}
}
else if (dates[i]->array[j].operation == kt_remove_flag_date_not_d) {
name_type = kt_remove_date_symbol_not_s;
- result = match_year != start_year || match_second != start_second || times[i].tv_nsec != dates[i]->array[j].start_nanosecond;
+ result = match_year != start_year || match_second != start_second || match_nanosecond != start_nanosecond;
}
if (name_type.used) {
macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
};
- const f_time_spec_t time_spec_clocks = macro_f_time_spec_t_initialize_1(2 * 86400, 345);
+ 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
}
}
+void test__kt_remove__date_changed__today_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 = 24;
+
+ 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 parameter = macro_f_string_static_t_initialize_1("today", 0, 5);
+
+ 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_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_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_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_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_more_equal_s,
+ kt_remove_date_symbol_not_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 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Less
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Less Equal
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // More
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // More Equal
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Not
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ };
+
+ 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,
+ F_false,
+ F_false,
+ F_false, // Less
+ F_false,
+ F_false,
+ F_true,
+ F_true, // Less Equal
+ F_true,
+ F_false,
+ F_true,
+ F_false, // More
+ F_false,
+ F_true,
+ F_false,
+ F_true, // More Equal
+ F_true,
+ F_true,
+ F_false,
+ F_false, // Not
+ F_false,
+ F_true,
+ F_true,
+ };
+
+ {
+ uint8_t type = 0;
+ uint8_t date = 0;
+
+ for (; type < types_total; ++type) {
+
+ 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 };
+
+ 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);
+ }
+
+ will_return(__wrap_f_time_clock_get, &time_spec_clocks);
+ will_return(__wrap_f_time_clock_get, F_okay);
+
+ 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
+ }
+}
+
void test__kt_remove__date_changed__tomorrow_works(void **state) {
mock_unwrap = 0;
macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
};
- const f_time_spec_t time_spec_clocks = macro_f_time_spec_t_initialize_1(2 * 86400, 345);
+ const f_time_spec_t time_spec_clocks = macro_f_time_spec_t_initialize_1(2 * 86400, 123);
bool time_spec_removes[] = {
F_false, // Equal
F_true,
F_true, // Less Equal
F_true,
- F_false,
+ F_true,
F_true,
F_false, // More
F_false,
uint8_t type = 0;
uint8_t date = 0;
+ for (; type < 1/*types_total*/; ++type) {
+
+ for (date = 10; date < 11/*dates_total*/; ++date) {
+
+ const f_string_t argv[] = { "mocked_main", target.string, "-" KT_REMOVE_short_changed_s, operators[date].string, parameter.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);
+ }
+
+ will_return(__wrap_f_time_clock_get, &time_spec_clocks);
+ will_return(__wrap_f_time_clock_get, F_okay);
+
+ 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
+ }
+}
+
+void test__kt_remove__date_changed__yesterday_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 = 24;
+
+ 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 parameter = macro_f_string_static_t_initialize_1("yesterday", 0, 9);
+
+ 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_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_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_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_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_more_equal_s,
+ kt_remove_date_symbol_not_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 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Less
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Less Equal
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // More
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // More Equal
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ macro_f_time_spec_t_initialize_1(2 * 86400, 345), // Not
+ macro_f_time_spec_t_initialize_1(2 * 86400, 0),
+ macro_f_time_spec_t_initialize_1(3 * 86400, 10),
+ macro_f_time_spec_t_initialize_1(1 * 86400, 4000),
+ };
+
+ const f_time_spec_t time_spec_clocks = macro_f_time_spec_t_initialize_1(2 * 86400, 345);
+
+ bool time_spec_removes[] = {
+ F_false, // Equal
+ F_false,
+ F_false,
+ F_true,
+ F_false, // Less
+ F_false,
+ F_false,
+ F_false,
+ F_false, // Less Equal
+ F_false,
+ F_false,
+ F_true,
+ F_true, // More
+ F_true,
+ F_true,
+ F_false,
+ F_true, // More Equal
+ F_true,
+ F_true,
+ F_true,
+ F_true, // Not
+ F_true,
+ F_true,
+ F_false,
+ };
+
+ {
+ uint8_t type = 0;
+ uint8_t date = 0;
+
for (; type < types_total; ++type) {
for (date = 0; date < dates_total; ++date) {
}
}
-//@todo macro_f_string_static_t_initialize_1("today", 0, 5),
-//@todo macro_f_string_static_t_initialize_1("yesterday", 0, 9),
-
#ifdef __cplusplus
} // extern "C"
#endif