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 / fileops / make_files.c (41afda684cba6af3bf6edab55b5a215b898fd7a2) (2,603B) (mode 100644) [raw]
#include <stic.h>

#include <unistd.h> /* chdir() rmdir() unlink() */

#include <limits.h> /* INT_MAX */

#include <test-utils.h>

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

static char *saved_cwd;

SETUP()
{
	saved_cwd = save_cwd();
	assert_success(chdir(SANDBOX_PATH));

	view_setup(&lwin);
	make_abs_path(lwin.curr_dir, sizeof(lwin.curr_dir), SANDBOX_PATH, "",
			saved_cwd);

	update_string(&cfg.fuse_home, "");
}

TEARDOWN()
{
	view_teardown(&lwin);
	update_string(&cfg.fuse_home, NULL);

	restore_cwd(saved_cwd);
}

TEST(make_files_fails_on_empty_file_name)
{
	char name[] = "";
	char *names[] = { name };

	assert_true(fops_mkfiles(&lwin, -1, names, 1));
}

TEST(make_files_fails_on_file_name_dups)
{
	char name[] = "name";
	char *names[] = { name, name };

	assert_true(fops_mkfiles(&lwin, -1, names, 2));
	assert_failure(unlink(name));
}

TEST(make_files_fails_if_file_exists)
{
	char name[] = "a";
	char *names[] = { name };

	create_file("a");

	assert_true(fops_mkfiles(&lwin, -1, names, 1));

	assert_success(unlink("a"));
}

TEST(make_files_creates_files)
{
	char name_a[] = "a";
	char name_b[] = "b";
	char *names[] = { name_a, name_b };

	(void)fops_mkfiles(&lwin, -1, names, 2);

	assert_success(unlink("a"));
	assert_success(unlink("b"));
}

TEST(make_files_creates_files_by_paths)
{
	char name_a[] = "a";
	char *names[] = { name_a };

	(void)fops_mkfiles(&lwin, -1, names, 1);

	assert_success(unlink("a"));
}

TEST(make_files_considers_tree_structure)
{
	char name[] = "new-file";
	char *names[] = { name };

	create_dir("dir");

	flist_load_tree(&lwin, lwin.curr_dir, INT_MAX);

	/* Set at to -1. */
	lwin.list_pos = 0;
	(void)fops_mkfiles(&lwin, -1, names, 1);

	/* Set at to desired position. */
	(void)fops_mkfiles(&lwin, 1, names, 1);

	/* Remove both files afterward to make sure they can both be created at the
	 * same time. */
	assert_success(unlink("new-file"));
	assert_success(unlink("dir/new-file"));

	assert_success(rmdir("dir"));
}

TEST(check_by_absolute_path_is_performed_beforehand)
{
	char name_a[] = "a";
	char name_b[PATH_MAX + 8];
	char *names[] = { name_a, name_b };

	snprintf(name_b, sizeof(name_b), "%s/b", lwin.curr_dir);
	create_file(name_b);

	(void)fops_mkfiles(&lwin, -1, names, 2);

	assert_failure(unlink("a"));
	assert_success(unlink("b"));
}

/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 : */
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