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

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

Issue 1231823002: Make sure we process all pending offer/answer requests before terminating. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Quit() instead of ProcessMessage Created 5 years, 5 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/webrtcsession.cc ('k') | talk/app/webrtc/webrtcsessiondescriptionfactory.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 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
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.
OLDNEW
« no previous file with comments | « talk/app/webrtc/webrtcsession.cc ('k') | talk/app/webrtc/webrtcsessiondescriptionfactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698