mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
b77a48c628
* tests: initialize char* in mode test Currently, test_mode_result relies on undefined behavior. The test calls mode_result, which checks whether the pointer is NULL. However, the pointer was never initialized, so it may or may not be NULL, depending on the compiler. This caused a test failure on ppc64 and Fedora 28, apparently because in this setting, gcc sets uninitialized pointers to NULL. By initializing the pointer to the empty string, the behavior is defined and the test passes on all architectures. * mode: fix input pointer check in mode_result Do not check whether *input (i.e., the char* the input points to) is NULL, as this is valid. Instead, check whether the input itself is NULL. * tests: make char* input arg in test_mode_result modifiable The function mode_result expects a modifiable char*, initialize the argument properly so it can be modified.
201 lines
5.7 KiB
C
201 lines
5.7 KiB
C
/*
|
|
* rofi
|
|
*
|
|
* MIT/X11 License
|
|
* Copyright © 2013-2017 Qball Cow <qball@gmpclient.org>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
* the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <assert.h>
|
|
#include <glib.h>
|
|
#include <string.h>
|
|
|
|
#include <mode.h>
|
|
#include <mode-private.h>
|
|
#include <dialogs/help-keys.h>
|
|
#include <xkbcommon/xkbcommon.h>
|
|
#include "rofi.h"
|
|
#include "display.h"
|
|
#include "xcb.h"
|
|
#include <keyb.h>
|
|
#include <helper.h>
|
|
|
|
#include <check.h>
|
|
|
|
void rofi_add_error_message ( G_GNUC_UNUSED GString *msg )
|
|
{
|
|
}
|
|
int monitor_active ( G_GNUC_UNUSED workarea *d )
|
|
{
|
|
return 0;
|
|
}
|
|
int rofi_view_error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
|
|
{
|
|
fputs ( msg, stderr );
|
|
return TRUE;
|
|
}
|
|
int textbox_get_estimated_char_height ( void );
|
|
int textbox_get_estimated_char_height ( void )
|
|
{
|
|
return 16;
|
|
}
|
|
void rofi_view_get_current_monitor ( G_GNUC_UNUSED int *width, G_GNUC_UNUSED int *height )
|
|
{
|
|
|
|
}
|
|
RofiViewState * rofi_view_get_active ( void )
|
|
{
|
|
return NULL;
|
|
}
|
|
gboolean rofi_view_trigger_action ( G_GNUC_UNUSED RofiViewState *state, G_GNUC_UNUSED BindingsScope scope, G_GNUC_UNUSED guint action )
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
void display_startup_notification ( G_GNUC_UNUSED RofiHelperExecuteContext *context, G_GNUC_UNUSED GSpawnChildSetupFunc *child_setup, G_GNUC_UNUSED gpointer *user_data )
|
|
{
|
|
}
|
|
|
|
#ifndef _ck_assert_ptr_null
|
|
/* Pointer against NULL comparison macros with improved output
|
|
* compared to ck_assert(). */
|
|
/* OP may only be == or != */
|
|
#define _ck_assert_ptr_null(X, OP) do { \
|
|
const void* _ck_x = (X); \
|
|
ck_assert_msg(_ck_x OP NULL, \
|
|
"Assertion '%s' failed: %s == %#x", \
|
|
#X" "#OP" NULL", \
|
|
#X, _ck_x); \
|
|
} while (0)
|
|
|
|
#define ck_assert_ptr_null(X) _ck_assert_ptr_null(X, ==)
|
|
#define ck_assert_ptr_nonnull(X) _ck_assert_ptr_null(X, !=)
|
|
#endif
|
|
static void test_mode_setup ( void )
|
|
{
|
|
ck_assert_int_eq ( mode_init ( &help_keys_mode ), TRUE);
|
|
}
|
|
static void test_mode_teardown (void )
|
|
{
|
|
mode_destroy ( &help_keys_mode );
|
|
}
|
|
|
|
START_TEST(test_mode_create)
|
|
{
|
|
ck_assert_ptr_nonnull ( help_keys_mode.private_data );
|
|
}
|
|
END_TEST
|
|
|
|
START_TEST(test_mode_destroy)
|
|
{
|
|
mode_destroy ( &help_keys_mode );
|
|
ck_assert_ptr_null ( help_keys_mode.private_data );
|
|
}
|
|
END_TEST
|
|
|
|
START_TEST(test_mode_num_items)
|
|
{
|
|
unsigned int rows = mode_get_num_entries ( &help_keys_mode);
|
|
ck_assert_int_eq ( rows, 71);
|
|
for ( unsigned int i =0; i < rows; i++ ){
|
|
int state = 0;
|
|
GList *list = NULL;
|
|
char *v = mode_get_display_value ( &help_keys_mode, i, &state, &list, TRUE );
|
|
ck_assert_ptr_nonnull ( v );
|
|
g_free ( v );
|
|
v = mode_get_display_value ( &help_keys_mode, i, &state, &list, FALSE );
|
|
ck_assert_ptr_null ( v );
|
|
}
|
|
mode_destroy ( &help_keys_mode );
|
|
}
|
|
END_TEST
|
|
|
|
START_TEST(test_mode_result)
|
|
{
|
|
char res[] = "";
|
|
ck_assert_int_eq ( mode_result ( &help_keys_mode, MENU_NEXT, &res,0), NEXT_DIALOG);
|
|
ck_assert_int_eq ( mode_result ( &help_keys_mode, MENU_PREVIOUS, &res,0), PREVIOUS_DIALOG);
|
|
ck_assert_int_eq ( mode_result ( &help_keys_mode, MENU_QUICK_SWITCH|1, &res,0), 1);
|
|
ck_assert_int_eq ( mode_result ( &help_keys_mode, MENU_QUICK_SWITCH|2, &res,0), 2);
|
|
|
|
}
|
|
END_TEST
|
|
|
|
START_TEST(test_mode_match_entry)
|
|
{
|
|
rofi_int_matcher **t = helper_tokenize( "primary-paste", FALSE );
|
|
ck_assert_ptr_nonnull ( t );
|
|
|
|
ck_assert_int_eq ( mode_token_match ( &help_keys_mode, t, 0), TRUE );
|
|
ck_assert_int_eq ( mode_token_match ( &help_keys_mode, t, 1), FALSE );
|
|
helper_tokenize_free ( t );
|
|
t = helper_tokenize( "y-paste", FALSE );
|
|
ck_assert_ptr_nonnull ( t );
|
|
|
|
ck_assert_int_eq ( mode_token_match ( &help_keys_mode, t, 0), TRUE );
|
|
ck_assert_int_eq ( mode_token_match ( &help_keys_mode, t, 1), TRUE );
|
|
ck_assert_int_eq ( mode_token_match ( &help_keys_mode, t, 2), FALSE );
|
|
helper_tokenize_free ( t );
|
|
|
|
}
|
|
END_TEST
|
|
|
|
static Suite * mode_suite (void)
|
|
{
|
|
Suite *s;
|
|
TCase *tc_core;
|
|
|
|
s = suite_create("Mode");
|
|
|
|
/* Core test case */
|
|
tc_core = tcase_create("HelpKeys");
|
|
tcase_add_checked_fixture(tc_core, test_mode_setup, test_mode_teardown);
|
|
tcase_add_test(tc_core, test_mode_create);
|
|
tcase_add_test(tc_core, test_mode_num_items);
|
|
tcase_add_test(tc_core, test_mode_result );
|
|
tcase_add_test(tc_core, test_mode_destroy);
|
|
tcase_add_test(tc_core, test_mode_match_entry );
|
|
suite_add_tcase(s, tc_core);
|
|
|
|
return s;
|
|
}
|
|
|
|
|
|
int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
|
|
{
|
|
setup_abe ();
|
|
int number_failed = 0;
|
|
Suite *s;
|
|
SRunner *sr;
|
|
|
|
s = mode_suite();
|
|
sr = srunner_create(s);
|
|
|
|
srunner_run_all(sr, CK_NORMAL);
|
|
number_failed = srunner_ntests_failed(sr);
|
|
srunner_free(sr);
|
|
return (number_failed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
}
|