Skip to content

Commit

Permalink
Merge pull request #1749 from zanzaben/fix1649_EVS_Reset_Filters_Func…
Browse files Browse the repository at this point in the history
…_Test

Fix #1649, Add Functional Test for EVS Reset Filters API.
  • Loading branch information
astrogeco committed Aug 10, 2021
2 parents f8ceda1 + 3f2ee86 commit 33f3505
Show file tree
Hide file tree
Showing 4 changed files with 57 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 @@ -13,6 +13,7 @@ add_cfe_app(cfe_testcase
src/es_misc_test.c
src/es_mempool_test.c
src/es_resource_id_test.c
src/evs_filters_test.c
src/evs_send_test.c
src/fs_header_test.c
src/fs_util_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 @@ -61,6 +61,7 @@ void CFE_TestMain(void)
ESMiscTestSetup();
ESResourceIDTestSetup();
ESTaskTestSetup();
EVSFiltersTestSetup();
EVSSendTestSetup();
FSHeaderTestSetup();
FSUtilTestSetup();
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 @@ -100,6 +100,7 @@ void ESMemPoolTestSetup(void);
void ESMiscTestSetup(void);
void ESResourceIDTestSetup(void);
void ESTaskTestSetup(void);
void EVSFiltersTestSetup(void);
void EVSSendTestSetup(void);
void FSHeaderTestSetup(void);
void FSUtilTestSetup(void);
Expand Down
54 changes: 54 additions & 0 deletions modules/cfe_testcase/src/evs_filters_test.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*************************************************************************
**
** 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_filters_test.c
**
** Purpose:
** Functional test of basic EVS Reset Filters APIs
**
** Demonstration of how to register and use the UT assert functions.
**
*************************************************************************/

/*
* Includes
*/

#include "cfe_test.h"

void TestResetFilters(void)
{
UtPrintf("Testing: CFE_EVS_ResetFilter, CFE_EVS_ResetAllFilters");

/* Test logic below depends on the test case registering an EID of 1 and not registering 0, and the resets in theory
* could impact test behavior/management related to events. Although the expectation is either all or none of an EID
* would be filtered (no use case for a "counting" filter within the test app) so for normal use this is no impact.
*/

UtAssert_INT32_EQ(CFE_EVS_ResetFilter(1), CFE_SUCCESS);
UtAssert_INT32_EQ(CFE_EVS_ResetAllFilters(), CFE_SUCCESS);

UtAssert_INT32_EQ(CFE_EVS_ResetFilter(0), CFE_EVS_EVT_NOT_REGISTERED);
}

void EVSFiltersTestSetup(void)
{
UtTest_Add(TestResetFilters, NULL, NULL, "Test Reset Filters");
}

0 comments on commit 33f3505

Please sign in to comment.