OLD | NEW |
| (Empty) |
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. | |
4 | |
5 #include "ppapi/tests/test_network_monitor_private.h" | |
6 | |
7 #include <string.h> | |
8 | |
9 #include "ppapi/cpp/completion_callback.h" | |
10 #include "ppapi/cpp/instance_handle.h" | |
11 #include "ppapi/cpp/module.h" | |
12 #include "ppapi/cpp/net_address.h" | |
13 #include "ppapi/cpp/private/network_list_private.h" | |
14 #include "ppapi/cpp/private/network_monitor_private.h" | |
15 #include "ppapi/tests/testing_instance.h" | |
16 #include "ppapi/tests/test_utils.h" | |
17 | |
18 REGISTER_TEST_CASE(NetworkMonitorPrivate); | |
19 | |
20 namespace { | |
21 | |
22 class MonitorDeletionCallbackDelegate | |
23 : public TestCompletionCallback::Delegate { | |
24 public: | |
25 explicit MonitorDeletionCallbackDelegate(pp::NetworkMonitorPrivate* monitor) | |
26 : monitor_(monitor) { | |
27 } | |
28 | |
29 // TestCompletionCallback::Delegate interface. | |
30 virtual void OnCallback(void* user_data, int32_t result) { | |
31 delete monitor_; | |
32 } | |
33 | |
34 private: | |
35 pp::NetworkMonitorPrivate* monitor_; | |
36 }; | |
37 | |
38 } // namespace | |
39 | |
40 TestNetworkMonitorPrivate::TestNetworkMonitorPrivate(TestingInstance* instance) | |
41 : TestCase(instance) { | |
42 } | |
43 | |
44 bool TestNetworkMonitorPrivate::Init() { | |
45 if (!pp::NetworkMonitorPrivate::IsAvailable()) | |
46 return false; | |
47 | |
48 return CheckTestingInterface(); | |
49 } | |
50 | |
51 void TestNetworkMonitorPrivate::RunTests(const std::string& filter) { | |
52 RUN_TEST_FORCEASYNC_AND_NOT(Basic, filter); | |
53 RUN_TEST_FORCEASYNC_AND_NOT(2Monitors, filter); | |
54 RUN_TEST_FORCEASYNC_AND_NOT(DeleteInCallback, filter); | |
55 } | |
56 | |
57 std::string TestNetworkMonitorPrivate::VerifyNetworkList( | |
58 const pp::NetworkListPrivate& network_list) { | |
59 // Verify that there is at least one network interface. | |
60 size_t count = network_list.GetCount(); | |
61 ASSERT_TRUE(count >= 1U); | |
62 | |
63 // Iterate over all interfaces and verify their properties. | |
64 for (size_t iface = 0; iface < count; ++iface) { | |
65 // Verify that the first interface has at least one address. | |
66 std::vector<pp::NetAddress> addresses; | |
67 network_list.GetIpAddresses(iface, &addresses); | |
68 ASSERT_TRUE(addresses.size() >= 1U); | |
69 // Verify that the addresses are valid. | |
70 for (size_t i = 0; i < addresses.size(); ++i) { | |
71 PP_NetAddress_Family family = addresses[i].GetFamily(); | |
72 | |
73 switch (family) { | |
74 case PP_NETADDRESS_FAMILY_IPV4: { | |
75 PP_NetAddress_IPv4 ipv4; | |
76 ASSERT_TRUE(addresses[i].DescribeAsIPv4Address(&ipv4)); | |
77 | |
78 // Verify that the address is not zero. | |
79 bool all_zeros = true; | |
80 for (size_t j = 0; j < sizeof(ipv4.addr); ++j) { | |
81 if (ipv4.addr[j] != 0) { | |
82 all_zeros = false; | |
83 break; | |
84 } | |
85 } | |
86 ASSERT_TRUE(!all_zeros); | |
87 | |
88 // Verify that port is set to 0. | |
89 ASSERT_TRUE(ipv4.port == 0); | |
90 break; | |
91 } | |
92 | |
93 case PP_NETADDRESS_FAMILY_IPV6: { | |
94 PP_NetAddress_IPv6 ipv6; | |
95 ASSERT_TRUE(addresses[i].DescribeAsIPv6Address(&ipv6)); | |
96 | |
97 // Verify that the address is not zero. | |
98 bool all_zeros = true; | |
99 for (size_t j = 0; j < sizeof(ipv6.addr); ++j) { | |
100 if (ipv6.addr[j] != 0) { | |
101 all_zeros = false; | |
102 break; | |
103 } | |
104 } | |
105 ASSERT_TRUE(!all_zeros); | |
106 | |
107 // Verify that port is set to 0. | |
108 ASSERT_TRUE(ipv6.port == 0); | |
109 break; | |
110 } | |
111 | |
112 default: | |
113 ASSERT_TRUE(false); | |
114 } | |
115 } | |
116 | |
117 // Verify that each interface has a unique name and a display name. | |
118 ASSERT_FALSE(network_list.GetName(iface).empty()); | |
119 ASSERT_FALSE(network_list.GetDisplayName(iface).empty()); | |
120 | |
121 PP_NetworkListType_Private type = network_list.GetType(iface); | |
122 ASSERT_TRUE(type >= PP_NETWORKLIST_UNKNOWN); | |
123 ASSERT_TRUE(type <= PP_NETWORKLIST_CELLULAR); | |
124 | |
125 PP_NetworkListState_Private state = network_list.GetState(iface); | |
126 ASSERT_TRUE(state >= PP_NETWORKLIST_DOWN); | |
127 ASSERT_TRUE(state <= PP_NETWORKLIST_UP); | |
128 } | |
129 | |
130 PASS(); | |
131 } | |
132 | |
133 std::string TestNetworkMonitorPrivate::TestBasic() { | |
134 TestCompletionCallbackWithOutput<pp::NetworkListPrivate> test_callback( | |
135 instance_->pp_instance()); | |
136 pp::NetworkMonitorPrivate network_monitor(instance_); | |
137 test_callback.WaitForResult( | |
138 network_monitor.UpdateNetworkList(test_callback.GetCallback())); | |
139 | |
140 ASSERT_EQ(test_callback.result(), PP_OK); | |
141 ASSERT_SUBTEST_SUCCESS(VerifyNetworkList(test_callback.output())); | |
142 | |
143 PASS(); | |
144 } | |
145 | |
146 std::string TestNetworkMonitorPrivate::Test2Monitors() { | |
147 TestCompletionCallbackWithOutput<pp::NetworkListPrivate> test_callback( | |
148 instance_->pp_instance()); | |
149 pp::NetworkMonitorPrivate network_monitor(instance_); | |
150 test_callback.WaitForResult( | |
151 network_monitor.UpdateNetworkList(test_callback.GetCallback())); | |
152 | |
153 ASSERT_EQ(test_callback.result(), PP_OK); | |
154 ASSERT_SUBTEST_SUCCESS(VerifyNetworkList(test_callback.output())); | |
155 | |
156 TestCompletionCallbackWithOutput<pp::NetworkListPrivate> test_callback_2( | |
157 instance_->pp_instance()); | |
158 pp::NetworkMonitorPrivate network_monitor_2(instance_); | |
159 test_callback_2.WaitForResult( | |
160 network_monitor_2.UpdateNetworkList(test_callback_2.GetCallback())); | |
161 | |
162 ASSERT_EQ(test_callback_2.result(), PP_OK); | |
163 ASSERT_SUBTEST_SUCCESS(VerifyNetworkList(test_callback_2.output())); | |
164 | |
165 PASS(); | |
166 } | |
167 | |
168 std::string TestNetworkMonitorPrivate::TestDeleteInCallback() { | |
169 pp::NetworkMonitorPrivate* network_monitor = | |
170 new pp::NetworkMonitorPrivate(instance_); | |
171 MonitorDeletionCallbackDelegate deletion_delegate(network_monitor); | |
172 TestCompletionCallbackWithOutput<pp::NetworkListPrivate> test_callback( | |
173 instance_->pp_instance()); | |
174 test_callback.SetDelegate(&deletion_delegate); | |
175 test_callback.WaitForResult( | |
176 network_monitor->UpdateNetworkList(test_callback.GetCallback())); | |
177 | |
178 ASSERT_EQ(test_callback.result(), PP_OK); | |
179 ASSERT_SUBTEST_SUCCESS(VerifyNetworkList(test_callback.output())); | |
180 | |
181 PASS(); | |
182 } | |
OLD | NEW |