blob: d96bc1990e0755a4b408a4def0e379d8b5bdeff0 [file] [log] [blame]
/*
*
* Copyright (c) 2020 Project CHIP Authors
* Copyright (c) 2016-2017 Nest Labs, Inc.
* All rights reserved.
*
* Licensed 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 <inttypes.h>
#include <stdint.h>
#include <string.h>
#include <gtest/gtest.h>
#include <inet/IPAddress.h>
#include <lib/core/DataModelTypes.h>
#include <lib/core/PeerId.h>
#include <transport/raw/PeerAddress.h>
namespace {
using namespace chip;
using chip::Inet::InterfaceId;
using chip::Inet::IPAddress;
using chip::Transport::PeerAddress;
/**
* Test correct identification of IPv6 multicast addresses.
*/
TEST(TestPeerAddress, TestPeerAddressMulticast)
{
constexpr chip::FabricId fabric = 0xa1a2a4a8b1b2b4b8;
constexpr chip::GroupId group = 0xe10f;
PeerAddress addr = PeerAddress::Multicast(fabric, group);
EXPECT_EQ(chip::Transport::Type::kUdp, addr.GetTransportType());
EXPECT_TRUE(addr.IsMulticast());
const Inet::IPAddress & ip = addr.GetIPAddress();
EXPECT_TRUE(ip.IsIPv6Multicast());
EXPECT_EQ(chip::Inet::IPAddressType::kIPv6, ip.Type());
constexpr uint8_t expected[NL_INET_IPV6_ADDR_LEN_IN_BYTES] = { 0xff, 0x35, 0x00, 0x40, 0xfd, 0xa1, 0xa2, 0xa4,
0xa8, 0xb1, 0xb2, 0xb4, 0xb8, 0x00, 0xe1, 0x0f };
uint8_t result[NL_INET_IPV6_ADDR_LEN_IN_BYTES];
uint8_t * p = result;
ip.WriteAddress(p);
EXPECT_EQ(0, memcmp(expected, result, NL_INET_IPV6_ADDR_LEN_IN_BYTES));
}
TEST(TestPeerAddress, TestToString)
{
char buff[PeerAddress::kMaxToStringSize];
IPAddress ip;
{
IPAddress::FromString("::1", ip);
PeerAddress::UDP(ip, 1122).ToString(buff);
EXPECT_STREQ(buff, "UDP:[::1]:1122");
}
{
IPAddress::FromString("::1", ip);
PeerAddress::TCP(ip, 1122).ToString(buff);
EXPECT_STREQ(buff, "TCP:[::1]:1122");
}
{
PeerAddress::BLE().ToString(buff);
EXPECT_STREQ(buff, "BLE");
}
{
IPAddress::FromString("1223::3456:789a", ip);
PeerAddress::UDP(ip, 8080).ToString(buff);
// IPV6 does not specify case
int res1 = strcmp(buff, "UDP:[1223::3456:789a]:8080");
int res2 = strcmp(buff, "UDP:[1223::3456:789A]:8080");
EXPECT_TRUE(!res1 || !res2);
}
{
PeerAddress udp = PeerAddress(Transport::Type::kUdp);
udp.SetPort(5840);
udp.ToString(buff);
EXPECT_STREQ(buff, "UDP:[::]:5840");
}
}
} // namespace