foxBMS - Unit Tests  1.6.0
The foxBMS Unit Tests API Documentation
test_sys_mon.c File Reference

Tests for the sys_mon module. More...

#include "unity.h"
#include "Mockdiag.h"
#include "Mockfram.h"
#include "Mockfram_cfg.h"
#include "Mockos.h"
#include "Mocksys_mon_cfg.h"
#include "fassert.h"
#include "sys_mon.h"
#include "test_assert_helper.h"
#include <stdbool.h>
#include <stdint.h>
Include dependency graph for test_sys_mon.c:

Go to the source code of this file.

Macros

#define DUMMY_TASK_ID_0   (0)
 
#define DUMMY_TASK_ID_1   (1)
 
#define DUMMY_TASK_ID_2   (2)
 
#define DUMMY_CYCLE_TIME   (10)
 
#define DUMMY_MAX_JITTER   (1)
 

Functions

void TEST_SYSM_DummyCallback_0 (SYSM_TASK_ID_e taskId)
 
void TEST_SYSM_DummyCallback_1 (SYSM_TASK_ID_e taskId)
 
void TEST_SYSM_DummyCallback_2 (SYSM_TASK_ID_e taskId)
 
void setUp (void)
 
void tearDown (void)
 
void testSYSM_CheckNotificationsEarlyExitOnTimestampEquality (void)
 
void testSYSM_CheckNotificationsSYSMDisabled (void)
 
void testSYSM_CheckNotificationsProvokeDurationViolation (void)
 
void testSYSM_CheckNotificationsProvokeDurationViolationWithRecording (void)
 
void testSYSM_NotifyInvalidTaskID (void)
 
void testSYSM_NotifyEnterTimestampProperlySet (void)
 
void testSYSM_NotifyExitTimestampProperlySetAndDurationCalculated (void)
 
void testSYSM_NotifyHitAssertWithIllegalNotifyType (void)
 
void testSYSM_GetRecordedTimingViolations (void)
 
void testSYSM_CopyFramStructInvalidInput (void)
 
void testSYSM_CopyFramStruct (void)
 

Variables

SYSM_MONITORING_CFG_s sysm_ch_cfg [3]
 
FRAM_SYS_MON_RECORD_s fram_sys_mon_record = {0}
 

Detailed Description

Tests for the sys_mon module.

SPDX-License-Identifier: BSD-3-Clause

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:

  • ″This product uses parts of foxBMS®″
  • ″This product includes parts of foxBMS®″
  • ″This product is derived from foxBMS®″
Author
foxBMS Team
Date
2020-04-02 (date of creation)
Updated
2023-10-12 (date of last update)
Version
v1.6.0
Prefix
TEST

Definition in file test_sys_mon.c.

Macro Definition Documentation

◆ DUMMY_CYCLE_TIME

#define DUMMY_CYCLE_TIME   (10)

Definition at line 80 of file test_sys_mon.c.

◆ DUMMY_MAX_JITTER

#define DUMMY_MAX_JITTER   (1)

Definition at line 81 of file test_sys_mon.c.

◆ DUMMY_TASK_ID_0

#define DUMMY_TASK_ID_0   (0)

Definition at line 77 of file test_sys_mon.c.

◆ DUMMY_TASK_ID_1

#define DUMMY_TASK_ID_1   (1)

Definition at line 78 of file test_sys_mon.c.

◆ DUMMY_TASK_ID_2

#define DUMMY_TASK_ID_2   (2)

Definition at line 79 of file test_sys_mon.c.

Function Documentation

◆ setUp()

void setUp ( void  )

Definition at line 123 of file test_sys_mon.c.

Here is the call graph for this function:

◆ tearDown()

void tearDown ( void  )

Definition at line 148 of file test_sys_mon.c.

◆ TEST_SYSM_DummyCallback_0()

void TEST_SYSM_DummyCallback_0 ( SYSM_TASK_ID_e  taskId)

Definition at line 83 of file test_sys_mon.c.

◆ TEST_SYSM_DummyCallback_1()

void TEST_SYSM_DummyCallback_1 ( SYSM_TASK_ID_e  taskId)

