mirror of
https://github.com/nasa/trick.git
synced 2025-01-10 15:02:58 +00:00
6184aa6cd9
* Removed purple warnings from unit test compilation. * "Fixed const corectness bug. Added more warning fixes." * Fixed warning issue. * Removed null checking and (char*) casting. * Changed sizeof parameter to variable from data structure.
63 lines
1.2 KiB
C++
63 lines
1.2 KiB
C++
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "trick/tc.h"
|
|
#include "trick/tc_proto.h"
|
|
#include "trick/attributes.h"
|
|
#include "trick/trick_byteswap.h"
|
|
#include "trick/trick_error_hndlr.h"
|
|
|
|
class TCConnectTest : public testing::Test {
|
|
|
|
protected:
|
|
TCConnectTest(){}
|
|
~TCConnectTest(){}
|
|
|
|
TCDevice* device;
|
|
|
|
void SetUp(){
|
|
|
|
/* device */
|
|
device = (TCDevice *) malloc(sizeof(TCDevice));
|
|
memset( (void *)device,'\0',sizeof(device) );
|
|
device->hostname = strdup("127.0.0.1");
|
|
device->disabled = TC_COMM_FALSE;
|
|
device->disable_handshaking = TC_COMM_DISABLED;
|
|
strcpy(device->client_tag, "<empty>");
|
|
|
|
}
|
|
|
|
void TearDown(){
|
|
|
|
free(device);
|
|
}
|
|
};
|
|
|
|
|
|
TEST_F( TCConnectTest, testNoDevice ) {
|
|
|
|
int connect_status = tc_connect( NULL );
|
|
|
|
EXPECT_EQ( connect_status, -1 );
|
|
}
|
|
|
|
TEST_F( TCConnectTest, testDisabledDevice ) {
|
|
|
|
device->disabled = TC_COMM_TRUE;
|
|
|
|
int connect_status = tc_connect( device );
|
|
|
|
EXPECT_EQ( connect_status, TC_CONN_DISABLED );
|
|
|
|
}
|
|
|
|
TEST_F( TCConnectTest, testNullHostname ) {
|
|
|
|
device->hostname = NULL;
|
|
|
|
int connect_status = tc_connect( device );
|
|
|
|
EXPECT_EQ( connect_status, TC_CONN_DISABLED );
|
|
}
|
|
|