blob: 467ea72ccac2d1cabb55b737321b48d03d81e764 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
*/
#include <gtest/gtest.h>
#include "cassandra.h"
TEST(InetUnitTest, IPv4) {
// From string and back
const char* ip_address = "127.0.0.1";
CassInet inet;
EXPECT_EQ(cass_inet_from_string(ip_address, &inet), CASS_OK);
char output[CASS_INET_STRING_LENGTH];
cass_inet_string(inet, output);
EXPECT_EQ(strcmp(ip_address, output), 0);
// Inavlid address
EXPECT_EQ(cass_inet_from_string("<invalid>", &inet), CASS_ERROR_LIB_BAD_PARAMS);
EXPECT_EQ(cass_inet_from_string("127.0.0.", &inet), CASS_ERROR_LIB_BAD_PARAMS);
}
TEST(InetUnitTest, IPv6) {
// From string and back
const char* ip_address = "ffff::ffff:b3ff:fe1e:8329";
CassInet inet;
EXPECT_EQ(cass_inet_from_string(ip_address, &inet), CASS_OK);
char output[CASS_INET_STRING_LENGTH];
cass_inet_string(inet, output);
EXPECT_EQ(strcmp(ip_address, output), 0);
// Inavlid address
EXPECT_EQ(cass_inet_from_string("ffff", &inet), CASS_ERROR_LIB_BAD_PARAMS);
}
TEST(InetUnitTest, Length) {
const char* ip_address = "127.0.0.1";
const char* ip_address_junk = "127.0.0.1<junk>";
CassInet inet;
EXPECT_EQ(cass_inet_from_string_n(ip_address_junk, strlen(ip_address), &inet), CASS_OK);
char output[CASS_INET_STRING_LENGTH];
cass_inet_string(inet, output);
EXPECT_EQ(strcmp(ip_address, output), 0);
const char* max_ip_address = "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255";
const char* max_ip_address_v6 =
"ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"; // Last octets converted to hex
EXPECT_EQ(cass_inet_from_string_n(max_ip_address, strlen(max_ip_address), &inet), CASS_OK);
cass_inet_string(inet, output);
EXPECT_EQ(strcmp(max_ip_address_v6, output), 0);
// Too long
const char* too_long = "ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255_";
EXPECT_EQ(cass_inet_from_string_n(too_long, strlen(too_long), &inet), CASS_ERROR_LIB_BAD_PARAMS);
}