1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
gpu / ipc / service / gpu_channel_unittest.cc [blame]
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/ipc/service/gpu_channel.h"
#include <stdint.h>
#include "base/run_loop.h"
#include "base/test/test_simple_task_runner.h"
#include "build/build_config.h"
#include "gpu/ipc/common/command_buffer_id.h"
#include "gpu/ipc/common/gpu_channel.mojom.h"
#include "gpu/ipc/service/gpu_channel_manager.h"
#include "gpu/ipc/service/gpu_channel_test_common.h"
namespace gpu {
class GpuChannelTest : public GpuChannelTestCommon {
public:
GpuChannelTest() : GpuChannelTestCommon(true /* use_stub_bindings */) {}
~GpuChannelTest() override = default;
};
TEST_F(GpuChannelTest, CreateOffscreenCommandBuffer) {
int32_t kClientId = 1;
GpuChannel* channel = CreateChannel(kClientId, true);
ASSERT_TRUE(channel);
int32_t kRouteId =
static_cast<int32_t>(GpuChannelReservedRoutes::kMaxValue) + 1;
auto init_params = mojom::CreateCommandBufferParams::New();
init_params->share_group_id = MSG_ROUTING_NONE;
init_params->stream_id = 0;
init_params->stream_priority = SchedulingPriority::kNormal;
init_params->attribs = ContextCreationAttribs();
init_params->active_url = GURL();
gpu::ContextResult result = gpu::ContextResult::kSuccess;
gpu::Capabilities capabilities;
gpu::GLCapabilities gl_capabilities;
CreateCommandBuffer(*channel, std::move(init_params), kRouteId,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kSuccess);
CommandBufferStub* stub = channel->LookupCommandBuffer(kRouteId);
EXPECT_TRUE(stub);
}
TEST_F(GpuChannelTest, IncompatibleStreamIds) {
int32_t kClientId = 1;
GpuChannel* channel = CreateChannel(kClientId, true);
ASSERT_TRUE(channel);
// Create first context.
int32_t kRouteId1 =
static_cast<int32_t>(GpuChannelReservedRoutes::kMaxValue) + 1;
int32_t kStreamId1 = 1;
auto init_params = mojom::CreateCommandBufferParams::New();
init_params->share_group_id = MSG_ROUTING_NONE;
init_params->stream_id = kStreamId1;
init_params->stream_priority = SchedulingPriority::kNormal;
auto init_params2 = init_params.Clone();
gpu::ContextResult result = gpu::ContextResult::kSuccess;
gpu::Capabilities capabilities;
gpu::GLCapabilities gl_capabilities;
CreateCommandBuffer(*channel, std::move(init_params), kRouteId1,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kSuccess);
CommandBufferStub* stub = channel->LookupCommandBuffer(kRouteId1);
EXPECT_TRUE(stub);
// Create second context in same share group but different stream.
int32_t kRouteId2 = kRouteId1 + 1;
int32_t kStreamId2 = 2;
init_params2->share_group_id = kRouteId1;
init_params2->stream_id = kStreamId2;
init_params2->stream_priority = SchedulingPriority::kNormal;
CreateCommandBuffer(*channel, std::move(init_params2), kRouteId2,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kFatalFailure);
stub = channel->LookupCommandBuffer(kRouteId2);
EXPECT_FALSE(stub);
}
TEST_F(GpuChannelTest, CreateFailsIfSharedContextIsLost) {
int32_t kClientId = 1;
GpuChannel* channel = CreateChannel(kClientId, false);
ASSERT_TRUE(channel);
// Create first context, we will share this one.
int32_t kSharedRouteId =
static_cast<int32_t>(GpuChannelReservedRoutes::kMaxValue) + 1;
{
SCOPED_TRACE("kSharedRouteId");
auto init_params = mojom::CreateCommandBufferParams::New();
init_params->share_group_id = MSG_ROUTING_NONE;
init_params->stream_id = 0;
init_params->stream_priority = SchedulingPriority::kNormal;
init_params->attribs = ContextCreationAttribs();
init_params->active_url = GURL();
gpu::ContextResult result = gpu::ContextResult::kSuccess;
gpu::Capabilities capabilities;
gpu::GLCapabilities gl_capabilities;
CreateCommandBuffer(*channel, std::move(init_params), kSharedRouteId,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kSuccess);
}
EXPECT_TRUE(channel->LookupCommandBuffer(kSharedRouteId));
// This context shares with the first one, this should be possible.
int32_t kFriendlyRouteId = kSharedRouteId + 1;
{
SCOPED_TRACE("kFriendlyRouteId");
auto init_params = mojom::CreateCommandBufferParams::New();
init_params->share_group_id = kSharedRouteId;
init_params->stream_id = 0;
init_params->stream_priority = SchedulingPriority::kNormal;
init_params->attribs = ContextCreationAttribs();
init_params->active_url = GURL();
gpu::ContextResult result = gpu::ContextResult::kSuccess;
gpu::Capabilities capabilities;
gpu::GLCapabilities gl_capabilities;
CreateCommandBuffer(*channel, std::move(init_params), kFriendlyRouteId,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kSuccess);
}
EXPECT_TRUE(channel->LookupCommandBuffer(kFriendlyRouteId));
// The shared context is lost.
channel->LookupCommandBuffer(kSharedRouteId)->MarkContextLost();
// Meanwhile another context is being made pointing to the shared one. This
// should fail.
int32_t kAnotherRouteId = kFriendlyRouteId + 1;
{
SCOPED_TRACE("kAnotherRouteId");
auto init_params = mojom::CreateCommandBufferParams::New();
init_params->share_group_id = kSharedRouteId;
init_params->stream_id = 0;
init_params->stream_priority = SchedulingPriority::kNormal;
init_params->attribs = ContextCreationAttribs();
init_params->active_url = GURL();
gpu::ContextResult result = gpu::ContextResult::kSuccess;
gpu::Capabilities capabilities;
gpu::GLCapabilities gl_capabilities;
CreateCommandBuffer(*channel, std::move(init_params), kAnotherRouteId,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kTransientFailure);
}
EXPECT_FALSE(channel->LookupCommandBuffer(kAnotherRouteId));
// The lost context is still around though (to verify the failure happened due
// to the shared context being lost, not due to it being deleted).
EXPECT_TRUE(channel->LookupCommandBuffer(kSharedRouteId));
// Destroy the command buffers we initialized before destoying GL.
channel->DestroyCommandBuffer(kFriendlyRouteId);
channel->DestroyCommandBuffer(kSharedRouteId);
}
class GpuChannelExitForContextLostTest : public GpuChannelTestCommon {
public:
GpuChannelExitForContextLostTest()
: GpuChannelTestCommon({EXIT_ON_CONTEXT_LOST} /* enabled_workarounds */,
true /* use_stub_bindings */) {}
};
TEST_F(GpuChannelExitForContextLostTest,
CreateFailsDuringLostContextShutdown_1) {
int32_t kClientId = 1;
GpuChannel* channel = CreateChannel(kClientId, false);
ASSERT_TRUE(channel);
// Put channel manager into shutdown state.
channel_manager()->OnContextLost(-1 /* context_lost_count */,
false /* synthetic_loss */,
error::ContextLostReason::kUnknown);
// Calling OnContextLost() above may destroy the gpu channel via post task.
// Ensure that post task has happened.
base::RunLoop().RunUntilIdle();
// If the channel is destroyed, then skip the test.
if (!channel_manager()->LookupChannel(kClientId))
return;
// Try to create a context.
int32_t kRouteId =
static_cast<int32_t>(GpuChannelReservedRoutes::kMaxValue) + 1;
auto init_params = mojom::CreateCommandBufferParams::New();
init_params->share_group_id = MSG_ROUTING_NONE;
init_params->stream_id = 0;
init_params->stream_priority = SchedulingPriority::kNormal;
init_params->attribs = ContextCreationAttribs();
init_params->active_url = GURL();
gpu::ContextResult result = gpu::ContextResult::kSuccess;
gpu::Capabilities capabilities;
gpu::GLCapabilities gl_capabilities;
CreateCommandBuffer(*channel, std::move(init_params), kRouteId,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kTransientFailure);
EXPECT_FALSE(channel->LookupCommandBuffer(kRouteId));
}
TEST_F(GpuChannelExitForContextLostTest,
CreateFailsDuringLostContextShutdown_2) {
// Put channel manager into shutdown state. Do this before creating a channel,
// as doing this may destroy any active channels.
channel_manager()->OnContextLost(-1 /* context_lost_count */,
false /* synthetic_loss */,
error::ContextLostReason::kUnknown);
int32_t kClientId = 1;
GpuChannel* channel = CreateChannel(kClientId, false);
ASSERT_TRUE(channel);
// Try to create a context.
int32_t kRouteId =
static_cast<int32_t>(GpuChannelReservedRoutes::kMaxValue) + 1;
auto init_params = mojom::CreateCommandBufferParams::New();
init_params->share_group_id = MSG_ROUTING_NONE;
init_params->stream_id = 0;
init_params->stream_priority = SchedulingPriority::kNormal;
init_params->attribs = ContextCreationAttribs();
init_params->active_url = GURL();
gpu::ContextResult result = gpu::ContextResult::kSuccess;
gpu::Capabilities capabilities;
gpu::GLCapabilities gl_capabilities;
CreateCommandBuffer(*channel, std::move(init_params), kRouteId,
GetSharedMemoryRegion(), &result, &capabilities,
&gl_capabilities);
EXPECT_EQ(result, gpu::ContextResult::kTransientFailure);
EXPECT_FALSE(channel->LookupCommandBuffer(kRouteId));
}
} // namespace gpu