2014-10-28 22:20:11 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2009 The WebRTC Project Authors. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-04-27 07:22:53 -07:00
|
|
|
#include <memory>
|
|
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "p2p/base/basic_packet_socket_factory.h"
|
|
|
|
|
#include "p2p/base/stun_port.h"
|
|
|
|
|
#include "p2p/base/test_stun_server.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "rtc_base/gunit.h"
|
|
|
|
|
#include "rtc_base/helpers.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "rtc_base/socket_address.h"
|
|
|
|
|
#include "rtc_base/ssl_adapter.h"
|
|
|
|
|
#include "rtc_base/virtual_socket_server.h"
|
2018-09-17 17:06:08 -07:00
|
|
|
#include "test/gmock.h"
|
2014-10-28 22:20:11 +00:00
|
|
|
|
|
|
|
|
using cricket::ServerAddresses;
|
|
|
|
|
using rtc::SocketAddress;
|
2018-09-17 17:06:08 -07:00
|
|
|
using ::testing::_;
|
|
|
|
|
using ::testing::Return;
|
2014-10-28 22:20:11 +00:00
|
|
|
|
|
|
|
|
static const SocketAddress kLocalAddr("127.0.0.1", 0);
|
|
|
|
|
static const SocketAddress kStunAddr1("127.0.0.1", 5000);
|
|
|
|
|
static const SocketAddress kStunAddr2("127.0.0.1", 4000);
|
2016-05-20 15:08:29 -07:00
|
|
|
static const SocketAddress kStunAddr3("127.0.0.1", 3000);
|
2014-10-28 22:20:11 +00:00
|
|
|
static const SocketAddress kBadAddr("0.0.0.1", 5000);
|
|
|
|
|
static const SocketAddress kStunHostnameAddr("localhost", 5000);
|
|
|
|
|
static const SocketAddress kBadHostnameAddr("not-a-real-hostname", 5000);
|
2017-02-08 14:42:22 -08:00
|
|
|
// STUN timeout (with all retries) is cricket::STUN_TOTAL_TIMEOUT.
|
2016-05-23 12:49:30 -07:00
|
|
|
// Add some margin of error for slow bots.
|
2017-02-08 14:42:22 -08:00
|
|
|
static const int kTimeoutMs = cricket::STUN_TOTAL_TIMEOUT;
|
2014-10-28 22:20:11 +00:00
|
|
|
// stun prio = 100 << 24 | 30 (IPV4) << 8 | 256 - 0
|
Use suffixed {uint,int}{8,16,32,64}_t types.
Removes the use of uint8, etc. in favor of uint8_t.
BUG=webrtc:5024
R=henrik.lundin@webrtc.org, henrikg@webrtc.org, perkj@webrtc.org, solenberg@webrtc.org, stefan@webrtc.org, tina.legrand@webrtc.org
Review URL: https://codereview.webrtc.org/1362503003 .
Cr-Commit-Position: refs/heads/master@{#10196}
2015-10-07 12:23:21 +02:00
|
|
|
static const uint32_t kStunCandidatePriority = 1677729535;
|
2016-03-03 08:27:47 -08:00
|
|
|
static const int kInfiniteLifetime = -1;
|
|
|
|
|
static const int kHighCostPortKeepaliveLifetimeMs = 2 * 60 * 1000;
|
2014-10-28 22:20:11 +00:00
|
|
|
|
|
|
|
|
// Tests connecting a StunPort to a fake STUN server (cricket::StunServer)
|
2019-04-09 15:11:12 +02:00
|
|
|
class StunPortTestBase : public ::testing::Test, public sigslot::has_slots<> {
|
2014-10-28 22:20:11 +00:00
|
|
|
public:
|
2017-02-08 13:18:00 -08:00
|
|
|
StunPortTestBase()
|
2017-05-16 18:00:06 -07:00
|
|
|
: ss_(new rtc::VirtualSocketServer()),
|
2017-05-08 05:25:41 -07:00
|
|
|
thread_(ss_.get()),
|
Make Port (and subclasses) fully "Network"-based, instead of IP-based.
For ICE, we want sockets that are bound to specific network interfaces,
rather than to specific IP addresses. So, a while ago, we added a
"Network" class that gets passed into the Port constructor, in
addition to the IP address as before.
But we never finished the job of removing the IP address field, such that
a Port only guarantees something about the network interface it's
associated with, and not the specific IP address it ends up with.
This CL does that, and as a consequence, if a port ends up bound to
an IP address other than the "best" one (returned by Network::GetBestIP),
this *won't* be treated as an error.
This is relevant to Android, where even though we pass an IP address
into "Bind" as a way of identifying the network, the socket actually
gets bound using "android_setsocknetwork", which doesn't provide any
guarantees about the IP address. So, if a network interface has multiple
IPv6 addresses (for instance), we may not correctly predict the one
the OS will choose, and that's ok.
This CL also moves "SetAlternateLocalAddress" from VirtualSocket to
VirtualSocketServer, which makes for much more readable test code.
The next step, if there is one, is to pass along the Network class all
the way to SocketServer::Bind. Then the socket server could do smart
things with the network information. We could even stick a platform-
specific network handle in the Network object, such that the socket
server could use it for the binding, or for "sendmsg", for example.
See bug 7026 for more context about the sendmsg idea.
BUG=webrtc:7715
Review-Url: https://codereview.webrtc.org/2989303002
Cr-Commit-Position: refs/heads/master@{#19251}
2017-08-04 15:01:57 -07:00
|
|
|
network_("unittest", "unittest", kLocalAddr.ipaddr(), 32),
|
2014-10-28 22:20:11 +00:00
|
|
|
socket_factory_(rtc::Thread::Current()),
|
2016-03-03 08:27:47 -08:00
|
|
|
stun_server_1_(cricket::TestStunServer::Create(rtc::Thread::Current(),
|
|
|
|
|
kStunAddr1)),
|
|
|
|
|
stun_server_2_(cricket::TestStunServer::Create(rtc::Thread::Current(),
|
|
|
|
|
kStunAddr2)),
|
|
|
|
|
done_(false),
|
|
|
|
|
error_(false),
|
2017-02-08 13:18:00 -08:00
|
|
|
stun_keepalive_delay_(1),
|
Make Port (and subclasses) fully "Network"-based, instead of IP-based.
For ICE, we want sockets that are bound to specific network interfaces,
rather than to specific IP addresses. So, a while ago, we added a
"Network" class that gets passed into the Port constructor, in
addition to the IP address as before.
But we never finished the job of removing the IP address field, such that
a Port only guarantees something about the network interface it's
associated with, and not the specific IP address it ends up with.
This CL does that, and as a consequence, if a port ends up bound to
an IP address other than the "best" one (returned by Network::GetBestIP),
this *won't* be treated as an error.
This is relevant to Android, where even though we pass an IP address
into "Bind" as a way of identifying the network, the socket actually
gets bound using "android_setsocknetwork", which doesn't provide any
guarantees about the IP address. So, if a network interface has multiple
IPv6 addresses (for instance), we may not correctly predict the one
the OS will choose, and that's ok.
This CL also moves "SetAlternateLocalAddress" from VirtualSocket to
VirtualSocketServer, which makes for much more readable test code.
The next step, if there is one, is to pass along the Network class all
the way to SocketServer::Bind. Then the socket server could do smart
things with the network information. We could even stick a platform-
specific network handle in the Network object, such that the socket
server could use it for the binding, or for "sendmsg", for example.
See bug 7026 for more context about the sendmsg idea.
BUG=webrtc:7715
Review-Url: https://codereview.webrtc.org/2989303002
Cr-Commit-Position: refs/heads/master@{#19251}
2017-08-04 15:01:57 -07:00
|
|
|
stun_keepalive_lifetime_(-1) {
|
|
|
|
|
network_.AddIP(kLocalAddr.ipaddr());
|
|
|
|
|
}
|
2014-10-28 22:20:11 +00:00
|
|
|
|
2016-03-03 08:27:47 -08:00
|
|
|
cricket::UDPPort* port() const { return stun_port_.get(); }
|
2018-09-17 17:06:08 -07:00
|
|
|
rtc::AsyncPacketSocket* socket() const { return socket_.get(); }
|
2014-10-28 22:20:11 +00:00
|
|
|
bool done() const { return done_; }
|
|
|
|
|
bool error() const { return error_; }
|
|
|
|
|
|
2016-03-03 08:27:47 -08:00
|
|
|
void SetNetworkType(rtc::AdapterType adapter_type) {
|
|
|
|
|
network_.set_type(adapter_type);
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-28 22:20:11 +00:00
|
|
|
void CreateStunPort(const rtc::SocketAddress& server_addr) {
|
|
|
|
|
ServerAddresses stun_servers;
|
|
|
|
|
stun_servers.insert(server_addr);
|
|
|
|
|
CreateStunPort(stun_servers);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CreateStunPort(const ServerAddresses& stun_servers) {
|
2018-10-10 11:29:44 -07:00
|
|
|
stun_port_ = cricket::StunPort::Create(
|
Make Port (and subclasses) fully "Network"-based, instead of IP-based.
For ICE, we want sockets that are bound to specific network interfaces,
rather than to specific IP addresses. So, a while ago, we added a
"Network" class that gets passed into the Port constructor, in
addition to the IP address as before.
But we never finished the job of removing the IP address field, such that
a Port only guarantees something about the network interface it's
associated with, and not the specific IP address it ends up with.
This CL does that, and as a consequence, if a port ends up bound to
an IP address other than the "best" one (returned by Network::GetBestIP),
this *won't* be treated as an error.
This is relevant to Android, where even though we pass an IP address
into "Bind" as a way of identifying the network, the socket actually
gets bound using "android_setsocknetwork", which doesn't provide any
guarantees about the IP address. So, if a network interface has multiple
IPv6 addresses (for instance), we may not correctly predict the one
the OS will choose, and that's ok.
This CL also moves "SetAlternateLocalAddress" from VirtualSocket to
VirtualSocketServer, which makes for much more readable test code.
The next step, if there is one, is to pass along the Network class all
the way to SocketServer::Bind. Then the socket server could do smart
things with the network information. We could even stick a platform-
specific network handle in the Network object, such that the socket
server could use it for the binding, or for "sendmsg", for example.
See bug 7026 for more context about the sendmsg idea.
BUG=webrtc:7715
Review-Url: https://codereview.webrtc.org/2989303002
Cr-Commit-Position: refs/heads/master@{#19251}
2017-08-04 15:01:57 -07:00
|
|
|
rtc::Thread::Current(), &socket_factory_, &network_, 0, 0,
|
|
|
|
|
rtc::CreateRandomString(16), rtc::CreateRandomString(22), stun_servers,
|
2018-10-10 11:29:44 -07:00
|
|
|
std::string(), absl::nullopt);
|
2014-10-28 22:20:11 +00:00
|
|
|
stun_port_->set_stun_keepalive_delay(stun_keepalive_delay_);
|
2016-03-03 08:27:47 -08:00
|
|
|
// If |stun_keepalive_lifetime_| is negative, let the stun port
|
|
|
|
|
// choose its lifetime from the network type.
|
|
|
|
|
if (stun_keepalive_lifetime_ >= 0) {
|
|
|
|
|
stun_port_->set_stun_keepalive_lifetime(stun_keepalive_lifetime_);
|
|
|
|
|
}
|
2014-10-28 22:20:11 +00:00
|
|
|
stun_port_->SignalPortComplete.connect(this,
|
2017-02-08 13:18:00 -08:00
|
|
|
&StunPortTestBase::OnPortComplete);
|
|
|
|
|
stun_port_->SignalPortError.connect(this, &StunPortTestBase::OnPortError);
|
2019-06-01 12:23:43 +03:00
|
|
|
stun_port_->SignalCandidateError.connect(
|
|
|
|
|
this, &StunPortTestBase::OnCandidateError);
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
2018-09-17 17:06:08 -07:00
|
|
|
void CreateSharedUdpPort(const rtc::SocketAddress& server_addr,
|
|
|
|
|
rtc::AsyncPacketSocket* socket) {
|
|
|
|
|
if (socket) {
|
|
|
|
|
socket_.reset(socket);
|
|
|
|
|
} else {
|
|
|
|
|
socket_.reset(socket_factory_.CreateUdpSocket(
|
|
|
|
|
rtc::SocketAddress(kLocalAddr.ipaddr(), 0), 0, 0));
|
|
|
|
|
}
|
2014-10-28 22:20:11 +00:00
|
|
|
ASSERT_TRUE(socket_ != NULL);
|
2017-02-08 13:18:00 -08:00
|
|
|
socket_->SignalReadPacket.connect(this, &StunPortTestBase::OnReadPacket);
|
2018-10-10 11:29:44 -07:00
|
|
|
stun_port_ = cricket::UDPPort::Create(
|
2018-03-01 18:25:20 -08:00
|
|
|
rtc::Thread::Current(), &socket_factory_, &network_, socket_.get(),
|
|
|
|
|
rtc::CreateRandomString(16), rtc::CreateRandomString(22), std::string(),
|
2018-10-10 11:29:44 -07:00
|
|
|
false, absl::nullopt);
|
2014-10-28 22:20:11 +00:00
|
|
|
ASSERT_TRUE(stun_port_ != NULL);
|
|
|
|
|
ServerAddresses stun_servers;
|
|
|
|
|
stun_servers.insert(server_addr);
|
|
|
|
|
stun_port_->set_server_addresses(stun_servers);
|
|
|
|
|
stun_port_->SignalPortComplete.connect(this,
|
2017-02-08 13:18:00 -08:00
|
|
|
&StunPortTestBase::OnPortComplete);
|
|
|
|
|
stun_port_->SignalPortError.connect(this, &StunPortTestBase::OnPortError);
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:03:05 +02:00
|
|
|
void PrepareAddress() { stun_port_->PrepareAddress(); }
|
2014-10-28 22:20:11 +00:00
|
|
|
|
2018-06-19 15:03:05 +02:00
|
|
|
void OnReadPacket(rtc::AsyncPacketSocket* socket,
|
|
|
|
|
const char* data,
|
|
|
|
|
size_t size,
|
|
|
|
|
const rtc::SocketAddress& remote_addr,
|
2018-11-05 13:01:41 +01:00
|
|
|
const int64_t& /* packet_time_us */) {
|
2018-06-19 15:03:05 +02:00
|
|
|
stun_port_->HandleIncomingPacket(socket, data, size, remote_addr,
|
2018-11-05 13:01:41 +01:00
|
|
|
/* packet_time_us */ -1);
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SendData(const char* data, size_t len) {
|
2018-06-19 15:03:05 +02:00
|
|
|
stun_port_->HandleIncomingPacket(socket_.get(), data, len,
|
|
|
|
|
rtc::SocketAddress("22.22.22.22", 0),
|
2018-11-05 13:01:41 +01:00
|
|
|
/* packet_time_us */ -1);
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
2019-06-04 09:01:51 +02:00
|
|
|
static void SetUpTestSuite() {
|
2014-10-28 22:20:11 +00:00
|
|
|
// Ensure the RNG is inited.
|
|
|
|
|
rtc::InitRandom(NULL, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void OnPortComplete(cricket::Port* port) {
|
|
|
|
|
ASSERT_FALSE(done_);
|
|
|
|
|
done_ = true;
|
|
|
|
|
error_ = false;
|
|
|
|
|
}
|
|
|
|
|
void OnPortError(cricket::Port* port) {
|
|
|
|
|
done_ = true;
|
|
|
|
|
error_ = true;
|
|
|
|
|
}
|
2019-06-01 12:23:43 +03:00
|
|
|
void OnCandidateError(cricket::Port* port,
|
|
|
|
|
const cricket::IceCandidateErrorEvent& event) {
|
|
|
|
|
error_event_ = event;
|
|
|
|
|
}
|
2018-06-19 15:03:05 +02:00
|
|
|
void SetKeepaliveDelay(int delay) { stun_keepalive_delay_ = delay; }
|
2014-10-28 22:20:11 +00:00
|
|
|
|
2016-03-03 08:27:47 -08:00
|
|
|
void SetKeepaliveLifetime(int lifetime) {
|
|
|
|
|
stun_keepalive_lifetime_ = lifetime;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:03:05 +02:00
|
|
|
cricket::TestStunServer* stun_server_1() { return stun_server_1_.get(); }
|
|
|
|
|
cricket::TestStunServer* stun_server_2() { return stun_server_2_.get(); }
|
2014-10-28 22:20:11 +00:00
|
|
|
|
|
|
|
|
private:
|
2016-04-27 07:22:53 -07:00
|
|
|
std::unique_ptr<rtc::VirtualSocketServer> ss_;
|
2017-05-08 05:25:41 -07:00
|
|
|
rtc::AutoSocketServerThread thread_;
|
2014-10-28 22:20:11 +00:00
|
|
|
rtc::Network network_;
|
|
|
|
|
rtc::BasicPacketSocketFactory socket_factory_;
|
2016-04-27 07:22:53 -07:00
|
|
|
std::unique_ptr<cricket::UDPPort> stun_port_;
|
|
|
|
|
std::unique_ptr<cricket::TestStunServer> stun_server_1_;
|
|
|
|
|
std::unique_ptr<cricket::TestStunServer> stun_server_2_;
|
|
|
|
|
std::unique_ptr<rtc::AsyncPacketSocket> socket_;
|
2014-10-28 22:20:11 +00:00
|
|
|
bool done_;
|
|
|
|
|
bool error_;
|
|
|
|
|
int stun_keepalive_delay_;
|
2016-03-03 08:27:47 -08:00
|
|
|
int stun_keepalive_lifetime_;
|
2019-06-01 12:23:43 +03:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
cricket::IceCandidateErrorEvent error_event_;
|
2014-10-28 22:20:11 +00:00
|
|
|
};
|
|
|
|
|
|
2017-02-08 13:18:00 -08:00
|
|
|
class StunPortTestWithRealClock : public StunPortTestBase {};
|
|
|
|
|
|
|
|
|
|
class FakeClockBase {
|
|
|
|
|
public:
|
|
|
|
|
rtc::ScopedFakeClock fake_clock;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class StunPortTest : public FakeClockBase, public StunPortTestBase {};
|
|
|
|
|
|
2016-06-28 09:44:47 -07:00
|
|
|
// Test that we can create a STUN port.
|
|
|
|
|
TEST_F(StunPortTest, TestCreateStunPort) {
|
2014-10-28 22:20:11 +00:00
|
|
|
CreateStunPort(kStunAddr1);
|
|
|
|
|
EXPECT_EQ("stun", port()->Type());
|
|
|
|
|
EXPECT_EQ(0U, port()->Candidates().size());
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-28 09:44:47 -07:00
|
|
|
// Test that we can create a UDP port.
|
|
|
|
|
TEST_F(StunPortTest, TestCreateUdpPort) {
|
2018-09-17 17:06:08 -07:00
|
|
|
CreateSharedUdpPort(kStunAddr1, nullptr);
|
2016-06-28 09:44:47 -07:00
|
|
|
EXPECT_EQ("local", port()->Type());
|
|
|
|
|
EXPECT_EQ(0U, port()->Candidates().size());
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-28 22:20:11 +00:00
|
|
|
// Test that we can get an address from a STUN server.
|
|
|
|
|
TEST_F(StunPortTest, TestPrepareAddress) {
|
|
|
|
|
CreateStunPort(kStunAddr1);
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
ASSERT_EQ(1U, port()->Candidates().size());
|
|
|
|
|
EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
|
2017-02-13 12:47:27 -08:00
|
|
|
std::string expected_server_url = "stun:127.0.0.1:5000";
|
|
|
|
|
EXPECT_EQ(port()->Candidates()[0].url(), expected_server_url);
|
2014-10-28 22:20:11 +00:00
|
|
|
|
2017-05-16 18:00:06 -07:00
|
|
|
// TODO(deadbeef): Add IPv6 tests here.
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that we fail properly if we can't get an address.
|
|
|
|
|
TEST_F(StunPortTest, TestPrepareAddressFail) {
|
|
|
|
|
CreateStunPort(kBadAddr);
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
EXPECT_TRUE(error());
|
|
|
|
|
EXPECT_EQ(0U, port()->Candidates().size());
|
2019-06-01 12:23:43 +03:00
|
|
|
EXPECT_EQ_SIMULATED_WAIT(error_event_.error_code,
|
|
|
|
|
cricket::SERVER_NOT_REACHABLE_ERROR, kTimeoutMs,
|
|
|
|
|
fake_clock);
|
|
|
|
|
ASSERT_NE(error_event_.error_text.find("."), std::string::npos);
|
|
|
|
|
ASSERT_NE(
|
|
|
|
|
error_event_.host_candidate.find(kLocalAddr.HostAsSensitiveURIString()),
|
|
|
|
|
std::string::npos);
|
|
|
|
|
std::string server_url = "stun:" + kBadAddr.ToString();
|
|
|
|
|
ASSERT_EQ(error_event_.url, server_url);
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that we can get an address from a STUN server specified by a hostname.
|
2017-03-28 03:00:07 -07:00
|
|
|
// Crashes on Linux, see webrtc:7416
|
2018-11-19 14:51:06 +01:00
|
|
|
#if defined(WEBRTC_LINUX) || defined(WEBRTC_WIN)
|
2017-03-28 03:00:07 -07:00
|
|
|
#define MAYBE_TestPrepareAddressHostname DISABLED_TestPrepareAddressHostname
|
|
|
|
|
#else
|
|
|
|
|
#define MAYBE_TestPrepareAddressHostname TestPrepareAddressHostname
|
|
|
|
|
#endif
|
|
|
|
|
TEST_F(StunPortTest, MAYBE_TestPrepareAddressHostname) {
|
2014-10-28 22:20:11 +00:00
|
|
|
CreateStunPort(kStunHostnameAddr);
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
ASSERT_EQ(1U, port()->Candidates().size());
|
|
|
|
|
EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
|
|
|
|
|
EXPECT_EQ(kStunCandidatePriority, port()->Candidates()[0].priority());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that we handle hostname lookup failures properly.
|
2017-02-08 13:18:00 -08:00
|
|
|
TEST_F(StunPortTestWithRealClock, TestPrepareAddressHostnameFail) {
|
2014-10-28 22:20:11 +00:00
|
|
|
CreateStunPort(kBadHostnameAddr);
|
|
|
|
|
PrepareAddress();
|
|
|
|
|
EXPECT_TRUE_WAIT(done(), kTimeoutMs);
|
|
|
|
|
EXPECT_TRUE(error());
|
|
|
|
|
EXPECT_EQ(0U, port()->Candidates().size());
|
2019-06-01 12:23:43 +03:00
|
|
|
EXPECT_EQ_WAIT(error_event_.error_code, cricket::SERVER_NOT_REACHABLE_ERROR,
|
|
|
|
|
kTimeoutMs);
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This test verifies keepalive response messages don't result in
|
|
|
|
|
// additional candidate generation.
|
|
|
|
|
TEST_F(StunPortTest, TestKeepAliveResponse) {
|
|
|
|
|
SetKeepaliveDelay(500); // 500ms of keepalive delay.
|
2017-05-15 19:43:33 -07:00
|
|
|
CreateStunPort(kStunAddr1);
|
2014-10-28 22:20:11 +00:00
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
ASSERT_EQ(1U, port()->Candidates().size());
|
|
|
|
|
EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
|
2017-02-08 13:18:00 -08:00
|
|
|
SIMULATED_WAIT(false, 1000, fake_clock);
|
|
|
|
|
EXPECT_EQ(1U, port()->Candidates().size());
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that a local candidate can be generated using a shared socket.
|
|
|
|
|
TEST_F(StunPortTest, TestSharedSocketPrepareAddress) {
|
2018-09-17 17:06:08 -07:00
|
|
|
CreateSharedUdpPort(kStunAddr1, nullptr);
|
2014-10-28 22:20:11 +00:00
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
ASSERT_EQ(1U, port()->Candidates().size());
|
|
|
|
|
EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that we still a get a local candidate with invalid stun server hostname.
|
|
|
|
|
// Also verifing that UDPPort can receive packets when stun address can't be
|
|
|
|
|
// resolved.
|
2017-02-08 13:18:00 -08:00
|
|
|
TEST_F(StunPortTestWithRealClock,
|
|
|
|
|
TestSharedSocketPrepareAddressInvalidHostname) {
|
2018-09-17 17:06:08 -07:00
|
|
|
CreateSharedUdpPort(kBadHostnameAddr, nullptr);
|
2014-10-28 22:20:11 +00:00
|
|
|
PrepareAddress();
|
|
|
|
|
EXPECT_TRUE_WAIT(done(), kTimeoutMs);
|
|
|
|
|
ASSERT_EQ(1U, port()->Candidates().size());
|
|
|
|
|
EXPECT_TRUE(kLocalAddr.EqualIPs(port()->Candidates()[0].address()));
|
|
|
|
|
|
|
|
|
|
// Send data to port after it's ready. This is to make sure, UDP port can
|
|
|
|
|
// handle data with unresolved stun server address.
|
|
|
|
|
std::string data = "some random data, sending to cricket::Port.";
|
|
|
|
|
SendData(data.c_str(), data.length());
|
|
|
|
|
// No crash is success.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that the same address is added only once if two STUN servers are in use.
|
|
|
|
|
TEST_F(StunPortTest, TestNoDuplicatedAddressWithTwoStunServers) {
|
|
|
|
|
ServerAddresses stun_servers;
|
|
|
|
|
stun_servers.insert(kStunAddr1);
|
|
|
|
|
stun_servers.insert(kStunAddr2);
|
|
|
|
|
CreateStunPort(stun_servers);
|
|
|
|
|
EXPECT_EQ("stun", port()->Type());
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
EXPECT_EQ(1U, port()->Candidates().size());
|
2015-08-19 16:51:15 -07:00
|
|
|
EXPECT_EQ(port()->Candidates()[0].relay_protocol(), "");
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that candidates can be allocated for multiple STUN servers, one of which
|
|
|
|
|
// is not reachable.
|
|
|
|
|
TEST_F(StunPortTest, TestMultipleStunServersWithBadServer) {
|
|
|
|
|
ServerAddresses stun_servers;
|
|
|
|
|
stun_servers.insert(kStunAddr1);
|
|
|
|
|
stun_servers.insert(kBadAddr);
|
|
|
|
|
CreateStunPort(stun_servers);
|
|
|
|
|
EXPECT_EQ("stun", port()->Type());
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
EXPECT_EQ(1U, port()->Candidates().size());
|
2019-06-01 12:23:43 +03:00
|
|
|
std::string server_url = "stun:" + kBadAddr.ToString();
|
|
|
|
|
ASSERT_EQ_SIMULATED_WAIT(error_event_.url, server_url, kTimeoutMs,
|
|
|
|
|
fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that two candidates are allocated if the two STUN servers return
|
|
|
|
|
// different mapped addresses.
|
|
|
|
|
TEST_F(StunPortTest, TestTwoCandidatesWithTwoStunServersAcrossNat) {
|
|
|
|
|
const SocketAddress kStunMappedAddr1("77.77.77.77", 0);
|
|
|
|
|
const SocketAddress kStunMappedAddr2("88.77.77.77", 0);
|
|
|
|
|
stun_server_1()->set_fake_stun_addr(kStunMappedAddr1);
|
|
|
|
|
stun_server_2()->set_fake_stun_addr(kStunMappedAddr2);
|
|
|
|
|
|
|
|
|
|
ServerAddresses stun_servers;
|
|
|
|
|
stun_servers.insert(kStunAddr1);
|
|
|
|
|
stun_servers.insert(kStunAddr2);
|
|
|
|
|
CreateStunPort(stun_servers);
|
|
|
|
|
EXPECT_EQ("stun", port()->Type());
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
2014-10-28 22:20:11 +00:00
|
|
|
EXPECT_EQ(2U, port()->Candidates().size());
|
2015-08-19 16:51:15 -07:00
|
|
|
EXPECT_EQ(port()->Candidates()[0].relay_protocol(), "");
|
|
|
|
|
EXPECT_EQ(port()->Candidates()[1].relay_protocol(), "");
|
2014-10-28 22:20:11 +00:00
|
|
|
}
|
2016-03-03 08:27:47 -08:00
|
|
|
|
|
|
|
|
// Test that the stun_keepalive_lifetime is set correctly based on the network
|
2016-05-20 15:08:29 -07:00
|
|
|
// type on a STUN port. Also test that it will be updated if the network type
|
|
|
|
|
// changes.
|
2016-03-03 08:27:47 -08:00
|
|
|
TEST_F(StunPortTest, TestStunPortGetStunKeepaliveLifetime) {
|
2016-05-20 15:08:29 -07:00
|
|
|
// Lifetime for the default (unknown) network type is |kInfiniteLifetime|.
|
2016-03-03 08:27:47 -08:00
|
|
|
CreateStunPort(kStunAddr1);
|
|
|
|
|
EXPECT_EQ(kInfiniteLifetime, port()->stun_keepalive_lifetime());
|
|
|
|
|
// Lifetime for the cellular network is |kHighCostPortKeepaliveLifetimeMs|
|
|
|
|
|
SetNetworkType(rtc::ADAPTER_TYPE_CELLULAR);
|
|
|
|
|
EXPECT_EQ(kHighCostPortKeepaliveLifetimeMs,
|
|
|
|
|
port()->stun_keepalive_lifetime());
|
2016-05-20 15:08:29 -07:00
|
|
|
|
|
|
|
|
// Lifetime for the wifi network is |kInfiniteLifetime|.
|
|
|
|
|
SetNetworkType(rtc::ADAPTER_TYPE_WIFI);
|
|
|
|
|
CreateStunPort(kStunAddr2);
|
|
|
|
|
EXPECT_EQ(kInfiniteLifetime, port()->stun_keepalive_lifetime());
|
2016-03-03 08:27:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that the stun_keepalive_lifetime is set correctly based on the network
|
2016-05-20 15:08:29 -07:00
|
|
|
// type on a shared STUN port (UDPPort). Also test that it will be updated
|
|
|
|
|
// if the network type changes.
|
2016-03-03 08:27:47 -08:00
|
|
|
TEST_F(StunPortTest, TestUdpPortGetStunKeepaliveLifetime) {
|
2016-05-20 15:08:29 -07:00
|
|
|
// Lifetime for the default (unknown) network type is |kInfiniteLifetime|.
|
2018-09-17 17:06:08 -07:00
|
|
|
CreateSharedUdpPort(kStunAddr1, nullptr);
|
2016-03-03 08:27:47 -08:00
|
|
|
EXPECT_EQ(kInfiniteLifetime, port()->stun_keepalive_lifetime());
|
2016-05-20 15:08:29 -07:00
|
|
|
// Lifetime for the cellular network is |kHighCostPortKeepaliveLifetimeMs|.
|
2016-03-03 08:27:47 -08:00
|
|
|
SetNetworkType(rtc::ADAPTER_TYPE_CELLULAR);
|
|
|
|
|
EXPECT_EQ(kHighCostPortKeepaliveLifetimeMs,
|
|
|
|
|
port()->stun_keepalive_lifetime());
|
2016-05-20 15:08:29 -07:00
|
|
|
|
|
|
|
|
// Lifetime for the wifi network type is |kInfiniteLifetime|.
|
|
|
|
|
SetNetworkType(rtc::ADAPTER_TYPE_WIFI);
|
2018-09-17 17:06:08 -07:00
|
|
|
CreateSharedUdpPort(kStunAddr2, nullptr);
|
2016-05-20 15:08:29 -07:00
|
|
|
EXPECT_EQ(kInfiniteLifetime, port()->stun_keepalive_lifetime());
|
2016-03-03 08:27:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that STUN binding requests will be stopped shortly if the keep-alive
|
|
|
|
|
// lifetime is short.
|
|
|
|
|
TEST_F(StunPortTest, TestStunBindingRequestShortLifetime) {
|
|
|
|
|
SetKeepaliveDelay(101);
|
|
|
|
|
SetKeepaliveLifetime(100);
|
|
|
|
|
CreateStunPort(kStunAddr1);
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
|
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(
|
|
|
|
|
!port()->HasPendingRequest(cricket::STUN_BINDING_REQUEST), 2000,
|
|
|
|
|
fake_clock);
|
2016-03-03 08:27:47 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Test that by default, the STUN binding requests will last for a long time.
|
|
|
|
|
TEST_F(StunPortTest, TestStunBindingRequestLongLifetime) {
|
|
|
|
|
SetKeepaliveDelay(101);
|
|
|
|
|
CreateStunPort(kStunAddr1);
|
|
|
|
|
PrepareAddress();
|
2017-02-08 13:18:00 -08:00
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
|
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(
|
|
|
|
|
port()->HasPendingRequest(cricket::STUN_BINDING_REQUEST), 1000,
|
|
|
|
|
fake_clock);
|
2016-03-03 08:27:47 -08:00
|
|
|
}
|
2018-09-17 17:06:08 -07:00
|
|
|
|
|
|
|
|
class MockAsyncPacketSocket : public rtc::AsyncPacketSocket {
|
|
|
|
|
public:
|
|
|
|
|
~MockAsyncPacketSocket() = default;
|
|
|
|
|
|
|
|
|
|
MOCK_CONST_METHOD0(GetLocalAddress, SocketAddress());
|
|
|
|
|
MOCK_CONST_METHOD0(GetRemoteAddress, SocketAddress());
|
|
|
|
|
MOCK_METHOD3(Send,
|
|
|
|
|
int(const void* pv,
|
|
|
|
|
size_t cb,
|
|
|
|
|
const rtc::PacketOptions& options));
|
|
|
|
|
|
|
|
|
|
MOCK_METHOD4(SendTo,
|
|
|
|
|
int(const void* pv,
|
|
|
|
|
size_t cb,
|
|
|
|
|
const SocketAddress& addr,
|
|
|
|
|
const rtc::PacketOptions& options));
|
|
|
|
|
MOCK_METHOD0(Close, int());
|
|
|
|
|
MOCK_CONST_METHOD0(GetState, State());
|
|
|
|
|
MOCK_METHOD2(GetOption, int(rtc::Socket::Option opt, int* value));
|
|
|
|
|
MOCK_METHOD2(SetOption, int(rtc::Socket::Option opt, int value));
|
|
|
|
|
MOCK_CONST_METHOD0(GetError, int());
|
|
|
|
|
MOCK_METHOD1(SetError, void(int error));
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Test that outbound packets inherit the dscp value assigned to the socket.
|
|
|
|
|
TEST_F(StunPortTest, TestStunPacketsHaveDscpPacketOption) {
|
|
|
|
|
MockAsyncPacketSocket* socket = new MockAsyncPacketSocket();
|
|
|
|
|
CreateSharedUdpPort(kStunAddr1, socket);
|
|
|
|
|
EXPECT_CALL(*socket, GetLocalAddress()).WillRepeatedly(Return(kLocalAddr));
|
|
|
|
|
EXPECT_CALL(*socket, GetState())
|
|
|
|
|
.WillRepeatedly(Return(rtc::AsyncPacketSocket::STATE_BOUND));
|
|
|
|
|
EXPECT_CALL(*socket, SetOption(_, _)).WillRepeatedly(Return(0));
|
|
|
|
|
|
|
|
|
|
// If DSCP is not set on the socket, stun packets should have no value.
|
2019-04-09 15:11:12 +02:00
|
|
|
EXPECT_CALL(*socket,
|
|
|
|
|
SendTo(_, _, _,
|
|
|
|
|
::testing::Field(&rtc::PacketOptions::dscp,
|
|
|
|
|
::testing::Eq(rtc::DSCP_NO_CHANGE))))
|
2018-09-17 17:06:08 -07:00
|
|
|
.WillOnce(Return(100));
|
|
|
|
|
PrepareAddress();
|
|
|
|
|
|
|
|
|
|
// Once it is set transport wide, they should inherit that value.
|
|
|
|
|
port()->SetOption(rtc::Socket::OPT_DSCP, rtc::DSCP_AF41);
|
|
|
|
|
EXPECT_CALL(*socket, SendTo(_, _, _,
|
2019-04-09 15:11:12 +02:00
|
|
|
::testing::Field(&rtc::PacketOptions::dscp,
|
|
|
|
|
::testing::Eq(rtc::DSCP_AF41))))
|
2018-09-17 17:06:08 -07:00
|
|
|
.WillRepeatedly(Return(100));
|
|
|
|
|
EXPECT_TRUE_SIMULATED_WAIT(done(), kTimeoutMs, fake_clock);
|
|
|
|
|
}
|