xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
<root> / tests / cmds / one_number_range.c (fa8312867971d4e2b6a4bafd628f73db0168da8d) (4,725B) (mode 100644) [raw]
#include <stic.h>

#include <string.h>

#include <test-utils.h>

#include "../../src/engine/cmds.h"
#include "../../src/ui/ui.h"
#include "../../src/utils/dynarray.h"
#include "../../src/cmd_core.h"
#include "../../src/filelist.h"
#include "../../src/flist_sel.h"

static void setup_lwin(void);
static void setup_rwin(void);
static int count_marked(view_t *view);

extern cmds_conf_t cmds_conf;

SETUP_ONCE()
{
	stub_colmgr();
}

SETUP()
{
	view_setup(&lwin);
	view_setup(&rwin);

	setup_lwin();
	setup_rwin();

	lwin.pending_marking = 0;
	rwin.pending_marking = 0;
}

TEARDOWN()
{
	view_teardown(&lwin);
	view_teardown(&rwin);
}

static void
setup_lwin(void)
{
	strcpy(lwin.curr_dir, "/lwin");

	lwin.list_rows = 5;
	lwin.list_pos = 2;
	lwin.dir_entry = dynarray_cextend(NULL,
			lwin.list_rows*sizeof(*lwin.dir_entry));
	lwin.dir_entry[0].name = strdup("..");
	lwin.dir_entry[0].origin = lwin.curr_dir;
	lwin.dir_entry[1].name = strdup("lfile0");
	lwin.dir_entry[1].origin = lwin.curr_dir;
	lwin.dir_entry[2].name = strdup("lfile1");
	lwin.dir_entry[2].origin = lwin.curr_dir;
	lwin.dir_entry[3].name = strdup("lfile2");
	lwin.dir_entry[3].origin = lwin.curr_dir;
	lwin.dir_entry[4].name = strdup("lfile3");
	lwin.dir_entry[4].origin = lwin.curr_dir;

	lwin.dir_entry[1].selected = 1;
	lwin.dir_entry[3].selected = 1;
	lwin.selected_files = 2;
}

static void
setup_rwin(void)
{
	strcpy(rwin.curr_dir, "/rwin");

	rwin.list_rows = 7;
	rwin.list_pos = 5;
	rwin.dir_entry = dynarray_cextend(NULL,
			rwin.list_rows*sizeof(*rwin.dir_entry));
	rwin.dir_entry[0].name = strdup("..");
	rwin.dir_entry[0].origin = rwin.curr_dir;
	rwin.dir_entry[1].name = strdup("rfile0");
	rwin.dir_entry[1].origin = rwin.curr_dir;
	rwin.dir_entry[2].name = strdup("rfile1");
	rwin.dir_entry[2].origin = rwin.curr_dir;
	rwin.dir_entry[3].name = strdup("rfile2");
	rwin.dir_entry[3].origin = rwin.curr_dir;
	rwin.dir_entry[4].name = strdup("rfile3");
	rwin.dir_entry[4].origin = rwin.curr_dir;
	rwin.dir_entry[5].name = strdup("rfile4");
	rwin.dir_entry[5].origin = rwin.curr_dir;
	rwin.dir_entry[6].name = strdup("rfile5");
	rwin.dir_entry[6].origin = rwin.curr_dir;

	rwin.dir_entry[2].selected = 1;
	rwin.dir_entry[4].selected = 1;
	rwin.dir_entry[6].selected = 1;
	rwin.selected_files = 3;
}

TEST(one_number_range)
{
	cmd_info_t cmd_info = {
		.begin = -1, .end = -1
	};

	curr_view = &lwin;
	cmds_conf.begin = 0;
	cmds_conf.current = curr_view->list_pos;
	cmds_conf.end = curr_view->list_rows - 1;
	cmds_select_range(-1, &cmd_info);
	assert_int_equal(2, count_marked(&lwin));

	curr_view = &rwin;
	cmds_conf.begin = 0;
	cmds_conf.current = curr_view->list_pos;
	cmds_conf.end = curr_view->list_rows - 1;
	cmds_select_range(-1, &cmd_info);
	assert_int_equal(3, count_marked(&rwin));
}

TEST(one_in_the_range)
{
	cmd_info_t cmd_info = {
		.begin = 1, .end = 1
	};

	curr_view = &lwin;
	cmds_conf.begin = 0;
	cmds_conf.current = curr_view->list_pos;
	cmds_conf.end = curr_view->list_rows - 1;
	cmds_select_range(-1, &cmd_info);
	assert_int_equal(1, count_marked(&lwin));
	assert_true(lwin.dir_entry[1].selected);

	curr_view = &rwin;
	cmds_conf.begin = 0;
	cmds_conf.current = curr_view->list_pos;
	cmds_conf.end = curr_view->list_rows - 1;
	cmds_select_range(-1, &cmd_info);
	assert_int_equal(1, count_marked(&rwin));
	assert_true(rwin.dir_entry[1].marked);
}

TEST(parent_directory_is_not_selected)
{
	cmd_info_t cmd_info = {
		.begin = 0, .end = 0
	};

	curr_view = &lwin;

	cmds_conf.begin = 0;
	cmds_conf.current = curr_view->list_pos;
	cmds_conf.end = curr_view->list_rows - 1;

	cmds_select_range(-1, &cmd_info);
	assert_int_equal(0, count_marked(&lwin));
	assert_false(lwin.dir_entry[0].selected);

	flist_sel_drop(&lwin);

	cmd_info.begin = NOT_DEF;
	cmds_select_range(-1, &cmd_info);
	assert_int_equal(0, count_marked(&lwin));
	assert_false(lwin.dir_entry[0].selected);

	cmd_info.end = NOT_DEF;
	cmds_conf.current = 0;
	curr_view->list_pos = 0;
	cmds_select_range(-1, &cmd_info);
	assert_int_equal(0, count_marked(&lwin));
	assert_false(lwin.dir_entry[0].selected);
}

TEST(range_of_previous_command_is_reset)
{
	curr_view = &lwin;
	cmds_conf.begin = 0;
	cmds_conf.current = curr_view->list_pos;
	cmds_conf.end = curr_view->list_rows - 1;

	cmd_info_t cmd_info1 = { .begin = 1, .end = 2 };
	cmds_select_range(-1, &cmd_info1);
	assert_int_equal(2, count_marked(&lwin));

	cmd_info_t cmd_info2 = { .begin = 3, .end = 4 };
	cmds_select_range(-1, &cmd_info2);
	assert_int_equal(2, count_marked(&lwin));
}

static int
count_marked(view_t *view)
{
	check_marking(view, 0, NULL);
	return flist_count_marked(view);
}

/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
Hints

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