
This adds support to enable message interleaving in the stream scheduler from the socket, proxied by the send queue. It also adds socket unit tests to ensure that prioritization and interleaving works. Also, send queue test has been added to validate the integration of the stream scheduler. But the actual scheduling parts of it will be tested in the stream scheduler unit tests. Bug: webrtc:5696 Change-Id: Ic7d3d2dc28405c77a107f0148f0096882961eec7 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/262248 Commit-Queue: Victor Boivie <boivie@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#37355}
61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
/*
|
|
* Copyright (c) 2021 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.
|
|
*/
|
|
#ifndef NET_DCSCTP_TX_MOCK_SEND_QUEUE_H_
|
|
#define NET_DCSCTP_TX_MOCK_SEND_QUEUE_H_
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
#include "absl/types/optional.h"
|
|
#include "api/array_view.h"
|
|
#include "net/dcsctp/tx/send_queue.h"
|
|
#include "test/gmock.h"
|
|
|
|
namespace dcsctp {
|
|
|
|
class MockSendQueue : public SendQueue {
|
|
public:
|
|
MockSendQueue() {
|
|
ON_CALL(*this, Produce).WillByDefault([](TimeMs now, size_t max_size) {
|
|
return absl::nullopt;
|
|
});
|
|
}
|
|
|
|
MOCK_METHOD(absl::optional<SendQueue::DataToSend>,
|
|
Produce,
|
|
(TimeMs now, size_t max_size),
|
|
(override));
|
|
MOCK_METHOD(bool,
|
|
Discard,
|
|
(IsUnordered unordered, StreamID stream_id, MID message_id),
|
|
(override));
|
|
MOCK_METHOD(void, PrepareResetStream, (StreamID stream_id), (override));
|
|
MOCK_METHOD(bool, HasStreamsReadyToBeReset, (), (const, override));
|
|
MOCK_METHOD(std::vector<StreamID>, GetStreamsReadyToBeReset, (), (override));
|
|
MOCK_METHOD(void, CommitResetStreams, (), (override));
|
|
MOCK_METHOD(void, RollbackResetStreams, (), (override));
|
|
MOCK_METHOD(void, Reset, (), (override));
|
|
MOCK_METHOD(size_t, buffered_amount, (StreamID stream_id), (const, override));
|
|
MOCK_METHOD(size_t, total_buffered_amount, (), (const, override));
|
|
MOCK_METHOD(size_t,
|
|
buffered_amount_low_threshold,
|
|
(StreamID stream_id),
|
|
(const, override));
|
|
MOCK_METHOD(void,
|
|
SetBufferedAmountLowThreshold,
|
|
(StreamID stream_id, size_t bytes),
|
|
(override));
|
|
MOCK_METHOD(void, EnableMessageInterleaving, (bool enabled), (override));
|
|
};
|
|
|
|
} // namespace dcsctp
|
|
|
|
#endif // NET_DCSCTP_TX_MOCK_SEND_QUEUE_H_
|