Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(489)

Unified Diff: remoting/test/fake_port_allocator.cc

Issue 427613005: Implement network performance simulation for remoting perf tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/test/fake_port_allocator.h ('k') | remoting/test/fake_socket_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/test/fake_port_allocator.cc
diff --git a/remoting/test/fake_port_allocator.cc b/remoting/test/fake_port_allocator.cc
new file mode 100644
index 0000000000000000000000000000000000000000..18358233749e1d5e4ce5f61cd4a424042719d0ec
--- /dev/null
+++ b/remoting/test/fake_port_allocator.cc
@@ -0,0 +1,124 @@
+// 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 "remoting/test/fake_port_allocator.h"
+
+#include "remoting/test/fake_network_dispatcher.h"
+#include "remoting/test/fake_network_manager.h"
+#include "remoting/test/fake_socket_factory.h"
+
+namespace remoting {
+
+namespace {
+
+class FakePortAllocatorSession
+ : public cricket::HttpPortAllocatorSessionBase {
+ public:
+ FakePortAllocatorSession(
+ cricket::HttpPortAllocatorBase* allocator,
+ const std::string& content_name,
+ int component,
+ const std::string& ice_username_fragment,
+ const std::string& ice_password,
+ const std::vector<rtc::SocketAddress>& stun_hosts,
+ const std::vector<std::string>& relay_hosts,
+ const std::string& relay);
+ virtual ~FakePortAllocatorSession();
+
+ // cricket::HttpPortAllocatorBase overrides.
+ virtual void ConfigReady(cricket::PortConfiguration* config) OVERRIDE;
+ virtual void SendSessionRequest(const std::string& host, int port) OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(FakePortAllocatorSession);
+};
+
+FakePortAllocatorSession::FakePortAllocatorSession(
+ cricket::HttpPortAllocatorBase* allocator,
+ const std::string& content_name,
+ int component,
+ const std::string& ice_username_fragment,
+ const std::string& ice_password,
+ const std::vector<rtc::SocketAddress>& stun_hosts,
+ const std::vector<std::string>& relay_hosts,
+ const std::string& relay)
+ : HttpPortAllocatorSessionBase(allocator,
+ content_name,
+ component,
+ ice_username_fragment,
+ ice_password,
+ stun_hosts,
+ relay_hosts,
+ relay,
+ std::string()) {
+ set_flags(cricket::PORTALLOCATOR_DISABLE_TCP |
+ cricket::PORTALLOCATOR_ENABLE_SHARED_UFRAG |
+ cricket::PORTALLOCATOR_ENABLE_IPV6 |
+ cricket::PORTALLOCATOR_DISABLE_STUN |
+ cricket::PORTALLOCATOR_DISABLE_RELAY);
+}
+
+FakePortAllocatorSession::~FakePortAllocatorSession() {
+}
+
+void FakePortAllocatorSession::ConfigReady(
+ cricket::PortConfiguration* config) {
+ // Filter out non-UDP relay ports, so that we don't try using TCP.
+ for (cricket::PortConfiguration::RelayList::iterator relay =
+ config->relays.begin(); relay != config->relays.end(); ++relay) {
+ cricket::PortList filtered_ports;
+ for (cricket::PortList::iterator port =
+ relay->ports.begin(); port != relay->ports.end(); ++port) {
+ if (port->proto == cricket::PROTO_UDP) {
+ filtered_ports.push_back(*port);
+ }
+ }
+ relay->ports = filtered_ports;
+ }
+ cricket::BasicPortAllocatorSession::ConfigReady(config);
+}
+
+void FakePortAllocatorSession::SendSessionRequest(
+ const std::string& host,
+ int port) {
+ ReceiveSessionResponse(std::string());
+}
+
+} // namespace
+
+// static
+scoped_ptr<FakePortAllocator> FakePortAllocator::Create(
+ scoped_refptr<FakeNetworkDispatcher> fake_network_dispatcher) {
+ scoped_ptr<FakePacketSocketFactory> socket_factory(
+ new FakePacketSocketFactory(fake_network_dispatcher));
+ scoped_ptr<rtc::NetworkManager> network_manager(
+ new FakeNetworkManager(socket_factory->GetAddress()));
+
+ return scoped_ptr<FakePortAllocator>(
+ new FakePortAllocator(network_manager.Pass(), socket_factory.Pass()));
+}
+
+FakePortAllocator::FakePortAllocator(
+ scoped_ptr<rtc::NetworkManager> network_manager,
+ scoped_ptr<FakePacketSocketFactory> socket_factory)
+ : HttpPortAllocatorBase(network_manager.get(),
+ socket_factory.get(),
+ std::string()),
+ network_manager_(network_manager.Pass()),
+ socket_factory_(socket_factory.Pass()) {}
+
+FakePortAllocator::~FakePortAllocator() {
+}
+
+cricket::PortAllocatorSession* FakePortAllocator::CreateSessionInternal(
+ const std::string& content_name,
+ int component,
+ const std::string& ice_username_fragment,
+ const std::string& ice_password) {
+ return new FakePortAllocatorSession(
+ this, content_name, component, ice_username_fragment, ice_password,
+ stun_hosts(), relay_hosts(), relay_token());
+}
+
+} // namespace remoting
« no previous file with comments | « remoting/test/fake_port_allocator.h ('k') | remoting/test/fake_socket_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698