2013-11-20 21:49:41 +00:00
|
|
|
/*
|
|
|
|
|
* libjingle
|
2015-01-20 21:36:13 +00:00
|
|
|
* Copyright 2013 Google Inc.
|
2013-11-20 21:49:41 +00:00
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
|
|
|
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
|
|
|
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
|
|
|
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
|
|
|
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-02-10 10:53:12 +01:00
|
|
|
#ifndef WEBRTC_API_TEST_PEERCONNECTIONTESTWRAPPER_H_
|
|
|
|
|
#define WEBRTC_API_TEST_PEERCONNECTIONTESTWRAPPER_H_
|
2013-11-20 21:49:41 +00:00
|
|
|
|
2016-02-10 10:53:12 +01:00
|
|
|
#include "webrtc/api/peerconnectioninterface.h"
|
|
|
|
|
#include "webrtc/api/test/fakeaudiocapturemodule.h"
|
|
|
|
|
#include "webrtc/api/test/fakeconstraints.h"
|
|
|
|
|
#include "webrtc/api/test/fakevideotrackrenderer.h"
|
2014-07-29 17:36:52 +00:00
|
|
|
#include "webrtc/base/sigslot.h"
|
2013-11-20 21:49:41 +00:00
|
|
|
|
|
|
|
|
class PeerConnectionTestWrapper
|
|
|
|
|
: public webrtc::PeerConnectionObserver,
|
|
|
|
|
public webrtc::CreateSessionDescriptionObserver,
|
|
|
|
|
public sigslot::has_slots<> {
|
|
|
|
|
public:
|
|
|
|
|
static void Connect(PeerConnectionTestWrapper* caller,
|
|
|
|
|
PeerConnectionTestWrapper* callee);
|
|
|
|
|
|
|
|
|
|
explicit PeerConnectionTestWrapper(const std::string& name);
|
|
|
|
|
virtual ~PeerConnectionTestWrapper();
|
|
|
|
|
|
|
|
|
|
bool CreatePc(const webrtc::MediaConstraintsInterface* constraints);
|
|
|
|
|
|
2014-07-29 17:36:52 +00:00
|
|
|
rtc::scoped_refptr<webrtc::DataChannelInterface> CreateDataChannel(
|
2014-06-12 21:59:29 +00:00
|
|
|
const std::string& label,
|
|
|
|
|
const webrtc::DataChannelInit& init);
|
|
|
|
|
|
2013-11-20 21:49:41 +00:00
|
|
|
// Implements PeerConnectionObserver.
|
|
|
|
|
virtual void OnSignalingChange(
|
|
|
|
|
webrtc::PeerConnectionInterface::SignalingState new_state) {}
|
|
|
|
|
virtual void OnStateChange(
|
|
|
|
|
webrtc::PeerConnectionObserver::StateType state_changed) {}
|
|
|
|
|
virtual void OnAddStream(webrtc::MediaStreamInterface* stream);
|
|
|
|
|
virtual void OnRemoveStream(webrtc::MediaStreamInterface* stream) {}
|
2014-06-12 21:59:29 +00:00
|
|
|
virtual void OnDataChannel(webrtc::DataChannelInterface* data_channel);
|
2013-11-20 21:49:41 +00:00
|
|
|
virtual void OnRenegotiationNeeded() {}
|
|
|
|
|
virtual void OnIceConnectionChange(
|
|
|
|
|
webrtc::PeerConnectionInterface::IceConnectionState new_state) {}
|
|
|
|
|
virtual void OnIceGatheringChange(
|
|
|
|
|
webrtc::PeerConnectionInterface::IceGatheringState new_state) {}
|
|
|
|
|
virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate);
|
|
|
|
|
virtual void OnIceComplete() {}
|
|
|
|
|
|
|
|
|
|
// Implements CreateSessionDescriptionObserver.
|
|
|
|
|
virtual void OnSuccess(webrtc::SessionDescriptionInterface* desc);
|
|
|
|
|
virtual void OnFailure(const std::string& error) {}
|
|
|
|
|
|
|
|
|
|
void CreateOffer(const webrtc::MediaConstraintsInterface* constraints);
|
|
|
|
|
void CreateAnswer(const webrtc::MediaConstraintsInterface* constraints);
|
|
|
|
|
void ReceiveOfferSdp(const std::string& sdp);
|
|
|
|
|
void ReceiveAnswerSdp(const std::string& sdp);
|
|
|
|
|
void AddIceCandidate(const std::string& sdp_mid, int sdp_mline_index,
|
|
|
|
|
const std::string& candidate);
|
|
|
|
|
void WaitForCallEstablished();
|
|
|
|
|
void WaitForConnection();
|
|
|
|
|
void WaitForAudio();
|
|
|
|
|
void WaitForVideo();
|
|
|
|
|
void GetAndAddUserMedia(
|
|
|
|
|
bool audio, const webrtc::FakeConstraints& audio_constraints,
|
|
|
|
|
bool video, const webrtc::FakeConstraints& video_constraints);
|
|
|
|
|
|
|
|
|
|
// sigslots
|
|
|
|
|
sigslot::signal1<std::string*> SignalOnIceCandidateCreated;
|
|
|
|
|
sigslot::signal3<const std::string&,
|
|
|
|
|
int,
|
|
|
|
|
const std::string&> SignalOnIceCandidateReady;
|
|
|
|
|
sigslot::signal1<std::string*> SignalOnSdpCreated;
|
|
|
|
|
sigslot::signal1<const std::string&> SignalOnSdpReady;
|
2014-06-12 21:59:29 +00:00
|
|
|
sigslot::signal1<webrtc::DataChannelInterface*> SignalOnDataChannel;
|
2013-11-20 21:49:41 +00:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void SetLocalDescription(const std::string& type, const std::string& sdp);
|
|
|
|
|
void SetRemoteDescription(const std::string& type, const std::string& sdp);
|
|
|
|
|
bool CheckForConnection();
|
|
|
|
|
bool CheckForAudio();
|
|
|
|
|
bool CheckForVideo();
|
2014-07-29 17:36:52 +00:00
|
|
|
rtc::scoped_refptr<webrtc::MediaStreamInterface> GetUserMedia(
|
2013-11-20 21:49:41 +00:00
|
|
|
bool audio, const webrtc::FakeConstraints& audio_constraints,
|
|
|
|
|
bool video, const webrtc::FakeConstraints& video_constraints);
|
|
|
|
|
|
|
|
|
|
std::string name_;
|
2014-07-29 17:36:52 +00:00
|
|
|
rtc::scoped_refptr<webrtc::PeerConnectionInterface> peer_connection_;
|
|
|
|
|
rtc::scoped_refptr<webrtc::PeerConnectionFactoryInterface>
|
2013-11-20 21:49:41 +00:00
|
|
|
peer_connection_factory_;
|
2014-07-29 17:36:52 +00:00
|
|
|
rtc::scoped_refptr<FakeAudioCaptureModule> fake_audio_capture_module_;
|
|
|
|
|
rtc::scoped_ptr<webrtc::FakeVideoTrackRenderer> renderer_;
|
2013-11-20 21:49:41 +00:00
|
|
|
};
|
|
|
|
|
|
2016-02-10 10:53:12 +01:00
|
|
|
#endif // WEBRTC_API_TEST_PEERCONNECTIONTESTWRAPPER_H_
|