blob: d19dbccf09a50670a248808ee10c2fa1a58193e0 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/api/cast_channel/cast_channel_api.h"
#include <memory>
#include "net/base/ip_endpoint.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace extensions {
// Tests parsing of ConnectInfo.
TEST(CastChannelOpenFunctionTest, TestParseConnectInfo) {
typedef CastChannelOpenFunction ccof;
std::unique_ptr<net::IPEndPoint> ip_endpoint;
// Valid ConnectInfo
api::cast_channel::ConnectInfo connect_info;
connect_info.ip_address = "192.0.0.1";
connect_info.port = 8009;
connect_info.auth = api::cast_channel::CHANNEL_AUTH_TYPE_SSL_VERIFIED;
ip_endpoint.reset(ccof::ParseConnectInfo(connect_info));
EXPECT_TRUE(ip_endpoint);
EXPECT_EQ(ip_endpoint->ToString(), "192.0.0.1:8009");
}
} // namespace extensions