| Index: chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc
|
| diff --git a/chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc b/chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..aed51ad17fecfdd856f4030ba75fdf9965ddf7b3
|
| --- /dev/null
|
| +++ b/chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc
|
| @@ -0,0 +1,39 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "base/files/scoped_temp_dir.h"
|
| +#include "extensions/common/error_utils.h"
|
| +#include "extensions/common/extension.h"
|
| +#include "extensions/common/file_util.h"
|
| +#include "extensions/common/manifest_constants.h"
|
| +#include "extensions/common/value_builder.h"
|
| +#include "testing/gtest/include/gtest/gtest.h"
|
| +
|
| +namespace extensions {
|
| +
|
| +TEST(ChromeURLOverridesHandlerTest, TestFileMissing) {
|
| + DictionaryBuilder manifest;
|
| + manifest.Set("name", "ntp override");
|
| + manifest.Set("version", "0.1");
|
| + manifest.Set("manifest_version", 2);
|
| + manifest.Set("description", "description");
|
| + manifest.Set("chrome_url_overrides",
|
| + DictionaryBuilder().Set("newtab", "newtab.html").Build());
|
| + std::unique_ptr<base::DictionaryValue> manifest_value = manifest.Build();
|
| + std::string error;
|
| + std::vector<InstallWarning> warnings;
|
| + base::ScopedTempDir dir;
|
| + ASSERT_TRUE(dir.CreateUniqueTempDir());
|
| + scoped_refptr<Extension> extension =
|
| + Extension::Create(dir.path(), Manifest::INTERNAL, *manifest_value,
|
| + Extension::NO_FLAGS, std::string(), &error);
|
| + ASSERT_TRUE(extension);
|
| + EXPECT_FALSE(
|
| + file_util::ValidateExtension(extension.get(), &error, &warnings));
|
| + EXPECT_EQ(ErrorUtils::FormatErrorMessage(manifest_errors::kFileNotFound,
|
| + "newtab.html"),
|
| + error);
|
| +}
|
| +
|
| +} // namespace extensions
|
|
|