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 / keys / count.c (0fcb06bd1d6303d310c8ddc067ec31b4042bd140) (1,286B) (mode 100644) [raw]
#include <stic.h>

#include <limits.h> /* INT_MAX */
#include <stdlib.h> /* free() */
#include <wchar.h> /* wchar_t */

#include "../../src/engine/keys.h"
#include "../../src/modes/modes.h"
#include "../../src/utils/str.h"

#include "builtin_keys.h"

SETUP()
{
	vle_keys_user_add(L"abc", L"", NORMAL_MODE, KEYS_FLAG_NONE);
}

TEST(no_number_get_not_def)
{
	assert_false(IS_KEYS_RET_CODE(vle_keys_exec(L"dd")));
	assert_int_equal(NO_COUNT_GIVEN, last_command_count);
}

TEST(normal_number_get_it)
{
	assert_false(IS_KEYS_RET_CODE(vle_keys_exec(L"123dd")));
	assert_int_equal(123, last_command_count);
}

TEST(huge_number_get_intmax)
{
	assert_false(IS_KEYS_RET_CODE(vle_keys_exec(L"999999999999dd")));
	assert_int_equal(INT_MAX, last_command_count);
}

TEST(max_count_is_handled_correctly)
{
	char *const keys = format_str("%udd", INT_MAX);
	wchar_t *const keysw = to_wide(keys);

	assert_false(IS_KEYS_RET_CODE(vle_keys_exec(keysw)));
	assert_int_equal(INT_MAX, last_command_count);

	free(keysw);
	free(keys);
}

TEST(nops_count_not_passed)
{
	assert_false(IS_KEYS_RET_CODE(vle_keys_exec(L"10abcdd")));
	assert_int_equal(NO_COUNT_GIVEN, last_command_count);
}

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