#include <stic.h>
#include <stdio.h> /* remove() */
#include <stdlib.h> /* free() */
#include <string.h> /* strcpy() strdup() */
#include <test-utils.h>
#include "../../src/compat/os.h"
#include "../../src/cfg/config.h"
#include "../../src/modes/normal.h"
#include "../../src/ui/ui.h"
#include "../../src/utils/dynarray.h"
#include "../../src/utils/str.h"
#include "../../src/status.h"
SETUP()
{
curr_stats.save_msg = 0;
view_setup(&lwin);
}
TEARDOWN()
{
view_teardown(&lwin);
}
TEST(incorrect_length_causes_error, IF(not_windows))
{
key_info_t key_info = { .count = 77777 };
modnorm_cp(&lwin, key_info);
assert_true(curr_stats.save_msg);
}
TEST(incorrect_num_causes_error, IF(not_windows))
{
key_info_t key_info = { .count = 9 };
modnorm_cp(&lwin, key_info);
assert_true(curr_stats.save_msg);
}
TEST(file_mode_is_changed, IF(not_windows))
{
struct stat st;
key_info_t key_info = { .count = 777 };
create_file(SANDBOX_PATH "/empty");
assert_success(chmod(SANDBOX_PATH "/empty", 0000));
strcpy(lwin.curr_dir, SANDBOX_PATH);
lwin.list_rows = 1;
lwin.dir_entry = dynarray_cextend(NULL,
lwin.list_rows*sizeof(*lwin.dir_entry));
lwin.dir_entry[0].name = strdup("empty");
lwin.dir_entry[0].type = FT_REG;
lwin.dir_entry[0].origin = lwin.curr_dir;
lwin.list_pos = 0;
replace_string(&cfg.shell, "/bin/sh");
update_string(&cfg.shell_cmd_flag, "-c");
stats_update_shell_type("/bin/sh");
undo_setup();
modnorm_cp(&lwin, key_info);
assert_false(curr_stats.save_msg);
assert_success(os_stat(SANDBOX_PATH "/empty", &st));
assert_true((st.st_mode & 0777) != 0000);
assert_success(remove(SANDBOX_PATH "/empty"));
undo_teardown();
update_string(&cfg.shell, NULL);
update_string(&cfg.shell_cmd_flag, NULL);
}
/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master