widget_find_by_id.c 3.5 KB

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