chromium/extensions/browser/updater/safe_manifest_parser_unittest.cc

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

#include "extensions/browser/updater/safe_manifest_parser.h"

#include <optional>

#include "base/functional/bind.h"
#include "base/run_loop.h"
#include "content/public/test/browser_task_environment.h"
#include "extensions/browser/updater/extension_downloader_test_helper.h"
#include "services/data_decoder/public/cpp/test_support/in_process_data_decoder.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace extensions {

namespace {

class ExtensionUpdateManifestTest : public testing::Test {};

}  // namespace

TEST_F(ExtensionUpdateManifestTest, InvalidXml) {}

TEST_F(ExtensionUpdateManifestTest, MissingAppId) {}

TEST_F(ExtensionUpdateManifestTest, InvalidCodebase) {}

TEST_F(ExtensionUpdateManifestTest, MissingVersion) {}

TEST_F(ExtensionUpdateManifestTest, InvalidVersion) {}

TEST_F(ExtensionUpdateManifestTest, ValidXml) {}

TEST_F(ExtensionUpdateManifestTest, ValidXmlWithNamespacePrefix) {}

TEST_F(ExtensionUpdateManifestTest, SimilarTagnames) {}

TEST_F(ExtensionUpdateManifestTest, XmlWithHash) {}

TEST_F(ExtensionUpdateManifestTest, XmlWithDaystart) {}

TEST_F(ExtensionUpdateManifestTest, NoUpdateResponse) {}

TEST_F(ExtensionUpdateManifestTest, TwoAppsOneError) {}

TEST_F(ExtensionUpdateManifestTest, Duplicates) {}

TEST_F(ExtensionUpdateManifestTest, GroupByID) {}

}  // namespace extensions