Skip to content

Commit

Permalink
Fix #812 Add Perf API functional tests
Browse files Browse the repository at this point in the history
and add Perf Trigger and Perf Start commands to functional tests workflow
  • Loading branch information
pepepr08 committed Aug 11, 2021
1 parent eb9c523 commit c5e7165
Show file tree
Hide file tree
Showing 4 changed files with 77 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 @@ -12,6 +12,7 @@ add_cfe_app(cfe_testcase
src/es_counter_test.c
src/es_misc_test.c
src/es_mempool_test.c
src/es_perf_test.c
src/es_resource_id_test.c
src/evs_filters_test.c
src/evs_send_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 @@ -64,6 +64,7 @@ void CFE_TestMain(void)
ESInfoTestSetup();
ESMemPoolTestSetup();
ESMiscTestSetup();
ESPerfTestSetup();
ESResourceIDTestSetup();
ESTaskTestSetup();
EVSFiltersTestSetup();
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 @@ -95,6 +95,7 @@ void ESCounterTestSetup(void);
void ESInfoTestSetup(void);
void ESMemPoolTestSetup(void);
void ESMiscTestSetup(void);
void ESPerfTestSetup(void);
void ESResourceIDTestSetup(void);
void ESTaskTestSetup(void);
void EVSFiltersTestSetup(void);
Expand Down
74 changes: 74 additions & 0 deletions modules/cfe_testcase/src/es_perf_test.c
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: es_perf_test.c
**
** Purpose:
** Functional test of ES Performance APIs
**
*************************************************************************/

/*
* Includes
*/

#include "cfe_test.h"

void TestPerfLogEntry(void)
{
UtAssert_VOIDCALL(CFE_ES_PerfLogEntry(0));
UtAssert_VOIDCALL(CFE_ES_PerfLogEntry(CFE_MISSION_ES_PERF_MAX_IDS - 1));
UtAssert_VOIDCALL(CFE_ES_PerfLogEntry(CFE_MISSION_ES_PERF_MAX_IDS));
}

void TestPerfLogExit(void)
{
UtAssert_VOIDCALL(CFE_ES_PerfLogExit(0));
UtAssert_VOIDCALL(CFE_ES_PerfLogExit(CFE_MISSION_ES_PERF_MAX_IDS - 1));
UtAssert_VOIDCALL(CFE_ES_PerfLogExit(CFE_MISSION_ES_PERF_MAX_IDS));
}

void TestPerfLogAdd(void)
{
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(0, 0));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(0, 1));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(0, 0xFFFFFFFF));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(CFE_MISSION_ES_PERF_MAX_IDS - 1, 0));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(CFE_MISSION_ES_PERF_MAX_IDS - 1, 1));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(CFE_MISSION_ES_PERF_MAX_IDS - 1, 0xFFFFFFFF));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(CFE_MISSION_ES_PERF_MAX_IDS, 0));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(CFE_MISSION_ES_PERF_MAX_IDS, 1));
UtAssert_VOIDCALL(CFE_ES_PerfLogAdd(CFE_MISSION_ES_PERF_MAX_IDS, 0xFFFFFFFF));
}

/* These commands should trigger and stop perf data (based on value commanded in functional test workflow) */
void TestPerfLogTrigger(void)
{
UtAssert_VOIDCALL(CFE_ES_PerfLogEntry(126));
UtAssert_VOIDCALL(CFE_ES_PerfLogExit(126));
}

void ESPerfTestSetup(void)
{
UtTest_Add(TestPerfLogEntry, NULL, NULL, "Test PerfLogEntry");
UtTest_Add(TestPerfLogExit, NULL, NULL, "Test PerfLogExit");
UtTest_Add(TestPerfLogAdd, NULL, NULL, "Test PerfLogAdd");
UtTest_Add(TestPerfLogTrigger, NULL, NULL, "Test Perf Trigger");
}

0 comments on commit c5e7165

Please sign in to comment.