2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2015-06-22 21:11:08 +00:00
|
|
|
#include "trick/tc.h"
|
|
|
|
#include "trick/tc_proto.h"
|
|
|
|
#include "trick/attributes.h"
|
|
|
|
#include "trick/trick_byteswap.h"
|
|
|
|
#include "trick/trick_error_hndlr.h"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
class TCConnectTest : public testing::Test {
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TCConnectTest(){}
|
|
|
|
~TCConnectTest(){}
|
|
|
|
|
|
|
|
TCDevice* device;
|
|
|
|
|
|
|
|
void SetUp(){
|
|
|
|
|
|
|
|
/* device */
|
|
|
|
device = (TCDevice *) malloc(sizeof(TCDevice));
|
2018-01-10 20:27:46 +00:00
|
|
|
memset( (void *)device,'\0',sizeof(TCDevice) );
|
2017-11-29 21:35:16 +00:00
|
|
|
device->hostname = strdup("127.0.0.1");
|
2015-02-26 15:02:31 +00:00
|
|
|
device->disabled = TC_COMM_FALSE;
|
|
|
|
device->disable_handshaking = TC_COMM_DISABLED;
|
|
|
|
strcpy(device->client_tag, "<empty>");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void TearDown(){
|
2016-11-08 09:25:07 +00:00
|
|
|
|
2018-01-10 20:27:46 +00:00
|
|
|
free(device->hostname);
|
2015-02-26 15:02:31 +00:00
|
|
|
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 );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-11-08 09:25:07 +00:00
|
|
|
TEST_F( TCConnectTest, testNullHostname ) {
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
device->hostname = NULL;
|
|
|
|
|
|
|
|
int connect_status = tc_connect( device );
|
|
|
|
|
|
|
|
EXPECT_EQ( connect_status, TC_CONN_DISABLED );
|
|
|
|
}
|
|
|
|
|