⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basic.c

📁 CUNIT
💻 C
字号:
/* *  CUnit - A Unit testing framework library for C. *  Copyright (C) 2004  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 *//* *	Implementatin for basic test runner interface. * *	Created By      : Jerry St.Clair  (11-Aug-2004) *	Comment         : Initial implementation of basic test runner interface *	EMail           : jds2@users.sourceforge.net * *//** @file * Basic interface with output to stdout. *//** @addtogroup Basic * @{ */#include <stdio.h>#include <stdlib.h>#include <ctype.h>#include <assert.h>#include <string.h>#include "CUnit.h"#include "TestDB.h"#include "Util.h"#include "TestRun.h"#include "Basic.h"/** Name of currently running suite. */static CU_pSuite f_pRunningSuite = NULL;static CU_BasicRunMode f_run_mode = CU_BRM_NORMAL;/* Forward declaration of module functions */static CU_ErrorCode basic_initialize(void);static CU_ErrorCode basic_run_all_tests(CU_pTestRegistry pRegistry);static CU_ErrorCode basic_run_suite(CU_pSuite pSuite);static CU_ErrorCode basic_run_single_test(CU_pSuite pSuite, CU_pTest pTest);static void basic_test_start_message_handler(const CU_pTest pTest, const CU_pSuite pSuite);static void basic_test_complete_message_handler(const CU_pTest pTest, const CU_pSuite pSuite, const CU_pFailureRecord pFailure);static void basic_all_tests_complete_message_handler(const CU_pFailureRecord pFailure);static void basic_suite_init_failure_message_handler(const CU_pSuite pSuite);/*------------------------------------------------------------------------*//** Run all registered CUnit tests using the basic interface. * The default CU_BasicRunMode is used unless it has been * previously changed using CU_basic_set_mode(). * @return A CU_ErrorCode indicating the framework error condition, including *         CUE_NOREGISTRY - Registry has not been initialized. */CU_ErrorCode CU_basic_run_tests(void){  CU_ErrorCode error;  CU_pTestRegistry pRegistry = CU_get_registry();  if (NULL == pRegistry) {    if (CU_BRM_SILENT != f_run_mode)      fprintf(stderr, "\n\nFATAL ERROR - Test registry is not initialized.\n");    error = CUE_NOREGISTRY;  }  else if (CUE_SUCCESS == (error = basic_initialize()))    error = basic_run_all_tests(pRegistry);  return error;}/*------------------------------------------------------------------------*//** Run all tests for a specific suite in the basic interface. * If pSuite is NULL, the function returns without taking any  * action. The default CU_BasicRunMode is used unless it has * been changed using CU_basic_set_mode(). * @param pSuite The CU_Suite to run (non-NULL). * @return A CU_ErrorCode indicating the framework error condition, including *         CUE_NOSUITE - pSuite was NULL. */CU_ErrorCode CU_basic_run_suite(CU_pSuite pSuite){  CU_ErrorCode error;  if (!pSuite)    error = CUE_NOSUITE;  else if (CUE_SUCCESS == (error = basic_initialize()))    error = basic_run_suite(pSuite);  return error;}/*------------------------------------------------------------------------*//** Run a single test in a specific suite in the basic interface. * If pSuite or pTest is NULL, the function returns without * taking any action.  The default CU_BasicRunMode is used unless * it has been changed using CU_basic_set_mode. * @param pSuite The CU_Suite holding the CU_Test to run. * @param pTest  The CU_Test to run. * @return A CU_ErrorCode indicating the framework error condition, including *         CUE_NOSUITE - pSuite was NULL. *         CUE_NOTEST  - pTest was NULL. */CU_ErrorCode CU_basic_run_test(CU_pSuite pSuite, CU_pTest pTest){  CU_ErrorCode error;  if (!pSuite)    error = CUE_NOSUITE;  else if (!pTest)    error = CUE_NOTEST;  else if (CUE_SUCCESS == (error = basic_initialize()))    error = basic_run_single_test(pSuite, pTest);  return error;}/*------------------------------------------------------------------------*//** Set the run mode for the basic interface. * @param mode The new CU_BasicRunMode for subsequent test *             runs using the basic interface. */void CU_basic_set_mode(CU_BasicRunMode mode){  f_run_mode = mode;}/*------------------------------------------------------------------------*//** Retrieve the current run mode for the basic interface. * @return The current CU_BasicRunMode setting for test *             runs using the basic interface. */CU_BasicRunMode CU_basic_get_mode(void){  return f_run_mode;}/*------------------------------------------------------------------------*//** Print a summary of run failures to stdout. * This is provided for user convenience upon request, and * does not take into account the current run mode.  The * failures are printed to stdout independent of the most * recent run mode. * @param pFailure List of CU_pFailureRecord's to output. */void CU_basic_show_failures(CU_pFailureRecord pFailure){  int i;  for (i = 1 ; pFailure ; pFailure = pFailure->pNext, i++) {    fprintf(stdout, "\n  %d. %s:%d  - %s", i,        pFailure->strFileName ? pFailure->strFileName : "",        pFailure->uiLineNumber,        pFailure->strCondition ? pFailure->strCondition : "");  }}/*------------------------------------------------------------------------*//** Perform inialization actions for the basic interface. * This includes setting output to unbuffered, printing a * welcome message, and setting the test run handlers. * @return An error code indicating the framework error condition. */static CU_ErrorCode basic_initialize(void){  /* Unbuffered output so everything reaches the screen */  setvbuf(stdout, NULL, _IONBF, 0);  setvbuf(stderr, NULL, _IONBF, 0);  CU_set_error(CUE_SUCCESS);  if (CU_BRM_SILENT != f_run_mode)    fprintf(stdout, "\n\n     CUnit : A Unit testing framework for C."                      "\n     http://cunit.sourceforge.net/\n\n");  CU_set_test_start_handler(basic_test_start_message_handler);  CU_set_test_complete_handler(basic_test_complete_message_handler);  CU_set_all_test_complete_handler(basic_all_tests_complete_message_handler);  CU_set_suite_init_failure_handler(basic_suite_init_failure_message_handler);  return CU_get_error();}/*------------------------------------------------------------------------*//** Run all tests within the basic 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 basic_run_all_tests(CU_pTestRegistry pRegistry){  CU_pTestRegistry pOldRegistry = NULL;  CU_ErrorCode result;  assert(pRegistry);  f_pRunningSuite = NULL;  pOldRegistry = CU_set_registry(pRegistry);  result = CU_run_all_tests();  CU_set_registry(pOldRegistry);  return result;}/*------------------------------------------------------------------------*//** Run a specified suite within the basic 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 basic_run_suite(CU_pSuite pSuite){  f_pRunningSuite = NULL;  return CU_run_suite(pSuite);}/*------------------------------------------------------------------------*//** Run a single test for the specified suite within * the console 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 basic_run_single_test(CU_pSuite pSuite, CU_pTest pTest){  f_pRunningSuite = NULL;  return CU_run_test(pSuite, pTest);}/*------------------------------------------------------------------------*//** Handler function called at start of each test. * @param pTest  The test being run. * @param pSuite The suite containing the test. */static void basic_test_start_message_handler(const CU_pTest pTest, const CU_pSuite pSuite){  assert(pSuite);  assert(pTest);  if (CU_BRM_VERBOSE == f_run_mode) {    if (!f_pRunningSuite || (f_pRunningSuite != pSuite)) {      fprintf(stdout, "\nSuite: %s", pSuite->pName);      fprintf(stdout, "\n  Test: %s ... ", pTest->pName);      f_pRunningSuite = pSuite;    }    else {      fprintf(stdout, "\n  Test: %s ... ", pTest->pName);    }  }}/*------------------------------------------------------------------------*//** 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 basic_test_complete_message_handler(const CU_pTest pTest, const CU_pSuite pSuite, const CU_pFailureRecord pFailureList){  CU_pFailureRecord pFailure = pFailureList;  int i;  assert(pSuite);  assert(pTest);  if ((CU_BRM_VERBOSE == f_run_mode) &&      (NULL == pFailure)) {    fprintf(stdout, "passed");  }  else {    switch (f_run_mode) {      case CU_BRM_VERBOSE:        fprintf(stdout, "FAILED");        break;      case CU_BRM_NORMAL:        fprintf(stdout, "\nSuite %s, Test %s had failures:", pSuite->pName, pTest->pName);        break;      default:  /* gcc wants all enums covered.  ok. */        break;    }    if (CU_BRM_SILENT != f_run_mode) {      for (i = 1 ; pFailure ; pFailure = pFailure->pNext, i++) {        fprintf(stdout, "\n    %d. %s:%d  - %s", i,            pFailure->strFileName ? pFailure->strFileName : "",            pFailure->uiLineNumber,            pFailure->strCondition ? pFailure->strCondition : "");      }    }  }}/*------------------------------------------------------------------------*//** Handler function called at completion of all tests in a suite. * @param pFailure Pointer to the test failure record list. */static void basic_all_tests_complete_message_handler(const CU_pFailureRecord pFailure){  CU_pRunSummary pRunSummary = CU_get_run_summary();  CU_pTestRegistry pRegistry = CU_get_registry();  (void)pFailure; /* not used in basic interface - silence warning */  assert(pRunSummary);  assert(pRegistry);  if (CU_BRM_SILENT != f_run_mode)    fprintf(stdout,"\n\n--Run Summary: Type      Total     Ran  Passed  Failed"                     "\n               suites %8u%8u     n/a%8u"                     "\n               tests  %8u%8u%8u%8u"                     "\n               asserts%8u%8u%8u%8u\n",                    pRegistry->uiNumberOfSuites,                    pRunSummary->nSuitesRun,                    pRunSummary->nSuitesFailed,                    pRegistry->uiNumberOfTests,                    pRunSummary->nTestsRun,                    pRunSummary->nTestsRun - pRunSummary->nTestsFailed,                    pRunSummary->nTestsFailed,                    pRunSummary->nAsserts,                    pRunSummary->nAsserts,                    pRunSummary->nAsserts - pRunSummary->nAssertsFailed,                    pRunSummary->nAssertsFailed);}/*------------------------------------------------------------------------*//** Handler function called when suite initialization fails. * @param pSuite The suite for which initialization failed. */static void basic_suite_init_failure_message_handler(const CU_pSuite pSuite){  assert(pSuite);  if (CU_BRM_SILENT != f_run_mode)    fprintf(stdout,            "\nWARNING - Suite initialization failed for %s.",            pSuite->pName);}/** @} */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -