blob: ba1f57d3ec672062a3a8194db285d592f5adb594 [file] [log] [blame]
// Copyright (c) 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/ignore_result.h"
#include "base/memory/ptr_util.h"
#include "base/memory/scoped_refptr.h"
#include "base/test/task_environment.h"
#include "base/threading/thread_task_runner_handle.h"
#include "content/renderer/media/android/stream_texture_factory.h"
#include "content/renderer/stream_texture_host_android.h"
#include "gpu/command_buffer/common/mailbox.h"
#include "gpu/command_buffer/common/sync_token.h"
#include "gpu/ipc/client/gpu_channel_host.h"
#include "gpu/ipc/common/surface_handle.h"
#include "mojo/public/cpp/system/message_pipe.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace content {
// GpuChannelHost is expected to be created on the IO thread, and posts tasks to
// setup its IPC listener, so it must be created after the thread task runner
// handle is set.
class TestGpuChannelHost : public gpu::GpuChannelHost {
public:
TestGpuChannelHost()
: gpu::GpuChannelHost(
0 /* channel_id */,
gpu::GPUInfo(),
gpu::GpuFeatureInfo(),
mojo::ScopedMessagePipeHandle(
mojo::MessagePipeHandle(mojo::kInvalidHandleValue))) {}
protected:
~TestGpuChannelHost() override {}
};
class StreamTextureProxyTest : public testing::Test {
public:
StreamTextureProxyTest()
: channel_(base::MakeRefCounted<TestGpuChannelHost>()) {}
~StreamTextureProxyTest() override { channel_ = nullptr; }
std::unique_ptr<StreamTextureProxy> CreateProxyWithNullGpuChannelHost() {
// Create the StreamTextureHost with a valid |channel_|. Note that route_id
// does not matter here for the test we are writing.
mojo::PendingAssociatedRemote<gpu::mojom::StreamTexture> texture;
ignore_result(texture.InitWithNewEndpointAndPassReceiver());
texture.EnableUnassociatedUsage();
auto host = std::make_unique<StreamTextureHost>(channel_, 1 /* route_id */,
std::move(texture));
// Force the StreamTextureHost's |channel_| to be null by calling
// OnDisconnectedFromGpuProcess.
host->OnDisconnectedFromGpuProcess();
auto proxy = base::WrapUnique(new StreamTextureProxy(std::move(host)));
return proxy;
}
protected:
base::test::SingleThreadTaskEnvironment task_environment_;
scoped_refptr<TestGpuChannelHost> channel_;
};
// This test is to make sure UpdateRotatedVisibleSize() do not crash even if
// StreamTextureHost's |channel_| is null.
TEST_F(StreamTextureProxyTest,
UpdateRotatedVisibleSizeDoesNotCrashWithNullGpuChannelHost) {
auto proxy = CreateProxyWithNullGpuChannelHost();
gpu::Mailbox mailbox;
gpu::SyncToken texture_mailbox_sync_token;
// This method should not crash even if the StreamTextureHost's |channel_| is
// null.
proxy->UpdateRotatedVisibleSize(gfx::Size(1, 1));
}
} // namespace content