* This replaces the video stream methods for forcing adaptation with a mock resource that triggers overuse. * Resources can now be injected to the Module using the AddResource function. * Resources now have tests for adding and removing callbacks. * Quality/EncoderUse% resources are tracked in the Resource list of the adaptation module. * The adaptation module ties all resources to a reason to keep stats working as expected. BUG=webrtc:11377 Change-Id: I1f5902f7416dc41b4915c0072e6f0da2bb3bb2b7 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/168948 Commit-Queue: Evan Shrubsole <eshr@google.com> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Reviewed-by: Henrik Boström <hbos@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30610}
53 lines
1.8 KiB
C++
53 lines
1.8 KiB
C++
/*
|
|
* Copyright 2020 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 "call/adaptation/resource.h"
|
|
|
|
#include "call/adaptation/test/fake_resource.h"
|
|
#include "test/gmock.h"
|
|
#include "test/gtest.h"
|
|
|
|
namespace webrtc {
|
|
|
|
using ::testing::_;
|
|
using ::testing::StrictMock;
|
|
|
|
class MockResourceListener : public ResourceListener {
|
|
public:
|
|
MOCK_METHOD(ResourceListenerResponse,
|
|
OnResourceUsageStateMeasured,
|
|
(const Resource& resource));
|
|
};
|
|
|
|
TEST(ResourceTest, AddingListenerReceivesCallbacks) {
|
|
StrictMock<MockResourceListener> resource_listener;
|
|
FakeResource fake_resource(ResourceUsageState::kStable);
|
|
fake_resource.RegisterListener(&resource_listener);
|
|
EXPECT_CALL(resource_listener, OnResourceUsageStateMeasured(_))
|
|
.Times(1)
|
|
.WillOnce([](const Resource& resource) {
|
|
EXPECT_EQ(ResourceUsageState::kOveruse, resource.usage_state());
|
|
return ResourceListenerResponse::kNothing;
|
|
});
|
|
fake_resource.set_usage_state(ResourceUsageState::kOveruse);
|
|
fake_resource.UnregisterListener(&resource_listener);
|
|
}
|
|
|
|
TEST(ResourceTest, RemovingListenerStopsCallbacks) {
|
|
StrictMock<MockResourceListener> resource_listener;
|
|
FakeResource fake_resource(ResourceUsageState::kStable);
|
|
fake_resource.RegisterListener(&resource_listener);
|
|
fake_resource.UnregisterListener(&resource_listener);
|
|
EXPECT_CALL(resource_listener, OnResourceUsageStateMeasured(_)).Times(0);
|
|
fake_resource.set_usage_state(ResourceUsageState::kOveruse);
|
|
}
|
|
|
|
} // namespace webrtc
|