1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
|
/*
* CUnit - A Unit testing framework library for C.
* Copyright (C) 2001 Anil Kumar
* Copyright (C) 2004,2005,2006 Anil Kumar, Jerry St.Clair
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* Implementation of the Curses based Test Interface.
*
* 01/Nov/2001 Started Curses based interface for CUnit. (AK)
*
* 04/Nov/2001 Added Scrolling Capability to the Details Window. (AK)
*
* 24/Nov/2001 Added List and Show Failure Capability to the Details Window.
* Also added group initialization failure message handler. (AK)
*
* 09-Aug-2004 New interface, made all curses local functions static. (JDS)
*/
/** @file
* Curses test interface with interactive output (implementation).
*/
/** @addtogroup Curses
@{
*/
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <assert.h>
#include <string.h>
#include <curses.h>
#include "CUnit.h"
#include "TestDB.h"
#include "Util.h"
#include "TestRun.h"
#include "CUCurses.h"
/*
* Type Definitions
*/
#ifndef false
#define false (0) /**< Local boolean definition for false. */
#endif
#ifndef true
#define true (~false) /**< Local boolean definition for true. */
#endif
/** Curses interface status flag. */
typedef enum
{
CONTINUE = 1, /**< Continue processing commands in current menu. */
MOVE_UP, /**< Move up to the previous menu. */
STOP /**< Stop processing (user selected 'Quit'). */
} STATUS;
/** Menu type. */
typedef enum
{
MAIN_MENU = 1,
GROUP_MENU
} MENU_TYPE;
/** Pointers to curses interface windows. */
typedef struct
{
WINDOW* pMainWin; /**< Main window. */
WINDOW* pTitleWin; /**< Title window. */
WINDOW* pProgressWin; /**< Progress bar window. */
WINDOW* pSummaryWin; /**< Summary window. */
WINDOW* pRunSummaryWin; /**< Run Summary window. */
WINDOW* pDetailsWin; /**< Details window. */
WINDOW* pOptionsWin; /**< Options window. */
} APPWINDOWS;
/** Window elements. */
typedef struct
{
WINDOW* pPad; /**< Pointer to the pad. */
unsigned int uiRows; /**< Number of rows in pad. */
unsigned int uiColumns; /**< Number of columns in pad. */
unsigned int uiPadRow; /**< Current pad row. */
unsigned int uiPadCol; /**< Current pad column. */
unsigned int uiWinLeft; /**< Left position of containing window. */
unsigned int uiWinTop; /**< Top position of containing window. */
unsigned int uiWinRows; /**< Number of rows in containing window. */
unsigned int uiWinColumns; /**< Number of columns in containing window. */
} APPPAD;
/*
* Constants definitions
*/
/** Standard string length. */
#define STRING_LENGTH 128
/** String holding main menu run options. */
static const char* MAIN_OPTIONS = "(R)un (S)elect Suite (L)ist (F)ailures (Q)uit";
/** String holding suite menu run options. */
static const char* SUITE_OPTIONS = "(R)un (S)elect Test (L)ist (F)ailures (U)p (Q)uit";
/*
* Color Pairs Initialized for the Various Parameter Display
*/
static const int CLEAR_COLOR = 1; /**< Clear color.*/
static const int TITLE_COLOR = 2; /**< Title color.*/
static const int PROGRESS_BACKGROUND_COLOR = 3; /**< progress bar background color.*/
static const int PROGRESS_SUCCESS_COLOR = 4; /**< Progress bar success color.*/
static const int PROGRESS_FAILURE_COLOR = 5; /**< Progress bar failure color.*/
static const int MENU_COLOR = 6; /**< Menu color.*/
/*
* Global Definitions
*/
static const char* const f_szProgress = "Progress "; /**< Test for progress bar. */
static const char* f_szOptions = NULL; /**< String containing options. */
static CU_pTest f_pCurrentTest = NULL; /**< Pointer to the test currently being run. */
static CU_pSuite f_pCurrentSuite = NULL; /**< Pointer to the suite currently being run. */
static unsigned int f_uiTotalTests = 0; /**< Number of tests in registered suites. */
static unsigned int f_uiTestsRun = 0; /**< Number of tests actually run. */
static unsigned int f_uiTestsSkipped = 0; /**< Number of tests skipped during run. */
static unsigned int f_uiTestsFailed = 0; /**< Number of tests having failed assertions. */
static unsigned int f_uiTestsRunSuccessful = 0; /**< Number of tests run with no failed assertions. */
static unsigned int f_uiTotalSuites = 0; /**< Number of registered suites. */
static unsigned int f_uiSuitesSkipped = 0; /**< Number of suites skipped during run. */
static short f_nLeft; /**< Left window position. */
static short f_nTop; /**< Top window position. */
static short f_nWidth; /**< Width of window. */
static short f_nHeight; /**< Height of window. */
/** Pointers to curses interface windows. */
static APPWINDOWS application_windows = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
/** Details window definition. */
static APPPAD details_pad = {NULL, 0, 0, 0, 0, 0, 0, 0, 0};
/*
* Function Declarations
*/
static bool initialize_windows(void);
static void uninitialize_windows(void);
static void refresh_windows(void);
static void refresh_title_window(void);
static void refresh_progress_window(void);
static void refresh_summary_window(void);
static void refresh_run_summary_window(void);
static void refresh_details_window(void);
static void refresh_options_window(void);
static bool create_pad(APPPAD* pPad, WINDOW* pParent, unsigned int uiRows, unsigned int uiCols);
static void scroll_window(int nCommand, APPPAD* pPad, void (*parent_refresh)(void));
static bool test_initialize(void);
static void show_progress_bar(void);
static const char* get_hotkey(const char* szStr, int* pPos);
static void read_input_string(const char szPropmt[], char szValue[], int nBytes);
static STATUS curses_registry_level_run(CU_pTestRegistry pRegistry);
static STATUS curses_suite_level_run(CU_pSuite pSuite);
static CU_ErrorCode curses_run_all_tests(CU_pTestRegistry pRegistry);
static CU_ErrorCode curses_run_suite_tests(CU_pSuite pSuite);
static CU_ErrorCode curses_run_single_test(CU_pSuite pSuite, CU_pTest pTest);
static void curses_test_start_message_handler(const CU_pTest pTest, const CU_pSuite pSuite);
static void curses_test_complete_message_handler(const CU_pTest pTest, const CU_pSuite pSuite,
const CU_pFailureRecord pFailure);
static void curses_all_tests_complete_message_handler(const CU_pFailureRecord pFailure);
static void curses_suite_init_failure_message_handler(const CU_pSuite pSuite);
static void list_suites(CU_pTestRegistry pRegistry);
static void list_tests(CU_pSuite pSuite);
static void show_failures(void);
static void reset_run_parameters(void);
/*------------------------------------------------------------------------*/
/** Run registered CUnit tests using the curses interface. */
void CU_curses_run_tests(void)
{
setvbuf(stdout, NULL, _IONBF, 0);
setvbuf(stderr, NULL, _IONBF, 0);
f_szOptions = MAIN_OPTIONS;
if (!initialize_windows()) {
return;
}
if (!test_initialize()) {
goto test_initialize_fail;
}
curses_registry_level_run(CU_get_registry());
/* THIS WAS COMMENTED OUT IN THE 1.1-1 SOURCE
f_uiTotalTests = 3000;
{
int i;
int iSucc = 0;
for (i = 0; i < 3000; i++, iSucc++) {
if (i && !(i%2000))
iSucc--;
f_uiTestsRun = i + 1;
f_uiTestsRunSuccessful = iSucc + 1;
refresh_progress_window();
refresh_summary_window();
refresh_run_summary_window();
}
}
f_uiTestsRunSuccessful = f_uiTestsRun = 0;
refresh_windows();
{
int i;
int iSucc = -1;
for (i = 0; i < 3000; i++, iSucc++) {
if (i && !(i%2000))
iSucc++;
f_uiTestsRun = i + 1;
f_uiTestsRunSuccessful = iSucc + 1;
refresh_progress_window();
refresh_summary_window();
refresh_run_summary_window();
}
}
*/
test_initialize_fail:
uninitialize_windows();
}
/*------------------------------------------------------------------------*/
/** Initialize the curses interface windows. */
static bool initialize_windows(void)
{
bool bStatus = false;
if (NULL == (application_windows.pMainWin = initscr())) {
goto main_fail;
}
start_color();
f_nLeft = application_windows.pMainWin->_begx;
f_nTop = application_windows.pMainWin->_begy;
f_nWidth = application_windows.pMainWin->_maxx;
f_nHeight = application_windows.pMainWin->_maxy;
if (NULL == (application_windows.pTitleWin = newwin(3, f_nWidth, 0, 0))) {
goto title_fail;
}
if (NULL == (application_windows.pProgressWin = newwin(2, f_nWidth, 3, 0))) {
goto progress_fail;
}
if (NULL == (application_windows.pSummaryWin = newwin(1, f_nWidth, 5, 0))) {
goto summary_fail;
}
if (NULL == (application_windows.pRunSummaryWin = newwin(1, f_nWidth, 6, 0))) {
goto run_summary_fail;
}
if (NULL == (application_windows.pDetailsWin = newwin(f_nHeight - f_nTop - 7 , f_nWidth, 7, 0))) {
goto details_fail;
}
if (NULL == (application_windows.pOptionsWin = newwin(1, f_nWidth, f_nHeight - f_nTop, 0))) {
goto option_fail;
}
curs_set(0);
noecho();
cbreak();
keypad(application_windows.pMainWin, CU_TRUE);
init_pair(CLEAR_COLOR, COLOR_WHITE, COLOR_BLACK);
init_pair(TITLE_COLOR, COLOR_WHITE, COLOR_BLACK);
init_pair(PROGRESS_BACKGROUND_COLOR, COLOR_BLACK, COLOR_WHITE);
init_pair(PROGRESS_SUCCESS_COLOR, COLOR_WHITE, COLOR_GREEN);
init_pair(PROGRESS_FAILURE_COLOR, COLOR_WHITE, COLOR_RED);
init_pair(MENU_COLOR, COLOR_WHITE, COLOR_BLACK);
refresh_windows();
bStatus = true;
goto main_fail;
/*
* Error Handlers for all the stages.
*/
option_fail:
delwin(application_windows.pDetailsWin);
details_fail:
delwin(application_windows.pRunSummaryWin);
run_summary_fail:
delwin(application_windows.pSummaryWin);
summary_fail:
delwin(application_windows.pProgressWin);
progress_fail:
delwin(application_windows.pTitleWin);
title_fail:
endwin();
main_fail:
return bStatus;
}
/*------------------------------------------------------------------------*/
/** Clean up and delete curses interface windows. */
static void uninitialize_windows(void)
{
curs_set(1);
echo();
nocbreak();
keypad(application_windows.pMainWin, CU_FALSE);
if (details_pad.pPad) {
delwin(details_pad.pPad);
}
delwin(application_windows.pOptionsWin);
delwin(application_windows.pDetailsWin);
delwin(application_windows.pRunSummaryWin);
delwin(application_windows.pSummaryWin);
delwin(application_windows.pProgressWin);
delwin(application_windows.pTitleWin);
clear();
refresh();
endwin();
}
/*------------------------------------------------------------------------*/
/** Refresh curses interface windows. */
static void refresh_windows(void)
{
refresh();
f_nLeft = application_windows.pMainWin->_begx;
f_nTop = application_windows.pMainWin->_begy;
f_nWidth = application_windows.pMainWin->_maxx;
f_nHeight = application_windows.pMainWin->_maxy;
refresh_title_window();
refresh_progress_window();
refresh_run_summary_window();
refresh_summary_window();
refresh_details_window();
refresh_options_window();
}
/*------------------------------------------------------------------------*/
/** Refresh the title window. */
static void refresh_title_window(void)
{
const char* const szPackageTitle = "CUnit - A Unit Testing Framework for \'C\' (v" CU_VERSION ")";
const char* const szSite = "http:\\\\cunit.sourceforge.net\\";
static bool bFirstTime = true;
if (!bFirstTime) {
return;
}
wattrset(application_windows.pTitleWin, A_BOLD | COLOR_PAIR(TITLE_COLOR));
mvwprintw(application_windows.pTitleWin,
0, f_nLeft + (f_nWidth - strlen(szPackageTitle))/2,
"%s", szPackageTitle);
wattrset(application_windows.pTitleWin, A_BOLD | A_UNDERLINE | COLOR_PAIR(TITLE_COLOR));
mvwprintw(application_windows.pTitleWin, 1, f_nLeft + (f_nWidth - strlen(szSite))/2,
"%s", szSite);
wattrset(application_windows.pTitleWin, A_NORMAL);
wrefresh(application_windows.pTitleWin);
}
/*------------------------------------------------------------------------*/
/** Refresh the progress bar window. */
static void refresh_progress_window(void)
{
wattrset(application_windows.pProgressWin, A_BOLD);
mvwprintw(application_windows.pProgressWin, 0, 1, (char *)f_szProgress);
show_progress_bar();
wrefresh(application_windows.pProgressWin);
}
/*------------------------------------------------------------------------*/
/** Refresh the summary window. */
static void refresh_summary_window(void)
{
const char* szSummary = "Run : %6u Tests Success : %6u Failed : %6u";
char szTemp[STRING_LENGTH];
memset(szTemp, 0, sizeof(szTemp));
snprintf(szTemp, STRING_LENGTH, szSummary, f_uiTestsRun, f_uiTestsRunSuccessful,
f_uiTestsRun - f_uiTestsRunSuccessful);
werase(application_windows.pSummaryWin);
mvwprintw(application_windows.pSummaryWin, 0, 1, "%s", szTemp);
wrefresh(application_windows.pSummaryWin);
}
/*------------------------------------------------------------------------*/
/** Refresh the run summary window. */
static void refresh_run_summary_window(void)
{
const char* szRunSummary = "Running test \'%s\' of Suite \'%s\'";
char szTemp[STRING_LENGTH];
if (f_pCurrentTest && f_pCurrentSuite) {
snprintf(szTemp, STRING_LENGTH, szRunSummary, f_pCurrentTest->pName, f_pCurrentSuite->pName);
}
else {
snprintf(szTemp, STRING_LENGTH, "%s", "");
}
werase(application_windows.pRunSummaryWin);
mvwprintw(application_windows.pRunSummaryWin, 0, 1, "%s", szTemp);
wrefresh(application_windows.pRunSummaryWin);
}
/*------------------------------------------------------------------------*/
/** Refresh the details window. */
static void refresh_details_window(void)
{
const char* szDetailsTitle = " Details Window";
box(application_windows.pDetailsWin, ACS_VLINE, ACS_HLINE);
mvwprintw(application_windows.pDetailsWin, 0,
f_nLeft + (f_nWidth - strlen(szDetailsTitle))/2, "%s", szDetailsTitle);
scrollok(application_windows.pDetailsWin, CU_TRUE);
wrefresh(application_windows.pDetailsWin);
if (details_pad.pPad) {
prefresh(details_pad.pPad, details_pad.uiPadRow, details_pad.uiPadCol,
details_pad.uiWinTop, details_pad.uiWinLeft,
details_pad.uiWinTop + details_pad.uiWinRows,
details_pad.uiWinLeft + details_pad.uiWinColumns);
}
}
/*------------------------------------------------------------------------*/
/** Refresh the options window. */
static void refresh_options_window(void)
{
int nPos = 0;
const char* szHotKey = NULL;
wclear(application_windows.pOptionsWin);
mvwprintw(application_windows.pOptionsWin, 0, 1, "%s", f_szOptions);
get_hotkey(f_szOptions, NULL);
wattron(application_windows.pOptionsWin, A_BOLD);
while (NULL != (szHotKey = get_hotkey((const char*)NULL, &nPos))) {
mvwaddstr(application_windows.pOptionsWin, 0, nPos + 1, szHotKey);
}
wattroff(application_windows.pOptionsWin, A_BOLD);
wrefresh(application_windows.pOptionsWin);
}
/*------------------------------------------------------------------------*/
/** Show the progress bar window. */
static void show_progress_bar(void)
{
int nLength = 0;
int nIndex = 0;
int nStart = strlen(f_szProgress);
int nColorID = 0;
if (0 == (f_uiTestsRun + f_uiTestsSkipped)) {
nLength = f_nWidth - f_nLeft - nStart - 6;
nColorID = PROGRESS_BACKGROUND_COLOR;
}
else {
nLength = (f_nWidth - f_nLeft - nStart - 6) * ((double)(f_uiTestsRun + f_uiTestsSkipped) / f_uiTotalTests);
nColorID = (!f_uiTestsSkipped && f_uiTestsRun == f_uiTestsRunSuccessful)
? PROGRESS_SUCCESS_COLOR
: PROGRESS_FAILURE_COLOR;
}
wattron(application_windows.pProgressWin, A_BOLD | COLOR_PAIR(nColorID));
for (nIndex = 0; nIndex < nLength; nIndex++) {
mvwprintw(application_windows.pProgressWin, 0, nStart + nIndex, " ");
}
wattroff(application_windows.pProgressWin, COLOR_PAIR(nColorID));
}
/*------------------------------------------------------------------------*/
/** Initialize the message handlers in preparation for running tests. */
static bool test_initialize(void)
{
CU_set_test_start_handler(curses_test_start_message_handler);
CU_set_test_complete_handler(curses_test_complete_message_handler);
CU_set_all_test_complete_handler(curses_all_tests_complete_message_handler);
CU_set_suite_init_failure_handler(curses_suite_init_failure_message_handler);
return true;
}
/*------------------------------------------------------------------------*/
/** Parse a string and return the coded hotkeys.
* If called with szStr non-NULL, the string is simply stored.
* Subsequent calls with szStr NULL will cause the
* hotkeys in the string (chars between parentheses) to
* be returned sequentially in the order in which they
* appear in the original string.
* @param szStr String to parse (non-NULL to set, NULL to parse).
* @param pPos Used to store position of the next '('.
* @return If szStr is non-NULL, it is returned. If szStr is NULL,
* the next hotkey character is returned, or NULL if there
* are no more hotkey characters in the original string.
*/
static const char* get_hotkey(const char* szStr, int* pPos)
{
static char szTemp[128] = "";
static char szString[128] = "";
static int nPos = 0;
int nTempIndex;
char* pS = NULL;
if (szStr) {
nPos = 0;
strcpy(szString, szStr);
return szString;
}
memset(szTemp, 0, sizeof(szTemp));
for (nTempIndex = 0, pS = szString + nPos; *pS; nPos++, pS++) {
if (!nTempIndex && '(' == *pS) {
szTemp[nTempIndex++] = *pS;
*pPos = nPos;
}
else if (nTempIndex && ')' == *pS) {
szTemp[nTempIndex++] = *pS;
szTemp[nTempIndex++] = '\0';
return szTemp;
}
else if (nTempIndex) {
szTemp[nTempIndex++] = *pS;
}
}
return NULL;
}
/*------------------------------------------------------------------------*/
/** Main loop for curses interface.
* Displays actions and responds based on user imput.
* @param pRegistry The CU_pTestRegistry to use for testing (non-NULL).
*/
static STATUS curses_registry_level_run(CU_pTestRegistry pRegistry)
{
char szSuiteName[STRING_LENGTH];
CU_pSuite pSuite = NULL;
bool bContinue = true;
while (bContinue) {
int option = toupper(getch());
switch (option) {
case 'R':
curses_run_all_tests(pRegistry);
break;
case 'S':
read_input_string("Enter Suite Name : ", szSuiteName, STRING_LENGTH);
refresh_details_window();
if (NULL != (pSuite = CU_get_suite_by_name(szSuiteName, (NULL == pRegistry) ? pRegistry : CU_get_registry()))) {
if (STOP == curses_suite_level_run(pSuite)) {
bContinue = false;
}
f_szOptions = MAIN_OPTIONS;
refresh_options_window();
}
break;
case 'L':
list_suites(pRegistry);
break;
case 'F':
show_failures();
break;
case 'Q':
return bContinue = false;
case KEY_UP:
case KEY_DOWN:
case KEY_RIGHT:
case KEY_LEFT:
scroll_window(option, &details_pad, refresh_details_window);
break;
default:
break;
}
}
return STOP;
}
/*------------------------------------------------------------------------*/
/** Run a selected suite within the curses interface.
* Displays actions and responds based on user imput.
* @param pSuite The suite to use for testing (non-NULL).
*/
static STATUS curses_suite_level_run(CU_pSuite pSuite)
{
char szTestName[STRING_LENGTH];
CU_pTest pTest = NULL;
f_szOptions = SUITE_OPTIONS;
refresh_options_window();
while (true) {
int option = toupper(getch());
switch (option) {
case 'R':
curses_run_suite_tests(pSuite);
break;
case 'S':
read_input_string("Enter Test Name : ", szTestName, STRING_LENGTH);
if (NULL != (pTest = CU_get_test_by_name(szTestName, pSuite))) {
curses_run_single_test(pSuite, pTest);
}
refresh_details_window();
break;
case 'L':
list_tests(pSuite);
break;
case 'F':
show_failures();
break;
case 'U':
return CONTINUE;
case 'Q':
return STOP;
case KEY_UP:
case KEY_DOWN:
case KEY_RIGHT:
case KEY_LEFT:
scroll_window(option, &details_pad, refresh_details_window);
break;
default:
break;
}
}
return CONTINUE;
}
/*------------------------------------------------------------------------*/
/** Display a prompt, then read a string from the keyboard.
* @param szPrompt The prompt to display.
* @param szValue The string in which to store the response.
* @param nBytes The length of the szValue buffer.
*/
static void read_input_string(const char szPrompt[], char szValue[], int nBytes)
{
echo();
curs_set(1);
nocbreak();
wclear(application_windows.pOptionsWin);
mvwprintw(application_windows.pOptionsWin, 0, 1, "%s", szPrompt);
wgetnstr(application_windows.pOptionsWin, szValue, nBytes - 1);
refresh_options_window();
cbreak();
curs_set(0);
noecho();
}
/*------------------------------------------------------------------------*/
/** Scroll a window.
* @param nCommand Code for the direction to scroll.
* @param pPad The window to scroll.
* @param parent_refresh Function to call to refresh the parent window.
*/
static void scroll_window(int nCommand, APPPAD* pPad, void (*parent_refresh)(void))
{
if (NULL == pPad->pPad) {
return;
}
switch (nCommand) {
case KEY_UP:
if (pPad->uiPadRow) {
--pPad->uiPadRow;
(*parent_refresh)();
}
break;
case KEY_DOWN:
if (pPad->uiRows - 1 > pPad->uiPadRow + pPad->uiWinRows) {
++pPad->uiPadRow;
(*parent_refresh)();
}
break;
case KEY_LEFT:
if (pPad->uiPadCol) {
--pPad->uiPadCol;
(*parent_refresh)();
}
break;
case KEY_RIGHT:
if (details_pad.uiColumns - 1 > details_pad.uiPadCol + details_pad.uiWinColumns) {
++pPad->uiPadCol;
(*parent_refresh)();
}
break;
default:
break;
}
}
/*------------------------------------------------------------------------*/
/** Create a window having specified parent and dimensions.
* @param pPad Pointer to the new window.
* @param pParent Parent window.
* @param uiRows Number of rows for new window.
* @param uiCols Number of columnss for new window.
*/
static bool create_pad(APPPAD* pPad, WINDOW* pParent, unsigned int uiRows,
unsigned int uiCols)
{
bool bStatus = false;
assert(pParent);
if (pPad->pPad) {
delwin(pPad->pPad);
}
if (NULL != pPad && NULL == (pPad->pPad = newpad(uiRows, uiCols))) {
goto newpad_fail;
}
pPad->uiRows = uiRows;
pPad->uiColumns = uiCols;
pPad->uiPadRow = 0;
pPad->uiPadCol = 0;
pPad->uiWinLeft = application_windows.pDetailsWin->_begx + 1;
pPad->uiWinTop = application_windows.pDetailsWin->_begy + 1;
pPad->uiWinColumns = application_windows.pDetailsWin->_maxx - 2;
pPad->uiWinRows = application_windows.pDetailsWin->_maxy - 2;
bStatus = true;
newpad_fail:
return bStatus;
}
/*------------------------------------------------------------------------*/
/** Print a list of registered suites in the detail window.
* @param pRegistry The CU_pTestRegistry to query (non-NULL).
*/
static void list_suites(CU_pTestRegistry pRegistry)
{
CU_pSuite pCurSuite = NULL;
int i;
if (NULL == pRegistry) {
pRegistry = CU_get_registry();
}
assert(pRegistry);
if (!create_pad(&details_pad, application_windows.pDetailsWin,
pRegistry->uiNumberOfSuites == 0 ? 1 : pRegistry->uiNumberOfSuites + 4, 256)) {
return;
}
if (0 == pRegistry->uiNumberOfSuites) {
mvwprintw(details_pad.pPad, 0, 0, "%s", "No test suites defined.");
refresh_details_window();
return;
}
assert(pRegistry->pSuite);
mvwprintw(details_pad.pPad, 0, 0, "%s", " Suite Name Init? Cleanup? # Tests");
for (i = 0, pCurSuite = pRegistry->pSuite; pCurSuite; pCurSuite = pCurSuite->pNext, i++) {
char szTemp[256];
snprintf(szTemp, sizeof(szTemp), "%3d. %-34.33s %3s %3s %3d",
i + 1,
pCurSuite->pName,
pCurSuite->pInitializeFunc ? "YES" : "NO",
pCurSuite->pCleanupFunc ? "YES" : "NO",
pCurSuite->uiNumberOfTests);
mvwprintw(details_pad.pPad, i + 2, 0, "%s", szTemp);
}
mvwprintw(details_pad.pPad, i + 2, 0, "%s", "------------------------------------------------------------------");
mvwprintw(details_pad.pPad, i + 3, 0, "Total Number of Test Suites : %-d", pRegistry->uiNumberOfSuites);
refresh_details_window();
}
/*------------------------------------------------------------------------*/
/** Print a list of tests contained in a specified suite
* in the detail window.
* @param pSuite The suite to query (non-NULL).
*/
static void list_tests(CU_pSuite pSuite)
{
CU_pTest pCurTest = NULL;
int i;
assert(pSuite);
if (!create_pad(&details_pad, application_windows.pDetailsWin,
pSuite->uiNumberOfTests == 0 ? 1 : pSuite->uiNumberOfTests + 4, 256)) {
return;
}
if (0 == pSuite->uiNumberOfTests) {
mvwprintw(details_pad.pPad, 0, 0, "Suite %s contains no tests.", pSuite->pName);
refresh_details_window();
return;
}
assert(pSuite->pTest);
mvwprintw(details_pad.pPad, 0, 0, " Tests in suite %s", pSuite->pName);
for (i = 0, pCurTest = pSuite->pTest; pCurTest; pCurTest = pCurTest->pNext, i++) {
char szTemp[256];
snprintf(szTemp, sizeof(szTemp), "%3d. %s", i + 1, pCurTest->pName);
mvwprintw(details_pad.pPad, i + 2, 0, "%s", szTemp);
}
mvwprintw(details_pad.pPad, i + 2, 0, "%s", "---------------------------------------------");
mvwprintw(details_pad.pPad, i + 3, 0, "Total Number of Tests : %-d", pSuite->uiNumberOfTests);
refresh_details_window();
}
/*------------------------------------------------------------------------*/
/** Display the record of test failures in the detail window. */
static void show_failures(void)
{
int i;
CU_pFailureRecord pFailure = CU_get_failure_list();
unsigned int nFailures = CU_get_number_of_failures();
if (!create_pad(&details_pad, application_windows.pDetailsWin,
nFailures == 0 ? 1 : nFailures + 5, 256)) {
return;
}
if (0 == nFailures) {
mvwprintw(details_pad.pPad, 0, 0, "%s", "No Failures.");
refresh_details_window();
return;
}
assert(pFailure);
mvwprintw(details_pad.pPad, 1, 0, "%s", " src_file:line# : (suite:test) : failure_condition");
for (i = 0 ; pFailure ; pFailure = pFailure->pNext, i++) {
char szTemp[256];
snprintf(szTemp, 256, "%d. %s:%d : (%s : %s) : %s", i + 1,
pFailure->strFileName ? pFailure->strFileName : "",
pFailure->uiLineNumber,
pFailure->pSuite ? pFailure->pSuite->pName : "",
pFailure->pTest ? pFailure->pTest->pName : "",
pFailure->strCondition ? pFailure->strCondition : "");
mvwprintw(details_pad.pPad, i + 3, 0, "%s", szTemp);
}
mvwprintw(details_pad.pPad, i + 3, 0, "%s", "=============================================");
mvwprintw(details_pad.pPad, i + 4, 0, "Total Number of Failures : %-d", nFailures);
refresh_details_window();
}
/*------------------------------------------------------------------------*/
/** Run all tests within the curses interface.
* The test registry is changed to the specified registry
* before running the tests, and reset to the original
* registry when done.
* @param pRegistry The CU_pTestRegistry containing the tests
* to be run (non-NULL).
* @return An error code indicating the error status
* during the test run.
*/
static CU_ErrorCode curses_run_all_tests(CU_pTestRegistry pRegistry)
{
CU_pTestRegistry pOldRegistry = NULL;
CU_ErrorCode result;
assert(pRegistry);
reset_run_parameters();
f_uiTotalTests = pRegistry->uiNumberOfTests;
f_uiTotalSuites = pRegistry->uiNumberOfSuites;
if (NULL != pRegistry) {
pOldRegistry = CU_set_registry(pRegistry);
}
result = CU_run_all_tests();
if (NULL != pOldRegistry) {
CU_set_registry(pOldRegistry);
}
return result;
}
/*------------------------------------------------------------------------*/
/** Run a specified suite within the curses interface.
* @param pSuite The suite to be run (non-NULL).
* @return An error code indicating the error status
* during the test run.
*/
static CU_ErrorCode curses_run_suite_tests(CU_pSuite pSuite)
{
reset_run_parameters();
f_uiTotalTests = pSuite->uiNumberOfTests;
f_uiTotalSuites = 1;
return CU_run_suite(pSuite);
}
/*------------------------------------------------------------------------*/
/** Run a specific test for the specified suite within
* the curses interface.
* @param pSuite The suite containing the test to be run (non-NULL).
* @param pTest The test to be run (non-NULL).
* @return An error code indicating the error status
* during the test run.
*/
static CU_ErrorCode curses_run_single_test(CU_pSuite pSuite, CU_pTest pTest)
{
reset_run_parameters();
f_uiTotalTests = 1;
f_uiTotalSuites = 1;
return CU_run_test(pSuite, pTest);
}
/*------------------------------------------------------------------------*/
/** Reset the local run counters and prepare for a test run. */
static void reset_run_parameters(void)
{
f_pCurrentTest = NULL;
f_pCurrentSuite = NULL;
f_uiTestsRunSuccessful = f_uiTestsRun = f_uiTotalTests = f_uiTestsFailed = f_uiTestsSkipped = 0;
f_uiTotalSuites = f_uiSuitesSkipped = 0;
refresh_progress_window();
refresh_summary_window();
refresh_run_summary_window();
}
/*------------------------------------------------------------------------*/
/** Handler function called at start of each test.
* @param pTest The test being run.
* @param pSuite The suite containing the test.
*/
static void curses_test_start_message_handler(const CU_pTest pTest, const CU_pSuite pSuite)
{
f_pCurrentTest = (CU_pTest)pTest;
f_pCurrentSuite = (CU_pSuite)pSuite;
refresh_run_summary_window();
}
/*------------------------------------------------------------------------*/
/** Handler function called at completion of each test.
* @param pTest The test being run.
* @param pSuite The suite containing the test.
* @param pFailure Pointer to the 1st failure record for this test.
*/
static void curses_test_complete_message_handler(const CU_pTest pTest,
const CU_pSuite pSuite,
const CU_pFailureRecord pFailure)
{
/* Not used in curses implementation - quiet compiler warning */
CU_UNREFERENCED_PARAMETER(pTest);
CU_UNREFERENCED_PARAMETER(pSuite);
CU_UNREFERENCED_PARAMETER(pFailure);
f_uiTestsRun++;
if (CU_get_number_of_tests_failed() != f_uiTestsFailed) {
f_uiTestsFailed++;
}
else {
f_uiTestsRunSuccessful++;
}
refresh_summary_window();
refresh_progress_window();
}
/*------------------------------------------------------------------------*/
/** Handler function called at completion of all tests in a suite.
* @param pFailure Pointer to the test failure record list.
*/
static void curses_all_tests_complete_message_handler(const CU_pFailureRecord pFailure)
{
/* Not used in curses implementation - quiet compiler warning */
CU_UNREFERENCED_PARAMETER(pFailure);
f_pCurrentTest = NULL;
f_pCurrentSuite = NULL;
if (!create_pad(&details_pad, application_windows.pDetailsWin, 16 , 256)) {
return;
}
mvwprintw(details_pad.pPad, 0, 0, "%s", "====== Suite Run Summary ======");
mvwprintw(details_pad.pPad, 1, 0, " TOTAL SUITES: %4u", f_uiTotalSuites);
mvwprintw(details_pad.pPad, 2, 0, " Run: %4u", f_uiTotalSuites - f_uiSuitesSkipped);
mvwprintw(details_pad.pPad, 3, 0, " Skipped: %4u", f_uiSuitesSkipped);
mvwprintw(details_pad.pPad, 5, 0, "%s", "====== Test Run Summary =======");
mvwprintw(details_pad.pPad, 6, 0, " TOTAL TESTS: %4u", f_uiTotalTests);
mvwprintw(details_pad.pPad, 7, 0, " Run: %4u", f_uiTestsRun);
mvwprintw(details_pad.pPad, 8, 0, " Skipped: %4u", f_uiTestsSkipped);
mvwprintw(details_pad.pPad, 9, 0, " Successful: %4u", f_uiTestsRunSuccessful);
mvwprintw(details_pad.pPad, 10, 0, " Failed: %4u", f_uiTestsFailed);
mvwprintw(details_pad.pPad, 12, 0, "%s", "====== Assertion Summary ======");
mvwprintw(details_pad.pPad, 13, 0, " TOTAL ASSERTS: %4u", CU_get_number_of_asserts());
mvwprintw(details_pad.pPad, 14, 0, " Passed: %4u", CU_get_number_of_successes());
mvwprintw(details_pad.pPad, 15, 0, " Failed: %4u", CU_get_number_of_failures());
refresh_details_window();
refresh_run_summary_window();
}
/*------------------------------------------------------------------------*/
/** Handler function called when suite initialization fails.
* @param pSuite The suite for which initialization failed.
*/
static void curses_suite_init_failure_message_handler(const CU_pSuite pSuite)
{
assert(pSuite);
f_uiTestsSkipped += pSuite->uiNumberOfTests;
f_uiSuitesSkipped++;
refresh_summary_window();
refresh_progress_window();
}
/** @} */
|