rofi/test/textbox-test.c

188 lines
6.3 KiB
C
Raw Normal View History

/*
* 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 <stdio.h>
#include <assert.h>
#include <glib.h>
#include <history.h>
#include <string.h>
2016-02-21 15:40:29 +00:00
#include <xcb/xcb.h>
#include <widgets/textbox.h>
#include <rofi.h>
#include <cairo-xlib.h>
2016-01-07 15:01:56 +00:00
#include "settings.h"
#include "xrmoptions.h"
2015-09-16 19:01:40 +00:00
static int test = 0;
unsigned int normal_window_mode = 0;
2015-07-28 20:14:21 +00:00
#define TASSERT( a ) { \
assert ( a ); \
printf ( "Test %3i passed (%s)\n", ++test, # a ); \
}
2016-02-06 13:27:36 +00:00
#include "view.h"
2017-01-09 22:15:45 +00:00
void config_parse_set_property ( G_GNUC_UNUSED const Property *p )
2017-03-28 10:08:14 +00:00
{
}
void rofi_add_error_message ( G_GNUC_UNUSED GString *msg)
2017-01-09 22:15:45 +00:00
{
}
2016-02-06 12:06:58 +00:00
void rofi_view_queue_redraw ()
{
2016-02-28 00:21:22 +00:00
}
void rofi_view_get_current_monitor ( G_GNUC_UNUSED int *width, G_GNUC_UNUSED int *height )
2017-01-03 18:35:23 +00:00
{
2017-01-03 18:35:23 +00:00
}
2016-03-03 07:23:12 +00:00
int rofi_view_error_dialog ( const char *msg, G_GNUC_UNUSED int markup )
2015-07-28 20:22:18 +00:00
{
fputs ( msg, stderr );
2016-03-03 07:23:12 +00:00
return FALSE;
2015-07-28 20:22:18 +00:00
}
2015-02-09 18:58:17 +00:00
int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
{
2016-02-28 14:32:53 +00: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 );
textbox_setup();
2017-01-26 16:40:46 +00:00
textbox_set_pango_context ( "default", p );
2017-01-01 15:32:01 +00:00
textbox *box = textbox_create ( "textbox", TB_EDITABLE | TB_AUTOWIDTH | TB_AUTOHEIGHT, NORMAL, "test" );
2015-07-28 20:14:21 +00:00
TASSERT ( box != NULL );
textbox_keybinding ( box, MOVE_END );
2015-07-28 20:14:21 +00:00
TASSERT ( box->cursor == 4 );
textbox_cursor ( box, -1 );
2015-07-28 19:54:08 +00:00
TASSERT ( box->cursor == 0 );
textbox_cursor ( box, 8 );
2015-07-28 19:54:08 +00:00
TASSERT ( box->cursor == 4 );
textbox_cursor ( box, 2 );
2015-07-28 19:54:08 +00:00
TASSERT ( box->cursor == 2 );
textbox_insert ( box, 3, "bo", 2 );
2015-07-28 20:14:21 +00:00
TASSERT ( strcmp ( box->text, "tesbot" ) == 0 );
textbox_keybinding ( box, MOVE_END );
2015-07-28 20:14:21 +00:00
TASSERT ( box->cursor == 6 );
TASSERT ( widget_get_width ( WIDGET ( box ) ) > 0 );
2015-07-28 20:14:21 +00:00
TASSERT ( textbox_get_height ( box ) > 0 );
TASSERT ( widget_get_width ( WIDGET ( box ) ) >= textbox_get_font_width ( box ) );
2015-07-28 20:14:21 +00:00
TASSERT ( textbox_get_height ( box ) >= textbox_get_font_height ( box ) );
2015-07-28 20:14:21 +00:00
TASSERT ( textbox_get_estimated_char_width ( ) > 0 );
textbox_keybinding ( box, REMOVE_CHAR_BACK );
2015-07-28 20:14:21 +00:00
TASSERT ( strcmp ( box->text, "tesbo" ) == 0 );
TASSERT ( box->cursor == 5 );
textbox_keybinding ( box, MOVE_CHAR_BACK );
2015-07-28 20:14:21 +00:00
TASSERT ( box->cursor == 4 );
textbox_keybinding ( box, REMOVE_CHAR_FORWARD );
2015-07-28 20:14:21 +00:00
TASSERT ( strcmp ( box->text, "tesb" ) == 0 );
textbox_keybinding ( box, MOVE_CHAR_BACK );
2015-07-28 20:14:21 +00:00
TASSERT ( box->cursor == 3 );
textbox_keybinding ( box, MOVE_CHAR_FORWARD );
2015-07-28 20:14:21 +00:00
TASSERT ( box->cursor == 4 );
textbox_keybinding ( box, MOVE_CHAR_FORWARD );
2015-07-28 20:14:21 +00:00
TASSERT ( box->cursor == 4 );
// Cursor after delete section.
textbox_delete ( box, 0, 1 );
2015-07-28 20:14:21 +00:00
TASSERT ( strcmp ( box->text, "esb" ) == 0 );
TASSERT ( box->cursor == 3 );
// Cursor before delete.
2015-07-28 20:14:21 +00: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 20:14:21 +00:00
TASSERT ( strcmp ( box->text, "aapmies" ) == 0 );
TASSERT ( box->cursor == 3 );
// Cursor within delete
2015-07-28 20:14:21 +00: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 20:14:21 +00:00
TASSERT ( strcmp ( box->text, "aapmies" ) == 0 );
TASSERT ( box->cursor == 3 );
2015-07-28 19:54:08 +00:00
// Cursor after delete.
2015-07-28 20:14:21 +00: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 20:14:21 +00:00
TASSERT ( strcmp ( box->text, "aapmies" ) == 0 );
TASSERT ( box->cursor == 5 );
textbox_text ( box, "aap noot mies" );
textbox_cursor ( box, 8 );
textbox_keybinding ( box, REMOVE_WORD_BACK );
TASSERT ( box->cursor == 4 );
TASSERT ( strcmp ( box->text, "aap mies" ) == 0 );
textbox_keybinding ( box, REMOVE_TO_EOL );
TASSERT ( box->cursor == 4 );
TASSERT ( strcmp ( box->text, "aap " ) == 0 );
textbox_text ( box, "aap noot mies" );
textbox_cursor ( box, 8 );
textbox_keybinding ( box, REMOVE_WORD_FORWARD );
TASSERT ( strcmp ( box->text, "aap noot" ) == 0 );
textbox_keybinding ( box, MOVE_FRONT );
TASSERT ( box->cursor == 0 );
textbox_keybinding ( box, CLEAR_LINE );
TASSERT ( strcmp ( box->text, "" ) == 0 );
textbox_text ( box, "aap noot mies" );
textbox_keybinding ( box, MOVE_END );
textbox_keybinding ( box, MOVE_WORD_BACK );
TASSERT ( box->cursor == 9 );
textbox_keybinding ( box, MOVE_WORD_BACK );
TASSERT ( box->cursor == 4 );
textbox_keybinding ( box, REMOVE_TO_SOL );
TASSERT ( strcmp ( box->text, "noot mies" ) == 0 );
TASSERT ( box->cursor == 0 );
textbox_font ( box, HIGHLIGHT );
2016-02-28 00:21:22 +00:00
//textbox_draw ( box, draw );
2016-01-09 18:25:03 +00:00
widget_move ( WIDGET ( box ), 12, 13 );
TASSERT ( box->widget.x == 12 );
TASSERT ( box->widget.y == 13 );
widget_free ( WIDGET ( box ) );
2015-07-28 20:14:21 +00:00
textbox_cleanup ( );
}