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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
media / mojo / clients / mojo_cdm_unittest.cc [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "media/mojo/clients/mojo_cdm.h"
#include <stdint.h>
#include <memory>
#include "base/functional/bind.h"
#include "base/memory/ref_counted.h"
#include "base/run_loop.h"
#include "base/test/test_message_loop.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "media/base/cdm_config.h"
#include "media/base/cdm_factory.h"
#include "media/base/content_decryption_module.h"
#include "media/base/mock_filters.h"
#include "media/cdm/clear_key_cdm_common.h"
#include "media/cdm/default_cdm_factory.h"
#include "media/mojo/mojom/content_decryption_module.mojom.h"
#include "media/mojo/services/mojo_cdm_service.h"
#include "media/mojo/services/mojo_cdm_service_context.h"
#include "mojo/public/cpp/bindings/pending_remote.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
using ::testing::_;
using ::testing::DoAll;
using ::testing::Invoke;
using ::testing::Return;
using ::testing::ReturnNull;
using ::testing::ReturnPointee;
using ::testing::StrictMock;
using ::testing::WithArg;
using ::testing::WithArgs;
using ::testing::WithoutArgs;
MATCHER(NotEmpty, "") {
return !arg.empty();
}
ACTION_P2(CdmCreated, cdm, status) {
arg0.Run(cdm, status);
}
namespace media {
namespace {
// Random key ID used to create a session.
const uint8_t kKeyId[] = {
// base64 equivalent is AQIDBAUGBwgJCgsMDQ4PEA
0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08,
0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,
};
} // namespace
class MojoCdmTest : public ::testing::Test {
public:
enum ExpectedResult {
SUCCESS,
FAILURE, // Operation fails immediately.
PENDING, // Operation never completes.
CONNECTION_ERROR_BEFORE, // Connection error happened before operation.
CONNECTION_ERROR_DURING, // Connection error happens during operation.
};
MojoCdmTest() = default;
MojoCdmTest(const MojoCdmTest&) = delete;
MojoCdmTest& operator=(const MojoCdmTest&) = delete;
~MojoCdmTest() override = default;
void Initialize(ExpectedResult expected_result) {
EXPECT_CALL(*remote_cdm_, GetCdmContext())
.WillRepeatedly(Return(&cdm_context_));
EXPECT_CALL(cdm_context_, GetDecryptor()).WillRepeatedly(ReturnNull());
#if BUILDFLAG(IS_WIN)
EXPECT_CALL(cdm_context_, RequiresMediaFoundationRenderer())
.WillRepeatedly(ReturnPointee(&requires_media_foundation_renderer_));
#endif
if (expected_result == CONNECTION_ERROR_DURING) {
// Create() will be successful, so provide a callback that will break
// the connection before returning the CDM.
cdm_factory_.SetBeforeCreationCB(base::BindRepeating(
&MojoCdmTest::ForceConnectionError, base::Unretained(this)));
}
mojo_cdm_service_ =
std::make_unique<MojoCdmService>(&mojo_cdm_service_context_);
mojo_cdm_service_->Initialize(
&cdm_factory_, {kClearKeyKeySystem, false, false, false},
base::BindOnce(&MojoCdmTest::OnCdmServiceInitialized,
base::Unretained(this), expected_result));
}
void OnCdmServiceInitialized(ExpectedResult expected_result,
mojom::CdmContextPtr cdm_context,
CreateCdmStatus status) {
cdm_receiver_ =
std::make_unique<mojo::Receiver<mojom::ContentDecryptionModule>>(
mojo_cdm_service_.get());
if (expected_result == CONNECTION_ERROR_BEFORE) {
// Break the connection before the call.
ForceConnectionError();
}
mojo::Remote<mojom::ContentDecryptionModule> cdm_remote(
cdm_receiver_->BindNewPipeAndPassRemote());
CdmConfig cdm_config = {"com.foo.bar", false, false, false};
mojo_cdm_ = base::MakeRefCounted<MojoCdm>(
std::move(cdm_remote), std::move(cdm_context), cdm_config,
base::BindRepeating(&MockCdmClient::OnSessionMessage,
base::Unretained(&cdm_client_)),
base::BindRepeating(&MockCdmClient::OnSessionClosed,
base::Unretained(&cdm_client_)),
base::BindRepeating(&MockCdmClient::OnSessionKeysChange,
base::Unretained(&cdm_client_)),
base::BindRepeating(&MockCdmClient::OnSessionExpirationUpdate,
base::Unretained(&cdm_client_)));
EXPECT_EQ(kClearKeyKeySystem, remote_cdm_->GetKeySystem());
base::RunLoop().RunUntilIdle();
}
void ForceConnectionError() {
cdm_receiver_->ResetWithReason(2, "Test closed connection.");
base::RunLoop().RunUntilIdle();
}
void SetServerCertificateAndExpect(const std::vector<uint8_t>& certificate,
ExpectedResult expected_result) {
if (expected_result == CONNECTION_ERROR_BEFORE) {
// Break the connection before the call, so SetServerCertificate() is
// never called.
ForceConnectionError();
} else {
EXPECT_CALL(*remote_cdm_, SetServerCertificate(certificate, _))
.WillOnce([&](const auto& certificate, auto promise) {
HandlePromise(std::move(promise), expected_result);
});
}
mojo_cdm_->SetServerCertificate(
certificate,
std::make_unique<MockCdmPromise>(expected_result == SUCCESS));
base::RunLoop().RunUntilIdle();
}
void CreateSessionAndExpect(const std::string& session_id,
ExpectedResult expected_result) {
// Specify parameters needed to call CreateSessionAndGenerateRequest() in
// order to verify that the data is passed properly.
const CdmSessionType session_type = CdmSessionType::kTemporary;
const EmeInitDataType data_type = EmeInitDataType::WEBM;
const std::vector<uint8_t> key_id(kKeyId, kKeyId + std::size(kKeyId));
std::string created_session_id;
if (expected_result == CONNECTION_ERROR_BEFORE) {
// Break the connection before the call, so
// CreateSessionAndGenerateRequest() is never called.
ForceConnectionError();
} else {
EXPECT_CALL(*remote_cdm_, CreateSessionAndGenerateRequest(
session_type, data_type, key_id, _))
.WillOnce([&](auto session_type, auto init_data_type,
const auto& init_data, auto promise) {
HandleSessionPromise(std::move(promise), session_id,
expected_result);
});
}
// Note that although it's called CreateSessionAndGenerateRequest, no
// request is generated.
mojo_cdm_->CreateSessionAndGenerateRequest(
session_type, data_type, key_id,
std::make_unique<MockCdmSessionPromise>(expected_result == SUCCESS,
&created_session_id));
base::RunLoop().RunUntilIdle();
// If the session was "created" ...
if (expected_result == SUCCESS) {
// Returned session ID must match the session ID provided.
EXPECT_EQ(session_id, created_session_id);
base::RunLoop().RunUntilIdle();
}
}
void LoadSessionAndExpect(const std::string& session_id,
ExpectedResult expected_result) {
const CdmSessionType session_type = CdmSessionType::kPersistentLicense;
std::string loaded_session_id;
if (expected_result == CONNECTION_ERROR_BEFORE) {
// Break the connection before the call, so LoadSession() is never called.
ForceConnectionError();
} else {
EXPECT_CALL(*remote_cdm_, LoadSession(session_type, session_id, _))
.WillOnce([&](auto session_type, auto session_id, auto promise) {
HandleSessionPromise(std::move(promise), session_id,
expected_result);
});
}
mojo_cdm_->LoadSession(session_type, session_id,
std::make_unique<MockCdmSessionPromise>(
expected_result == SUCCESS, &loaded_session_id));
base::RunLoop().RunUntilIdle();
// If the session was "loaded" ...
if (expected_result == SUCCESS) {
// Returned session ID must match the session ID provided.
EXPECT_EQ(session_id, loaded_session_id);
// MojoCdm expects the session to be closed, so invoke SessionClosedCB
// to "close" it.
EXPECT_CALL(
cdm_client_,
OnSessionClosed(session_id, CdmSessionClosedReason::kInternalError));
remote_cdm_->CallSessionClosedCB(session_id,
CdmSessionClosedReason::kInternalError);
base::RunLoop().RunUntilIdle();
}
}
void UpdateSessionAndExpect(const std::string& session_id,
ExpectedResult expected_result) {
// Specify parameters to UpdateSession() in order to verify that
// the data is passed properly.
const std::vector<uint8_t> response = {1, 2, 3, 4, 5, 6};
if (expected_result == CONNECTION_ERROR_BEFORE) {
// Break the connection before the call, so UpdateSession() is never
// called.
ForceConnectionError();
} else {
EXPECT_CALL(*remote_cdm_, UpdateSession(session_id, response, _))
.WillOnce([&](auto session_id, auto response, auto promise) {
HandlePromise(std::move(promise), expected_result);
});
}
mojo_cdm_->UpdateSession(
session_id, response,
std::make_unique<MockCdmPromise>(expected_result == SUCCESS));
base::RunLoop().RunUntilIdle();
}
void CloseSessionAndExpect(const std::string& session_id,
ExpectedResult expected_result) {
if (expected_result == CONNECTION_ERROR_BEFORE) {
// Break the connection before the call, so CloseSession() is never
// called.
ForceConnectionError();
} else {
EXPECT_CALL(*remote_cdm_, CloseSession(session_id, _))
.WillOnce([&](auto session_id, auto promise) {
HandlePromise(std::move(promise), expected_result);
});
}
mojo_cdm_->CloseSession(session_id, std::make_unique<MockCdmPromise>(
expected_result == SUCCESS));
base::RunLoop().RunUntilIdle();
}
void RemoveSessionAndExpect(const std::string& session_id,
ExpectedResult expected_result) {
if (expected_result == CONNECTION_ERROR_BEFORE) {
// Break the connection before the call, so RemoveSession() is never
// called.
ForceConnectionError();
} else {
EXPECT_CALL(*remote_cdm_, RemoveSession(session_id, _))
.WillOnce([&](auto session_id, auto promise) {
HandlePromise(std::move(promise), expected_result);
});
}
mojo_cdm_->RemoveSession(session_id, std::make_unique<MockCdmPromise>(
expected_result == SUCCESS));
base::RunLoop().RunUntilIdle();
}
void HandlePromise(std::unique_ptr<SimpleCdmPromise> promise,
ExpectedResult expected_result) {
switch (expected_result) {
case SUCCESS:
promise->resolve();
break;
case FAILURE:
promise->reject(CdmPromise::Exception::NOT_SUPPORTED_ERROR, 0,
"Promise rejected");
break;
case PENDING:
// Store the promise and never fulfill it.
pending_simple_cdm_promise_ = std::move(promise);
break;
case CONNECTION_ERROR_BEFORE:
// Connection should be broken before this is called.
NOTREACHED();
case CONNECTION_ERROR_DURING:
ForceConnectionError();
// Now that the connection is broken the promise result won't be passed
// back. However, since we check that every promise is fulfilled, we
// need to do something with this promise. Resolve the promise to
// fulfill it, but note that the original caller will get back a
// failed promise due to the connection being broken.
promise->resolve();
break;
}
}
void HandleSessionPromise(std::unique_ptr<NewSessionCdmPromise> promise,
const std::string& session_id,
ExpectedResult expected_result) {
switch (expected_result) {
case SUCCESS:
promise->resolve(session_id);
break;
case FAILURE:
promise->reject(CdmPromise::Exception::NOT_SUPPORTED_ERROR, 0,
"Promise rejected");
break;
case PENDING:
// Store the promise and never fulfill it.
pending_new_session_cdm_promise_ = std::move(promise);
break;
case CONNECTION_ERROR_BEFORE:
// Connection should be broken before this is called.
NOTREACHED();
case CONNECTION_ERROR_DURING:
ForceConnectionError();
// Now that the connection is broken the promise result won't be passed
// back. However, since we check that every promise is fulfilled, we
// need to do something with this promise. Resolve the promise to
// fulfill it, but note that the original caller will get back a
// failed promise due to the connection being broken.
promise->resolve(session_id);
break;
}
}
// Fixture members.
base::TestMessageLoop message_loop_;
// |remote_cdm_| represents the CDM at the end of the mojo message pipe.
scoped_refptr<MockCdm> remote_cdm_{new MockCdm()};
MockCdmFactory cdm_factory_{remote_cdm_};
MockCdmContext cdm_context_;
MojoCdmServiceContext mojo_cdm_service_context_;
StrictMock<MockCdmClient> cdm_client_;
// Declared before |mojo_cdm_| so they are destroyed after it.
std::unique_ptr<SimpleCdmPromise> pending_simple_cdm_promise_;
std::unique_ptr<NewSessionCdmPromise> pending_new_session_cdm_promise_;
std::unique_ptr<MojoCdmService> mojo_cdm_service_;
std::unique_ptr<mojo::Receiver<mojom::ContentDecryptionModule>> cdm_receiver_;
scoped_refptr<ContentDecryptionModule> mojo_cdm_;
#if BUILDFLAG(IS_WIN)
bool requires_media_foundation_renderer_ = false;
#endif
};
TEST_F(MojoCdmTest, Create_Success) {
Initialize(SUCCESS);
}
TEST_F(MojoCdmTest, Create_Failure) {
Initialize(FAILURE);
}
TEST_F(MojoCdmTest, Create_ConnectionErrorBefore) {
Initialize(CONNECTION_ERROR_BEFORE);
}
TEST_F(MojoCdmTest, SetServerCertificate_Success) {
const std::vector<uint8_t> certificate = {0, 1, 2};
Initialize(SUCCESS);
SetServerCertificateAndExpect(certificate, SUCCESS);
}
TEST_F(MojoCdmTest, SetServerCertificate_Failure) {
const std::vector<uint8_t> certificate = {1, 2, 3, 4, 5};
Initialize(SUCCESS);
SetServerCertificateAndExpect(certificate, FAILURE);
}
TEST_F(MojoCdmTest, SetServerCertificate_Pending) {
const std::vector<uint8_t> certificate = {1, 2, 3, 4, 5};
Initialize(SUCCESS);
SetServerCertificateAndExpect(certificate, PENDING);
}
TEST_F(MojoCdmTest, SetServerCertificate_ConnectionErrorBefore) {
const std::vector<uint8_t> certificate = {3, 4};
Initialize(SUCCESS);
SetServerCertificateAndExpect(certificate, CONNECTION_ERROR_BEFORE);
}
TEST_F(MojoCdmTest, SetServerCertificate_ConnectionErrorDuring) {
const std::vector<uint8_t> certificate = {10, 11, 12};
Initialize(SUCCESS);
SetServerCertificateAndExpect(certificate, CONNECTION_ERROR_DURING);
}
TEST_F(MojoCdmTest, CreateSession_Success) {
const std::string session_id = "create1";
Initialize(SUCCESS);
CreateSessionAndExpect(session_id, SUCCESS);
// Created session should always be closed!
EXPECT_CALL(
cdm_client_,
OnSessionClosed(session_id, CdmSessionClosedReason::kInternalError));
}
TEST_F(MojoCdmTest, CreateSession_Failure) {
const std::string session_id = "create2";
Initialize(SUCCESS);
CreateSessionAndExpect(session_id, FAILURE);
}
TEST_F(MojoCdmTest, CreateSession_Pending) {
const std::string session_id = "create2";
Initialize(SUCCESS);
CreateSessionAndExpect(session_id, PENDING);
}
TEST_F(MojoCdmTest, CreateSession_ConnectionErrorBefore) {
const std::string session_id = "create3";
Initialize(SUCCESS);
CreateSessionAndExpect(session_id, CONNECTION_ERROR_BEFORE);
}
TEST_F(MojoCdmTest, CreateSession_ConnectionErrorDuring) {
const std::string session_id = "create4";
Initialize(SUCCESS);
CreateSessionAndExpect(session_id, CONNECTION_ERROR_DURING);
}
TEST_F(MojoCdmTest, LoadSession_Success) {
const std::string session_id = "load1";
Initialize(SUCCESS);
LoadSessionAndExpect(session_id, SUCCESS);
}
TEST_F(MojoCdmTest, LoadSession_Failure) {
const std::string session_id = "load2";
Initialize(SUCCESS);
LoadSessionAndExpect(session_id, FAILURE);
}
TEST_F(MojoCdmTest, LoadSession_Pending) {
const std::string session_id = "load2";
Initialize(SUCCESS);
LoadSessionAndExpect(session_id, PENDING);
}
TEST_F(MojoCdmTest, LoadSession_ConnectionErrorBefore) {
const std::string session_id = "load3";
Initialize(SUCCESS);
LoadSessionAndExpect(session_id, CONNECTION_ERROR_BEFORE);
}
TEST_F(MojoCdmTest, LoadSession_ConnectionErrorDuring) {
const std::string session_id = "load4";
Initialize(SUCCESS);
LoadSessionAndExpect(session_id, CONNECTION_ERROR_DURING);
}
TEST_F(MojoCdmTest, UpdateSession_Success) {
const std::string session_id = "update1";
Initialize(SUCCESS);
UpdateSessionAndExpect(session_id, SUCCESS);
}
TEST_F(MojoCdmTest, UpdateSession_Failure) {
const std::string session_id = "update2";
Initialize(SUCCESS);
UpdateSessionAndExpect(session_id, FAILURE);
}
TEST_F(MojoCdmTest, UpdateSession_Pending) {
const std::string session_id = "update2";
Initialize(SUCCESS);
UpdateSessionAndExpect(session_id, PENDING);
}
TEST_F(MojoCdmTest, UpdateSession_ConnectionErrorBefore) {
const std::string session_id = "update3";
Initialize(SUCCESS);
UpdateSessionAndExpect(session_id, CONNECTION_ERROR_BEFORE);
}
TEST_F(MojoCdmTest, UpdateSession_ConnectionErrorDuring) {
const std::string session_id = "update4";
Initialize(SUCCESS);
UpdateSessionAndExpect(session_id, CONNECTION_ERROR_DURING);
}
TEST_F(MojoCdmTest, CloseSession_Success) {
const std::string session_id = "close1";
Initialize(SUCCESS);
CloseSessionAndExpect(session_id, SUCCESS);
}
TEST_F(MojoCdmTest, CloseSession_Failure) {
const std::string session_id = "close2";
Initialize(SUCCESS);
CloseSessionAndExpect(session_id, FAILURE);
}
TEST_F(MojoCdmTest, CloseSession_Pending) {
const std::string session_id = "close2";
Initialize(SUCCESS);
CloseSessionAndExpect(session_id, PENDING);
}
TEST_F(MojoCdmTest, CloseSession_ConnectionErrorBefore) {
const std::string session_id = "close3";
Initialize(SUCCESS);
CloseSessionAndExpect(session_id, CONNECTION_ERROR_BEFORE);
}
TEST_F(MojoCdmTest, CloseSession_ConnectionErrorDuring) {
const std::string session_id = "close4";
Initialize(SUCCESS);
CloseSessionAndExpect(session_id, CONNECTION_ERROR_DURING);
}
TEST_F(MojoCdmTest, RemoveSession_Success) {
const std::string session_id = "remove1";
Initialize(SUCCESS);
RemoveSessionAndExpect(session_id, SUCCESS);
}
TEST_F(MojoCdmTest, RemoveSession_Failure) {
const std::string session_id = "remove2";
Initialize(SUCCESS);
RemoveSessionAndExpect(session_id, FAILURE);
}
TEST_F(MojoCdmTest, RemoveSession_Pending) {
const std::string session_id = "remove2";
Initialize(SUCCESS);
RemoveSessionAndExpect(session_id, PENDING);
}
TEST_F(MojoCdmTest, RemoveSession_ConnectionErrorBefore) {
const std::string session_id = "remove3";
Initialize(SUCCESS);
RemoveSessionAndExpect(session_id, CONNECTION_ERROR_BEFORE);
}
TEST_F(MojoCdmTest, RemoveSession_ConnectionErrorDuring) {
const std::string session_id = "remove4";
Initialize(SUCCESS);
RemoveSessionAndExpect(session_id, CONNECTION_ERROR_DURING);
}
// Note that MojoCdm requires a session to exist when SessionClosedCB is called,
// so it is currently tested in the success cases for CreateSession/LoadSession.
TEST_F(MojoCdmTest, SessionMessageCB_Success) {
const std::string session_id = "message";
const CdmMessageType message_type = CdmMessageType::LICENSE_REQUEST;
const std::vector<uint8_t> message = {0, 1, 2};
Initialize(SUCCESS);
EXPECT_CALL(cdm_client_, OnSessionMessage(session_id, message_type, message));
remote_cdm_->CallSessionMessageCB(session_id, message_type, message);
base::RunLoop().RunUntilIdle();
}
TEST_F(MojoCdmTest, SessionExpirationChangeCB_Success) {
const std::string session_id = "expiration";
const base::Time time = base::Time::Now();
Initialize(SUCCESS);
EXPECT_CALL(cdm_client_, OnSessionExpirationUpdate(session_id, time));
remote_cdm_->CallSessionExpirationUpdateCB(session_id, time);
base::RunLoop().RunUntilIdle();
}
TEST_F(MojoCdmTest, SessionKeysChangeCB_Success) {
const std::string session_id = "change";
bool has_additional_usable_key = true;
CdmKeysInfo keys_info;
Initialize(SUCCESS);
EXPECT_CALL(cdm_client_,
OnSessionKeysChangeCalled(session_id, has_additional_usable_key));
remote_cdm_->CallSessionKeysChangeCB(session_id, has_additional_usable_key,
std::move(keys_info));
base::RunLoop().RunUntilIdle();
}
TEST_F(MojoCdmTest, NoDecryptor) {
Initialize(SUCCESS);
auto* cdm_context = mojo_cdm_->GetCdmContext();
EXPECT_TRUE(cdm_context) << "All CDMs should support CdmContext";
auto* decryptor = cdm_context->GetDecryptor();
EXPECT_FALSE(decryptor);
}
#if BUILDFLAG(IS_WIN)
TEST_F(MojoCdmTest, RequiresMediaFoundationRenderer) {
requires_media_foundation_renderer_ = true;
Initialize(SUCCESS);
auto* cdm_context = mojo_cdm_->GetCdmContext();
EXPECT_TRUE(cdm_context) << "All CDMs should support CdmContext";
EXPECT_TRUE(cdm_context->RequiresMediaFoundationRenderer());
}
TEST_F(MojoCdmTest, NotRequireMediaFoundationRenderer) {
requires_media_foundation_renderer_ = false;
Initialize(SUCCESS);
auto* cdm_context = mojo_cdm_->GetCdmContext();
EXPECT_TRUE(cdm_context) << "All CDMs should support CdmContext";
EXPECT_FALSE(cdm_context->RequiresMediaFoundationRenderer());
}
#endif
} // namespace media