void test__kt_remove__directory_no_args__one_empty_exists_link(void **state) {
mock_unwrap = 0;
- mock_directory_call_action = F_true;
+
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
struct stat statistics;
{
- const f_string_t argv[] = { "mocked_main", "to_remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+V", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+D", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
void test__kt_remove__directory_no_args__one_empty_exists_link_not(void **state) {
mock_unwrap = 0;
- mock_directory_call_action = F_true;
+
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
struct stat statistics;
{
- const f_string_t argv[] = { "mocked_main", "to_remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+V", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+D", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
mock_unwrap = 0;
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
+
{
- const f_string_t argv[] = { "mocked_main", "to_remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, 0 };
will_return(__wrap_f_file_exists, F_false);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+V", 0 };
will_return(__wrap_f_file_exists, F_false);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+D", 0 };
will_return(__wrap_f_file_exists, F_false);
void test__kt_remove__directory_no_args__one_empty_not_exists_link(void **state) {
mock_unwrap = 0;
- mock_directory_call_action = F_true;
+
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
struct stat statistics;
struct stat statistics_regular;
{
- const f_string_t argv[] = { "mocked_main", "to_remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_false); // kt_remove_flag_file_operate_empty_d is set.
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+V", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_false); // kt_remove_flag_file_operate_empty_d is set.
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+D", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_false); // kt_remove_flag_file_operate_empty_d is set.
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
void test__kt_remove__directory_no_args__one_empty_not_exists_link_not(void **state) {
mock_unwrap = 0;
- mock_directory_call_action = F_true;
+
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
struct stat statistics;
struct stat statistics_regular;
{
- const f_string_t argv[] = { "mocked_main", "to_remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_false); // kt_remove_flag_file_operate_empty_d is set.
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+V", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_false); // kt_remove_flag_file_operate_empty_d is set.
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "+D", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_false); // kt_remove_flag_file_operate_empty_d is set.
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
void test__kt_remove__directory_no_args__two_empty_exists_and_not(void **state) {
mock_unwrap = 0;
- mock_directory_call_action = F_true;
+
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
struct stat statistics;
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+V", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+D", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
void test__kt_remove__directory_no_args__two_empty_exists_link(void **state) {
mock_unwrap = 0;
- mock_directory_call_action = F_true;
+
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
struct stat statistics;
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+V", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+D", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
void test__kt_remove__directory_no_args__two_empty_exists_link_not(void **state) {
mock_unwrap = 0;
- mock_directory_call_action = F_true;
+
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
struct stat statistics;
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+V", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+D", 0 };
memset(&statistics, 0, sizeof(struct stat));
statistics.st_mode = F_file_mode_all_d | F_file_type_directory_d; // Should result in kt_remove_flag_file_operate_remove_d.
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// Directory processing.
will_return(__wrap_f_directory_empty, F_true);
- will_return(__wrap_fl_directory_do, f_directory_recurse_do_flag_action_e | f_directory_recurse_do_flag_top_after_e);
- will_return(__wrap_f_directory_is, F_true);
+ will_return(__wrap_fl_directory_do, 1);
+ will_return(__wrap_fl_directory_do, &file);
+ 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);
// This will fail if f_directory_remove() is not called, therefore success here means f_directory_remove has been called.
will_return(__wrap_f_directory_remove, F_okay);
mock_unwrap = 0;
+ const f_string_static_t file = macro_f_string_static_t_initialize_1("to_remove", 0, 9);
+
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", 0 };
will_return(__wrap_f_file_exists, F_false);
will_return(__wrap_f_file_exists, F_false);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+V", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+V", 0 };
will_return(__wrap_f_file_exists, F_false);
will_return(__wrap_f_file_exists, F_false);
}
{
- const f_string_t argv[] = { "mocked_main", "to_remove", "also/remove", "+D", 0 };
+ const f_string_t argv[] = { "mocked_main", file.string, "also/remove", "+D", 0 };
will_return(__wrap_f_file_exists, F_false);
will_return(__wrap_f_file_exists, F_false);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_true); // A link, kt_remove_flag_file_operate_link_d is set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);
will_return(__wrap_f_file_exists, F_true);
will_return(__wrap_f_file_is, F_false); // A link, kt_remove_flag_file_operate_link_d is not set.
will_return(__wrap_f_file_stat, &statistics);
- will_return(__wrap_f_file_stat, F_false);
+ will_return(__wrap_f_file_stat, F_okay);
// This will fail if f_file_remove() is not called, therefore success here means f_file_remove has been called.
will_return(__wrap_f_file_remove, F_okay);