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

Side by Side Diff: talk/app/webrtc/statscollector_unittest.cc

Issue 1307633007: add mediaType field to ssrc stat (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 4 years, 10 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
« no previous file with comments | « talk/app/webrtc/statscollector.cc ('k') | talk/app/webrtc/statstypes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 *reports, StatsReport::kStatsReportTypeSsrc, 1); 636 *reports, StatsReport::kStatsReportTypeSsrc, 1);
637 EXPECT_FALSE(report == NULL); 637 EXPECT_FALSE(report == NULL);
638 EXPECT_EQ(stats->GetTimeNow(), report->timestamp()); 638 EXPECT_EQ(stats->GetTimeNow(), report->timestamp());
639 std::string track_id = ExtractSsrcStatsValue( 639 std::string track_id = ExtractSsrcStatsValue(
640 *reports, StatsReport::kStatsValueNameTrackId); 640 *reports, StatsReport::kStatsValueNameTrackId);
641 EXPECT_EQ(audio_track->id(), track_id); 641 EXPECT_EQ(audio_track->id(), track_id);
642 std::string ssrc_id = ExtractSsrcStatsValue( 642 std::string ssrc_id = ExtractSsrcStatsValue(
643 *reports, StatsReport::kStatsValueNameSsrc); 643 *reports, StatsReport::kStatsValueNameSsrc);
644 EXPECT_EQ(rtc::ToString<uint32_t>(kSsrcOfTrack), ssrc_id); 644 EXPECT_EQ(rtc::ToString<uint32_t>(kSsrcOfTrack), ssrc_id);
645 645
646 std::string media_type = ExtractSsrcStatsValue(*reports,
647 StatsReport::kStatsValueNameMediaType);
648 EXPECT_EQ("audio", media_type);
649
646 // Verifies the values in the track report. 650 // Verifies the values in the track report.
647 if (voice_sender_info) { 651 if (voice_sender_info) {
648 UpdateVoiceSenderInfoFromAudioTrack(audio_track, voice_sender_info); 652 UpdateVoiceSenderInfoFromAudioTrack(audio_track, voice_sender_info);
649 VerifyVoiceSenderInfoReport(report, *voice_sender_info); 653 VerifyVoiceSenderInfoReport(report, *voice_sender_info);
650 } 654 }
651 if (voice_receiver_info) { 655 if (voice_receiver_info) {
652 VerifyVoiceReceiverInfoReport(report, *voice_receiver_info); 656 VerifyVoiceReceiverInfoReport(report, *voice_receiver_info);
653 } 657 }
654 658
655 // Verify we get the same result by passing a track to GetStats(). 659 // Verify we get the same result by passing a track to GetStats().
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
1025 EXPECT_TRUE(track_report); 1029 EXPECT_TRUE(track_report);
1026 EXPECT_EQ(stats.GetTimeNow(), track_report->timestamp()); 1030 EXPECT_EQ(stats.GetTimeNow(), track_report->timestamp());
1027 1031
1028 std::string ssrc_id = ExtractSsrcStatsValue( 1032 std::string ssrc_id = ExtractSsrcStatsValue(
1029 reports, StatsReport::kStatsValueNameSsrc); 1033 reports, StatsReport::kStatsValueNameSsrc);
1030 EXPECT_EQ(rtc::ToString<uint32_t>(kSsrcOfTrack), ssrc_id); 1034 EXPECT_EQ(rtc::ToString<uint32_t>(kSsrcOfTrack), ssrc_id);
1031 1035
1032 std::string track_id = ExtractSsrcStatsValue( 1036 std::string track_id = ExtractSsrcStatsValue(
1033 reports, StatsReport::kStatsValueNameTrackId); 1037 reports, StatsReport::kStatsValueNameTrackId);
1034 EXPECT_EQ(kLocalTrackId, track_id); 1038 EXPECT_EQ(kLocalTrackId, track_id);
1039
1040 std::string media_type = ExtractSsrcStatsValue(reports,
1041 StatsReport::kStatsValueNameMediaType);
1042 EXPECT_EQ("video", media_type);
1035 } 1043 }
1036 1044
1037 // This test verifies that an SSRC object has the identifier of a Transport 1045 // This test verifies that an SSRC object has the identifier of a Transport
1038 // stats object, and that this transport stats object exists in stats. 1046 // stats object, and that this transport stats object exists in stats.
1039 TEST_F(StatsCollectorTest, TransportObjectLinkedFromSsrcObject) { 1047 TEST_F(StatsCollectorTest, TransportObjectLinkedFromSsrcObject) {
1040 StatsCollectorForTest stats(&pc_); 1048 StatsCollectorForTest stats(&pc_);
1041 1049
1042 EXPECT_CALL(session_, GetLocalCertificate(_, _)) 1050 EXPECT_CALL(session_, GetLocalCertificate(_, _))
1043 .WillRepeatedly(Return(false)); 1051 .WillRepeatedly(Return(false));
1044 EXPECT_CALL(session_, GetRemoteSSLCertificate(_, _)) 1052 EXPECT_CALL(session_, GetRemoteSSLCertificate(_, _))
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 cricket::VoiceSenderInfo new_voice_sender_info; 1747 cricket::VoiceSenderInfo new_voice_sender_info;
1740 InitVoiceSenderInfo(&new_voice_sender_info); 1748 InitVoiceSenderInfo(&new_voice_sender_info);
1741 cricket::VoiceMediaInfo new_stats_read; 1749 cricket::VoiceMediaInfo new_stats_read;
1742 reports.clear(); 1750 reports.clear();
1743 SetupAndVerifyAudioTrackStats( 1751 SetupAndVerifyAudioTrackStats(
1744 new_audio_track.get(), stream_.get(), &stats, &voice_channel, kVcName, 1752 new_audio_track.get(), stream_.get(), &stats, &voice_channel, kVcName,
1745 media_channel, &new_voice_sender_info, NULL, &new_stats_read, &reports); 1753 media_channel, &new_voice_sender_info, NULL, &new_stats_read, &reports);
1746 } 1754 }
1747 1755
1748 } // namespace webrtc 1756 } // namespace webrtc
OLDNEW
« no previous file with comments | « talk/app/webrtc/statscollector.cc ('k') | talk/app/webrtc/statstypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698