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-2025
   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 <https://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 START_TEST (test_widget_find_by_id)
     /* [previous][next][first][last][top][bottom][index][help]  */
  39 {
  40     WGroup *g, *g0;
  41     Widget *w0;
  42     WRect r;
  43 
  44     g = g_new0 (WGroup, 1);
  45     rect_init (&r, 0, 0, 20, 20);
  46     group_init (g, &r, NULL, NULL);  // ID = 0
  47 
  48     g0 = g_new0 (WGroup, 1);
  49     rect_init (&r, 0, 0, 10, 10);
  50     group_init (g0, &r, NULL, NULL);  // ID = 1
  51     group_add_widget (g, g0);
  52 
  53     w0 = g_new0 (Widget, 1);
  54     rect_init (&r, 0, 0, 5, 5);
  55     widget_init (w0, &r, widget_default_callback, NULL);  // ID = 2
  56     group_add_widget (g0, w0);
  57 
  58     w0 = g_new0 (Widget, 1);
  59     rect_init (&r, 5, 5, 5, 5);
  60     widget_init (w0, &r, widget_default_callback, NULL);  // ID = 3
  61     group_add_widget (g0, w0);
  62 
  63     g0 = g_new0 (WGroup, 1);
  64     rect_init (&r, 10, 10, 10, 10);
  65     group_init (g0, &r, NULL, NULL);  // ID = 4
  66     group_add_widget (g, g0);
  67 
  68     w0 = g_new0 (Widget, 1);
  69     rect_init (&r, 10, 10, 5, 5);
  70     widget_init (w0, &r, widget_default_callback, NULL);  // ID = 5
  71     group_add_widget (g0, w0);
  72 
  73     w0 = g_new0 (Widget, 1);
  74     rect_init (&r, 15, 15, 5, 5);
  75     widget_init (w0, &r, widget_default_callback, NULL);  // ID = 6
  76     group_add_widget (g0, w0);
  77 
  78     w0 = g_new0 (Widget, 1);
  79     rect_init (&r, 5, 5, 10, 10);
  80     widget_init (w0, &r, widget_default_callback, NULL);  // ID = 7
  81     group_add_widget (g, w0);
  82 
  83     w0 = WIDGET (g);
  84 
  85     ck_assert_msg (widget_find_by_id (w0, 0) != NULL, "Not found ID=0");
  86     ck_assert_msg (widget_find_by_id (w0, 1) != NULL, "Not found ID=1");
  87     ck_assert_msg (widget_find_by_id (w0, 2) != NULL, "Not found ID=2");
  88     ck_assert_msg (widget_find_by_id (w0, 3) != NULL, "Not found ID=3");
  89     ck_assert_msg (widget_find_by_id (w0, 4) != NULL, "Not found ID=4");
  90     ck_assert_msg (widget_find_by_id (w0, 5) != NULL, "Not found ID=5");
  91     ck_assert_msg (widget_find_by_id (w0, 6) != NULL, "Not found ID=6");
  92     ck_assert_msg (widget_find_by_id (w0, 7) != NULL, "Not found ID=7");
  93     ck_assert_msg (widget_find_by_id (w0, 8) == NULL, "Found ID=8");
  94 
  95     send_message (g, NULL, MSG_INIT, 0, NULL);
  96     widget_destroy (w0);
  97 }
  98 END_TEST
  99 
 100 /* --------------------------------------------------------------------------------------------- */
 101 
 102 int
 103 main (void)
     /* [previous][next][first][last][top][bottom][index][help]  */
 104 {
 105     TCase *tc_core;
 106 
 107     tc_core = tcase_create ("Core");
 108 
 109     // Add new tests here: ***************
 110     tcase_add_test (tc_core, test_widget_find_by_id);
 111     // ***********************************
 112 
 113     return mctest_run_all (tc_core);
 114 }
 115 
 116 /* --------------------------------------------------------------------------------------------- */

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