Revert "Update webrtc&libjingle 6774:6799."
[chromium-blink-merge.git] / jingle / notifier / communicator / connection_settings_unittest.cc
blobc7e0c4c93bf15c581f0dfda0d904928a5ef5ca65
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "jingle/notifier/communicator/connection_settings.h"
7 #include "jingle/notifier/base/server_information.h"
8 #include "testing/gtest/include/gtest/gtest.h"
10 namespace notifier {
12 namespace {
14 class ConnectionSettingsTest : public ::testing::Test {
15 protected:
16 ConnectionSettingsTest() {
17 servers_.push_back(
18 ServerInformation(
19 net::HostPortPair("supports_ssltcp.com", 100),
20 SUPPORTS_SSLTCP));
21 servers_.push_back(
22 ServerInformation(
23 net::HostPortPair("does_not_support_ssltcp.com", 200),
24 DOES_NOT_SUPPORT_SSLTCP));
27 ServerList servers_;
30 // An empty server list should always map to an empty connection
31 // settings list.
32 TEST_F(ConnectionSettingsTest, Empty) {
33 EXPECT_TRUE(MakeConnectionSettingsList(ServerList(), false).empty());
34 EXPECT_TRUE(MakeConnectionSettingsList(ServerList(), true).empty());
37 // Make sure that servers that support SSLTCP get mapped to two
38 // settings entries (with the SSLTCP one coming last) whereas those
39 // that don't map to only one.
40 TEST_F(ConnectionSettingsTest, Basic) {
41 const ConnectionSettingsList settings_list =
42 MakeConnectionSettingsList(servers_, false /* try_ssltcp_first */);
44 ConnectionSettingsList expected_settings_list;
45 expected_settings_list.push_back(
46 ConnectionSettings(
47 talk_base::SocketAddress("supports_ssltcp.com", 100),
48 DO_NOT_USE_SSLTCP,
49 SUPPORTS_SSLTCP));
50 expected_settings_list.push_back(
51 ConnectionSettings(
52 talk_base::SocketAddress("supports_ssltcp.com", 443),
53 USE_SSLTCP,
54 SUPPORTS_SSLTCP));
55 expected_settings_list.push_back(
56 ConnectionSettings(
57 talk_base::SocketAddress("does_not_support_ssltcp.com", 200),
58 DO_NOT_USE_SSLTCP,
59 DOES_NOT_SUPPORT_SSLTCP));
61 ASSERT_EQ(expected_settings_list.size(), settings_list.size());
62 for (size_t i = 0; i < settings_list.size(); ++i) {
63 EXPECT_TRUE(settings_list[i].Equals(expected_settings_list[i]));
67 // Make sure that servers that support SSLTCP get mapped to two
68 // settings entries (with the SSLTCP one coming first) when
69 // try_ssltcp_first is set.
70 TEST_F(ConnectionSettingsTest, TrySslTcpFirst) {
71 const ConnectionSettingsList settings_list =
72 MakeConnectionSettingsList(servers_, true /* try_ssltcp_first */);
74 ConnectionSettingsList expected_settings_list;
75 expected_settings_list.push_back(
76 ConnectionSettings(
77 talk_base::SocketAddress("supports_ssltcp.com", 443),
78 USE_SSLTCP,
79 SUPPORTS_SSLTCP));
80 expected_settings_list.push_back(
81 ConnectionSettings(
82 talk_base::SocketAddress("supports_ssltcp.com", 100),
83 DO_NOT_USE_SSLTCP,
84 SUPPORTS_SSLTCP));
85 expected_settings_list.push_back(
86 ConnectionSettings(
87 talk_base::SocketAddress("does_not_support_ssltcp.com", 200),
88 DO_NOT_USE_SSLTCP,
89 DOES_NOT_SUPPORT_SSLTCP));
91 ASSERT_EQ(expected_settings_list.size(), settings_list.size());
92 for (size_t i = 0; i < settings_list.size(); ++i) {
93 EXPECT_TRUE(settings_list[i].Equals(expected_settings_list[i]));
97 } // namespace
99 } // namespace notifier