Index: webrtc/api/rtcstatscollector_unittest.cc |
diff --git a/webrtc/api/rtcstatscollector_unittest.cc b/webrtc/api/rtcstatscollector_unittest.cc |
index 89161363a258668fd6fec90332f16b7b8a92579b..5cd2bc0d99be42e2e29a315510d3902afccf43dd 100644 |
--- a/webrtc/api/rtcstatscollector_unittest.cc |
+++ b/webrtc/api/rtcstatscollector_unittest.cc |
@@ -927,6 +927,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidateStats) { |
expected_a_local_host.protocol = "a_local_host's protocol"; |
expected_a_local_host.candidate_type = "host"; |
expected_a_local_host.priority = 0; |
+ EXPECT_FALSE(*expected_a_local_host.is_remote); |
std::unique_ptr<cricket::Candidate> a_remote_srflx = CreateFakeCandidate( |
"6.7.8.9", 10, |
@@ -940,6 +941,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidateStats) { |
expected_a_remote_srflx.protocol = "remote_srflx's protocol"; |
expected_a_remote_srflx.candidate_type = "srflx"; |
expected_a_remote_srflx.priority = 1; |
+ EXPECT_TRUE(*expected_a_remote_srflx.is_remote); |
std::unique_ptr<cricket::Candidate> a_local_prflx = CreateFakeCandidate( |
"11.12.13.14", 15, |
@@ -953,6 +955,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidateStats) { |
expected_a_local_prflx.protocol = "a_local_prflx's protocol"; |
expected_a_local_prflx.candidate_type = "prflx"; |
expected_a_local_prflx.priority = 2; |
+ EXPECT_FALSE(*expected_a_local_prflx.is_remote); |
std::unique_ptr<cricket::Candidate> a_remote_relay = CreateFakeCandidate( |
"16.17.18.19", 20, |
@@ -966,6 +969,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidateStats) { |
expected_a_remote_relay.protocol = "a_remote_relay's protocol"; |
expected_a_remote_relay.candidate_type = "relay"; |
expected_a_remote_relay.priority = 3; |
+ EXPECT_TRUE(*expected_a_remote_relay.is_remote); |
// Candidates in the second transport stats. |
std::unique_ptr<cricket::Candidate> b_local = CreateFakeCandidate( |
@@ -980,6 +984,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidateStats) { |
expected_b_local.protocol = "b_local's protocol"; |
expected_b_local.candidate_type = "host"; |
expected_b_local.priority = 42; |
+ EXPECT_FALSE(*expected_b_local.is_remote); |
std::unique_ptr<cricket::Candidate> b_remote = CreateFakeCandidate( |
"42.42.42.42", 42, |
@@ -993,6 +998,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidateStats) { |
expected_b_remote.protocol = "b_remote's protocol"; |
expected_b_remote.candidate_type = "host"; |
expected_b_remote.priority = 42; |
+ EXPECT_TRUE(*expected_b_remote.is_remote); |
SessionStats session_stats; |
@@ -1126,6 +1132,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidatePairStats) { |
expected_local_candidate.protocol = "protocol"; |
expected_local_candidate.candidate_type = "host"; |
expected_local_candidate.priority = 42; |
+ EXPECT_FALSE(*expected_local_candidate.is_remote); |
ASSERT_TRUE(report->Get(expected_local_candidate.id())); |
EXPECT_EQ(expected_local_candidate, |
report->Get(expected_local_candidate.id())->cast_to< |
@@ -1138,6 +1145,7 @@ TEST_F(RTCStatsCollectorTest, CollectRTCIceCandidatePairStats) { |
expected_remote_candidate.protocol = "protocol"; |
expected_remote_candidate.candidate_type = "host"; |
expected_remote_candidate.priority = 42; |
+ EXPECT_TRUE(*expected_remote_candidate.is_remote); |
ASSERT_TRUE(report->Get(expected_remote_candidate.id())); |
EXPECT_EQ(expected_remote_candidate, |
report->Get(expected_remote_candidate.id())->cast_to< |