Skip to content

Commit

Permalink
Merge pull request #1767 from nmullane/fix1692-misc-time-functional-t…
Browse files Browse the repository at this point in the history
…ests

Fix #1692, Add misc time api functional test
  • Loading branch information
astrogeco authored Aug 10, 2021
2 parents 7e5e4e5 + e6979cf commit f8ceda1
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 0 deletions.
1 change: 1 addition & 0 deletions modules/cfe_testcase/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ add_cfe_app(cfe_testcase
src/time_arithmetic_test.c
src/time_current_test.c
src/time_conversion_test.c
src/time_misc_test.c
)

# register the dependency on cfe_assert
Expand Down
1 change: 1 addition & 0 deletions modules/cfe_testcase/src/cfe_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ void CFE_TestMain(void)
TimeArithmeticTestSetup();
TimeCurrentTestSetup();
TimeConversionTestSetup();
TimeMiscTestSetup();

/*
* Execute the tests
Expand Down
1 change: 1 addition & 0 deletions modules/cfe_testcase/src/cfe_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,6 @@ void TBLRegistrationTestSetup(void);
void TimeArithmeticTestSetup(void);
void TimeCurrentTestSetup(void);
void TimeConversionTestSetup(void);
void TimeMiscTestSetup(void);

#endif /* CFE_TEST_H */
58 changes: 58 additions & 0 deletions modules/cfe_testcase/src/time_misc_test.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*************************************************************************
**
** GSC-18128-1, "Core Flight Executive Version 6.7"
**
** Copyright (c) 2006-2019 United States Government as represented by
** the Administrator of the National Aeronautics and Space Administration.
** All Rights Reserved.
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
**
** File: time_misc_test.c
**
** Purpose:
** Functional test of miscelaneous Time APIs
**
** Demonstration of how to register and use the UT assert functions.
**
*************************************************************************/

/*
* Includes
*/

#include "cfe_test.h"

void TestTimePrint(void)
{
UtPrintf("Testing: CFE_TIME_Print");
char timeBuf1[sizeof("yyyy-ddd-hh:mm:ss.xxxxx_")];
CFE_TIME_SysTime_t time1 = {0, 0};
/* 365 days */
CFE_TIME_SysTime_t time2 = {31536000, 0};
/* 366 days */
CFE_TIME_SysTime_t time3 = {31622400, 0};

UtAssert_VOIDCALL(CFE_TIME_Print(NULL, time1));
UtAssert_VOIDCALL(CFE_TIME_Print(timeBuf1, time1));
UtPrintf("%s", timeBuf1);
UtAssert_VOIDCALL(CFE_TIME_Print(timeBuf1, time2));
UtPrintf("%s", timeBuf1);
UtAssert_VOIDCALL(CFE_TIME_Print(timeBuf1, time3));
UtPrintf("%s", timeBuf1);
}

void TimeMiscTestSetup(void)
{
UtTest_Add(TestTimePrint, NULL, NULL, "Test Time Print");
}

0 comments on commit f8ceda1

Please sign in to comment.