OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2012 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 |
(...skipping 24 matching lines...) Expand all Loading... |
35 #include "webrtc/base/physicalsocketserver.h" | 35 #include "webrtc/base/physicalsocketserver.h" |
36 #include "webrtc/base/ssladapter.h" | 36 #include "webrtc/base/ssladapter.h" |
37 #include "webrtc/base/sslidentity.h" | 37 #include "webrtc/base/sslidentity.h" |
38 #include "webrtc/base/sslstreamadapter.h" | 38 #include "webrtc/base/sslstreamadapter.h" |
39 #include "webrtc/base/stringutils.h" | 39 #include "webrtc/base/stringutils.h" |
40 #include "webrtc/base/thread.h" | 40 #include "webrtc/base/thread.h" |
41 #include "webrtc/base/virtualsocketserver.h" | 41 #include "webrtc/base/virtualsocketserver.h" |
42 #include "webrtc/media/base/fakemediaengine.h" | 42 #include "webrtc/media/base/fakemediaengine.h" |
43 #include "webrtc/media/base/fakevideorenderer.h" | 43 #include "webrtc/media/base/fakevideorenderer.h" |
44 #include "webrtc/media/base/mediachannel.h" | 44 #include "webrtc/media/base/mediachannel.h" |
45 #include "webrtc/media/webrtc/fakewebrtccall.h" | 45 #include "webrtc/media/engine/fakewebrtccall.h" |
46 #include "webrtc/p2p/base/stunserver.h" | 46 #include "webrtc/p2p/base/stunserver.h" |
47 #include "webrtc/p2p/base/teststunserver.h" | 47 #include "webrtc/p2p/base/teststunserver.h" |
48 #include "webrtc/p2p/base/testturnserver.h" | 48 #include "webrtc/p2p/base/testturnserver.h" |
49 #include "webrtc/p2p/base/transportchannel.h" | 49 #include "webrtc/p2p/base/transportchannel.h" |
50 #include "webrtc/p2p/client/basicportallocator.h" | 50 #include "webrtc/p2p/client/basicportallocator.h" |
51 | 51 |
52 #define MAYBE_SKIP_TEST(feature) \ | 52 #define MAYBE_SKIP_TEST(feature) \ |
53 if (!(feature())) { \ | 53 if (!(feature())) { \ |
54 LOG(LS_INFO) << "Feature disabled... skipping"; \ | 54 LOG(LS_INFO) << "Feature disabled... skipping"; \ |
55 return; \ | 55 return; \ |
(...skipping 4220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4276 } | 4276 } |
4277 | 4277 |
4278 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test | 4278 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test |
4279 // currently fails because upon disconnection and reconnection OnIceComplete is | 4279 // currently fails because upon disconnection and reconnection OnIceComplete is |
4280 // called more than once without returning to IceGatheringGathering. | 4280 // called more than once without returning to IceGatheringGathering. |
4281 | 4281 |
4282 INSTANTIATE_TEST_CASE_P(WebRtcSessionTests, | 4282 INSTANTIATE_TEST_CASE_P(WebRtcSessionTests, |
4283 WebRtcSessionTest, | 4283 WebRtcSessionTest, |
4284 testing::Values(ALREADY_GENERATED, | 4284 testing::Values(ALREADY_GENERATED, |
4285 DTLS_IDENTITY_STORE)); | 4285 DTLS_IDENTITY_STORE)); |
OLD | NEW |