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 / utils / tilde.c (127f020d0cb7eefbece5c4a56b1b5e4621a1bd46) (1,235B) (mode 100644) [raw]
#include <stic.h>

#include <stdio.h> /* snprintf() */
#include <stdlib.h> /* free() */
#include <string.h> /* strcpy() */

#include "../../src/cfg/config.h"
#include "../../src/compat/fs_limits.h"
#include "../../src/utils/path.h"

TEST(no_tilde)
{
	char *expanded = expand_tilde("/no/tilde");
	assert_string_equal("/no/tilde", expanded);
	free(expanded);
}

TEST(just_the_tilde)
{
	strcpy(cfg.home_dir, "/homedir/");

	char *expanded = expand_tilde("~");
	assert_string_equal("/homedir/", expanded);
	free(expanded);
}

TEST(tilde_and_slash)
{
	strcpy(cfg.home_dir, "/homedir/");

	char *expanded = expand_tilde("~/");
	assert_string_equal("/homedir/", expanded);
	free(expanded);
}

TEST(tilde_and_path)
{
	strcpy(cfg.home_dir, "/homedir/");

	char *expanded = expand_tilde("~/path");
	assert_string_equal("/homedir/path", expanded);
	free(expanded);
}

TEST(invalid_user_name)
{
	char *expanded = expand_tilde("~6r|o_o-t0#a!!!");
	assert_string_equal("~6r|o_o-t0#a!!!", expanded);
	free(expanded);
}

TEST(huge_user_name_after_tilde)
{
	char path[PATH_MAX*2 + 1];
	snprintf(path, sizeof(path), "~%*s/", (int)sizeof(path) - 7, "name");

	char *expanded = expand_tilde(path);
	assert_string_equal(path, expanded);
	free(expanded);
}
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