Skip to content

Commit

Permalink
Fix #1692, Add misc time api functional test
Browse files Browse the repository at this point in the history
  • Loading branch information
nmullane committed Aug 5, 2021
1 parent c4ae5b2 commit 677e91e
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 @@ -12,6 +12,7 @@ add_cfe_app(cfe_testcase
src/sb_pipe_mang_test.c
src/time_arithmetic_test.c
src/time_current_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 @@ -61,6 +61,7 @@ void CFE_TestMain(void)
SBPipeMangSetup();
TimeArithmeticTestSetup();
TimeCurrentTestSetup();
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 @@ -88,5 +88,6 @@ void FSUtilTestSetup(void);
void SBPipeMangSetup(void);
void TimeArithmeticTestSetup(void);
void TimeCurrentTestSetup(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};

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

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

0 comments on commit 677e91e

Please sign in to comment.