-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request nasa#1759 from nasa/integration-candidate
cFE Integration candidate: 2021-08-03
- Loading branch information
Showing
15 changed files
with
348 additions
and
21 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
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,74 @@ | ||
/************************************************************************* | ||
** | ||
** 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: evs_send_test.c | ||
** | ||
** Purpose: | ||
** Functional test of basic EVS Send Event APIs | ||
** | ||
** Demonstration of how to register and use the UT assert functions. | ||
** | ||
*************************************************************************/ | ||
|
||
/* | ||
* Includes | ||
*/ | ||
|
||
#include "cfe_test.h" | ||
|
||
void TestSendEvent(void) | ||
{ | ||
UtPrintf("Testing: CFE_EVS_SendEvent"); | ||
|
||
UtAssert_INT32_EQ(CFE_EVS_SendEvent(0, CFE_EVS_EventType_INFORMATION, "OK Send"), CFE_SUCCESS); | ||
UtAssert_INT32_EQ(CFE_EVS_SendEvent(0, CFE_EVS_EventType_INFORMATION, NULL), CFE_EVS_INVALID_PARAMETER); | ||
} | ||
|
||
void TestSendEventAppID(void) | ||
{ | ||
CFE_ES_AppId_t AppId; | ||
|
||
UtPrintf("Testing: CFE_EVS_SendEventWithAppID"); | ||
|
||
CFE_ES_GetAppID(&AppId); | ||
|
||
UtAssert_INT32_EQ(CFE_EVS_SendEventWithAppID(0, CFE_EVS_EventType_INFORMATION, AppId, "OK App ID"), CFE_SUCCESS); | ||
|
||
UtAssert_INT32_EQ(CFE_EVS_SendEventWithAppID(0, CFE_EVS_EventType_INFORMATION, AppId, NULL), | ||
CFE_EVS_INVALID_PARAMETER); | ||
UtAssert_INT32_EQ(CFE_EVS_SendEventWithAppID(0, CFE_EVS_EventType_INFORMATION, CFE_ES_APPID_UNDEFINED, "OK"), | ||
CFE_EVS_APP_ILLEGAL_APP_ID); | ||
} | ||
|
||
void TestSendTimedEvent(void) | ||
{ | ||
CFE_TIME_SysTime_t Time = {1000, 1000}; | ||
UtPrintf("Testing: CFE_EVS_SendTimedEvent"); | ||
|
||
UtAssert_INT32_EQ(CFE_EVS_SendTimedEvent(Time, 0, CFE_EVS_EventType_INFORMATION, "OK Time"), CFE_SUCCESS); | ||
UtAssert_INT32_EQ(CFE_EVS_SendTimedEvent(Time, 0, CFE_EVS_EventType_INFORMATION, NULL), CFE_EVS_INVALID_PARAMETER); | ||
} | ||
|
||
void EVSSendTestSetup(void) | ||
{ | ||
UtTest_Add(TestSendEvent, NULL, NULL, "Test Send Event"); | ||
UtTest_Add(TestSendEventAppID, NULL, NULL, "Test Send Event with App ID"); | ||
UtTest_Add(TestSendTimedEvent, NULL, NULL, "Test Send Timed Event"); | ||
} |
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,83 @@ | ||
/************************************************************************* | ||
** | ||
** 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: message_id_test.c | ||
** | ||
** Purpose: | ||
** Functional test of Message ID APIs | ||
** | ||
** Demonstration.... | ||
** | ||
*************************************************************************/ | ||
|
||
/* | ||
* Includes | ||
*/ | ||
|
||
#include "cfe_test.h" | ||
|
||
void TestMsgId(void) | ||
{ | ||
UtPrintf("Testing: CFE_MSG_SetMsgId, CFE_MSG_GetMsgId"); | ||
CFE_MSG_Message_t msg; | ||
CFE_SB_MsgId_t msgid; | ||
CFE_SB_MsgId_t expectedmsgid = CFE_SB_ValueToMsgId(1); | ||
|
||
UtAssert_INT32_EQ(CFE_MSG_SetMsgId(&msg, expectedmsgid), CFE_SUCCESS); | ||
UtAssert_INT32_EQ(CFE_MSG_GetMsgId(&msg, &msgid), CFE_SUCCESS); | ||
UtAssert_UINT32_EQ(msgid, expectedmsgid); | ||
|
||
UtAssert_INT32_EQ(CFE_MSG_SetMsgId(NULL, msgid), CFE_MSG_BAD_ARGUMENT); | ||
UtAssert_INT32_EQ(CFE_MSG_SetMsgId(&msg, CFE_SB_INVALID_MSG_ID), CFE_MSG_BAD_ARGUMENT); | ||
|
||
UtAssert_INT32_EQ(CFE_MSG_GetMsgId(NULL, &msgid), CFE_MSG_BAD_ARGUMENT); | ||
UtAssert_INT32_EQ(CFE_MSG_GetMsgId(&msg, NULL), CFE_MSG_BAD_ARGUMENT); | ||
} | ||
|
||
void TestGetTypeFromMsgId(void) | ||
{ | ||
UtPrintf("Testing: CFE_MSG_GetTypeFromMsgId"); | ||
CFE_SB_MsgId_t msgid = CFE_SB_ValueToMsgId(0); | ||
CFE_MSG_Type_t msgtype; | ||
int32 status; | ||
|
||
/* | ||
* Response not verified because msgid 0 could be out of range based on implementation and | ||
* the msg to type relationship is also implementation defined, black box test just calls the routine | ||
* to confirm things don't "break" with full range values and the implementation exists. | ||
*/ | ||
|
||
status = CFE_MSG_GetTypeFromMsgId(msgid, &msgtype); | ||
UtAssert_True(status == CFE_SUCCESS || status == CFE_MSG_BAD_ARGUMENT, "CFE_MSG_GetTypeFromMsgId() == (%ld)", | ||
(long)status); | ||
|
||
memset(&msgid, 0xFF, sizeof(msgid)); | ||
status = CFE_MSG_GetTypeFromMsgId(msgid, &msgtype); | ||
UtAssert_True(status == CFE_SUCCESS || status == CFE_MSG_BAD_ARGUMENT, "CFE_MSG_GetTypeFromMsgId() == (%ld)", | ||
(long)status); | ||
|
||
UtAssert_INT32_EQ(CFE_MSG_GetTypeFromMsgId(msgid, NULL), CFE_MSG_BAD_ARGUMENT); | ||
} | ||
|
||
void MessageIdTestSetup(void) | ||
{ | ||
UtTest_Add(TestMsgId, NULL, NULL, "Test Set/Get Message ID"); | ||
UtTest_Add(TestGetTypeFromMsgId, NULL, NULL, "Test Get Type From Message ID"); | ||
} |
Oops, something went wrong.