Skip to content

Commit

Permalink
Merge pull request #1722 from nmullane/fix806-es-application-control-…
Browse files Browse the repository at this point in the history
…functional-tests

Fix #806, Add application control functional tests
  • Loading branch information
astrogeco authored Aug 6, 2021
2 parents 0484d64 + f1db90c commit da12938
Show file tree
Hide file tree
Showing 4 changed files with 65 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 @@ -2,6 +2,7 @@
# Create the app module
add_cfe_app(cfe_testcase
src/cfe_test.c
src/es_application_control_test.c
src/es_info_test.c
src/es_task_test.c
src/es_cds_test.c
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 @@ -53,6 +53,7 @@ void CFE_TestMain(void)
/*
* Register test cases in UtAssert
*/
ESApplicationControlTestSetup();
ESCDSTestSetup();
ESInfoTestSetup();
ESMemPoolTestSetup();
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 @@ -84,6 +84,7 @@ extern CFE_FT_Global_t CFE_FT_Global;
bool TimeInRange(CFE_TIME_SysTime_t Time, CFE_TIME_SysTime_t Target, OS_time_t difference);

void CFE_TestMain(void);
void ESApplicationControlTestSetup(void);
void ESCDSTestSetup(void);
void ESInfoTestSetup(void);
void ESMemPoolTestSetup(void);
Expand Down
62 changes: 62 additions & 0 deletions modules/cfe_testcase/src/es_application_control_test.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*************************************************************************
**
** 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_application_control_test.c
**
** Purpose:
** Functional test of ES Application Control APIs
**
** Tests only invalid calls to the application control functions.
**
** Demonstration of how to register and use the UT assert functions.
**
*************************************************************************/

/*
* Includes
*/

#include "cfe_test.h"

void TestApplicationControl(void)
{
UtPrintf("Testing: CFE_ES_RestartApp, CFE_ES_ReloadApp, CFE_ES_DeleteApp");
CFE_ES_AppId_t TestAppId;
UtAssert_INT32_EQ(CFE_ES_GetAppID(&TestAppId), CFE_SUCCESS);

UtAssert_UINT32_EQ(CFE_ES_RestartApp(CFE_ES_APPID_UNDEFINED), CFE_ES_ERR_RESOURCEID_NOT_VALID);
/*
* This seems a bit strange that it throws a file io error
* CFE_ES_ReloadApp calls OS_stat with the null filename
* OS_stat should return OS_INVALID_POINTER, but the exact
* error is ignored in CFE_ES_ReloadApp and file io error is returned
* most other functions return a CFE_ES_BAD_ARGUMENT in this situation
*/
UtAssert_UINT32_EQ(CFE_ES_ReloadApp(TestAppId, NULL), CFE_ES_FILE_IO_ERR);
UtAssert_UINT32_EQ(CFE_ES_ReloadApp(TestAppId, "/cf/NOT_cfe_testcase.so"), CFE_ES_FILE_IO_ERR);
UtAssert_UINT32_EQ(CFE_ES_ReloadApp(CFE_ES_APPID_UNDEFINED, "/cf/cfe_testcase.so"),
CFE_ES_ERR_RESOURCEID_NOT_VALID);
UtAssert_UINT32_EQ(CFE_ES_DeleteApp(CFE_ES_APPID_UNDEFINED), CFE_ES_ERR_RESOURCEID_NOT_VALID);
}

void ESApplicationControlTestSetup(void)
{
UtTest_Add(TestApplicationControl, NULL, NULL, "Test Application Control API");
}

0 comments on commit da12938

Please sign in to comment.