2022-05-10 08:44:48 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2022 The WebRTC project authors. All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "pc/data_channel_controller.h"
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
#include "pc/peer_connection_internal.h"
|
2022-05-11 09:35:36 +00:00
|
|
|
#include "pc/sctp_data_channel.h"
|
2022-05-10 08:44:48 +00:00
|
|
|
#include "pc/test/mock_peer_connection_internal.h"
|
|
|
|
|
#include "test/gmock.h"
|
|
|
|
|
#include "test/gtest.h"
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
using ::testing::NiceMock;
|
|
|
|
|
using ::testing::Return;
|
|
|
|
|
|
|
|
|
|
class DataChannelControllerTest : public ::testing::Test {
|
|
|
|
|
protected:
|
|
|
|
|
DataChannelControllerTest() {
|
|
|
|
|
pc_ = rtc::make_ref_counted<NiceMock<MockPeerConnectionInternal>>();
|
|
|
|
|
ON_CALL(*pc_, signaling_thread)
|
|
|
|
|
.WillByDefault(Return(rtc::Thread::Current()));
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-20 09:12:57 +02:00
|
|
|
rtc::AutoThread main_thread_;
|
2022-05-10 08:44:48 +00:00
|
|
|
rtc::scoped_refptr<NiceMock<MockPeerConnectionInternal>> pc_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
TEST_F(DataChannelControllerTest, CreateAndDestroy) {
|
|
|
|
|
DataChannelController dcc(pc_.get());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(DataChannelControllerTest, CreateDataChannelEarlyRelease) {
|
|
|
|
|
DataChannelController dcc(pc_.get());
|
|
|
|
|
auto channel = dcc.InternalCreateDataChannelWithProxy(
|
|
|
|
|
"label",
|
|
|
|
|
std::make_unique<InternalDataChannelInit>(DataChannelInit()).get());
|
2022-05-11 09:35:36 +00:00
|
|
|
channel = nullptr; // dcc holds a reference to channel, so not destroyed yet
|
2022-05-10 08:44:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TEST_F(DataChannelControllerTest, CreateDataChannelLateRelease) {
|
|
|
|
|
auto dcc = std::make_unique<DataChannelController>(pc_.get());
|
|
|
|
|
auto channel = dcc->InternalCreateDataChannelWithProxy(
|
|
|
|
|
"label",
|
|
|
|
|
std::make_unique<InternalDataChannelInit>(DataChannelInit()).get());
|
|
|
|
|
dcc.reset();
|
|
|
|
|
channel = nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-11 09:35:36 +00:00
|
|
|
TEST_F(DataChannelControllerTest, CloseAfterControllerDestroyed) {
|
|
|
|
|
auto dcc = std::make_unique<DataChannelController>(pc_.get());
|
|
|
|
|
auto channel = dcc->InternalCreateDataChannelWithProxy(
|
|
|
|
|
"label",
|
|
|
|
|
std::make_unique<InternalDataChannelInit>(DataChannelInit()).get());
|
|
|
|
|
// Connect to provider
|
|
|
|
|
auto inner_channel =
|
|
|
|
|
DowncastProxiedDataChannelInterfaceToSctpDataChannelForTesting(
|
|
|
|
|
channel.get());
|
|
|
|
|
dcc->ConnectDataChannel(inner_channel);
|
|
|
|
|
dcc.reset();
|
|
|
|
|
channel->Close();
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-10 08:44:48 +00:00
|
|
|
} // namespace
|
|
|
|
|
} // namespace webrtc
|