root/tests/lib/widget/widget_find_by_id.c

/* [previous][next][first][last][top][bottom][index][help]  */

DEFINITIONS

This source file includes following definitions.
  1. START_TEST
  2. main

   1 /*
   2    libmc - checks for search widget with requested ID
   3 
   4    Copyright (C) 2020-2024
   5    The Free Software Foundation, Inc.
   6 
   7    Written by:
   8    Andrew Borodin <aborodin@vmail.ru>, 2020-2022
   9 
  10    This file is part of the Midnight Commander.
  11 
  12    The Midnight Commander is free software: you can redistribute it
  13    and/or modify it under the terms of the GNU General Public License as
  14    published by the Free Software Foundation, either version 3 of the License,
  15    or (at your option) any later version.
  16 
  17    The Midnight Commander is distributed in the hope that it will be useful,
  18    but WITHOUT ANY WARRANTY; without even the implied warranty of
  19    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20    GNU General Public License for more details.
  21 
  22    You should have received a copy of the GNU General Public License
  23    along with this program.  If not, see <http://www.gnu.org/licenses/>.
  24  */
  25 
  26 #define TEST_SUITE_NAME "lib/widget"
  27 
  28 #include <config.h>
  29 
  30 #include <check.h>
  31 
  32 #include "lib/widget.h"
  33 
  34 #include "tests/mctest.h"
  35 
  36 /* --------------------------------------------------------------------------------------------- */
  37 
  38 /* *INDENT-OFF* */
  39 START_TEST (test_widget_find_by_id)
     /* [previous][next][first][last][top][bottom][index][help]  */
  40 /* *INDENT-ON* */
  41 {
  42     WGroup *g, *g0;
  43     Widget *w0;
  44     WRect r;
  45 
  46     g = g_new0 (WGroup, 1);
  47     rect_init (&r, 0, 0, 20, 20);
  48     group_init (g, &r, NULL, NULL);     /* ID = 0 */
  49 
  50     g0 = g_new0 (WGroup, 1);
  51     rect_init (&r, 0, 0, 10, 10);
  52     group_init (g0, &r, NULL, NULL);    /* ID = 1 */
  53     group_add_widget (g, g0);
  54 
  55     w0 = g_new0 (Widget, 1);
  56     rect_init (&r, 0, 0, 5, 5);
  57     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 2 */
  58     group_add_widget (g0, w0);
  59 
  60     w0 = g_new0 (Widget, 1);
  61     rect_init (&r, 5, 5, 5, 5);
  62     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 3 */
  63     group_add_widget (g0, w0);
  64 
  65     g0 = g_new0 (WGroup, 1);
  66     rect_init (&r, 10, 10, 10, 10);
  67     group_init (g0, &r, NULL, NULL);    /* ID = 4 */
  68     group_add_widget (g, g0);
  69 
  70     w0 = g_new0 (Widget, 1);
  71     rect_init (&r, 10, 10, 5, 5);
  72     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 5 */
  73     group_add_widget (g0, w0);
  74 
  75     w0 = g_new0 (Widget, 1);
  76     rect_init (&r, 15, 15, 5, 5);
  77     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 6 */
  78     group_add_widget (g0, w0);
  79 
  80     w0 = g_new0 (Widget, 1);
  81     rect_init (&r, 5, 5, 10, 10);
  82     widget_init (w0, &r, widget_default_callback, NULL);        /* ID = 7 */
  83     group_add_widget (g, w0);
  84 
  85     w0 = WIDGET (g);
  86 
  87     ck_assert_msg (widget_find_by_id (w0, 0) != NULL, "Not found ID=0");
  88     ck_assert_msg (widget_find_by_id (w0, 1) != NULL, "Not found ID=1");
  89     ck_assert_msg (widget_find_by_id (w0, 2) != NULL, "Not found ID=2");
  90     ck_assert_msg (widget_find_by_id (w0, 3) != NULL, "Not found ID=3");
  91     ck_assert_msg (widget_find_by_id (w0, 4) != NULL, "Not found ID=4");
  92     ck_assert_msg (widget_find_by_id (w0, 5) != NULL, "Not found ID=5");
  93     ck_assert_msg (widget_find_by_id (w0, 6) != NULL, "Not found ID=6");
  94     ck_assert_msg (widget_find_by_id (w0, 7) != NULL, "Not found ID=7");
  95     ck_assert_msg (widget_find_by_id (w0, 8) == NULL, "Found ID=8");
  96 
  97     send_message (g, NULL, MSG_INIT, 0, NULL);
  98     widget_destroy (w0);
  99 }
 100 /* *INDENT-OFF* */
 101 END_TEST
 102 /* *INDENT-ON* */
 103 
 104 /* --------------------------------------------------------------------------------------------- */
 105 
 106 int
 107 main (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
 108 {
 109     TCase *tc_core;
 110 
 111     tc_core = tcase_create ("Core");
 112 
 113     /* Add new tests here: *************** */
 114     tcase_add_test (tc_core, test_widget_find_by_id);
 115     /* *********************************** */
 116 
 117     return mctest_run_all (tc_core);
 118 }
 119 
 120 /* --------------------------------------------------------------------------------------------- */

/* [previous][next][first][last][top][bottom][index][help]  */