-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #1691, Add External Time Source Functional Tests
- Loading branch information
Showing
4 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/************************************************************************* | ||
** | ||
** 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_external_test.c | ||
** | ||
** Purpose: | ||
** Functional test of basic External Time Source APIs | ||
** | ||
** Demonstration of how to register and use the UT assert functions. | ||
** | ||
*************************************************************************/ | ||
|
||
/* | ||
* Includes | ||
*/ | ||
|
||
#include "cfe_test.h" | ||
|
||
int32 TestCallbackFunction(void) | ||
{ | ||
return CFE_SUCCESS; | ||
} | ||
|
||
int32 TestCallbackFunction2(void) | ||
{ | ||
return CFE_SUCCESS; | ||
} | ||
|
||
void TestExternal(void) | ||
{ | ||
#if ((CFE_PLATFORM_TIME_CFG_SRC_MET == true) || (CFE_PLATFORM_TIME_CFG_SRC_GPS == true) || \ | ||
(CFE_PLATFORM_TIME_CFG_SRC_TIME == true)) | ||
CFE_TIME_SysTime_t time = {1000, 0}; | ||
#endif | ||
|
||
UtPrintf("Testing: CFE_TIME_ExternalTone, CFE_TIME_ExternalMET, CFE_TIME_ExternalGPS, CFE_TIME_ExternalTime"); | ||
|
||
UtAssert_VOIDCALL(CFE_TIME_ExternalTone()); | ||
|
||
#if (CFE_PLATFORM_TIME_CFG_SRC_MET == true) | ||
UtAssert_VOIDCALL(CFE_TIME_ExternalMET(time)); | ||
#endif | ||
|
||
#if (CFE_PLATFORM_TIME_CFG_SRC_GPS == true) | ||
UtAssert_VOIDCALL(CFE_TIME_ExternalGPS(time, 5)); | ||
#endif | ||
|
||
#if (CFE_PLATFORM_TIME_CFG_SRC_TIME == true) | ||
UtAssert_VOIDCALL(CFE_TIME_ExternalTime(time)); | ||
#endif | ||
} | ||
|
||
void TestCallback(void) | ||
{ | ||
UtPrintf("Testing: CFE_TIME_RegisterSynchCallback, CFE_TIME_UnregisterSynchCallback"); | ||
|
||
UtAssert_INT32_EQ(CFE_TIME_RegisterSynchCallback(&TestCallbackFunction), CFE_SUCCESS); | ||
UtAssert_INT32_EQ(CFE_TIME_RegisterSynchCallback(&TestCallbackFunction2), CFE_TIME_TOO_MANY_SYNCH_CALLBACKS); | ||
|
||
UtAssert_INT32_EQ(CFE_TIME_UnregisterSynchCallback(&TestCallbackFunction), CFE_SUCCESS); | ||
UtAssert_INT32_EQ(CFE_TIME_UnregisterSynchCallback(&TestCallbackFunction), CFE_TIME_CALLBACK_NOT_REGISTERED); | ||
|
||
UtAssert_INT32_EQ(CFE_TIME_UnregisterSynchCallback(NULL), CFE_TIME_BAD_ARGUMENT); | ||
UtAssert_INT32_EQ(CFE_TIME_RegisterSynchCallback(NULL), CFE_TIME_BAD_ARGUMENT); | ||
} | ||
|
||
void TimeExternalTestSetup(void) | ||
{ | ||
UtTest_Add(TestExternal, NULL, NULL, "Test External Sources"); | ||
UtTest_Add(TestCallback, NULL, NULL, "Test Time Synch Callbacks"); | ||
} |