Definition at line 87 of file test_sys_mon.c.

◆ TEST_SYSM_DummyCallback_2()

void TEST_SYSM_DummyCallback_2 ( SYSM_TASK_ID_e  taskId)

Definition at line 91 of file test_sys_mon.c.

◆ testSYSM_CheckNotificationsEarlyExitOnTimestampEquality()

void testSYSM_CheckNotificationsEarlyExitOnTimestampEquality ( void  )

Definition at line 152 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_CheckNotificationsProvokeDurationViolation()

void testSYSM_CheckNotificationsProvokeDurationViolation ( void  )

Definition at line 174 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_CheckNotificationsProvokeDurationViolationWithRecording()

void testSYSM_CheckNotificationsProvokeDurationViolationWithRecording ( void  )

same test as testSYSM_CheckNotificationsProvokeDurationViolation() but with recording enabled

Definition at line 194 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_CheckNotificationsSYSMDisabled()

void testSYSM_CheckNotificationsSYSMDisabled ( void  )

Definition at line 165 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_CopyFramStruct()

void testSYSM_CopyFramStruct ( void  )

test copy function of SYSM_CopyFramStruct()

Definition at line 304 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_CopyFramStructInvalidInput()

void testSYSM_CopyFramStructInvalidInput ( void  )

test SYSM_CopyFramStruct() and its reaction to invalid input

Definition at line 297 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_GetRecordedTimingViolations()

void testSYSM_GetRecordedTimingViolations ( void  )

test the edge cases of the function that can return recorded violations

Definition at line 270 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_NotifyEnterTimestampProperlySet()

void testSYSM_NotifyEnterTimestampProperlySet ( void  )

Definition at line 225 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_NotifyExitTimestampProperlySetAndDurationCalculated()

void testSYSM_NotifyExitTimestampProperlySetAndDurationCalculated ( void  )

Definition at line 240 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_NotifyHitAssertWithIllegalNotifyType()

void testSYSM_NotifyHitAssertWithIllegalNotifyType ( void  )

Definition at line 258 of file test_sys_mon.c.

Here is the call graph for this function:

◆ testSYSM_NotifyInvalidTaskID()

void testSYSM_NotifyInvalidTaskID ( void  )

Definition at line 218 of file test_sys_mon.c.

Here is the call graph for this function:

Variable Documentation

◆ fram_sys_mon_record

FRAM_SYS_MON_RECORD_s fram_sys_mon_record = {0}

placeholder variable for the FRAM entry of sys mon

Definition at line 120 of file test_sys_mon.c.

◆ sysm_ch_cfg

SYSM_MONITORING_CFG_s sysm_ch_cfg[3]
Initial value:
= {
}
@ SYSM_RECORDING_ENABLED
Definition: sys_mon_cfg.h:85
@ SYSM_RECORDING_DISABLED
Definition: sys_mon_cfg.h:86
@ SYSM_HANDLING_SWITCH_OFF_CONTACTOR
Definition: sys_mon_cfg.h:67
@ SYSM_ENABLED
Definition: sys_mon_cfg.h:91
@ SYSM_DISABLED
Definition: sys_mon_cfg.h:92
#define DUMMY_TASK_ID_0
Definition: test_sys_mon.c:77
#define DUMMY_TASK_ID_2
Definition: test_sys_mon.c:79
void TEST_SYSM_DummyCallback_1(SYSM_TASK_ID_e taskId)
Definition: test_sys_mon.c:87
void TEST_SYSM_DummyCallback_2(SYSM_TASK_ID_e taskId)
Definition: test_sys_mon.c:91
void TEST_SYSM_DummyCallback_0(SYSM_TASK_ID_e taskId)
Definition: test_sys_mon.c:83
#define DUMMY_MAX_JITTER
Definition: test_sys_mon.c:81
#define DUMMY_CYCLE_TIME
Definition: test_sys_mon.c:80
#define DUMMY_TASK_ID_1
Definition: test_sys_mon.c:78

diag system monitoring struct

Definition at line 95 of file test_sys_mon.c.