chromium/third_party/blink/renderer/modules/webcodecs/decrypt_config_util_test.cc

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/modules/webcodecs/decrypt_config_util.h"

#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_encryption_pattern.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_subsample_entry.h"
#include "third_party/blink/renderer/modules/webcodecs/test_helpers.h"
#include "third_party/blink/renderer/platform/testing/task_environment.h"

namespace blink {

namespace {

TEST(DecryptConfigUtilTest, BadScheme) {}

TEST(DecryptConfigUtilTest, WrongIVSize) {}

TEST(DecryptConfigUtilTest, CreateCbcsWithoutPattern) {}

TEST(DecryptConfigUtilTest, CreateCbcsWithPattern) {}

TEST(DecryptConfigUtilTest, CreateCenc) {}

}  // namespace

}  // namespace blink