chromium/media/cdm/json_web_key_unittest.cc

// Copyright 2013 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/cdm/json_web_key.h"

#include <stddef.h>
#include <stdint.h>

#include "base/base64.h"
#include "base/check.h"
#include "media/base/content_decryption_module.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace media {

class JSONWebKeyTest : public testing::Test {};

TEST_F(JSONWebKeyTest, GenerateJWKSet) {}

TEST_F(JSONWebKeyTest, ExtractValidJWKKeys) {}

TEST_F(JSONWebKeyTest, ExtractInvalidJWKKeys) {}

TEST_F(JSONWebKeyTest, KeyType) {}

TEST_F(JSONWebKeyTest, Alg) {}

TEST_F(JSONWebKeyTest, CdmSessionType) {}

TEST_F(JSONWebKeyTest, CreateLicense) {}

TEST_F(JSONWebKeyTest, ExtractLicense) {}

TEST_F(JSONWebKeyTest, Base64UrlEncoding) {}

TEST_F(JSONWebKeyTest, MultipleKeys) {}

TEST_F(JSONWebKeyTest, ExtractKeyIds) {}

TEST_F(JSONWebKeyTest, CreateInitData) {}

}  // namespace media