trick/trick_source/trick_utils/comm/test/TCErrorTest.cpp
2015-02-26 09:02:31 -06:00

66 lines
1.3 KiB
C++

/*
* $Id: TCErrorTest.cpp 2034 2011-11-09 18:30:27Z marnold $
*/
#include <gtest/gtest.h>
#include "trick_utils/comm/include/tc.h"
#include "trick_utils/comm/include/attributes.h"
#include "trick_utils/comm/include/hs_msg.h"
#include "trick_utils/comm/include/tc_proto.h"
#include "trick_utils/comm/include/trick_byteswap.h"
#include "trick_utils/comm/include/trick_error_hndlr.h"
class TCErrorTest : public testing::Test {
protected:
TCErrorTest(){}
~TCErrorTest(){}
TCDevice* device;
void SetUp(){
device = (TCDevice *) malloc(sizeof(TCDevice));
memset( (void *)device,'\0',sizeof(TCDevice) );
}
void TearDown(){
free(device);
}
};
TEST_F( TCErrorTest, testNoDevice ) {
int error_status = tc_error( NULL, 0 );
EXPECT_EQ( error_status, -1 );
}
TEST_F( TCErrorTest, testNoErrorHandler ) {
device->error_handler = NULL;
int error_status = tc_error( device, 0 );
EXPECT_EQ( error_status, 0 );
}
TEST_F( TCErrorTest, testOn ) {
int error_status = tc_error( device, 1 );
EXPECT_EQ( device->error_handler->report_level, TRICK_ERROR_ALL );
EXPECT_EQ( error_status, 0 );
}
TEST_F( TCErrorTest, testOff ) {
int error_status = tc_error( device, 0 );
EXPECT_EQ( device->error_handler->report_level, TRICK_ERROR_SILENT );
EXPECT_EQ( error_status, 0 );
}