chromium/components/policy/core/common/schema_map_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.

#include "components/policy/core/common/schema_map.h"

#include <memory>
#include <optional>

#include "base/memory/weak_ptr.h"
#include "base/types/expected_macros.h"
#include "base/values.h"
#include "components/policy/core/common/external_data_fetcher.h"
#include "components/policy/core/common/external_data_manager.h"
#include "components/policy/core/common/policy_bundle.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_types.h"
#include "components/policy/core/common/schema.h"
#include "components/strings/grit/components_strings.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace policy {

namespace {

const char kTestSchema[] =;

}  // namespace

class SchemaMapTest : public testing::Test {};

TEST_F(SchemaMapTest, Empty) {}

TEST_F(SchemaMapTest, HasComponents) {}

TEST_F(SchemaMapTest, Lookups) {}

// Tests FilterBundle when |drop_invalid_component_policies| is set to true.
TEST_F(SchemaMapTest, FilterBundle) {}

// Tests FilterBundle when |drop_invalid_component_policies| is set to true.
TEST_F(SchemaMapTest, LegacyComponents) {}

// Tests FilterBundle when |drop_invalid_component_policies| is set to false.
TEST_F(SchemaMapTest, FilterBundleInvalidatesPolicies) {}

TEST_F(SchemaMapTest, GetChanges) {}

}  // namespace policy