Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8992)

Unified Diff: chrome/common/extensions/chrome_manifest_url_handlers_unittest.cc

Issue 1977303004: [Extensions] Validate file existence for chrome url overrides (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/chrome_manifest_url_handlers.cc ('k') | extensions/common/manifest_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/common/extensions/chrome_manifest_url_handlers.cc ('k') | extensions/common/manifest_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698