OLD | NEW |
1 /* | 1 /* |
2 * libjingle | 2 * libjingle |
3 * Copyright 2012 Google Inc. | 3 * Copyright 2012 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 3834 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3845 | 3845 |
3846 EXPECT_TRUE(session_->voice_channel()->transport_channel()->GetOption( | 3846 EXPECT_TRUE(session_->voice_channel()->transport_channel()->GetOption( |
3847 rtc::Socket::Option::OPT_SNDBUF, &option_val)); | 3847 rtc::Socket::Option::OPT_SNDBUF, &option_val)); |
3848 EXPECT_EQ(4000, option_val); | 3848 EXPECT_EQ(4000, option_val); |
3849 | 3849 |
3850 EXPECT_TRUE(session_->voice_channel()->transport_channel()->GetOption( | 3850 EXPECT_TRUE(session_->voice_channel()->transport_channel()->GetOption( |
3851 rtc::Socket::Option::OPT_RCVBUF, &option_val)); | 3851 rtc::Socket::Option::OPT_RCVBUF, &option_val)); |
3852 EXPECT_EQ(8000, option_val); | 3852 EXPECT_EQ(8000, option_val); |
3853 } | 3853 } |
3854 | 3854 |
| 3855 // Test creating a session, request multiple offers, destroy the session |
| 3856 // and make sure we got success/failure callbacks for all of the requests. |
| 3857 // Background: crbug.com/507307 |
| 3858 TEST_F(WebRtcSessionTest, CreateOffersAndShutdown) { |
| 3859 Init(); |
| 3860 |
| 3861 rtc::scoped_refptr<WebRtcSessionCreateSDPObserverForTest> observers[100]; |
| 3862 PeerConnectionInterface::RTCOfferAnswerOptions options; |
| 3863 options.offer_to_receive_audio = |
| 3864 RTCOfferAnswerOptions::kOfferToReceiveMediaTrue; |
| 3865 |
| 3866 for (auto& o : observers) { |
| 3867 o = new WebRtcSessionCreateSDPObserverForTest(); |
| 3868 session_->CreateOffer(o, options); |
| 3869 } |
| 3870 |
| 3871 session_.reset(); |
| 3872 |
| 3873 // Make sure we process pending messages on the current (signaling) thread |
| 3874 // before checking we we got our callbacks. Quit() will do this and then |
| 3875 // immediately exit. We won't need the queue after this point anyway. |
| 3876 rtc::Thread::Current()->Quit(); |
| 3877 |
| 3878 for (auto& o : observers) { |
| 3879 // We expect to have received a notification now even if the session was |
| 3880 // terminated. The offer creation may or may not have succeeded, but we |
| 3881 // must have received a notification which, so the only invalid state |
| 3882 // is kInit. |
| 3883 EXPECT_NE(WebRtcSessionCreateSDPObserverForTest::kInit, o->state()); |
| 3884 } |
| 3885 } |
| 3886 |
3855 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test | 3887 // TODO(bemasc): Add a TestIceStatesBundle with BUNDLE enabled. That test |
3856 // currently fails because upon disconnection and reconnection OnIceComplete is | 3888 // currently fails because upon disconnection and reconnection OnIceComplete is |
3857 // called more than once without returning to IceGatheringGathering. | 3889 // called more than once without returning to IceGatheringGathering. |
OLD | NEW |