1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-27 05:23:18 -04:00
rofi/test/textbox-test.c

135 lines
4 KiB
C
Raw Normal View History

#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <glib.h>
#include <history.h>
#include <string.h>
2016-02-21 10:40:29 -05:00
#include <xcb/xcb.h>
#include <textbox.h>
#include <rofi.h>
#include <cairo-xlib.h>
2016-01-07 10:01:56 -05:00
#include "settings.h"
2015-09-16 15:01:40 -04:00
static int test = 0;
unsigned int normal_window_mode = 0;
2015-07-28 16:14:21 -04:00
#define TASSERT( a ) { \
assert ( a ); \
printf ( "Test %3i passed (%s)\n", ++test, # a ); \
}
2016-02-06 08:27:36 -05:00
#include "view.h"
2016-02-06 07:06:58 -05:00
void rofi_view_queue_redraw ()
{
2016-02-27 19:21:22 -05:00
}
2016-03-05 14:16:10 -05:00
Color color_get ( G_GNUC_UNUSED const char *name )
2016-02-27 19:21:22 -05:00
{
2016-03-05 14:16:10 -05:00
Color retv = { 1.0, 1.0, 1.0, 1.0 };
return retv;
}
2016-03-03 02:23:12 -05:00
int rofi_view_error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
2015-07-28 16:22:18 -04:00
{
fputs ( msg, stderr );
2016-03-03 02:23:12 -05:00
return FALSE;
2015-07-28 16:22:18 -04:00
}
2016-03-05 14:16:10 -05:00
int abe_test_action ( G_GNUC_UNUSED KeyBindingAction action, G_GNUC_UNUSED unsigned int mask, G_GNUC_UNUSED xkb_keysym_t key )
2016-02-27 19:21:22 -05:00
{
return FALSE;
}
int show_error_message ( const char *msg, int markup )
2015-07-28 16:22:18 -04:00
{
2016-02-08 03:03:11 -05:00
rofi_view_error_dialog ( msg, markup );
return 0;
2015-07-28 16:22:18 -04:00
}
2015-02-09 13:58:17 -05:00
int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
{
2016-02-28 09:32:53 -05:00
cairo_surface_t *surf = cairo_image_surface_create ( CAIRO_FORMAT_ARGB32, 100, 100 );
cairo_t *draw = cairo_create ( surf );
PangoContext *p = pango_cairo_create_context ( draw );
2016-02-28 06:19:56 -05:00
textbox_set_pango_context ( p );
2015-12-23 13:16:47 -05:00
textbox *box = textbox_create ( TB_EDITABLE | TB_AUTOWIDTH | TB_AUTOHEIGHT, 0, 0, -1, -1,
NORMAL, "test" );
2015-07-28 16:14:21 -04:00
TASSERT ( box != NULL );
textbox_cursor_end ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( box->cursor == 4 );
textbox_cursor ( box, -1 );
2015-07-28 15:54:08 -04:00
TASSERT ( box->cursor == 0 );
textbox_cursor ( box, 8 );
2015-07-28 15:54:08 -04:00
TASSERT ( box->cursor == 4 );
textbox_cursor ( box, 2 );
2015-07-28 15:54:08 -04:00
TASSERT ( box->cursor == 2 );
textbox_insert ( box, 3, "bo", 2 );
2015-07-28 16:14:21 -04:00
TASSERT ( strcmp ( box->text, "tesbot" ) == 0 );
textbox_cursor_end ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( box->cursor == 6 );
2015-07-28 16:14:21 -04:00
TASSERT ( textbox_get_width ( box ) > 0 );
TASSERT ( textbox_get_height ( box ) > 0 );
2015-07-28 16:14:21 -04:00
TASSERT ( textbox_get_width ( box ) >= textbox_get_font_width ( box ) );
TASSERT ( textbox_get_height ( box ) >= textbox_get_font_height ( box ) );
2015-07-28 16:14:21 -04:00
TASSERT ( textbox_get_estimated_char_width ( ) > 0 );
textbox_cursor_bkspc ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( strcmp ( box->text, "tesbo" ) == 0 );
TASSERT ( box->cursor == 5 );
textbox_cursor_dec ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( box->cursor == 4 );
textbox_cursor_del ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( strcmp ( box->text, "tesb" ) == 0 );
textbox_cursor_dec ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( box->cursor == 3 );
textbox_cursor_inc ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( box->cursor == 4 );
textbox_cursor_inc ( box );
2015-07-28 16:14:21 -04:00
TASSERT ( box->cursor == 4 );
// Cursor after delete section.
textbox_delete ( box, 0, 1 );
2015-07-28 16:14:21 -04:00
TASSERT ( strcmp ( box->text, "esb" ) == 0 );
TASSERT ( box->cursor == 3 );
// Cursor before delete.
2015-07-28 16:14:21 -04:00
textbox_text ( box, "aap noot mies" );
TASSERT ( strcmp ( box->text, "aap noot mies" ) == 0 );
textbox_cursor ( box, 3 );
TASSERT ( box->cursor == 3 );
textbox_delete ( box, 3, 6 );
2015-07-28 16:14:21 -04:00
TASSERT ( strcmp ( box->text, "aapmies" ) == 0 );
TASSERT ( box->cursor == 3 );
// Cursor within delete
2015-07-28 16:14:21 -04:00
textbox_text ( box, "aap noot mies" );
TASSERT ( strcmp ( box->text, "aap noot mies" ) == 0 );
textbox_cursor ( box, 5 );
TASSERT ( box->cursor == 5 );
textbox_delete ( box, 3, 6 );
2015-07-28 16:14:21 -04:00
TASSERT ( strcmp ( box->text, "aapmies" ) == 0 );
TASSERT ( box->cursor == 3 );
2015-07-28 15:54:08 -04:00
// Cursor after delete.
2015-07-28 16:14:21 -04:00
textbox_text ( box, "aap noot mies" );
TASSERT ( strcmp ( box->text, "aap noot mies" ) == 0 );
textbox_cursor ( box, 11 );
TASSERT ( box->cursor == 11 );
textbox_delete ( box, 3, 6 );
2015-07-28 16:14:21 -04:00
TASSERT ( strcmp ( box->text, "aapmies" ) == 0 );
TASSERT ( box->cursor == 5 );
textbox_font ( box, HIGHLIGHT );
2016-02-27 19:21:22 -05:00
//textbox_draw ( box, draw );
2016-01-09 13:25:03 -05:00
widget_move ( WIDGET ( box ), 12, 13 );
TASSERT ( box->widget.x == 12 );
TASSERT ( box->widget.y == 13 );
2015-07-28 16:14:21 -04:00
textbox_free ( box );
textbox_cleanup ( );
}