rofi/test/helper-test.c

97 lines
2.9 KiB
C
Raw Normal View History

#include <assert.h>
2015-12-08 07:39:18 +00:00
#include <locale.h>
#include <glib.h>
#include <stdio.h>
#include <helper.h>
#include <string.h>
static int test = 0;
2015-07-28 20:14:21 +00:00
#define TASSERT( a ) { \
assert ( a ); \
printf ( "Test %i passed (%s)\n", ++test, # a ); \
}
2015-07-28 20:22:18 +00:00
void error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
{
fputs ( msg, stderr );
}
int show_error_message ( const char *msg, int markup )
2015-07-28 20:22:18 +00:00
{
error_dialog ( msg, markup );
return 0;
2015-07-28 20:22:18 +00:00
}
#include <x11-helper.h>
2015-10-18 17:02:19 +00:00
int monitor_get_smallest_size ( G_GNUC_UNUSED Display *d )
{
2015-10-18 17:02:19 +00:00
return 0;
}
2015-10-18 17:02:19 +00:00
int monitor_get_dimension ( G_GNUC_UNUSED Display *d, G_GNUC_UNUSED Screen *screen, G_GNUC_UNUSED int monitor, G_GNUC_UNUSED workarea *mon )
{
2015-10-18 17:02:19 +00:00
return 0;
}
2015-07-28 20:22:18 +00:00
2015-03-11 17:32:37 +00:00
int main ( int argc, char ** argv )
{
2015-07-28 20:14:21 +00:00
cmd_set_arguments ( argc, argv );
2015-12-08 07:39:18 +00:00
if ( setlocale ( LC_ALL, "" ) == NULL ) {
fprintf ( stderr, "Failed to set locale.\n" );
return EXIT_FAILURE;
}
2015-07-28 20:14:21 +00:00
char **list = NULL;
int llength = 0;
2015-09-19 10:21:30 +00:00
char * test_str =
"{host} {terminal} -e bash -c \"{ssh-client} {host}; echo '{terminal} {host}'\"";
2015-07-28 20:14:21 +00:00
helper_parse_setup ( test_str, &list, &llength, "{host}", "chuck",
"{terminal}", "x-terminal-emulator", NULL );
2015-07-28 20:14:21 +00:00
TASSERT ( llength == 6 );
TASSERT ( strcmp ( list[0], "chuck" ) == 0 );
TASSERT ( strcmp ( list[1], "x-terminal-emulator" ) == 0 );
TASSERT ( strcmp ( list[2], "-e" ) == 0 );
TASSERT ( strcmp ( list[3], "bash" ) == 0 );
TASSERT ( strcmp ( list[4], "-c" ) == 0 );
TASSERT ( strcmp ( list[5], "ssh chuck; echo 'x-terminal-emulator chuck'" ) == 0 );
2015-12-08 07:39:18 +00:00
g_strfreev ( list );
2015-07-28 19:54:08 +00:00
2015-12-02 16:56:25 +00:00
/**
* Test some path functions. Not easy as not sure what is right output on travis.
*/
// Test if root is preserved.
2015-12-03 21:48:30 +00:00
char *str = rofi_expand_path ( "/" );
TASSERT ( strcmp ( str, "/" ) == 0 );
g_free ( str );
2015-12-02 16:56:25 +00:00
// Test is relative path is preserved.
2015-12-03 21:48:30 +00:00
str = rofi_expand_path ( "../AUTHORS" );
TASSERT ( strcmp ( str, "../AUTHORS" ) == 0 );
g_free ( str );
2015-12-02 16:56:25 +00:00
// Test another one.
2015-12-03 21:48:30 +00:00
str = rofi_expand_path ( "/bin/false" );
TASSERT ( strcmp ( str, "/bin/false" ) == 0 );
g_free ( str );
2015-12-02 16:56:25 +00:00
// See if user paths get expanded in full path.
2015-12-03 21:48:30 +00:00
str = rofi_expand_path ( "~/" );
const char *hd = g_get_home_dir ();
TASSERT ( strcmp ( str, hd ) == 0 );
g_free ( str );
str = rofi_expand_path ( "~root/" );
2015-12-02 08:53:39 +00:00
TASSERT ( str[0] == '/' );
2015-12-03 21:48:30 +00:00
g_free ( str );
2015-12-02 08:53:39 +00:00
2015-12-08 07:39:18 +00:00
/**
* Collating.
*/
char *res = token_collate_key ( "€ Sign",FALSE);
TASSERT ( strcmp(res, "€ sign") == 0);
g_free(res);
res = token_collate_key ( "éÉêèë Sign",FALSE);
TASSERT ( strcmp(res, "ééêèë sign") == 0);
g_free(res);
2015-12-08 07:44:44 +00:00
res = token_collate_key ( "éÉêèë³ Sign",TRUE);
TASSERT ( strcmp(res, "éÉêèë3 Sign") == 0);
2015-12-08 07:39:18 +00:00
g_free(res);
}