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

Side by Side Diff: mojo/services/network/udp_socket_apptest.cc

Issue 1399343002: Roll Mojo to b88737ed62969ce3203085748f0d53ff4f09ba5b. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/macros.h" 5 #include "base/macros.h"
6 #include "base/memory/scoped_ptr.h" 6 #include "base/memory/scoped_ptr.h"
7 #include "base/run_loop.h" 7 #include "base/run_loop.h"
8 #include "mojo/services/network/public/cpp/udp_socket_wrapper.h" 8 #include "mojo/services/network/public/cpp/udp_socket_wrapper.h"
9 #include "mojo/services/network/public/interfaces/network_service.mojom.h" 9 #include "mojo/services/network/public/interfaces/network_service.mojom.h"
10 #include "mojo/services/network/public/interfaces/udp_socket.mojom.h" 10 #include "mojo/services/network/public/interfaces/udp_socket.mojom.h"
11 #include "net/base/net_errors.h" 11 #include "net/base/net_errors.h"
12 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 #include "third_party/mojo/src/mojo/public/cpp/application/application_connectio n.h" 13 #include "third_party/mojo/src/mojo/public/cpp/application/application_connectio n.h"
14 #include "third_party/mojo/src/mojo/public/cpp/application/application_impl.h" 14 #include "third_party/mojo/src/mojo/public/cpp/application/application_impl.h"
15 #include "third_party/mojo/src/mojo/public/cpp/application/application_test_base .h" 15 #include "third_party/mojo/src/mojo/public/cpp/application/application_test_base .h"
16 #include "third_party/mojo/src/mojo/public/cpp/bindings/callback.h" 16 #include "third_party/mojo/src/mojo/public/cpp/bindings/callback.h"
17 17
18 namespace mojo { 18 namespace mojo {
19 namespace service { 19 namespace service {
20 namespace { 20 namespace {
21 21
22 NetAddressPtr GetLocalHostWithAnyPort() { 22 NetAddressPtr GetLocalHostWithAnyPort() {
23 NetAddressPtr addr(NetAddress::New()); 23 NetAddressPtr addr(NetAddress::New());
24 addr->family = NET_ADDRESS_FAMILY_IPV4; 24 addr->family = NetAddressFamily::IPV4;
25 addr->ipv4 = NetAddressIPv4::New(); 25 addr->ipv4 = NetAddressIPv4::New();
26 addr->ipv4->port = 0; 26 addr->ipv4->port = 0;
27 addr->ipv4->addr.resize(4); 27 addr->ipv4->addr.resize(4);
28 addr->ipv4->addr[0] = 127; 28 addr->ipv4->addr[0] = 127;
29 addr->ipv4->addr[1] = 0; 29 addr->ipv4->addr[1] = 0;
30 addr->ipv4->addr[2] = 0; 30 addr->ipv4->addr[2] = 0;
31 addr->ipv4->addr[3] = 1; 31 addr->ipv4->addr[3] = 1;
32 32
33 return addr.Pass(); 33 return addr.Pass();
34 } 34 }
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 receive_callbacks[j].result()->code); 643 receive_callbacks[j].result()->code);
644 EXPECT_FALSE(receive_callbacks[j].src_addr()); 644 EXPECT_FALSE(receive_callbacks[j].src_addr());
645 EXPECT_TRUE(receive_callbacks[j].data().Equals( 645 EXPECT_TRUE(receive_callbacks[j].data().Equals(
646 CreateTestMessage(static_cast<uint8_t>(j), kDatagramSize))); 646 CreateTestMessage(static_cast<uint8_t>(j), kDatagramSize)));
647 } 647 }
648 } 648 }
649 } 649 }
650 650
651 } // namespace service 651 } // namespace service
652 } // namespace mojo 652 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/services/network/net_address_type_converters.cc ('k') | mojo/services/network/url_loader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698