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

Side by Side Diff: webrtc/pc/statscollector_unittest.cc

Issue 2514883002: Create //webrtc/api:libjingle_peerconnection_api + refactorings. (Closed)
Patch Set: Rebase Created 4 years 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 /* 1 /*
2 * Copyright 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2014 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include <stdio.h> 11 #include <stdio.h>
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <memory> 14 #include <memory>
15 15
16 #include "webrtc/api/statscollector.h" 16 #include "webrtc/pc/statscollector.h"
17 17
18 #include "webrtc/api/mediastream.h"
19 #include "webrtc/api/mediastreaminterface.h" 18 #include "webrtc/api/mediastreaminterface.h"
20 #include "webrtc/api/mediastreamtrack.h"
21 #include "webrtc/api/peerconnection.h"
22 #include "webrtc/api/peerconnectionfactory.h"
23 #include "webrtc/api/test/fakedatachannelprovider.h"
24 #include "webrtc/api/test/fakevideotracksource.h"
25 #include "webrtc/api/test/mock_peerconnection.h"
26 #include "webrtc/api/test/mock_webrtcsession.h"
27 #include "webrtc/api/videotrack.h"
28 #include "webrtc/base/base64.h" 19 #include "webrtc/base/base64.h"
29 #include "webrtc/base/fakesslidentity.h" 20 #include "webrtc/base/fakesslidentity.h"
30 #include "webrtc/base/gunit.h" 21 #include "webrtc/base/gunit.h"
31 #include "webrtc/base/network.h" 22 #include "webrtc/base/network.h"
32 #include "webrtc/base/stringencode.h" 23 #include "webrtc/base/stringencode.h"
33 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 24 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
34 #include "webrtc/media/base/fakemediaengine.h" 25 #include "webrtc/media/base/fakemediaengine.h"
35 #include "webrtc/media/base/test/mock_mediachannel.h" 26 #include "webrtc/media/base/test/mock_mediachannel.h"
36 #include "webrtc/p2p/base/faketransportcontroller.h" 27 #include "webrtc/p2p/base/faketransportcontroller.h"
37 #include "webrtc/pc/channelmanager.h" 28 #include "webrtc/pc/channelmanager.h"
29 #include "webrtc/pc/mediastream.h"
30 #include "webrtc/pc/mediastreamtrack.h"
31 #include "webrtc/pc/peerconnection.h"
32 #include "webrtc/pc/peerconnectionfactory.h"
33 #include "webrtc/pc/test/fakedatachannelprovider.h"
34 #include "webrtc/pc/test/fakevideotracksource.h"
35 #include "webrtc/pc/test/mock_peerconnection.h"
36 #include "webrtc/pc/test/mock_webrtcsession.h"
37 #include "webrtc/pc/videotrack.h"
38 #include "webrtc/test/gmock.h" 38 #include "webrtc/test/gmock.h"
39 #include "webrtc/test/gtest.h" 39 #include "webrtc/test/gtest.h"
40 40
41 using testing::_; 41 using testing::_;
42 using testing::DoAll; 42 using testing::DoAll;
43 using testing::Field; 43 using testing::Field;
44 using testing::Return; 44 using testing::Return;
45 using testing::ReturnNull; 45 using testing::ReturnNull;
46 using testing::ReturnRef; 46 using testing::ReturnRef;
47 using testing::SetArgPointee; 47 using testing::SetArgPointee;
(...skipping 1935 matching lines...) Expand 10 before | Expand all | Expand 10 after
1983 EXPECT_CALL(*media_channel, GetStats(_)) 1983 EXPECT_CALL(*media_channel, GetStats(_))
1984 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true))); 1984 .WillOnce(DoAll(SetArgPointee<0>(stats_read), Return(true)));
1985 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard); 1985 stats.UpdateStats(PeerConnectionInterface::kStatsOutputLevelStandard);
1986 stats.GetStats(NULL, &reports); 1986 stats.GetStats(NULL, &reports);
1987 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded), 1987 EXPECT_EQ(rtc::ToString(video_receiver_info.frames_decoded),
1988 ExtractSsrcStatsValue(reports, 1988 ExtractSsrcStatsValue(reports,
1989 StatsReport::kStatsValueNameFramesDecoded)); 1989 StatsReport::kStatsValueNameFramesDecoded));
1990 } 1990 }
1991 1991
1992 } // namespace webrtc 1992 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698