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 / menus / cabbrevs.c (49a54d7c8a9489b3c04f34ef83b3a31410e0acac) (3,677B) (mode 100644) [raw]
#include <stic.h>

#include <ctype.h> /* isspace() */
#include <stddef.h> /* NULL */
#include <string.h> /* memset() */

#include <test-utils.h>

#include "../../src/cfg/config.h"
#include "../../src/engine/abbrevs.h"
#include "../../src/engine/keys.h"
#include "../../src/lua/vlua.h"
#include "../../src/menus/cabbrevs_menu.h"
#include "../../src/modes/menu.h"
#include "../../src/modes/modes.h"
#include "../../src/ui/ui.h"
#include "../../src/cmd_core.h"
#include "../../src/status.h"
#include "../lua/asserts.h"

SETUP()
{
	conf_setup();
	modes_init();
	cmds_init();

	curr_view = &lwin;
	other_view = &rwin;
	view_setup(&lwin);

	curr_stats.load_stage = -1;
	curr_stats.save_msg = 0;
}

TEARDOWN()
{
	modes_abort_menu_like();

	vle_abbr_reset();
	vle_keys_reset();
	conf_teardown();

	view_teardown(&lwin);
	curr_view = NULL;
	other_view = NULL;

	curr_stats.load_stage = 0;
}

TEST(title_and_no_remap)
{
	assert_success(vle_abbr_add_no_remap(L"lhs1", L"rhs1"));
	assert_success(vle_abbr_add(L"lhs2", L"rhs2"));
	assert_success(vle_abbr_add(L"lhs3", L""));

	assert_success(cmds_dispatch("cabbrev", &lwin, CIT_COMMAND));

	menu_data_t *m = menu_get_current();
	assert_int_equal(3, m->len);
	assert_string_equal("Abbreviation -- N -- Expansion/Description", m->title);
	assert_string_equal("lhs1              *    rhs1", m->items[0]);
	assert_string_equal("lhs2                   rhs2", m->items[1]);
	assert_string_equal("lhs3                   <nop>", m->items[2]);
}

TEST(bracket_notation_in_rhs)
{
	int i;
	for(i = 0; i < 255; ++i)
	{
		cfg.word_chars[i] = !isspace(i);
	}

	assert_success(cmds_dispatch("cnoreabbrev lhs <lt>", &lwin, CIT_COMMAND));

	assert_success(cmds_dispatch("cabbrev", &lwin, CIT_COMMAND));

	menu_data_t *m = menu_get_current();
	assert_int_equal(1, m->len);
	assert_string_equal("lhs               *    <lt>", m->items[0]);

	memset(cfg.word_chars, 0, sizeof(cfg.word_chars));
}

TEST(lua_abbrevs)
{
	int no_remap;
	menu_data_t *m;

	curr_stats.vlua = vlua_init();

	GLUA_EQ(curr_stats.vlua, "",
			"function handler(info)"
			"  return { rhs = 'should not be shown' }"
			"end");
	GLUA_EQ(curr_stats.vlua, "true",
			"print(vifm.abbrevs.add {"
			"  lhs = 'lhs1',"
			"  handler = handler,"
			"})");
	GLUA_EQ(curr_stats.vlua, "true",
			"print(vifm.abbrevs.add {"
			"  lhs = 'lhs2',"
			"  description = 'descr',"
			"  handler = handler,"
			"})");
	GLUA_EQ(curr_stats.vlua, "true",
			"print(vifm.abbrevs.add {"
			"  lhs = 'lhs3',"
			"  noremap = false,"
			"  handler = handler,"
			"})");

	/* Trigger expansion to make sure `rhs` is not used as a description when both
	 * are non-NULL. */
	assert_non_null(vle_abbr_expand(L"lhs1", &no_remap));
	assert_non_null(vle_abbr_expand(L"lhs2", &no_remap));

	assert_success(cmds_dispatch("cabbrev", &lwin, CIT_COMMAND));

	m = menu_get_current();
	assert_int_equal(3, m->len);
	assert_string_equal("lhs1              *    ",      m->items[0]);
	assert_string_equal("lhs2              *    descr", m->items[1]);
	assert_string_equal("lhs3                   ",      m->items[2]);

	modes_abort_menu_like();

	/* Replacing with cabbrevs changes description. */
	assert_success(vle_abbr_add_no_remap(L"lhs1", L"rhs1"));
	assert_success(vle_abbr_add(L"lhs2", L"rhs2"));

	assert_success(cmds_dispatch("cabbrev", &lwin, CIT_COMMAND));

	m = menu_get_current();
	assert_int_equal(3, m->len);
	assert_string_equal("lhs1              *    rhs1", m->items[0]);
	assert_string_equal("lhs2                   rhs2", m->items[1]);

	vlua_finish(curr_stats.vlua);
	curr_stats.vlua = NULL;
}

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