Chromium Code Reviews| Index: media/test/fake_encrypted_media.h |
| diff --git a/media/test/fake_encrypted_media.h b/media/test/fake_encrypted_media.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..21f9d2dd4ff924c6c4407ff417086d61792b27d8 |
| --- /dev/null |
| +++ b/media/test/fake_encrypted_media.h |
| @@ -0,0 +1,75 @@ |
| +// Copyright (c) 2017 The Chromium Authors. All rights reserved. |
|
DaleCurtis
2017/04/20 21:40:25
No (c).
xjz
2017/04/20 22:07:44
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef MEDIA_TEST_FAKE_ENCRYPTED_MEDIA_H_ |
| +#define MEDIA_TEST_FAKE_ENCRYPTED_MEDIA_H_ |
| + |
| +#include "media/base/cdm_context.h" |
| +#include "media/base/content_decryption_module.h" |
| + |
| +namespace media { |
| + |
| +class AesDecryptor; |
| + |
| +// Note: Tests using this class only exercise the DecryptingDemuxerStream path. |
| +// They do not exercise the Decrypting{Audio|Video}Decoder path. |
| +class FakeEncryptedMedia { |
| + public: |
| + // Defines the behavior of the "app" that responds to EME events. |
| + class AppBase { |
| + public: |
| + virtual ~AppBase() {} |
| + |
| + virtual void OnSessionMessage( |
| + const std::string& session_id, |
| + ContentDecryptionModule::MessageType message_type, |
| + const std::vector<uint8_t>& message, |
| + AesDecryptor* decryptor) = 0; |
| + |
| + virtual void OnSessionClosed(const std::string& session_id) = 0; |
| + |
| + virtual void OnSessionKeysChange(const std::string& session_id, |
| + bool has_additional_usable_key, |
| + CdmKeysInfo keys_info) = 0; |
| + |
| + virtual void OnEncryptedMediaInitData(EmeInitDataType init_data_type, |
| + const std::vector<uint8_t>& init_data, |
| + AesDecryptor* decryptor) = 0; |
| + }; |
| + |
| + FakeEncryptedMedia(AppBase* app); |
| + ~FakeEncryptedMedia(); |
| + CdmContext* GetCdmContext(); |
| + // Callbacks for firing session events. Delegate to |app_|. |
| + void OnSessionMessage(const std::string& session_id, |
| + ContentDecryptionModule::MessageType message_type, |
| + const std::vector<uint8_t>& message); |
| + void OnSessionClosed(const std::string& session_id); |
| + void OnSessionKeysChange(const std::string& session_id, |
| + bool has_additional_usable_key, |
| + CdmKeysInfo keys_info); |
| + void OnEncryptedMediaInitData(EmeInitDataType init_data_type, |
| + const std::vector<uint8_t>& init_data); |
| + |
| + private: |
| + class TestCdmContext : public CdmContext { |
| + public: |
| + TestCdmContext(Decryptor* decryptor); |
| + Decryptor* GetDecryptor() final; |
| + int GetCdmId() const final; |
| + |
| + private: |
| + Decryptor* decryptor_; |
| + }; |
| + |
| + scoped_refptr<AesDecryptor> decryptor_; |
| + TestCdmContext cdm_context_; |
| + std::unique_ptr<AppBase> app_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(FakeEncryptedMedia); |
| +}; |
| + |
| +} // namespace media |
| + |
| +#endif // MEDIA_TEST_FAKE_ENCRYPTED_MEDIA_H_ |