Skip to content

Commit

Permalink
Fix nasa#1298, add Current Time Functional Test
Browse files Browse the repository at this point in the history
  • Loading branch information
zanzaben committed Apr 29, 2021
1 parent c8b5e00 commit 5070f94
Show file tree
Hide file tree
Showing 4 changed files with 90 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 @@ -4,6 +4,7 @@ add_cfe_app(cfe_testcase
src/cfe_test.c
src/es_info_test.c
src/es_task_test.c
src/time_current_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 @@ -52,6 +52,7 @@ void CFE_TestMain(void)
*/
ESInfoTestSetup();
ESTaskTestSetup();
TimeCurrentTestSetup();

/*
* 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 @@ -55,5 +55,6 @@
void CFE_TestMain(void);
void ESInfoTestSetup(void);
void ESTaskTestSetup(void);
void TimeCurrentTestSetup(void);

#endif /* CFE_TEST_H */
87 changes: 87 additions & 0 deletions modules/cfe_testcase/src/time_current_test.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
/*************************************************************************
**
** 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: es_info_test.c
**
** Purpose:
** Functional test of basic Time Current APIs
**
** Demonstration of how to register and use the UT assert functions.
**
*************************************************************************/

/*
* Includes
*/

#include "cfe_test.h"

void TestGetTime(void)
{
UtPrintf("Testing: CFE_TIME_GetTime, CFE_TIME_GetTAI, CFE_TIME_GetUTC, CFE_TIME_GetMET, CFE_TIME_GetSTCF, "
"CFE_TIME_GetLeapSeconds");
CFE_TIME_SysTime_t Time;
CFE_TIME_SysTime_t TAI;
CFE_TIME_SysTime_t UTC;
CFE_TIME_SysTime_t MET;
CFE_TIME_SysTime_t STCF;
uint32 METSeconds;
int16 LeapSeconds;
CFE_TIME_SysTime_t Buf;

char timeBuf1[sizeof("yyyy-ddd-hh:mm:ss.xxxxx_")];
char timeBuf2[sizeof("yyyy-ddd-hh:mm:ss.xxxxx_")];

Time = CFE_TIME_GetTime();
TAI = CFE_TIME_GetTAI();
UTC = CFE_TIME_GetUTC();
MET = CFE_TIME_GetMET();
METSeconds = CFE_TIME_GetMETseconds();
STCF = CFE_TIME_GetSTCF();
LeapSeconds = CFE_TIME_GetLeapSeconds();

CFE_TIME_Print(timeBuf1, Time);
UtPrintf("The current time is (%d) %s", Time.Seconds, timeBuf1);

#if (CFE_MISSION_TIME_CFG_DEFAULT_TAI == true)
CFE_TIME_Print(timeBuf2, TAI);
UtAssert_StrCmp(timeBuf1, timeBuf2, "Get Time (%s) = TAI (%s)", timeBuf1, timeBuf2);
#else
CFE_TIME_Print(timeBuf2, UTC);
UtAssert_StrCmp(timeBuf1, timeBuf2, "Get Time (%s) = UTC(%s)", timeBuf1, timeBuf2);
#endif

CFE_TIME_Print(timeBuf1, TAI);
Buf = CFE_TIME_Add(MET, STCF);
CFE_TIME_Print(timeBuf2, Buf);
UtAssert_StrCmp(timeBuf1, timeBuf2, "TAI (%s) = MET + STCF (%s)", timeBuf1, timeBuf2);

CFE_TIME_Print(timeBuf1, UTC);
Buf.Seconds = Buf.Seconds - LeapSeconds;
CFE_TIME_Print(timeBuf2, Buf);
UtAssert_StrCmp(timeBuf1, timeBuf2, "UTC (%s) = MET + STCF - Leap Seconds (%s)", timeBuf1, timeBuf2);

UtAssert_INT32_EQ(MET.Seconds, METSeconds);
}

void TimeCurrentTestSetup(void)
{
UtTest_Add(TestGetTime, NULL, NULL, "Test Current Time");
}

0 comments on commit 5070f94

Please sign in to comment.