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 #2439, UT updates for alternate time configuration #2608

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
214 changes: 107 additions & 107 deletions modules/time/ut-coverage/time_UT.c
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ void OS_SelectTone(int16 Signal) {}
int32 UT_TimeRefUpdateHook(void *UserObj, int32 StubRetcode, uint32 CallCount, const UT_StubContext_t *Context)
{
volatile CFE_TIME_ReferenceState_t *RefState;
uint32 * UpdateCount = UserObj;
uint32 *UpdateCount = UserObj;
uint32 i;

/*
Expand Down Expand Up @@ -1024,33 +1024,33 @@ void Test_External(void)
* state not set
*/
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_NOT_SET;
CFE_TIME_Global.ExternalCount = 0;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_NOT_SET;
CFE_TIME_Global.ExternalCount = 0;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_ExternalMET(settime);
UtAssert_UINT32_EQ(CFE_TIME_Global.ExternalCount, 1);

/* Test setting time data from MET using an external source with the clock
* state set and time less than the minimum
*/
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.AtToneMET.Seconds = 10;
CFE_TIME_Global.AtToneMET.Subseconds = 0;
CFE_TIME_Global.AtToneDelay.Seconds = 0;
CFE_TIME_Global.AtToneDelay.Subseconds = 0;
CFE_TIME_Global.AtToneLatch.Seconds = 0;
CFE_TIME_Global.AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Seconds = 10;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
UT_SetBSP_Time(0, 0);
CFE_TIME_ExternalMET(settime);
UtAssert_UINT32_EQ(CFE_TIME_Global.InternalCount, 1);
Expand All @@ -1059,42 +1059,42 @@ void Test_External(void)
* state set and time greater than the maximum
*/
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 20;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.AtToneMET.Seconds = 10;
CFE_TIME_Global.AtToneMET.Subseconds = 0;
CFE_TIME_Global.AtToneDelay.Seconds = 0;
CFE_TIME_Global.AtToneDelay.Subseconds = 0;
CFE_TIME_Global.AtToneLatch.Seconds = 0;
CFE_TIME_Global.AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 20;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Seconds = 10;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
UT_SetBSP_Time(0, 0);
CFE_TIME_ExternalMET(settime);
UtAssert_UINT32_EQ(CFE_TIME_Global.InternalCount, 1);

/* Test setting time data from MET (external source, state set) */
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_NOT_SET;
settime.Seconds = 10;
settime.Subseconds = 0;
CFE_TIME_Global.ExternalCount = 0;
CFE_TIME_Global.AtToneMET.Seconds = 10;
CFE_TIME_Global.AtToneMET.Subseconds = 0;
CFE_TIME_Global.AtToneDelay.Seconds = 0;
CFE_TIME_Global.AtToneDelay.Subseconds = 0;
CFE_TIME_Global.AtToneLatch.Seconds = 0;
CFE_TIME_Global.AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_NOT_SET;
settime.Seconds = 10;
settime.Subseconds = 0;
CFE_TIME_Global.ExternalCount = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Seconds = 10;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
UT_SetBSP_Time(0, 0);
CFE_TIME_ExternalMET(settime);
UtAssert_UINT32_EQ(CFE_TIME_Global.ExternalCount, 1);
Expand All @@ -1118,35 +1118,35 @@ void Test_External(void)
* state not set
*/
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_NOT_SET;
CFE_TIME_Global.ExternalCount = 0;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_NOT_SET;
CFE_TIME_Global.ExternalCount = 0;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_ExternalGPS(settime, 0);
UtAssert_UINT32_EQ(CFE_TIME_Global.ExternalCount, 1);

/* Test setting time data from GPS using an external source with the clock
* state set and time less than the minimum
*/
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.AtToneMET.Seconds = 0;
CFE_TIME_Global.AtToneMET.Subseconds = 0;
CFE_TIME_Global.AtToneSTCF.Seconds = 10;
CFE_TIME_Global.AtToneSTCF.Subseconds = 0;
CFE_TIME_Global.AtToneDelay.Seconds = 0;
CFE_TIME_Global.AtToneDelay.Subseconds = 0;
CFE_TIME_Global.AtToneLatch.Seconds = 0;
CFE_TIME_Global.AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 0;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneSTCF.Seconds = 10;
CFE_TIME_Global.ReferenceState[0].AtToneSTCF.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
UT_SetBSP_Time(0, 0);
CFE_TIME_ExternalGPS(settime, 0);
UtAssert_UINT32_EQ(CFE_TIME_Global.InternalCount, 1);
Expand All @@ -1155,46 +1155,46 @@ void Test_External(void)
* state set and time greater than the maximum
*/
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 20;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.AtToneMET.Seconds = 0;
CFE_TIME_Global.AtToneMET.Subseconds = 0;
CFE_TIME_Global.AtToneSTCF.Seconds = 10;
CFE_TIME_Global.AtToneSTCF.Subseconds = 0;
CFE_TIME_Global.AtToneDelay.Seconds = 0;
CFE_TIME_Global.AtToneDelay.Subseconds = 0;
CFE_TIME_Global.AtToneLatch.Seconds = 0;
CFE_TIME_Global.AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_WAS_SET;
settime.Seconds = 20;
settime.Subseconds = 0;
CFE_TIME_Global.InternalCount = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneSTCF.Seconds = 10;
CFE_TIME_Global.ReferenceState[0].AtToneSTCF.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
UT_SetBSP_Time(0, 0);
CFE_TIME_ExternalGPS(settime, 0);
UtAssert_UINT32_EQ(CFE_TIME_Global.InternalCount, 1);

/* Test setting time data from GPS (external source, state set) */
UT_InitData();
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ClockSetState = CFE_TIME_SetState_NOT_SET;
settime.Seconds = 10;
settime.Subseconds = 0;
CFE_TIME_Global.ExternalCount = 0;
CFE_TIME_Global.AtToneMET.Seconds = 0;
CFE_TIME_Global.AtToneMET.Subseconds = 0;
CFE_TIME_Global.AtToneSTCF.Seconds = 10;
CFE_TIME_Global.AtToneSTCF.Subseconds = 0;
CFE_TIME_Global.AtToneDelay.Seconds = 0;
CFE_TIME_Global.AtToneDelay.Subseconds = 0;
CFE_TIME_Global.AtToneLatch.Seconds = 0;
CFE_TIME_Global.AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
CFE_TIME_Global.ClockSource = CFE_TIME_SourceSelect_EXTERNAL;
CFE_TIME_Global.ReferenceState[0].ClockSetState = CFE_TIME_SetState_NOT_SET;
settime.Seconds = 10;
settime.Subseconds = 0;
CFE_TIME_Global.ExternalCount = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneMET.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneSTCF.Seconds = 10;
CFE_TIME_Global.ReferenceState[0].AtToneSTCF.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneDelay.Subseconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Seconds = 0;
CFE_TIME_Global.ReferenceState[0].AtToneLatch.Subseconds = 0;
CFE_TIME_Global.MaxDelta.Seconds = 0;
CFE_TIME_Global.MaxDelta.Subseconds = 1;
CFE_TIME_Global.MaxLocalClock.Seconds = 0;
CFE_TIME_Global.MaxLocalClock.Subseconds = 0;
UT_SetBSP_Time(0, 0);
CFE_TIME_ExternalGPS(settime, 0);
UtAssert_UINT32_EQ(CFE_TIME_Global.ExternalCount, 1);
Expand Down
Loading