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 / misc / flist_pick_cd_path.c (4680dd2adcbea20fb79f6d693afbcd00c806d713) (1,804B) (mode 100644) [raw]
#include <stic.h>

#include <string.h> /* strcpy() */

#include "../../src/cfg/config.h"
#include "../../src/compat/fs_limits.h"
#include "../../src/ui/ui.h"
#include "../../src/utils/str.h"
#include "../../src/filelist.h"

#ifdef _WIN32
#define PREFIX "c:"
#else
#define PREFIX ""
#endif

TEST(absolute_path_dominates)
{
	int updir;
	char dir[PATH_MAX + 1];

	flist_pick_cd_path(&lwin, "something", PREFIX "/abs/path", &updir, dir,
			sizeof(dir));

	assert_false(updir);
	assert_string_equal(PREFIX "/abs/path", dir);
}

TEST(dash_chooses_previous_location)
{
	int updir;
	char dir[PATH_MAX + 1];

	update_string(&lwin.last_dir, "--last--");
	strcpy(lwin.curr_dir, "--cur--");

	flist_pick_cd_path(&lwin, ".", "-", &updir, dir, sizeof(dir));

	assert_false(updir);
	assert_string_equal("--last--", dir);
}

TEST(null_or_empty_chooses_home)
{
	int updir;
	char dir[PATH_MAX + 1];

	strcpy(cfg.home_dir, "--home--");
	strcpy(lwin.curr_dir, "--cur--");

	flist_pick_cd_path(&lwin, ".", "", &updir, dir, sizeof(dir));
	assert_false(updir);
	assert_string_equal("--home--", dir);

	flist_pick_cd_path(&lwin, ".", NULL, &updir, dir, sizeof(dir));
	assert_false(updir);
	assert_string_equal("--home--", dir);
}

TEST(double_in_current_view_dot_just_sets_updir)
{
	int updir;
	char dir[PATH_MAX + 1];

	dir[0] = '\0';

	flist_pick_cd_path(&lwin, lwin.curr_dir, "..", &updir, dir, sizeof(dir));
	assert_true(updir);
	assert_string_equal("", dir);
}

TEST(double_in_other_view_changes_dir)
{
	int updir;
	char dir[PATH_MAX + 1];

	dir[0] = '\0';

	flist_pick_cd_path(&lwin, "some path", "..", &updir, dir, sizeof(dir));
	assert_false(updir);
	assert_string_equal("some path/..", dir);
}

/* 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