Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1690, Tests for time conversion api #1707

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/cfe_testcase/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ add_cfe_app(cfe_testcase
src/fs_header_test.c
src/sb_pipe_mang_test.c
src/time_current_test.c
src/time_conversion_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 @@ -59,6 +59,7 @@ void CFE_TestMain(void)
FSHeaderTestSetup();
SBPipeMangSetup();
TimeCurrentTestSetup();
TimeConversionTestSetup();
paulober marked this conversation as resolved.
Show resolved Hide resolved

/*
* Execute the tests
Expand Down
3 changes: 3 additions & 0 deletions modules/cfe_testcase/src/cfe_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@
/* Log calls to void functions */
#define cFE_FTAssert_VOIDCALL(func) (func, UtAssert(true, #func, __FILE__, __LINE__))

bool TimeInRange(CFE_TIME_SysTime_t Time, CFE_TIME_SysTime_t Target, OS_time_t difference);

void CFE_TestMain(void);
void ESInfoTestSetup(void);
void ESTaskTestSetup(void);
Expand All @@ -81,5 +83,6 @@ void ESMemPoolTestSetup(void);
void FSHeaderTestSetup(void);
void SBPipeMangSetup(void);
void TimeCurrentTestSetup(void);
void TimeConversionTestSetup(void);

#endif /* CFE_TEST_H */
135 changes: 135 additions & 0 deletions modules/cfe_testcase/src/time_conversion_test.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
/*************************************************************************
**
** GSC-18128-1, "Core Flight Executive Version 6.7"
**
** Copyright (c) 2006-2021 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_conversion_test.c
**
** Purpose:
** Functional test of basic Time Conversion APIs
**
*************************************************************************/

/*
* Includes
*/
#include "cfe_test.h"

void TestConvertMET2SCTime(void)
{
UtPrintf("Testing: CFE_TIME_MET2SCTime");

/* Mission Elapsed Time */
CFE_TIME_SysTime_t MET;
/* MET + SCTF */
CFE_TIME_SysTime_t TAI;
/* MET + SCTF - Leap Seconds */
CFE_TIME_SysTime_t UTC;
/* Spacecraft Time */
CFE_TIME_SysTime_t SCTime;

OS_time_t start;
OS_time_t end;
OS_time_t difference;

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

OS_GetLocalTime(&start);

/* Get Times */
MET = CFE_TIME_GetMET();
TAI = CFE_TIME_GetTAI();
UTC = CFE_TIME_GetUTC();

OS_GetLocalTime(&end);

/* Convert - should produce a TAI or UTC at the moment of GetMET() */
SCTime = CFE_TIME_MET2SCTime(MET);

/* write Spacecraft Time into second buffer */
CFE_TIME_Print(timeBuf2, SCTime);

difference = OS_TimeSubtract(end, start);

/* Check conversion */
#if (CFE_MISSION_TIME_CFG_DEFAULT_TAI == true)
/* SCTime is TAI format */

/* avoid unused compiler warning */
(void)UTC;

/* write TAI into first buffer */
CFE_TIME_Print(timeBuf1, TAI);

UtAssert_True(TimeInRange(SCTime, TAI, difference), "TAI (%s) = MET2SCTime (%s)", timeBuf1, timeBuf2);
#else
/* SCTime is UTC format */

/* avoid unused compiler warning */
(void)TAI;

/* write UTC into first buffer */
CFE_TIME_Print(timeBuf1, UTC);

UtAssert_True(TimeInRange(SCTime, UTC, difference), "UTC (%s) = MET2SCTime (%s)", timeBuf1, timeBuf2);
#endif
}

void TestConvertSubSeconds2MicroSeconds(void)
{
UtPrintf("Testing: CFE_TIME_Sub2MicroSecs");

/* predefined amount of sub-seconds */
uint32 SUB = 31000;
/* correct micro-seconds equal to the predefined sub-seconds */
uint32 ExpectedMS = 7;
uint32 Sub2Micro;

/* run Sub2MicroSecs with predefined amount of sub-seconds and save result */
Sub2Micro = CFE_TIME_Sub2MicroSecs(SUB);

UtAssert_UINT32_EQ(ExpectedMS, Sub2Micro);
}

void TestConvertMicroSeconds2SubSeconds(void)
{
UtPrintf("Testing: CFE_TIME_Micro2SubSecs");

/* predefined micro-seconds */
uint32 MS = 64512;
/* predefined sub-seconds equal to predefined ms above */
uint32 ExpectedSUB = 277076931;
uint32 Micro2Sub;

/* convert and assert */
Micro2Sub = CFE_TIME_Micro2SubSecs(MS);
UtAssert_UINT32_EQ(ExpectedSUB, Micro2Sub);

/* assert for ms > 999999 >= 1 second */
Micro2Sub = CFE_TIME_Micro2SubSecs(999999 + 1);
UtAssert_UINT32_EQ(0xFFFFFFFF, Micro2Sub);
}

void TimeConversionTestSetup(void)
{
UtTest_Add(TestConvertMET2SCTime, NULL, NULL, "Test convert MET into spacecraft time");
UtTest_Add(TestConvertSubSeconds2MicroSeconds, NULL, NULL, "Test Convert sub-seconds into micro-seconds");
UtTest_Add(TestConvertMicroSeconds2SubSeconds, NULL, NULL, "Test Convert micro-seconds into sub-seconds");
}