blob: 82245796a075c8f4e64bffdb9af4deecb0ede7bd [file] [log] [blame]
// Copyright 2014 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 "third_party/blink/renderer/modules/manifest/manifest_parser.h"
#include <stdint.h>
#include <memory>
#include "base/test/scoped_feature_list.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "third_party/blink/public/common/features.h"
#include "third_party/blink/public/common/permissions_policy/permissions_policy.h"
#include "third_party/blink/renderer/platform/testing/runtime_enabled_features_test_helpers.h"
#include "third_party/blink/renderer/platform/weborigin/kurl.h"
#include "third_party/blink/renderer/platform/weborigin/security_origin.h"
namespace blink {
bool IsManifestEmpty(const mojom::blink::ManifestPtr& manifest) {
return manifest == mojom::blink::Manifest::New();
}
class ManifestParserTest : public testing::Test {
public:
ManifestParserTest(const ManifestParserTest&) = delete;
ManifestParserTest& operator=(const ManifestParserTest&) = delete;
protected:
ManifestParserTest() {}
~ManifestParserTest() override {}
mojom::blink::ManifestPtr& ParseManifestWithURLs(const String& data,
const KURL& manifest_url,
const KURL& document_url) {
ManifestParser parser(data, manifest_url, document_url,
/*execution_context=*/nullptr);
parser.Parse();
Vector<mojom::blink::ManifestErrorPtr> errors;
parser.TakeErrors(&errors);
errors_.clear();
for (auto& error : errors)
errors_.push_back(std::move(error->message));
manifest_ = parser.manifest().Clone();
return manifest_;
}
mojom::blink::ManifestPtr& ParseManifest(const String& data) {
return ParseManifestWithURLs(data, default_manifest_url,
default_document_url);
}
const Vector<String>& errors() const { return errors_; }
unsigned int GetErrorCount() const { return errors_.size(); }
const KURL& DefaultDocumentUrl() const { return default_document_url; }
const KURL& DefaultManifestUrl() const { return default_manifest_url; }
private:
mojom::blink::ManifestPtr manifest_;
Vector<String> errors_;
const KURL default_document_url = KURL("http://foo.com/index.html");
const KURL default_manifest_url = KURL("http://foo.com/manifest.json");
};
TEST_F(ManifestParserTest, CrashTest) {
// Passing temporary variables should not crash.
const String json = R"({"start_url": "/"})";
KURL url("http://example.com");
ManifestParser parser(json, url, url, /*execution_context=*/nullptr);
bool has_comments = parser.Parse();
EXPECT_FALSE(has_comments);
Vector<mojom::blink::ManifestErrorPtr> errors;
const auto& manifest = parser.manifest();
parser.TakeErrors(&errors);
// .Parse() should have been call without crashing and succeeded.
EXPECT_EQ(0u, errors.size());
EXPECT_FALSE(IsManifestEmpty(manifest));
}
TEST_F(ManifestParserTest, HasComments) {
const String json = R"({
// comment
"start_url": "/"
})";
KURL url("http://example.com");
ManifestParser parser(json, url, url, /*execution_context=*/nullptr);
bool has_comments = parser.Parse();
EXPECT_TRUE(has_comments);
}
TEST_F(ManifestParserTest, EmptyStringNull) {
auto& manifest = ParseManifest("");
// This Manifest is not a valid JSON object, it's a parsing error.
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("Line: 1, column: 1, Syntax error.", errors()[0]);
// A parsing error is equivalent to an empty manifest.
ASSERT_TRUE(IsManifestEmpty(manifest));
}
TEST_F(ManifestParserTest, ValidNoContentParses) {
auto& manifest = ParseManifest("{}");
// Empty Manifest is not a parsing error.
EXPECT_EQ(0u, GetErrorCount());
// Check that the fields are null or set to their default values.
ASSERT_FALSE(IsManifestEmpty(manifest));
ASSERT_TRUE(manifest->name.IsNull());
ASSERT_TRUE(manifest->short_name.IsNull());
ASSERT_TRUE(manifest->start_url.IsEmpty());
ASSERT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
ASSERT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::DEFAULT);
ASSERT_FALSE(manifest->has_theme_color);
ASSERT_FALSE(manifest->has_background_color);
ASSERT_TRUE(manifest->gcm_sender_id.IsNull());
ASSERT_EQ(DefaultDocumentUrl().BaseAsString(), manifest->scope.GetString());
ASSERT_TRUE(manifest->shortcuts.IsEmpty());
}
TEST_F(ManifestParserTest, UnrecognizedFieldsIgnored) {
auto& manifest = ParseManifest(
R"({
"unrecognizable_manifest_field": ["foo"],
"name": "bar"
})");
// Unrecognized Manifest fields are not a parsing error.
EXPECT_EQ(0u, GetErrorCount());
// Check that subsequent fields parsed.
ASSERT_FALSE(IsManifestEmpty(manifest));
ASSERT_EQ(manifest->name, "bar");
ASSERT_EQ(DefaultDocumentUrl().BaseAsString(), manifest->scope.GetString());
}
TEST_F(ManifestParserTest, MultipleErrorsReporting) {
auto& manifest = ParseManifest(
R"({ "name": 42, "short_name": 4, "id": 12,
"orientation": {}, "display": "foo",
"start_url": null, "icons": {}, "theme_color": 42,
"background_color": 42, "shortcuts": {} })");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(9u, GetErrorCount());
EXPECT_EQ("property 'name' ignored, type string expected.", errors()[0]);
EXPECT_EQ("property 'short_name' ignored, type string expected.",
errors()[1]);
EXPECT_EQ("property 'start_url' ignored, type string expected.", errors()[2]);
EXPECT_EQ("unknown 'display' value ignored.", errors()[3]);
EXPECT_EQ("property 'orientation' ignored, type string expected.",
errors()[4]);
EXPECT_EQ("property 'icons' ignored, type array expected.", errors()[5]);
EXPECT_EQ("property 'theme_color' ignored, type string expected.",
errors()[6]);
EXPECT_EQ("property 'background_color' ignored, type string expected.",
errors()[7]);
EXPECT_EQ("property 'shortcuts' ignored, type array expected.", errors()[8]);
}
TEST_F(ManifestParserTest, NameParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "name": "foo" })");
ASSERT_EQ(manifest->name, "foo");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "name": " foo " })");
ASSERT_EQ(manifest->name, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "name": {} })");
ASSERT_TRUE(manifest->name.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' ignored, type string expected.", errors()[0]);
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "name": 42 })");
ASSERT_TRUE(manifest->name.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' ignored, type string expected.", errors()[0]);
}
// Test stripping out of \t \r and \n.
{
auto& manifest = ParseManifest("{ \"name\": \"abc\\t\\r\\ndef\" }");
ASSERT_EQ(manifest->name, "abcdef");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, DescriptionParseRules) {
// Smoke test.
{
auto& manifest =
ParseManifest(R"({ "description": "foo is the new black" })");
ASSERT_EQ(manifest->description, "foo is the new black");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "description": " foo " })");
ASSERT_EQ(manifest->description, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if description isn't a string.
{
auto& manifest = ParseManifest(R"({ "description": {} })");
ASSERT_TRUE(manifest->description.IsNull());
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'description' ignored, type string expected.",
errors()[0]);
}
// Don't parse if description isn't a string.
{
auto& manifest = ParseManifest(R"({ "description": 42 })");
ASSERT_TRUE(manifest->description.IsNull());
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'description' ignored, type string expected.",
errors()[0]);
}
}
TEST_F(ManifestParserTest, ShortNameParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "short_name": "foo" })");
ASSERT_EQ(manifest->short_name, "foo");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "short_name": " foo " })");
ASSERT_EQ(manifest->short_name, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "short_name": {} })");
ASSERT_TRUE(manifest->short_name.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'short_name' ignored, type string expected.",
errors()[0]);
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "short_name": 42 })");
ASSERT_TRUE(manifest->short_name.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'short_name' ignored, type string expected.",
errors()[0]);
}
// Test stripping out of \t \r and \n.
{
auto& manifest = ParseManifest("{ \"short_name\": \"abc\\t\\r\\ndef\" }");
ASSERT_EQ(manifest->short_name, "abcdef");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, IdParseRules) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(blink::features::kWebAppEnableManifestId);
// Empty manifest.
{
auto& manifest = ParseManifest("{ }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(String(), manifest->id);
}
// Does not contain id field.
{
auto& manifest = ParseManifest(R"({"start_url": "/start?query=a" })");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ("start?query=a", manifest->id);
}
// Invalid type.
{
auto& manifest =
ParseManifest("{\"start_url\": \"/start?query=a\", \"id\": 1}");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("start?query=a", manifest->id);
}
// Empty string.
{
auto& manifest =
ParseManifest(R"({ "start_url": "/start?query=a", "id": "" })");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ("start?query=a", manifest->id);
}
// Full url.
{
auto& manifest = ParseManifest(
"{ \"start_url\": \"/start?query=a\", \"id\": \"http://foo.com/foo\" "
"}");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ("foo", manifest->id);
}
// Full url with different origin.
{
auto& manifest = ParseManifest(
"{ \"start_url\": \"/start?query=a\", \"id\": "
"\"http://another.com/foo\" }");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("start?query=a", manifest->id);
}
// Relative path
{
auto& manifest =
ParseManifest("{ \"start_url\": \"/start?query=a\", \"id\": \".\" }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ("", manifest->id);
}
// Absolute path
{
auto& manifest =
ParseManifest("{ \"start_url\": \"/start?query=a\", \"id\": \"/\" }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ("", manifest->id);
}
// url with fragment
{
auto& manifest = ParseManifest(
"{ \"start_url\": \"/start?query=a\", \"id\": \"/#abc\" }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ("", manifest->id);
}
// Smoke test.
{
auto& manifest =
ParseManifest(R"({ "start_url": "/start?query=a", "id": "foo" })");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ("foo", manifest->id);
}
}
TEST_F(ManifestParserTest, StartURLParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "start_url": "land.html" })");
ASSERT_EQ(manifest->start_url, KURL(DefaultDocumentUrl(), "land.html"));
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Whitespaces.
{
auto& manifest = ParseManifest(R"({ "start_url": " land.html " })");
ASSERT_EQ(manifest->start_url, KURL(DefaultDocumentUrl(), "land.html"));
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if property isn't a string.
{
auto& manifest = ParseManifest(R"({ "start_url": {} })");
ASSERT_TRUE(manifest->start_url.IsEmpty());
ASSERT_EQ(String(), manifest->id);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'start_url' ignored, type string expected.",
errors()[0]);
}
// Don't parse if property isn't a string.
{
auto& manifest = ParseManifest(R"({ "start_url": 42 })");
ASSERT_TRUE(manifest->start_url.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'start_url' ignored, type string expected.",
errors()[0]);
}
// Don't parse if property isn't a valid URL.
{
auto& manifest =
ParseManifest(R"({ "start_url": "http://www.google.ca:a" })");
ASSERT_TRUE(manifest->start_url.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'start_url' ignored, URL is invalid.", errors()[0]);
}
// Absolute start_url, same origin with document.
{
auto& manifest =
ParseManifestWithURLs(R"({ "start_url": "http://foo.com/land.html" })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->start_url.GetString(), "http://foo.com/land.html");
EXPECT_EQ(0u, GetErrorCount());
}
// Absolute start_url, cross origin with document.
{
auto& manifest =
ParseManifestWithURLs(R"({ "start_url": "http://bar.com/land.html" })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_TRUE(manifest->start_url.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'start_url' ignored, should "
"be same origin as document.",
errors()[0]);
}
// Resolving has to happen based on the manifest_url.
{
auto& manifest =
ParseManifestWithURLs(R"({ "start_url": "land.html" })",
KURL("http://foo.com/landing/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->start_url.GetString(),
"http://foo.com/landing/land.html");
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, ScopeParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(
R"({ "scope": "land", "start_url": "land/landing.html" })");
ASSERT_EQ(manifest->scope, KURL(DefaultDocumentUrl(), "land"));
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Whitespaces.
{
auto& manifest = ParseManifest(
R"({ "scope": " land ", "start_url": "land/landing.html" })");
ASSERT_EQ(manifest->scope, KURL(DefaultDocumentUrl(), "land"));
EXPECT_EQ(0u, GetErrorCount());
}
// Return the default value if the property isn't a string.
{
auto& manifest = ParseManifest(R"({ "scope": {} })");
ASSERT_EQ(manifest->scope.GetString(), DefaultDocumentUrl().BaseAsString());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'scope' ignored, type string expected.", errors()[0]);
}
// Return the default value if property isn't a string.
{
auto& manifest = ParseManifest(
R"({ "scope": 42,
"start_url": "http://foo.com/land/landing.html" })");
ASSERT_EQ(manifest->scope, KURL(DefaultDocumentUrl(), "land/"));
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'scope' ignored, type string expected.", errors()[0]);
}
// Absolute scope, start URL is in scope.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "http://foo.com/land",
"start_url": "http://foo.com/land/landing.html" })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->scope.GetString(), "http://foo.com/land");
EXPECT_EQ(0u, GetErrorCount());
}
// Absolute scope, start URL is not in scope.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "http://foo.com/land",
"start_url": "http://foo.com/index.html" })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->scope.GetString(), DefaultDocumentUrl().BaseAsString());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'scope' ignored. Start url should be within scope "
"of scope URL.",
errors()[0]);
}
// Absolute scope, start URL has different origin than scope URL.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "http://foo.com/land",
"start_url": "http://bar.com/land/landing.html" })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->scope.GetString(), DefaultDocumentUrl().BaseAsString());
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'start_url' ignored, should be same origin as document.",
errors()[0]);
EXPECT_EQ(
"property 'scope' ignored. Start url should be within scope "
"of scope URL.",
errors()[1]);
}
// scope and start URL have diferent origin than document URL.
{
KURL document_url("http://bar.com/index.html");
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "http://foo.com/land",
"start_url": "http://foo.com/land/landing.html" })",
KURL("http://foo.com/manifest.json"), document_url);
ASSERT_EQ(manifest->scope.GetString(), document_url.BaseAsString());
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'start_url' ignored, should be same origin as document.",
errors()[0]);
EXPECT_EQ(
"property 'scope' ignored. Start url should be within scope "
"of scope URL.",
errors()[1]);
}
// No start URL. Document URL is in a subdirectory of scope.
{
auto& manifest =
ParseManifestWithURLs(R"({ "scope": "http://foo.com/land" })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/land/site/index.html"));
ASSERT_EQ(manifest->scope.GetString(), "http://foo.com/land");
ASSERT_EQ(0u, GetErrorCount());
}
// No start URL. Document is out of scope.
{
KURL document_url("http://foo.com/index.html");
auto& manifest =
ParseManifestWithURLs(R"({ "scope": "http://foo.com/land" })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->scope.GetString(), document_url.BaseAsString());
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'scope' ignored. Start url should be within scope "
"of scope URL.",
errors()[0]);
}
// Resolving has to happen based on the manifest_url.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "treasure" })", KURL("http://foo.com/map/manifest.json"),
KURL("http://foo.com/map/treasure/island/index.html"));
ASSERT_EQ(manifest->scope.GetString(), "http://foo.com/map/treasure");
EXPECT_EQ(0u, GetErrorCount());
}
// Scope is parent directory.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": ".." })", KURL("http://foo.com/map/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->scope.GetString(), "http://foo.com/");
EXPECT_EQ(0u, GetErrorCount());
}
// Scope tries to go up past domain.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "../.." })", KURL("http://foo.com/map/manifest.json"),
KURL("http://foo.com/index.html"));
ASSERT_EQ(manifest->scope.GetString(), "http://foo.com/");
EXPECT_EQ(0u, GetErrorCount());
}
// Scope defaults to start_url with the filename, query, and fragment removed.
{
auto& manifest = ParseManifest(R"({ "start_url": "land/landing.html" })");
ASSERT_EQ(manifest->scope, KURL(DefaultDocumentUrl(), "land/"));
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest =
ParseManifest(R"({ "start_url": "land/land/landing.html" })");
ASSERT_EQ(manifest->scope, KURL(DefaultDocumentUrl(), "land/land/"));
EXPECT_EQ(0u, GetErrorCount());
}
// Scope defaults to document_url if start_url is not present.
{
auto& manifest = ParseManifest("{}");
ASSERT_EQ(manifest->scope, KURL(DefaultDocumentUrl(), "."));
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, DisplayParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "display": "browser" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kBrowser);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "display": " browser " })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kBrowser);
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "display": {} })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'display' ignored,"
" type string expected.",
errors()[0]);
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "display": 42 })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'display' ignored,"
" type string expected.",
errors()[0]);
}
// Parse fails if string isn't known.
{
auto& manifest = ParseManifest(R"({ "display": "browser_something" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("unknown 'display' value ignored.", errors()[0]);
}
// Accept 'fullscreen'.
{
auto& manifest = ParseManifest(R"({ "display": "fullscreen" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kFullscreen);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'standalone'.
{
auto& manifest = ParseManifest(R"({ "display": "standalone" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kStandalone);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'minimal-ui'.
{
auto& manifest = ParseManifest(R"({ "display": "minimal-ui" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kMinimalUi);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'browser'.
{
auto& manifest = ParseManifest(R"({ "display": "browser" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kBrowser);
EXPECT_EQ(0u, GetErrorCount());
}
// Case insensitive.
{
auto& manifest = ParseManifest(R"({ "display": "BROWSER" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kBrowser);
EXPECT_EQ(0u, GetErrorCount());
}
// Parsing fails for 'window-controls-overlay' when WCO flag is disabled.
{
ScopedWebAppWindowControlsOverlayForTest window_controls_overlay(false);
auto& manifest =
ParseManifest(R"({ "display": "window-controls-overlay" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("inapplicable 'display' value ignored.", errors()[0]);
}
// Parsing fails for 'window-controls-overlay' when WCO flag is enabled.
{
ScopedWebAppWindowControlsOverlayForTest window_controls_overlay(true);
auto& manifest =
ParseManifest(R"({ "display": "window-controls-overlay" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("inapplicable 'display' value ignored.", errors()[0]);
}
// Parsing fails for 'tabbed' when flag is disabled.
{
ScopedWebAppTabStripForTest tabbed(false);
auto& manifest = ParseManifest(R"({ "display": "tabbed" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("inapplicable 'display' value ignored.", errors()[0]);
}
// Parsing fails for 'tabbed' when flag is enabled.
{
ScopedWebAppTabStripForTest tabbed(true);
auto& manifest = ParseManifest(R"({ "display": "tabbed" })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kUndefined);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("inapplicable 'display' value ignored.", errors()[0]);
}
}
TEST_F(ManifestParserTest, DisplayOverrideParseRules) {
// Smoke test: if no display_override, no value.
{
auto& manifest = ParseManifest(R"({ "display_override": [] })");
EXPECT_TRUE(manifest->display_override.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if not array, value will be ignored
{
auto& manifest = ParseManifest(R"({ "display_override": 23 })");
EXPECT_TRUE(manifest->display_override.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'display_override' ignored, type array expected.",
errors()[0]);
}
// Smoke test: if array value is not a string, it will be ignored
{
auto& manifest = ParseManifest(R"({ "display_override": [ 23 ] })");
EXPECT_TRUE(manifest->display_override.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if array value is not not recognized, it will be ignored
{
auto& manifest = ParseManifest(R"({ "display_override": [ "test" ] })");
EXPECT_TRUE(manifest->display_override.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Case insensitive
{
auto& manifest = ParseManifest(R"({ "display_override": [ "BROWSER" ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kBrowser);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespace
{
auto& manifest =
ParseManifest(R"({ "display_override": [ " browser " ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kBrowser);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'browser'
{
auto& manifest = ParseManifest(R"({ "display_override": [ "browser" ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kBrowser);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'browser', 'minimal-ui'
{
auto& manifest =
ParseManifest(R"({ "display_override": [ "browser", "minimal-ui" ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kBrowser);
EXPECT_EQ(manifest->display_override[1],
blink::mojom::DisplayMode::kMinimalUi);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// if array value is not not recognized, it will be ignored
// Accept 'browser', 'minimal-ui'
{
auto& manifest = ParseManifest(
R"({ "display_override": [ 3, "browser", "invalid-display",
"minimal-ui" ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kBrowser);
EXPECT_EQ(manifest->display_override[1],
blink::mojom::DisplayMode::kMinimalUi);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// validate both display and display-override fields are parsed
// if array value is not not recognized, it will be ignored
// Accept 'browser', 'minimal-ui', 'standalone'
{
auto& manifest = ParseManifest(
R"({ "display": "standalone", "display_override": [ "browser",
"minimal-ui", "standalone" ] })");
EXPECT_EQ(manifest->display, blink::mojom::DisplayMode::kStandalone);
EXPECT_EQ(0u, GetErrorCount());
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kBrowser);
EXPECT_EQ(manifest->display_override[1],
blink::mojom::DisplayMode::kMinimalUi);
EXPECT_EQ(manifest->display_override[2],
blink::mojom::DisplayMode::kStandalone);
EXPECT_FALSE(IsManifestEmpty(manifest));
}
// validate duplicate entries.
// Accept 'browser', 'minimal-ui', 'browser'
{
auto& manifest =
ParseManifest(R"({ "display_override": [ "browser", "minimal-ui",
"browser" ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kBrowser);
EXPECT_EQ(manifest->display_override[1],
blink::mojom::DisplayMode::kMinimalUi);
EXPECT_EQ(manifest->display_override[2],
blink::mojom::DisplayMode::kBrowser);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Reject 'window-controls-overlay' when WCO flag is disabled.
{
ScopedWebAppWindowControlsOverlayForTest window_controls_overlay(false);
auto& manifest = ParseManifest(
R"({ "display_override": [ "window-controls-overlay" ] })");
EXPECT_TRUE(manifest->display_override.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'window-controls-overlay' when WCO flag is enabled.
{
ScopedWebAppWindowControlsOverlayForTest window_controls_overlay(true);
auto& manifest = ParseManifest(
R"({ "display_override": [ "window-controls-overlay" ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kWindowControlsOverlay);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Ignore 'tabbed' when flag is disabled.
{
ScopedWebAppTabStripForTest tabbed(false);
auto& manifest = ParseManifest(R"({ "display_override": [ "tabbed" ] })");
EXPECT_TRUE(manifest->display_override.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'tabbed' when flag is enabled.
{
ScopedWebAppTabStripForTest tabbed(true);
auto& manifest = ParseManifest(R"({ "display_override": [ "tabbed" ] })");
EXPECT_FALSE(manifest->display_override.IsEmpty());
EXPECT_EQ(manifest->display_override[0],
blink::mojom::DisplayMode::kTabbed);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, OrientationParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "orientation": "natural" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::NATURAL);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "orientation": "natural" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::NATURAL);
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "orientation": {} })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::DEFAULT);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'orientation' ignored, type string expected.",
errors()[0]);
}
// Don't parse if name isn't a string.
{
auto& manifest = ParseManifest(R"({ "orientation": 42 })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::DEFAULT);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'orientation' ignored, type string expected.",
errors()[0]);
}
// Parse fails if string isn't known.
{
auto& manifest = ParseManifest(R"({ "orientation": "naturalish" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::DEFAULT);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("unknown 'orientation' value ignored.", errors()[0]);
}
// Accept 'any'.
{
auto& manifest = ParseManifest(R"({ "orientation": "any" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::ANY);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'natural'.
{
auto& manifest = ParseManifest(R"({ "orientation": "natural" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::NATURAL);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'landscape'.
{
auto& manifest = ParseManifest(R"({ "orientation": "landscape" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::LANDSCAPE);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'landscape-primary'.
{
auto& manifest = ParseManifest(R"({ "orientation": "landscape-primary" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::LANDSCAPE_PRIMARY);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'landscape-secondary'.
{
auto& manifest =
ParseManifest(R"({ "orientation": "landscape-secondary" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::LANDSCAPE_SECONDARY);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'portrait'.
{
auto& manifest = ParseManifest(R"({ "orientation": "portrait" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::PORTRAIT);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'portrait-primary'.
{
auto& manifest = ParseManifest(R"({ "orientation": "portrait-primary" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::PORTRAIT_PRIMARY);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept 'portrait-secondary'.
{
auto& manifest =
ParseManifest(R"({ "orientation": "portrait-secondary" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::PORTRAIT_SECONDARY);
EXPECT_EQ(0u, GetErrorCount());
}
// Case insensitive.
{
auto& manifest = ParseManifest(R"({ "orientation": "LANDSCAPE" })");
EXPECT_EQ(manifest->orientation,
device::mojom::ScreenOrientationLockType::LANDSCAPE);
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, IconsParseRules) {
// Smoke test: if no icon, no value.
{
auto& manifest = ParseManifest(R"({ "icons": [] })");
EXPECT_TRUE(manifest->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if empty icon, no value.
{
auto& manifest = ParseManifest(R"({ "icons": [ {} ] })");
EXPECT_TRUE(manifest->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: icon with invalid src, no value.
{
auto& manifest = ParseManifest(R"({ "icons": [ { "icons": [] } ] })");
EXPECT_TRUE(manifest->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if icon with empty src, it will be present in the list.
{
auto& manifest = ParseManifest(R"({ "icons": [ { "src": "" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons.size(), 1u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/manifest.json");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if one icons with valid src, it will be present in the list.
{
auto& manifest = ParseManifest(R"({ "icons": [{ "src": "foo.jpg" }] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons.size(), 1u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/foo.jpg");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, ScreenshotsParseRules) {
// Smoke test: if no screenshot, no value.
{
auto& manifest = ParseManifest(R"({ "screenshots": [] })");
EXPECT_TRUE(manifest->screenshots.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if empty screenshot, no value.
{
auto& manifest = ParseManifest(R"({ "screenshots": [ {} ] })");
EXPECT_TRUE(manifest->screenshots.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: screenshot with invalid src, no value.
{
auto& manifest =
ParseManifest(R"({ "screenshots": [ { "screenshots": [] } ] })");
EXPECT_TRUE(manifest->screenshots.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if screenshot with empty src, it will be present in the list.
{
auto& manifest = ParseManifest(R"({ "screenshots": [ { "src": "" } ] })");
EXPECT_FALSE(manifest->screenshots.IsEmpty());
auto& screenshots = manifest->screenshots;
EXPECT_EQ(screenshots.size(), 1u);
EXPECT_EQ(screenshots[0]->src.GetString(), "http://foo.com/manifest.json");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if one icons has valid src, it will be present in the list.
{
auto& manifest =
ParseManifest(R"({ "screenshots": [{ "src": "foo.jpg" }] })");
EXPECT_FALSE(manifest->screenshots.IsEmpty());
auto& screenshots = manifest->screenshots;
EXPECT_EQ(screenshots.size(), 1u);
EXPECT_EQ(screenshots[0]->src.GetString(), "http://foo.com/foo.jpg");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, IconSrcParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "foo.png" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->src, KURL(DefaultDocumentUrl(), "foo.png"));
EXPECT_EQ(0u, GetErrorCount());
}
// Whitespaces.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": " foo.png " } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->src, KURL(DefaultDocumentUrl(), "foo.png"));
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if property isn't a string.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": {} } ] })");
EXPECT_TRUE(manifest->icons.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'src' ignored, type string expected.", errors()[0]);
}
// Don't parse if property isn't a string.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": 42 } ] })");
EXPECT_TRUE(manifest->icons.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'src' ignored, type string expected.", errors()[0]);
}
// Resolving has to happen based on the document_url.
{
auto& manifest = ParseManifestWithURLs(
R"({ "icons": [ {"src": "icons/foo.png" } ] })",
KURL("http://foo.com/landing/index.html"), DefaultManifestUrl());
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->src.GetString(),
"http://foo.com/landing/icons/foo.png");
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, IconTypeParseRules) {
// Smoke test.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "type": "foo" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->type, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "type": " foo " } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->type, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if property isn't a string.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "type": {} } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_TRUE(manifest->icons[0]->type.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'type' ignored, type string expected.", errors()[0]);
}
// Don't parse if property isn't a string.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "type": 42 } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_TRUE(manifest->icons[0]->type.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'type' ignored, type string expected.", errors()[0]);
}
}
TEST_F(ManifestParserTest, IconSizesParseRules) {
// Smoke test.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "sizes": "42x42" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->sizes.size(), 1u);
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "sizes": " 42x42 " } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->sizes.size(), 1u);
EXPECT_EQ(0u, GetErrorCount());
}
// Ignore sizes if property isn't a string.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "sizes": {} } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->sizes.size(), 0u);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'sizes' ignored, type string expected.", errors()[0]);
}
// Ignore sizes if property isn't a string.
{
auto& manifest =
ParseManifest(R"({ "icons": [ {"src": "", "sizes": 42 } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->sizes.size(), 0u);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'sizes' ignored, type string expected.", errors()[0]);
}
// Smoke test: value correctly parsed.
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "sizes": "42x42 48x48" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons[0]->sizes[0], gfx::Size(42, 42));
EXPECT_EQ(icons[0]->sizes[1], gfx::Size(48, 48));
EXPECT_EQ(0u, GetErrorCount());
}
// <WIDTH>'x'<HEIGHT> and <WIDTH>'X'<HEIGHT> are equivalent.
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "sizes": "42X42 48X48" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons[0]->sizes[0], gfx::Size(42, 42));
EXPECT_EQ(icons[0]->sizes[1], gfx::Size(48, 48));
EXPECT_EQ(0u, GetErrorCount());
}
// Twice the same value is parsed twice.
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "sizes": "42X42 42x42" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons[0]->sizes[0], gfx::Size(42, 42));
EXPECT_EQ(icons[0]->sizes[1], gfx::Size(42, 42));
EXPECT_EQ(0u, GetErrorCount());
}
// Width or height can't start with 0.
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "sizes": "004X007 042x00" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->sizes.size(), 0u);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("found icon with no valid size.", errors()[0]);
}
// Width and height MUST contain digits.
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "sizes": "e4X1.0 55ax1e10" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->sizes.size(), 0u);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("found icon with no valid size.", errors()[0]);
}
// 'any' is correctly parsed and transformed to gfx::Size(0,0).
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "sizes": "any AnY ANY aNy" } ] })");
gfx::Size any = gfx::Size(0, 0);
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons[0]->sizes.size(), 4u);
EXPECT_EQ(icons[0]->sizes[0], any);
EXPECT_EQ(icons[0]->sizes[1], any);
EXPECT_EQ(icons[0]->sizes[2], any);
EXPECT_EQ(icons[0]->sizes[3], any);
EXPECT_EQ(0u, GetErrorCount());
}
// Some invalid width/height combinations.
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "sizes": "x 40xx 1x2x3 x42 42xx42" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->sizes.size(), 0u);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("found icon with no valid size.", errors()[0]);
}
}
TEST_F(ManifestParserTest, IconPurposeParseRules) {
const String kPurposeParseStringError =
"property 'purpose' ignored, type string expected.";
const String kPurposeInvalidValueError =
"found icon with no valid purpose; ignoring it.";
const String kSomeInvalidPurposeError =
"found icon with one or more invalid purposes; those purposes are "
"ignored.";
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": "any" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->purpose.size(), 1u);
EXPECT_EQ(0u, GetErrorCount());
}
// Trim leading and trailing whitespaces.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": " any " } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
EXPECT_EQ(manifest->icons[0]->purpose.size(), 1u);
EXPECT_EQ(0u, GetErrorCount());
}
// 'any' is added when property isn't present.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons[0]->purpose.size(), 1u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::ANY);
EXPECT_EQ(0u, GetErrorCount());
}
// 'any' is added with error message when property isn't a string (is a
// number).
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": 42 } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons[0]->purpose.size(), 1u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::ANY);
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(kPurposeParseStringError, errors()[0]);
}
// 'any' is added with error message when property isn't a string (is a
// dictionary).
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": {} } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
EXPECT_EQ(icons[0]->purpose.size(), 1u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::ANY);
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(kPurposeParseStringError, errors()[0]);
}
// Smoke test: values correctly parsed.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": "Any Monochrome Maskable" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
ASSERT_EQ(icons[0]->purpose.size(), 3u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::ANY);
EXPECT_EQ(icons[0]->purpose[1],
mojom::blink::ManifestImageResource::Purpose::MONOCHROME);
EXPECT_EQ(icons[0]->purpose[2],
mojom::blink::ManifestImageResource::Purpose::MASKABLE);
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces between values.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": " Any Monochrome " } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
ASSERT_EQ(icons[0]->purpose.size(), 2u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::ANY);
EXPECT_EQ(icons[0]->purpose[1],
mojom::blink::ManifestImageResource::Purpose::MONOCHROME);
EXPECT_EQ(0u, GetErrorCount());
}
// Twice the same value is parsed twice.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": "monochrome monochrome" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
ASSERT_EQ(icons[0]->purpose.size(), 2u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::MONOCHROME);
EXPECT_EQ(icons[0]->purpose[1],
mojom::blink::ManifestImageResource::Purpose::MONOCHROME);
EXPECT_EQ(0u, GetErrorCount());
}
// Invalid icon purpose is ignored.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": "monochrome fizzbuzz" } ] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
ASSERT_EQ(icons[0]->purpose.size(), 1u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::MONOCHROME);
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(kSomeInvalidPurposeError, errors()[0]);
}
// If developer-supplied purpose is invalid, entire icon is removed.
{
auto& manifest = ParseManifest(R"({ "icons": [ {"src": "",
"purpose": "fizzbuzz" } ] })");
ASSERT_TRUE(manifest->icons.IsEmpty());
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(kPurposeInvalidValueError, errors()[0]);
}
// Two icons, one with an invalid purpose and the other normal.
{
auto& manifest = ParseManifest(
R"({ "icons": [ {"src": "", "purpose": "fizzbuzz" },
{"src": "" }] })");
EXPECT_FALSE(manifest->icons.IsEmpty());
auto& icons = manifest->icons;
ASSERT_EQ(1u, icons.size());
ASSERT_EQ(icons[0]->purpose.size(), 1u);
EXPECT_EQ(icons[0]->purpose[0],
mojom::blink::ManifestImageResource::Purpose::ANY);
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(kPurposeInvalidValueError, errors()[0]);
}
}
TEST_F(ManifestParserTest, ShortcutsParseRules) {
// Smoke test: if no shortcut, no value.
{
auto& manifest = ParseManifest(R"({ "shortcuts": [] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if empty shortcut, no value.
{
auto& manifest = ParseManifest(R"({ "shortcuts": [ {} ] })");
EXPECT_TRUE(manifest->icons.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[0]);
}
// Smoke test: shortcut with invalid name and url, it will not be present in
// the list.
{
auto& manifest =
ParseManifest(R"({ "shortcuts": [ { "shortcuts": [] } ] })");
EXPECT_TRUE(manifest->icons.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[0]);
}
// Smoke test: shortcut with no name, it will not be present in the list.
{
auto& manifest = ParseManifest(R"({ "shortcuts": [ { "url": "" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' of 'shortcut' not present.", errors()[0]);
}
// Smoke test: shortcut with no url, it will not be present in the list.
{
auto& manifest = ParseManifest(R"({ "shortcuts": [ { "name": "" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[0]);
}
// Smoke test: shortcut with empty name, and empty src, will not be present in
// the list.
{
auto& manifest =
ParseManifest(R"({ "shortcuts": [ { "name": "", "url": "" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' of 'shortcut' is an empty string.", errors()[0]);
}
// Smoke test: shortcut with valid (non-empty) name and src, will be present
// in the list.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [{ "name": "New Post", "url": "compose" }]
})");
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
auto& shortcuts = manifest->shortcuts;
EXPECT_EQ(shortcuts.size(), 1u);
EXPECT_EQ(shortcuts[0]->name, "New Post");
EXPECT_EQ(shortcuts[0]->url.GetString(), "http://foo.com/compose");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Validate only the first 10 shortcuts are parsed. The following manifest
// specifies 11 shortcuts, so the last one should not be in the result.
{
auto& manifest = ParseManifest(
R"({
"shortcuts": [
{
"name": "1",
"url": "1"
},
{
"name": "2",
"url": "2"
},
{
"name": "3",
"url": "3"
},
{
"name": "4",
"url": "4"
},
{
"name": "5",
"url": "5"
},
{
"name": "6",
"url": "6"
},
{
"name": "7",
"url": "7"
},
{
"name": "8",
"url": "8"
},
{
"name": "9",
"url": "9"
},
{
"name": "10",
"url": "10"
},
{
"name": "11",
"url": "11"
}
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'shortcuts' contains more than 10 valid elements, "
"only the first 10 are parsed.",
errors()[0]);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
auto& shortcuts = manifest->shortcuts;
EXPECT_EQ(shortcuts.size(), 10u);
EXPECT_EQ(shortcuts[9]->name, "10");
EXPECT_EQ(shortcuts[9]->url.GetString(), "http://foo.com/10");
}
}
TEST_F(ManifestParserTest, ShortcutNameParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "foo", "url": "NameParseTest" } ]
})");
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(manifest->shortcuts[0]->name, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": " foo ", "url": "NameParseTest"
} ] })");
ASSERT_EQ(manifest->shortcuts[0]->name, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if shortcut->name isn't present.
{
auto& manifest =
ParseManifest(R"({ "shortcuts": [ {"url": "NameParseTest" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' of 'shortcut' not present.", errors()[0]);
}
// Don't parse if shortcut->name isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": {}, "url": "NameParseTest" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' of 'shortcut' ignored, type string expected.",
errors()[0]);
}
// Don't parse if shortcut->name isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": 42, "url": "NameParseTest" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' of 'shortcut' ignored, type string expected.",
errors()[0]);
}
// Don't parse if shortcut->name is an empty string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "", "url": "NameParseTest" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' of 'shortcut' is an empty string.", errors()[0]);
}
}
TEST_F(ManifestParserTest, ShortcutShortNameParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "ShortNameParseTest", "short_name":
"foo", "url": "ShortNameParseTest" } ] })");
ASSERT_EQ(manifest->shortcuts[0]->short_name, "foo");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Shortcut member is parsed when no short_name is present
{
auto& manifest =
ParseManifest(R"({ "shortcuts": [ {"name": "ShortNameParseTest", "url":
"ShortNameParseTest" } ] })");
ASSERT_TRUE(manifest->shortcuts[0]->short_name.IsNull());
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "ShortNameParseTest", "short_name":
" foo ", "url": "ShortNameParseTest" } ] })");
ASSERT_EQ(manifest->shortcuts[0]->short_name, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse short_name if it isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "ShortNameParseTest", "short_name":
{}, "url": "ShortNameParseTest" } ] })");
ASSERT_TRUE(manifest->shortcuts[0]->short_name.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'short_name' of 'shortcut' ignored, type string expected.",
errors()[0]);
}
// Don't parse short_name if it isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "ShortNameParseTest", "short_name":
42, "url": "ShortNameParseTest" } ] })");
ASSERT_TRUE(manifest->shortcuts[0]->short_name.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'short_name' of 'shortcut' ignored, type string expected.",
errors()[0]);
}
}
TEST_F(ManifestParserTest, ShortcutDescriptionParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {
"name": "DescriptionParseTest",
"description": "foo",
"url": "DescriptionParseTest" } ]
})");
ASSERT_EQ(manifest->shortcuts[0]->description, "foo");
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Shortcut member is parsed when no description is present
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "DescriptionParseTest", "url":
"DescriptionParseTest" } ] })");
ASSERT_TRUE(manifest->shortcuts[0]->description.IsNull());
ASSERT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {
"name": "DescriptionParseTest",
"description": " foo ",
"url": "DescriptionParseTest" } ]
})");
ASSERT_EQ(manifest->shortcuts[0]->description, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse description if it isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {
"name": "DescriptionParseTest",
"description": {},
"url": "DescriptionParseTest" } ]
})");
ASSERT_TRUE(manifest->shortcuts[0]->description.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'description' of 'shortcut' ignored, type string expected.",
errors()[0]);
}
// Don't parse description if it isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {
"name": "DescriptionParseTest",
"description": 42,
"url": "DescriptionParseTest" } ]
})");
ASSERT_TRUE(manifest->shortcuts[0]->description.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'description' of 'shortcut' ignored, type string expected.",
errors()[0]);
}
}
TEST_F(ManifestParserTest, ShortcutUrlParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "UrlParseTest", "url": "foo" } ]
})");
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(manifest->shortcuts[0]->url, KURL(DefaultDocumentUrl(), "foo"));
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test. Don't parse (with an error) when url is not present.
{
auto& manifest = ParseManifest(R"({ "shortcuts": [ { "name": "" } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[0]);
}
// Whitespaces.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "UrlParseTest", "url": " foo " } ] })");
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(manifest->shortcuts[0]->url, KURL(DefaultDocumentUrl(), "foo"));
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if url isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "UrlParseTest", "url": {} } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'url' ignored, type string expected.", errors()[0]);
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[1]);
}
// Don't parse if url isn't a string.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "UrlParseTest", "url": 42 } ] })");
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'url' ignored, type string expected.", errors()[0]);
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[1]);
}
// Resolving has to happen based on the manifest_url.
{
auto& manifest = ParseManifestWithURLs(
R"({ "shortcuts": [ {"name": "UrlParseTest", "url": "foo" } ]
})",
KURL("http://foo.com/landing/manifest.json"), DefaultDocumentUrl());
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(manifest->shortcuts[0]->url.GetString(),
"http://foo.com/landing/foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Shortcut url should have same origin as the document url.
{
auto& manifest = ParseManifestWithURLs(
R"({ "shortcuts": [ {"name": "UrlParseTest", "url":
"http://bar.com/landing" } ]
})",
KURL("http://foo.com/landing/manifest.json"), DefaultDocumentUrl());
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'url' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[1]);
}
// Shortcut url should be within the manifest scope.
// The scope will be http://foo.com/landing.
// The shortcut_url will be http://foo.com/shortcut which is in not in scope.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "http://foo.com/landing", "shortcuts": [ {"name":
"UrlParseTest", "url": "shortcut" } ] })",
KURL("http://foo.com/manifest.json"),
KURL("http://foo.com/landing/index.html"));
EXPECT_TRUE(manifest->shortcuts.IsEmpty());
ASSERT_EQ(manifest->scope.GetString(), "http://foo.com/landing");
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'url' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ("property 'url' of 'shortcut' not present.", errors()[1]);
}
// Shortcut url should be within the manifest scope.
// The scope will be http://foo.com/land.
// The shortcut_url will be http://foo.com/land/shortcut which is in scope.
{
auto& manifest = ParseManifestWithURLs(
R"({ "scope": "http://foo.com/land", "start_url":
"http://foo.com/land/landing.html", "shortcuts": [ {"name":
"UrlParseTest", "url": "shortcut" } ] })",
KURL("http://foo.com/land/manifest.json"),
KURL("http://foo.com/index.html"));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
ASSERT_EQ(manifest->scope.GetString(), "http://foo.com/land");
EXPECT_EQ(manifest->shortcuts[0]->url.GetString(),
"http://foo.com/land/shortcut");
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, ShortcutIconsParseRules) {
// Smoke test: if no icons, shortcut->icons has no value.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "IconParseTest", "url": "foo",
"icons": [] } ] })");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_TRUE(manifest->shortcuts[0]->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if empty icon, shortcut->icons has no value.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "IconParseTest", "url": "foo",
"icons": [{}] } ] })");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_TRUE(manifest->shortcuts[0]->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: icon with invalid src, shortcut->icons has no value.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "IconParseTest", "url": "foo",
"icons": [{ "icons": [] }] } ] })");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_TRUE(manifest->shortcuts[0]->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if icon with empty src, it will be present in shortcut->icons.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "IconParseTest", "url": "foo",
"icons": [ { "src": "" } ] } ] })");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_FALSE(manifest->shortcuts[0]->icons.IsEmpty());
auto& icons = manifest->shortcuts[0]->icons;
EXPECT_EQ(icons.size(), 1u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/manifest.json");
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if one icon with valid src, it will be present in
// shortcut->icons.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "IconParseTest", "url": "foo",
"icons": [ { "src": "foo.jpg" } ] } ] })");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_FALSE(manifest->shortcuts[0]->icons.IsEmpty());
auto& icons = manifest->shortcuts[0]->icons;
EXPECT_EQ(icons.size(), 1u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/foo.jpg");
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if >1 icon with valid src, it will be present in
// shortcut->icons.
{
auto& manifest = ParseManifest(
R"({ "shortcuts": [ {"name": "IconParseTest", "url": "foo",
"icons": [ {"src": "foo.jpg"}, {"src": "bar.jpg"} ] } ] })");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->shortcuts.IsEmpty());
EXPECT_FALSE(manifest->shortcuts[0]->icons.IsEmpty());
auto& icons = manifest->shortcuts[0]->icons;
EXPECT_EQ(icons.size(), 2u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/foo.jpg");
EXPECT_EQ(icons[1]->src.GetString(), "http://foo.com/bar.jpg");
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, FileHandlerParseRules) {
base::test::ScopedFeatureList feature_list(
blink::features::kFileHandlingIcons);
// Does not contain file_handlers field.
{
auto& manifest = ParseManifest("{ }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// file_handlers is not an array.
{
auto& manifest = ParseManifest(R"({ "file_handlers": { } })");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'file_handlers' ignored, type array expected.",
errors()[0]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Contains file_handlers field but no file handlers.
{
auto& manifest = ParseManifest(R"({ "file_handlers": [ ] })");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entries must be objects.
{
auto& manifest = ParseManifest(R"({
"file_handlers": [
"hello world"
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("FileHandler ignored, type object expected.", errors()[0]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry without an action is invalid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"accept": {
"image/png": [
".png"
]
}
}
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("FileHandler ignored. Property 'action' is invalid.",
errors()[0]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry with an action on a different origin is invalid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "https://example.com/files",
"accept": {
"image/png": [
".png"
]
}
}
]
})");
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'action' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ("FileHandler ignored. Property 'action' is invalid.",
errors()[1]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry with an action outside of the manifest scope is invalid.
{
auto& manifest = ParseManifest(
R"({
"start_url": "/app/",
"scope": "/app/",
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": [
".png"
]
}
}
]
})");
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'action' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ("FileHandler ignored. Property 'action' is invalid.",
errors()[1]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry without a name is valid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": [
".png"
]
}
}
]
})");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(1u, manifest->file_handlers.size());
}
// Entry without an icon is valid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"action": "/files",
"accept": {
"image/png": [
".png"
]
}
}
]
})");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(1u, manifest->file_handlers.size());
}
// Entry without an accept is invalid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files"
}
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("FileHandler ignored. Property 'accept' is invalid.",
errors()[0]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry where accept is not an object is invalid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": "image/png"
}
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("FileHandler ignored. Property 'accept' is invalid.",
errors()[0]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry where accept extensions are not an array or string is invalid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": {}
}
}
]
})");
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'accept' type ignored. File extensions must be type array or "
"type string.",
errors()[0]);
EXPECT_EQ("FileHandler ignored. Property 'accept' is invalid.",
errors()[1]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry where accept extensions are not an array or string is invalid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": 3
}
}
]
})");
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'accept' type ignored. File extensions must be type array or "
"type string.",
errors()[0]);
EXPECT_EQ("FileHandler ignored. Property 'accept' is invalid.",
errors()[1]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Entry with an empty list of extensions is not valid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": []
}
}
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("FileHandler ignored. Property 'accept' is invalid.",
errors()[0]);
EXPECT_EQ(0u, manifest->file_handlers.size());
}
// Extensions that do not start with a '.' are invalid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": [
"png"
]
}
}
]
})");
auto& file_handlers = manifest->file_handlers;
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'accept' file extension ignored, must start with a '.'.",
errors()[0]);
EXPECT_EQ("FileHandler ignored. Property 'accept' is invalid.",
errors()[1]);
ASSERT_EQ(0u, file_handlers.size());
}
// Invalid MIME types and those with parameters are stripped.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "Foo",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image_png": ".png",
"foo/bar": ".foo",
"application/foobar;parameter=25": ".foobar",
"application/its+xml": ".itsml"
}
}
]
})");
auto& file_handlers = manifest->file_handlers;
ASSERT_EQ(3u, GetErrorCount());
EXPECT_EQ("invalid MIME type: image_png", errors()[0]);
EXPECT_EQ("invalid MIME type: foo/bar", errors()[1]);
EXPECT_EQ("invalid MIME type: application/foobar;parameter=25",
errors()[2]);
ASSERT_EQ(1u, file_handlers.size());
EXPECT_EQ("Foo", file_handlers[0]->name);
EXPECT_EQ("http://foo.com/foo.jpg",
file_handlers[0]->icons[0]->src.GetString());
EXPECT_EQ(KURL("http://foo.com/files"), file_handlers[0]->action);
ASSERT_EQ(1U, file_handlers[0]->accept.size());
ASSERT_TRUE(file_handlers[0]->accept.Contains("application/its+xml"));
EXPECT_EQ(0u, file_handlers[0]
->accept.find("application/its+xml")
->value.Contains(".foobar"));
}
// Extensions specified as a single string is valid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": ".png"
}
}
]
})");
auto& file_handlers = manifest->file_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, file_handlers.size());
EXPECT_EQ("name", file_handlers[0]->name);
EXPECT_EQ("http://foo.com/foo.jpg",
file_handlers[0]->icons[0]->src.GetString());
EXPECT_EQ(KURL("http://foo.com/files"), file_handlers[0]->action);
ASSERT_TRUE(file_handlers[0]->accept.Contains("image/png"));
ASSERT_EQ(1u, file_handlers[0]->accept.find("image/png")->value.size());
EXPECT_EQ(".png", file_handlers[0]->accept.find("image/png")->value[0]);
}
// An array of extensions is valid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "name",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/jpg": [
".jpg",
".jpeg"
]
}
}
]
})");
auto& file_handlers = manifest->file_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, file_handlers.size());
EXPECT_EQ("name", file_handlers[0]->name);
EXPECT_EQ("http://foo.com/foo.jpg",
file_handlers[0]->icons[0]->src.GetString());
EXPECT_EQ(KURL("http://foo.com/files"), file_handlers[0]->action);
ASSERT_TRUE(file_handlers[0]->accept.Contains("image/jpg"));
ASSERT_EQ(2u, file_handlers[0]->accept.find("image/jpg")->value.size());
EXPECT_EQ(".jpg", file_handlers[0]->accept.find("image/jpg")->value[0]);
EXPECT_EQ(".jpeg", file_handlers[0]->accept.find("image/jpg")->value[1]);
}
// Multiple mime types are valid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "Image",
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": ".png",
"image/jpg": [
".jpg",
".jpeg"
]
}
}
]
})");
auto& file_handlers = manifest->file_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, file_handlers.size());
EXPECT_EQ("Image", file_handlers[0]->name);
EXPECT_EQ("http://foo.com/foo.jpg",
file_handlers[0]->icons[0]->src.GetString());
EXPECT_EQ(KURL("http://foo.com/files"), file_handlers[0]->action);
ASSERT_TRUE(file_handlers[0]->accept.Contains("image/jpg"));
ASSERT_EQ(2u, file_handlers[0]->accept.find("image/jpg")->value.size());
EXPECT_EQ(".jpg", file_handlers[0]->accept.find("image/jpg")->value[0]);
EXPECT_EQ(".jpeg", file_handlers[0]->accept.find("image/jpg")->value[1]);
ASSERT_TRUE(file_handlers[0]->accept.Contains("image/png"));
ASSERT_EQ(1u, file_handlers[0]->accept.find("image/png")->value.size());
EXPECT_EQ(".png", file_handlers[0]->accept.find("image/png")->value[0]);
}
// file_handlers with multiple entries is valid.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "Graph",
"icons": [{ "src": "graph.jpg" }],
"action": "/graph",
"accept": {
"text/svg+xml": [
".svg",
".graph"
]
}
},
{
"name": "Raw",
"icons": [{ "src": "raw.jpg" }],
"action": "/raw",
"accept": {
"text/csv": ".csv"
}
}
]
})");
auto& file_handlers = manifest->file_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(2u, file_handlers.size());
EXPECT_EQ("Graph", file_handlers[0]->name);
EXPECT_EQ("http://foo.com/graph.jpg",
file_handlers[0]->icons[0]->src.GetString());
EXPECT_EQ(KURL("http://foo.com/graph"), file_handlers[0]->action);
ASSERT_TRUE(file_handlers[0]->accept.Contains("text/svg+xml"));
ASSERT_EQ(2u, file_handlers[0]->accept.find("text/svg+xml")->value.size());
EXPECT_EQ(".svg", file_handlers[0]->accept.find("text/svg+xml")->value[0]);
EXPECT_EQ(".graph",
file_handlers[0]->accept.find("text/svg+xml")->value[1]);
EXPECT_EQ("Raw", file_handlers[1]->name);
EXPECT_EQ("http://foo.com/raw.jpg",
file_handlers[1]->icons[0]->src.GetString());
EXPECT_EQ(KURL("http://foo.com/raw"), file_handlers[1]->action);
ASSERT_TRUE(file_handlers[1]->accept.Contains("text/csv"));
ASSERT_EQ(1u, file_handlers[1]->accept.find("text/csv")->value.size());
EXPECT_EQ(".csv", file_handlers[1]->accept.find("text/csv")->value[0]);
}
// file_handlers limits the total number of file extensions. Everything after
// and including the file handler that hits the extension limit
{
ManifestParser::SetFileHandlerExtensionLimitForTesting(5);
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"name": "Raw",
"action": "/raw",
"accept": {
"text/csv": ".csv"
}
},
{
"name": "Graph",
"action": "/graph",
"accept": {
"text/svg+xml": [
".graph1",
".graph2",
".graph3",
".graph4",
".graph5",
".graph6"
]
}
},
{
"name": "Data",
"action": "/data",
"accept": {
"text/plain": [
".data"
]
}
}
]
})");
auto& file_handlers = manifest->file_handlers;
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'accept': too many total file extensions, ignoring "
"extensions starting from \".graph5\"",
errors()[0]);
EXPECT_EQ("FileHandler ignored. Property 'accept' is invalid.",
errors()[1]);
ASSERT_EQ(2u, file_handlers.size());
EXPECT_EQ("Raw", file_handlers[0]->name);
EXPECT_EQ(1u, file_handlers[0]->accept.find("text/csv")->value.size());
EXPECT_EQ("Graph", file_handlers[1]->name);
auto accept_map = file_handlers[1]->accept.find("text/svg+xml")->value;
ASSERT_EQ(4u, accept_map.size());
EXPECT_TRUE(accept_map.Contains(".graph1"));
EXPECT_TRUE(accept_map.Contains(".graph2"));
EXPECT_TRUE(accept_map.Contains(".graph3"));
EXPECT_TRUE(accept_map.Contains(".graph4"));
}
// Test `launch_type` parsing and default.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"action": "/files",
"accept": {
"image/png": ".png"
},
"launch_type": "multiple-clients"
},
{
"action": "/files2",
"accept": {
"image/jpeg": ".jpeg"
},
"launch_type": "single-client"
},
{
"action": "/files3",
"accept": {
"text/plain": ".txt"
}
},
{
"action": "/files4",
"accept": {
"text/csv": ".csv"
},
"launch_type": "multiple-client"
}
]
})");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->file_handlers.IsEmpty());
ASSERT_EQ(4U, manifest->file_handlers.size());
EXPECT_EQ(mojom::blink::ManifestFileHandler::LaunchType::kMultipleClients,
manifest->file_handlers[0]->launch_type);
EXPECT_EQ(mojom::blink::ManifestFileHandler::LaunchType::kSingleClient,
manifest->file_handlers[1]->launch_type);
EXPECT_EQ(mojom::blink::ManifestFileHandler::LaunchType::kSingleClient,
manifest->file_handlers[2]->launch_type);
// This one has a typo.
EXPECT_EQ(mojom::blink::ManifestFileHandler::LaunchType::kSingleClient,
manifest->file_handlers[3]->launch_type);
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("launch_type value 'multiple-client' ignored, unknown value.",
errors()[0]);
}
}
TEST_F(ManifestParserTest, FileHandlerIconsParseRules) {
// Smoke test: if no icons, file_handler->icon has no value.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"icons": [],
"action": "/files",
"accept": {
"image/png": ".png"
}
}
]
})");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->file_handlers.IsEmpty());
EXPECT_TRUE(manifest->file_handlers[0]->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if empty icon, file_handler->icons has no value.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"icons": [{}],
"action": "/files",
"accept": {
"image/png": ".png"
}
}
]
})");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->file_handlers.IsEmpty());
EXPECT_TRUE(manifest->file_handlers[0]->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: icon with invalid src, file_handler->icons has no value.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"icons": [{ "icons": [] }],
"action": "/files",
"accept": {
"image/png": ".png"
}
}
]
})");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->file_handlers.IsEmpty());
EXPECT_TRUE(manifest->file_handlers[0]->icons.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if icon with empty src, it will be present in
// file_handler->icons.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"icons": [{ "src": "" }],
"action": "/files",
"accept": {
"image/png": ".png"
}
}
]
})");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->file_handlers.IsEmpty());
EXPECT_FALSE(manifest->file_handlers[0]->icons.IsEmpty());
auto& icons = manifest->file_handlers[0]->icons;
EXPECT_EQ(icons.size(), 1u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/manifest.json");
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if one icon with valid src, it will be present in
// file_handler->icons.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"icons": [{ "src": "foo.jpg" }],
"action": "/files",
"accept": {
"image/png": ".png"
}
}
]
})");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->file_handlers.IsEmpty());
EXPECT_FALSE(manifest->file_handlers[0]->icons.IsEmpty());
auto& icons = manifest->file_handlers[0]->icons;
EXPECT_EQ(icons.size(), 1u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/foo.jpg");
EXPECT_EQ(0u, GetErrorCount());
}
// Smoke test: if >1 icon with valid src, it will be present in
// file_handler->icons.
{
auto& manifest = ParseManifest(
R"({
"file_handlers": [
{
"icons": [{ "src": "foo.jpg" }, { "src": "bar.jpg" }],
"action": "/files",
"accept": {
"image/png": ".png"
}
}
]
})");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_FALSE(manifest->file_handlers.IsEmpty());
EXPECT_FALSE(manifest->file_handlers[0]->icons.IsEmpty());
auto& icons = manifest->file_handlers[0]->icons;
EXPECT_EQ(icons.size(), 2u);
EXPECT_EQ(icons[0]->src.GetString(), "http://foo.com/foo.jpg");
EXPECT_EQ(icons[1]->src.GetString(), "http://foo.com/bar.jpg");
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, ProtocolHandlerParseRules) {
// Does not contain protocol_handlers field.
{
auto& manifest = ParseManifest("{ }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(0u, manifest->protocol_handlers.size());
}
// protocol_handlers is not an array.
{
auto& manifest = ParseManifest(R"({ "protocol_handlers": { } })");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'protocol_handlers' ignored, type array expected.",
errors()[0]);
EXPECT_EQ(0u, manifest->protocol_handlers.size());
}
// Contains protocol_handlers field but no protocol handlers.
{
auto& manifest = ParseManifest(R"({ "protocol_handlers": [ ] })");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(0u, manifest->protocol_handlers.size());
}
// Entries must be objects
{
auto& manifest = ParseManifest(R"({
"protocol_handlers": [
"hello world"
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("protocol_handlers entry ignored, type object expected.",
errors()[0]);
EXPECT_EQ(0u, manifest->protocol_handlers.size());
}
// A valid protocol handler.
{
auto& manifest = ParseManifest(R"({
"protocol_handlers": [
{
"protocol": "web+github",
"url": "http://foo.com/?profile=%s"
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, protocol_handlers.size());
ASSERT_EQ("web+github", protocol_handlers[0]->protocol);
ASSERT_EQ("http://foo.com/?profile=%s", protocol_handlers[0]->url);
}
// An invalid protocol handler with the URL not being from the same origin.
{
auto& manifest = ParseManifest(R"({
"protocol_handlers": [
{
"protocol": "web+github",
"url": "http://bar.com/?profile=%s"
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'url' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ(
"protocol_handlers entry ignored, required property 'url' is invalid.",
errors()[1]);
ASSERT_EQ(0u, protocol_handlers.size());
}
// An invalid protocol handler with the URL not being within manifest scope.
{
auto& manifest = ParseManifest(
R"({
"start_url": "/app/",
"scope": "/app/",
"protocol_handlers": [
{
"protocol": "web+github",
"url": "/?profile=%s"
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'url' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ(
"protocol_handlers entry ignored, required property 'url' is invalid.",
errors()[1]);
ASSERT_EQ(0u, protocol_handlers.size());
}
// An invalid protocol handler with no value for protocol.
{
auto& manifest = ParseManifest(R"({
"protocol_handlers": [
{
"url": "http://foo.com/?profile=%s"
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"protocol_handlers entry ignored, required property 'protocol' is "
"missing.",
errors()[0]);
ASSERT_EQ(0u, protocol_handlers.size());
}
// An invalid protocol handler with no url.
{
auto& manifest = ParseManifest(R"({
"protocol_handlers": [
{
"protocol": "web+github"
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"protocol_handlers entry ignored, required property 'url' is missing.",
errors()[0]);
ASSERT_EQ(0u, protocol_handlers.size());
}
// An invalid protocol handler with a url that doesn't contain the %s token.
{
auto& manifest = ParseManifest(R"({
"protocol_handlers": [
{
"protocol": "web+github",
"url": "http://foo.com/?profile="
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"The url provided ('http://foo.com/?profile=') does not contain '%s'.",
errors()[0]);
EXPECT_EQ(
"protocol_handlers entry ignored, required property 'url' is invalid.",
errors()[1]);
ASSERT_EQ(0u, protocol_handlers.size());
}
// An invalid protocol handler with a non-allowed protocol.
{
auto& manifest = ParseManifest(R"({
"protocol_handlers": [
{
"protocol": "github",
"url": "http://foo.com/?profile="
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"The scheme 'github' doesn't belong to the scheme allowlist. Please "
"prefix non-allowlisted schemes with the string 'web+'.",
errors()[0]);
EXPECT_EQ(
"protocol_handlers entry ignored, required property 'protocol' is "
"invalid.",
errors()[1]);
ASSERT_EQ(0u, protocol_handlers.size());
}
// Multiple valid protocol handlers
{
auto& manifest = ParseManifest(
R"({
"protocol_handlers": [
{
"protocol": "web+github",
"url": "http://foo.com/?profile=%s"
},
{
"protocol": "web+test",
"url": "http://foo.com/?test=%s"
},
{
"protocol": "web+relative",
"url": "relativeURL=%s"
}
]
})");
auto& protocol_handlers = manifest->protocol_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(3u, protocol_handlers.size());
ASSERT_EQ("web+github", protocol_handlers[0]->protocol);
ASSERT_EQ("http://foo.com/?profile=%s", protocol_handlers[0]->url);
ASSERT_EQ("web+test", protocol_handlers[1]->protocol);
ASSERT_EQ("http://foo.com/?test=%s", protocol_handlers[1]->url);
ASSERT_EQ("web+relative", protocol_handlers[2]->protocol);
ASSERT_EQ("http://foo.com/relativeURL=%s", protocol_handlers[2]->url);
}
}
TEST_F(ManifestParserTest, UrlHandlerParseRules) {
base::test::ScopedFeatureList feature_list;
feature_list.InitAndEnableFeature(blink::features::kWebAppEnableUrlHandlers);
// Manifest does not contain a 'url_handlers' field.
{
auto& manifest = ParseManifest("{ }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(0u, manifest->url_handlers.size());
}
// 'url_handlers' is not an array.
{
auto& manifest = ParseManifest(R"({ "url_handlers": { } })");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'url_handlers' ignored, type array expected.",
errors()[0]);
EXPECT_EQ(0u, manifest->url_handlers.size());
}
// Contains 'url_handlers' field but no URL handler entries.
{
auto& manifest = ParseManifest(R"({ "url_handlers": [ ] })");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_EQ(0u, manifest->url_handlers.size());
}
// 'url_handlers' array entries must be objects.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
"foo.com"
]
})");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("url_handlers entry ignored, type object expected.", errors()[0]);
EXPECT_EQ(0u, manifest->url_handlers.size());
}
// A valid url handler.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://foo.com"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, url_handlers.size());
ASSERT_TRUE(blink::SecurityOrigin::CreateFromString("https://foo.com")
->IsSameOriginWith(url_handlers[0]->origin.get()));
}
// Scheme must be https.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "http://foo.com"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"url_handlers entry ignored, required property 'origin' must use the "
"https scheme.",
errors()[0]);
ASSERT_EQ(0u, url_handlers.size());
}
// Origin must be valid.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https:///////"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"url_handlers entry ignored, required property 'origin' is invalid.",
errors()[0]);
ASSERT_EQ(0u, url_handlers.size());
}
// Parse multiple valid handlers.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://foo.com"
},
{
"origin": "https://bar.com"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(2u, url_handlers.size());
ASSERT_TRUE(blink::SecurityOrigin::CreateFromString("https://foo.com")
->IsSameOriginWith(url_handlers[0]->origin.get()));
ASSERT_TRUE(blink::SecurityOrigin::CreateFromString("https://bar.com")
->IsSameOriginWith(url_handlers[1]->origin.get()));
}
// Parse both valid and invalid handlers.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://foo.com"
},
{
"origin": "about:"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"url_handlers entry ignored, required property 'origin' is invalid.",
errors()[0]);
ASSERT_EQ(1u, url_handlers.size());
ASSERT_TRUE(blink::SecurityOrigin::CreateFromString("https://foo.com")
->IsSameOriginWith(url_handlers[0]->origin.get()));
}
// Parse invalid handler where the origin is a TLD.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://co.uk"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"url_handlers entry ignored, domain of required property 'origin' is "
"invalid.",
errors()[0]);
ASSERT_EQ(0u, url_handlers.size());
}
// Parse origin with wildcard.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://*.foo.com"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, url_handlers.size());
ASSERT_TRUE(blink::SecurityOrigin::CreateFromString("https://foo.com")
->IsSameOriginWith(url_handlers[0]->origin.get()));
ASSERT_TRUE(url_handlers[0]->has_origin_wildcard);
}
// Parse invalid origin wildcard format.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://*foo.com"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, url_handlers.size());
ASSERT_TRUE(blink::SecurityOrigin::CreateFromString("https://*foo.com")
->IsSameOriginWith(url_handlers[0]->origin.get()));
ASSERT_FALSE(url_handlers[0]->has_origin_wildcard);
}
// Parse origin where the host is just the wildcard prefix.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://*."
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
ASSERT_EQ(
"url_handlers entry ignored, domain of required property 'origin' is "
"invalid.",
errors()[0]);
ASSERT_EQ(0u, url_handlers.size());
}
// Parse invalid origin where wildcard is used with a TLD.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://*.com"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
ASSERT_EQ(
"url_handlers entry ignored, domain of required property 'origin' is "
"invalid.",
errors()[0]);
ASSERT_EQ(0u, url_handlers.size());
}
// Parse invalid origin where wildcard is used with an unknown TLD.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://*.foo"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
ASSERT_EQ(
"url_handlers entry ignored, domain of required property 'origin' is "
"invalid.",
errors()[0]);
ASSERT_EQ(0u, url_handlers.size());
}
// Parse invalid origin where wildcard is used with a multipart TLD.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://*.co.uk"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
ASSERT_EQ(
"url_handlers entry ignored, domain of required property 'origin' is "
"invalid.",
errors()[0]);
ASSERT_EQ(0u, url_handlers.size());
}
// Parse valid origin with private registry.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://*.glitch.me"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, url_handlers.size());
ASSERT_TRUE(blink::SecurityOrigin::CreateFromString("https://glitch.me")
->IsSameOriginWith(url_handlers[0]->origin.get()));
ASSERT_TRUE(url_handlers[0]->has_origin_wildcard);
}
// Parse valid IP address as origin.
{
auto& manifest = ParseManifest(R"({
"url_handlers": [
{
"origin": "https://192.168.0.1:8888"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(0u, GetErrorCount());
ASSERT_EQ(1u, url_handlers.size());
ASSERT_TRUE(
blink::SecurityOrigin::CreateFromString("https://192.168.0.1:8888")
->IsSameOriginWith(url_handlers[0]->origin.get()));
ASSERT_FALSE(url_handlers[0]->has_origin_wildcard);
}
// Validate only the first 10 handlers are parsed. The following manifest
// specifies 11 handlers, so the last one should not be in the result.
{
auto& manifest = ParseManifest(
R"({
"url_handlers": [
{
"origin": "https://192.168.0.1:8001"
},
{
"origin": "https://192.168.0.1:8002"
},
{
"origin": "https://192.168.0.1:8003"
},
{
"origin": "https://192.168.0.1:8004"
},
{
"origin": "https://192.168.0.1:8005"
},
{
"origin": "https://192.168.0.1:8006"
},
{
"origin": "https://192.168.0.1:8007"
},
{
"origin": "https://192.168.0.1:8008"
},
{
"origin": "https://192.168.0.1:8009"
},
{
"origin": "https://192.168.0.1:8010"
},
{
"origin": "https://192.168.0.1:8011"
}
]
})");
auto& url_handlers = manifest->url_handlers;
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'url_handlers' contains more than 10 valid elements, "
"only the first 10 are parsed.",
errors()[0]);
ASSERT_EQ(10u, url_handlers.size());
ASSERT_TRUE(
blink::SecurityOrigin::CreateFromString("https://192.168.0.1:8010")
->IsSameOriginWith(url_handlers[9]->origin.get()));
}
}
TEST_F(ManifestParserTest, LockScreenParseRules) {
KURL manifest_url = KURL("https://foo.com/manifest.json");
KURL document_url = KURL("https://foo.com/index.html");
{
// Manifest does not contain a 'lock_screen' field.
auto& manifest = ParseManifest("{ }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_TRUE(manifest->lock_screen.is_null());
}
{
// 'lock_screen' is not an object.
auto& manifest = ParseManifest(R"( { "lock_screen": [ ] } )");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'lock_screen' ignored, type object expected.",
errors()[0]);
EXPECT_TRUE(manifest->lock_screen.is_null());
}
{
// Contains 'lock_screen' field but no start_url entry.
auto& manifest = ParseManifest(R"( { "lock_screen": { } } )");
ASSERT_EQ(0u, GetErrorCount());
ASSERT_FALSE(manifest->lock_screen.is_null());
EXPECT_TRUE(manifest->lock_screen->start_url.IsEmpty());
}
{
// 'start_url' entries must be valid URLs.
auto& manifest =
ParseManifest(R"({ "lock_screen": { "start_url": {} } } )");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'start_url' ignored, type string expected.",
errors()[0]);
ASSERT_FALSE(manifest->lock_screen.is_null());
EXPECT_TRUE(manifest->lock_screen->start_url.IsEmpty());
}
{
// 'start_url' entries must be within scope.
auto& manifest = ParseManifest(
R"({ "lock_screen": { "start_url": "https://bar.com" } } )");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'start_url' ignored, should be within scope of the manifest.",
errors()[0]);
ASSERT_FALSE(manifest->lock_screen.is_null());
EXPECT_TRUE(manifest->lock_screen->start_url.IsEmpty());
}
{
// A valid lock_screen start_url entry.
auto& manifest = ParseManifestWithURLs(
R"({
"lock_screen": {
"start_url": "https://foo.com"
}
})",
manifest_url, document_url);
ASSERT_EQ(0u, GetErrorCount());
ASSERT_FALSE(manifest->lock_screen.is_null());
EXPECT_EQ("https://foo.com/", manifest->lock_screen->start_url.GetString());
}
{
// A valid lock_screen start_url entry, parsed relative to manifest URL.
auto& manifest = ParseManifestWithURLs(
R"({
"lock_screen": {
"start_url": "new_note"
}
})",
manifest_url, document_url);
ASSERT_EQ(0u, GetErrorCount());
ASSERT_FALSE(manifest->lock_screen.is_null());
EXPECT_EQ("https://foo.com/new_note",
manifest->lock_screen->start_url.GetString());
}
}
TEST_F(ManifestParserTest, NoteTakingParseRules) {
KURL manifest_url = KURL("https://foo.com/manifest.json");
KURL document_url = KURL("https://foo.com/index.html");
{
// Manifest does not contain a 'note_taking' field.
auto& manifest = ParseManifest("{ }");
ASSERT_EQ(0u, GetErrorCount());
EXPECT_TRUE(manifest->note_taking.is_null());
}
{
// 'note_taking' is not an object.
auto& manifest = ParseManifest(R"( { "note_taking": [ ] } )");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'note_taking' ignored, type object expected.",
errors()[0]);
EXPECT_TRUE(manifest->note_taking.is_null());
}
{
// Contains 'note_taking' field but no new_note_url entry.
auto& manifest = ParseManifest(R"( { "note_taking": { } } )");
ASSERT_EQ(0u, GetErrorCount());
ASSERT_FALSE(manifest->note_taking.is_null());
EXPECT_TRUE(manifest->note_taking->new_note_url.IsEmpty());
}
{
// 'new_note_url' entries must be valid URLs.
auto& manifest =
ParseManifest(R"({ "note_taking": { "new_note_url": {} } } )");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'new_note_url' ignored, type string expected.",
errors()[0]);
ASSERT_FALSE(manifest->note_taking.is_null());
EXPECT_TRUE(manifest->note_taking->new_note_url.IsEmpty());
}
{
// 'new_note_url' entries must be within scope.
auto& manifest = ParseManifest(
R"({ "note_taking": { "new_note_url": "https://bar.com" } } )");
ASSERT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'new_note_url' ignored, should be within scope of the "
"manifest.",
errors()[0]);
ASSERT_FALSE(manifest->note_taking.is_null());
EXPECT_TRUE(manifest->note_taking->new_note_url.IsEmpty());
}
{
// A valid note_taking new_note_url entry.
auto& manifest = ParseManifestWithURLs(
R"({
"note_taking": {
"new_note_url": "https://foo.com"
}
})",
manifest_url, document_url);
ASSERT_EQ(0u, GetErrorCount());
ASSERT_FALSE(manifest->note_taking.is_null());
EXPECT_EQ("https://foo.com/",
manifest->note_taking->new_note_url.GetString());
}
{
// A valid note_taking new_note_url entry, parsed relative to manifest URL.
auto& manifest = ParseManifestWithURLs(
R"({
"note_taking": {
"new_note_url": "new_note"
}
})",
manifest_url, document_url);
ASSERT_EQ(0u, GetErrorCount());
ASSERT_FALSE(manifest->note_taking.is_null());
EXPECT_EQ("https://foo.com/new_note",
manifest->note_taking->new_note_url.GetString());
}
}
TEST_F(ManifestParserTest, ShareTargetParseRules) {
// Contains share_target field but no keys.
{
auto& manifest = ParseManifest(R"({ "share_target": {} })");
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'share_target' ignored. Property 'action' is invalid.",
errors()[0]);
}
// Contains share_target field but no params key.
{
auto& manifest = ParseManifest(R"({ "share_target": { "action": "" } })");
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(3u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
EXPECT_EQ(
"property 'share_target' ignored. Property 'params' type "
"dictionary expected.",
errors()[2]);
}
// Contains share_target field but no action key.
{
auto& manifest = ParseManifest(R"({ "share_target": { "params": {} } })");
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'share_target' ignored. Property 'action' is invalid.",
errors()[0]);
}
// Key in share_target that isn't valid.
{
auto& manifest = ParseManifest(
R"({ "share_target": {"incorrect_key": "some_value" } })");
ASSERT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'share_target' ignored. Property 'action' is invalid.",
errors()[0]);
}
}
TEST_F(ManifestParserTest, ShareTargetUrlTemplateParseRules) {
KURL manifest_url = KURL("https://foo.com/manifest.json");
KURL document_url = KURL("https://foo.com/index.html");
// Contains share_target, but action is empty.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "", "params": {} } })", manifest_url,
document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action, manifest_url);
EXPECT_TRUE(manifest->share_target->params->text.IsNull());
EXPECT_TRUE(manifest->share_target->params->title.IsNull());
EXPECT_TRUE(manifest->share_target->params->url.IsNull());
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
}
// Parse but throw an error if url_template property isn't a string.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "", "params": {} } })", manifest_url,
document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action, manifest_url);
EXPECT_TRUE(manifest->share_target->params->text.IsNull());
EXPECT_TRUE(manifest->share_target->params->title.IsNull());
EXPECT_TRUE(manifest->share_target->params->url.IsNull());
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
}
// Don't parse if action property isn't a string.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": {}, "params": {} } })", manifest_url,
document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'action' ignored, type string expected.", errors()[0]);
EXPECT_EQ("property 'share_target' ignored. Property 'action' is invalid.",
errors()[1]);
}
// Don't parse if action property isn't a string.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": 42, "params": {} } })", manifest_url,
document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'action' ignored, type string expected.", errors()[0]);
EXPECT_EQ("property 'share_target' ignored. Property 'action' is invalid.",
errors()[1]);
}
// Don't parse if params property isn't a dict.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "", "params": "" } })", manifest_url,
document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(3u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
EXPECT_EQ(
"property 'share_target' ignored. Property 'params' type "
"dictionary expected.",
errors()[2]);
}
// Don't parse if params property isn't a dict.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "", "params": 42 } })", manifest_url,
document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(3u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
EXPECT_EQ(
"property 'share_target' ignored. Property 'params' type "
"dictionary expected.",
errors()[2]);
}
// Ignore params keys with invalid types.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "", "params": { "text": 42 }
} })",
manifest_url, document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action, manifest_url);
EXPECT_TRUE(manifest->share_target->params->text.IsNull());
EXPECT_TRUE(manifest->share_target->params->title.IsNull());
EXPECT_TRUE(manifest->share_target->params->url.IsNull());
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(3u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
EXPECT_EQ("property 'text' ignored, type string expected.", errors()[2]);
}
// Ignore params keys with invalid types.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "",
"params": { "title": 42 } } })",
manifest_url, document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action, manifest_url);
EXPECT_TRUE(manifest->share_target->params->text.IsNull());
EXPECT_TRUE(manifest->share_target->params->title.IsNull());
EXPECT_TRUE(manifest->share_target->params->url.IsNull());
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(3u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
EXPECT_EQ("property 'title' ignored, type string expected.", errors()[2]);
}
// Don't parse if params property has keys with invalid types.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "", "params": { "url": {},
"text": "hi" } } })",
manifest_url, document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action, manifest_url);
EXPECT_EQ(manifest->share_target->params->text, "hi");
EXPECT_TRUE(manifest->share_target->params->title.IsNull());
EXPECT_TRUE(manifest->share_target->params->url.IsNull());
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(3u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
EXPECT_EQ("property 'url' ignored, type string expected.", errors()[2]);
}
// Don't parse if action property isn't a valid URL.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com:a", "params":
{} } })",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'action' ignored, URL is invalid.", errors()[0]);
EXPECT_EQ("property 'share_target' ignored. Property 'action' is invalid.",
errors()[1]);
}
// Fail parsing if action is at a different origin than the Web
// manifest.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo2.com/",
"params": {} } })",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'action' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ(
"property 'share_target' ignored. Property 'action' is "
"invalid.",
errors()[1]);
}
// Fail parsing if action is not within scope of the manifest.
{
auto& manifest = ParseManifestWithURLs(
R"({ "start_url": "/app/",
"scope": "/app/",
"share_target": { "action": "/",
"params": {} } })",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"property 'action' ignored, should be within scope of the manifest.",
errors()[0]);
EXPECT_EQ(
"property 'share_target' ignored. Property 'action' is "
"invalid.",
errors()[1]);
}
// Smoke test: Contains share_target and action, and action is valid.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": {"action": "share/", "params": {} } })",
manifest_url, document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action.GetString(),
"https://foo.com/share/");
EXPECT_TRUE(manifest->share_target->params->text.IsNull());
EXPECT_TRUE(manifest->share_target->params->title.IsNull());
EXPECT_TRUE(manifest->share_target->params->url.IsNull());
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
}
// Smoke test: Contains share_target and action, and action is valid, params
// is populated.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": {"action": "share/", "params": { "text":
"foo", "title": "bar", "url": "baz" } } })",
manifest_url, document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action.GetString(),
"https://foo.com/share/");
EXPECT_EQ(manifest->share_target->params->text, "foo");
EXPECT_EQ(manifest->share_target->params->title, "bar");
EXPECT_EQ(manifest->share_target->params->url, "baz");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
}
// Backwards compatibility test: Contains share_target, url_template and
// action, and action is valid, params is populated.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "url_template":
"foo.com/share?title={title}",
"action": "share/", "params": { "text":
"foo", "title": "bar", "url": "baz" } } })",
manifest_url, document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action.GetString(),
"https://foo.com/share/");
EXPECT_EQ(manifest->share_target->params->text, "foo");
EXPECT_EQ(manifest->share_target->params->title, "bar");
EXPECT_EQ(manifest->share_target->params->url, "baz");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
}
// Smoke test: Contains share_target, action and params. action is
// valid and is absolute.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
ASSERT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->action.GetString(), "https://foo.com/#");
EXPECT_TRUE(manifest->share_target->params->text.IsNull());
EXPECT_EQ(manifest->share_target->params->title, "mytitle");
EXPECT_TRUE(manifest->share_target->params->url.IsNull());
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(
"Method should be set to either GET or POST. It currently defaults to "
"GET.",
errors()[0]);
EXPECT_EQ(
"Enctype should be set to either application/x-www-form-urlencoded or "
"multipart/form-data. It currently defaults to "
"application/x-www-form-urlencoded",
errors()[1]);
}
// Return undefined if method or enctype is not string.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
10, "enctype": 10, "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"invalid method. Allowed methods are:"
"GET and POST.",
errors()[0]);
}
// Valid method and enctype.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"GET", "enctype": "application/x-www-form-urlencoded",
"params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->method,
mojom::blink::ManifestShareTarget::Method::kGet);
EXPECT_EQ(manifest->share_target->enctype,
mojom::blink::ManifestShareTarget::Enctype::kFormUrlEncoded);
}
// Auto-fill in "GET" for method and "application/x-www-form-urlencoded" for
// enctype.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->method,
mojom::blink::ManifestShareTarget::Method::kGet);
EXPECT_EQ(manifest->share_target->enctype,
mojom::blink::ManifestShareTarget::Enctype::kFormUrlEncoded);
}
// Invalid method values, return undefined.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"", "enctype": "application/x-www-form-urlencoded", "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"invalid method. Allowed methods are:"
"GET and POST.",
errors()[0]);
}
// When method is "GET", enctype cannot be anything other than
// "application/x-www-form-urlencoded".
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"GET", "enctype": "RANDOM", "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"invalid enctype. Allowed enctypes are:"
"application/x-www-form-urlencoded and multipart/form-data.",
errors()[0]);
}
// When method is "POST", enctype cannot be anything other than
// "application/x-www-form-urlencoded" or "multipart/form-data".
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "random", "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"invalid enctype. Allowed enctypes are:"
"application/x-www-form-urlencoded and multipart/form-data.",
errors()[0]);
}
// Valid enctype for when method is "POST".
{
auto& manifest = ParseManifestWithURLs(
R"( { "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "application/x-www-form-urlencoded",
"params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->method,
mojom::blink::ManifestShareTarget::Method::kPost);
EXPECT_EQ(manifest->share_target->enctype,
mojom::blink::ManifestShareTarget::Enctype::kFormUrlEncoded);
EXPECT_EQ(0u, GetErrorCount());
}
// Valid enctype for when method is "POST".
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->method,
mojom::blink::ManifestShareTarget::Method::kPost);
EXPECT_EQ(manifest->share_target->enctype,
mojom::blink::ManifestShareTarget::Enctype::kMultipartFormData);
EXPECT_EQ(0u, GetErrorCount());
}
// Ascii in-sensitive.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"PosT", "enctype": "mUltIparT/Form-dAta", "params":
{ "title": "mytitle" } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->method,
mojom::blink::ManifestShareTarget::Method::kPost);
EXPECT_EQ(manifest->share_target->enctype,
mojom::blink::ManifestShareTarget::Enctype::kMultipartFormData);
EXPECT_EQ(0u, GetErrorCount());
}
// No files is okay.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [] } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_EQ(manifest->share_target->method,
mojom::blink::ManifestShareTarget::Method::kPost);
EXPECT_EQ(manifest->share_target->enctype,
mojom::blink::ManifestShareTarget::Enctype::kMultipartFormData);
EXPECT_EQ(0u, GetErrorCount());
}
// Nonempty file must have POST method and multipart/form-data enctype.
// GET method, for example, will cause an error in this case.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"GET", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": ["text/plain"]}] } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"invalid enctype for GET method. Only "
"application/x-www-form-urlencoded is allowed.",
errors()[0]);
}
// Nonempty file must have POST method and multipart/form-data enctype.
// Enctype other than multipart/form-data will cause an error.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "application/x-www-form-urlencoded",
"params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": ["text/plain"]}] } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("files are only supported with multipart/form-data POST.",
errors()[0]);
}
// Nonempty file must have POST method and multipart/form-data enctype.
// This case is valid.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": ["text/plain"]}] } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_TRUE(manifest->share_target->params->files.has_value());
EXPECT_EQ(1u, manifest->share_target->params->files->size());
EXPECT_EQ(0u, GetErrorCount());
}
// Invalid mimetype.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": [""]}] } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("invalid mime type inside files.", errors()[0]);
}
// Invalid mimetype.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": ["helloworld"]}] } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("invalid mime type inside files.", errors()[0]);
}
// Invalid mimetype.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": ["^$/@$"]}] } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("invalid mime type inside files.", errors()[0]);
}
// Invalid mimetype.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": ["/"]}] } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("invalid mime type inside files.", errors()[0]);
}
// Invalid mimetype.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": [" "]}] } }
})",
manifest_url, document_url);
EXPECT_FALSE(manifest->share_target.get());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("invalid mime type inside files.", errors()[0]);
}
// Accept field is empty.
{
auto& manifest = ParseManifestWithURLs(
R"({ "share_target": { "action": "https://foo.com/#", "method":
"POST", "enctype": "multipart/form-data", "params":
{ "title": "mytitle", "files": [{ "name": "name",
"accept": []}] } }
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
EXPECT_FALSE(manifest->share_target->params->files.has_value());
EXPECT_EQ(0u, GetErrorCount());
}
// Accept sequence contains non-string elements.
{
auto& manifest = ParseManifestWithURLs(
R"({
"share_target": {
"action": "https://foo.com/#",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mytitle",
"files": [{
"name": "name",
"accept": ["image/png", 42]
}]
}
}
})",
manifest_url, document_url);
auto* share_target = manifest->share_target.get();
EXPECT_TRUE(share_target);
EXPECT_TRUE(share_target->params->files.has_value());
auto& files = share_target->params->files.value();
EXPECT_EQ(1u, files.size());
EXPECT_EQ(files[0]->name, "name");
auto& accept = files[0]->accept;
EXPECT_EQ(1u, accept.size());
EXPECT_EQ(accept[0], "image/png");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("'accept' entry ignored, expected to be of type string.",
errors()[0]);
}
// Accept is just a single string.
{
auto& manifest = ParseManifestWithURLs(
R"({
"share_target": {
"action": "https://foo.com/#",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mytitle",
"files": [{
"name": "name",
"accept": "image/png"
}]
}
}
})",
manifest_url, document_url);
auto* share_target = manifest->share_target.get();
EXPECT_TRUE(share_target);
EXPECT_TRUE(share_target->params->files.has_value());
auto& files = share_target->params->files.value();
EXPECT_EQ(1u, files.size());
EXPECT_EQ(files[0]->name, "name");
auto& accept = files[0]->accept;
EXPECT_EQ(1u, accept.size());
EXPECT_EQ(accept[0], "image/png");
EXPECT_EQ(0u, GetErrorCount());
}
// Accept is neither a string nor an array of strings.
{
auto& manifest = ParseManifestWithURLs(
R"({
"share_target": {
"action": "https://foo.com/#",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mytitle",
"files": [{
"name": "name",
"accept": true
}]
}
}
})",
manifest_url, document_url);
auto* share_target = manifest->share_target.get();
EXPECT_TRUE(share_target);
EXPECT_FALSE(share_target->params->files.has_value());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'accept' ignored, type array or string expected.",
errors()[0]);
}
// Files is just a single FileFilter (not an array).
{
auto& manifest = ParseManifestWithURLs(
R"({
"share_target": {
"action": "https://foo.com/#",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mytitle",
"files": {
"name": "name",
"accept": "image/png"
}
}
}
})",
manifest_url, document_url);
EXPECT_TRUE(manifest->share_target.get());
auto* params = manifest->share_target->params.get();
EXPECT_TRUE(params->files.has_value());
auto& file = params->files.value();
EXPECT_EQ(1u, file.size());
EXPECT_EQ(file[0]->name, "name");
auto& accept = file[0]->accept;
EXPECT_EQ(1u, accept.size());
EXPECT_EQ(accept[0], "image/png");
EXPECT_EQ(0u, GetErrorCount());
}
// Files is neither array nor FileFilter.
{
auto& manifest = ParseManifestWithURLs(
R"({
"share_target": {
"action": "https://foo.com/#",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mytitle",
"files": 3
}
}
})",
manifest_url, document_url);
auto* share_target = manifest->share_target.get();
EXPECT_TRUE(share_target);
EXPECT_FALSE(share_target->params->files.has_value());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'files' ignored, type array or FileFilter expected.",
errors()[0]);
}
// Files contains a non-dictionary entry.
{
auto& manifest = ParseManifestWithURLs(
R"({
"share_target": {
"action": "https://foo.com/#",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mytitle",
"files": [
{
"name": "name",
"accept": "image/png"
},
3
]
}
}
})",
manifest_url, document_url);
auto* share_target = manifest->share_target.get();
EXPECT_TRUE(share_target);
EXPECT_TRUE(share_target->params->files.has_value());
auto& files = share_target->params->files.value();
EXPECT_EQ(1u, files.size());
EXPECT_EQ(files[0]->name, "name");
auto& accept = files[0]->accept;
EXPECT_EQ(1u, accept.size());
EXPECT_EQ(accept[0], "image/png");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("files must be a sequence of non-empty file entries.",
errors()[0]);
}
// Files contains empty file.
{
auto& manifest = ParseManifestWithURLs(
R"({
"share_target": {
"action": "https://foo.com/#",
"method": "POST",
"enctype": "multipart/form-data",
"params": {
"title": "mytitle",
"files": [
{
"name": "name",
"accept": "image/png"
},
{}
]
}
}
})",
manifest_url, document_url);
auto* share_target = manifest->share_target.get();
EXPECT_TRUE(share_target);
EXPECT_TRUE(share_target->params->files.has_value());
auto& files = share_target->params->files.value();
EXPECT_EQ(1u, files.size());
EXPECT_EQ(files[0]->name, "name");
auto& accept = files[0]->accept;
EXPECT_EQ(1u, accept.size());
EXPECT_EQ(accept[0], "image/png");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'name' missing.", errors()[0]);
}
}
TEST_F(ManifestParserTest, RelatedApplicationsParseRules) {
// If no application, empty list.
{
auto& manifest = ParseManifest(R"({ "related_applications": []})");
EXPECT_TRUE(manifest->related_applications.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// If empty application, empty list.
{
auto& manifest = ParseManifest(R"({ "related_applications": [{}]})");
EXPECT_TRUE(manifest->related_applications.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("'platform' is a required field, related application ignored.",
errors()[0]);
}
// If invalid platform, application is ignored.
{
auto& manifest =
ParseManifest(R"({ "related_applications": [{"platform": 123}]})");
EXPECT_TRUE(manifest->related_applications.IsEmpty());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'platform' ignored, type string expected.",
errors()[0]);
EXPECT_EQ(
"'platform' is a required field, "
"related application ignored.",
errors()[1]);
}
// If missing platform, application is ignored.
{
auto& manifest =
ParseManifest(R"({ "related_applications": [{"id": "foo"}]})");
EXPECT_TRUE(manifest->related_applications.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("'platform' is a required field, related application ignored.",
errors()[0]);
}
// If missing id and url, application is ignored.
{
auto& manifest =
ParseManifest(R"({ "related_applications": [{"platform": "play"}]})");
EXPECT_TRUE(manifest->related_applications.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("one of 'url' or 'id' is required, related application ignored.",
errors()[0]);
}
// Valid application, with url.
{
auto& manifest = ParseManifest(R"({ "related_applications": [
{"platform": "play", "url": "http://www.foo.com"}]})");
auto& related_applications = manifest->related_applications;
EXPECT_EQ(related_applications.size(), 1u);
EXPECT_EQ(related_applications[0]->platform, "play");
EXPECT_TRUE(related_applications[0]->url.has_value());
EXPECT_EQ(related_applications[0]->url->GetString(), "http://www.foo.com/");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Application with an invalid url.
{
auto& manifest = ParseManifest(R"({ "related_applications": [
{"platform": "play", "url": "http://www.foo.com:co&uk"}]})");
EXPECT_TRUE(manifest->related_applications.IsEmpty());
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("property 'url' ignored, URL is invalid.", errors()[0]);
EXPECT_EQ("one of 'url' or 'id' is required, related application ignored.",
errors()[1]);
}
// Valid application, with id.
{
auto& manifest = ParseManifest(R"({ "related_applications": [
{"platform": "itunes", "id": "foo"}]})");
auto& related_applications = manifest->related_applications;
EXPECT_EQ(related_applications.size(), 1u);
EXPECT_EQ(related_applications[0]->platform, "itunes");
EXPECT_EQ(related_applications[0]->id, "foo");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// All valid applications are in list.
{
auto& manifest = ParseManifest(
R"({ "related_applications": [
{"platform": "play", "id": "foo"},
{"platform": "itunes", "id": "bar"}]})");
auto& related_applications = manifest->related_applications;
EXPECT_EQ(related_applications.size(), 2u);
EXPECT_EQ(related_applications[0]->platform, "play");
EXPECT_EQ(related_applications[0]->id, "foo");
EXPECT_EQ(related_applications[1]->platform, "itunes");
EXPECT_EQ(related_applications[1]->id, "bar");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Two invalid applications and one valid. Only the valid application should
// be in the list.
{
auto& manifest = ParseManifest(
R"({ "related_applications": [
{"platform": "itunes"},
{"platform": "play", "id": "foo"},
{}]})");
auto& related_applications = manifest->related_applications;
EXPECT_EQ(related_applications.size(), 1u);
EXPECT_EQ(related_applications[0]->platform, "play");
EXPECT_EQ(related_applications[0]->id, "foo");
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("one of 'url' or 'id' is required, related application ignored.",
errors()[0]);
EXPECT_EQ("'platform' is a required field, related application ignored.",
errors()[1]);
}
}
TEST_F(ManifestParserTest, ParsePreferRelatedApplicationsParseRules) {
// Smoke test.
{
auto& manifest =
ParseManifest(R"({ "prefer_related_applications": true })");
EXPECT_TRUE(manifest->prefer_related_applications);
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if the property isn't a boolean.
{
auto& manifest = ParseManifest(R"({ "prefer_related_applications": {} })");
EXPECT_FALSE(manifest->prefer_related_applications);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'prefer_related_applications' "
"ignored, type boolean expected.",
errors()[0]);
}
{
auto& manifest =
ParseManifest(R"({ "prefer_related_applications": "true" })");
EXPECT_FALSE(manifest->prefer_related_applications);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'prefer_related_applications' "
"ignored, type boolean expected.",
errors()[0]);
}
{
auto& manifest = ParseManifest(R"({ "prefer_related_applications": 1 })");
EXPECT_FALSE(manifest->prefer_related_applications);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'prefer_related_applications' "
"ignored, type boolean expected.",
errors()[0]);
}
// "False" should set the boolean false without throwing errors.
{
auto& manifest =
ParseManifest(R"({ "prefer_related_applications": false })");
EXPECT_FALSE(manifest->prefer_related_applications);
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, ThemeColorParserRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "theme_color": "#FF0000" })");
EXPECT_TRUE(manifest->has_theme_color);
EXPECT_EQ(manifest->theme_color, 0xFFFF0000u);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "theme_color": " blue " })");
EXPECT_TRUE(manifest->has_theme_color);
EXPECT_EQ(manifest->theme_color, 0xFF0000FFu);
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if theme_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "theme_color": {} })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'theme_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if theme_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "theme_color": false })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'theme_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if theme_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "theme_color": null })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'theme_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if theme_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "theme_color": [] })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'theme_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if theme_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "theme_color": 42 })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'theme_color' ignored, type string expected.",
errors()[0]);
}
// Parse fails if string is not in a known format.
{
auto& manifest = ParseManifest(R"~({ "theme_color": "foo(bar)" })~");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'theme_color' ignored,"
" 'foo(bar)' is not a valid color.",
errors()[0]);
}
// Parse fails if string is not in a known format.
{
auto& manifest = ParseManifest(R"({ "theme_color": "bleu" })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'theme_color' ignored, 'bleu' is not a valid color.",
errors()[0]);
}
// Parse fails if string is not in a known format.
{
auto& manifest = ParseManifest(R"({ "theme_color": "FF00FF" })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'theme_color' ignored, 'FF00FF'"
" is not a valid color.",
errors()[0]);
}
// Parse fails if multiple values for theme_color are given.
{
auto& manifest = ParseManifest(R"({ "theme_color": "#ABC #DEF" })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'theme_color' ignored, "
"'#ABC #DEF' is not a valid color.",
errors()[0]);
}
// Parse fails if multiple values for theme_color are given.
{
auto& manifest = ParseManifest(R"({ "theme_color": "#AABBCC #DDEEFF" })");
EXPECT_FALSE(manifest->has_theme_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'theme_color' ignored, "
"'#AABBCC #DDEEFF' is not a valid color.",
errors()[0]);
}
// Accept CSS color keyword format.
{
auto& manifest = ParseManifest(R"({ "theme_color": "blue" })");
EXPECT_EQ(manifest->theme_color, 0xFF0000FFu);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS color keyword format.
{
auto& manifest = ParseManifest(R"({ "theme_color": "chartreuse" })");
EXPECT_EQ(manifest->theme_color, 0xFF7FFF00u);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS RGB format.
{
auto& manifest = ParseManifest(R"({ "theme_color": "#FFF" })");
EXPECT_EQ(manifest->theme_color, 0xFFFFFFFFu);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS RGB format.
{
auto& manifest = ParseManifest(R"({ "theme_color": "#ABC" })");
EXPECT_EQ(manifest->theme_color, 0xFFAABBCCu);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS RRGGBB format.
{
auto& manifest = ParseManifest(R"({ "theme_color": "#FF0000" })");
EXPECT_EQ(manifest->theme_color, 0xFFFF0000u);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept translucent colors.
{
auto& manifest =
ParseManifest(R"~({ "theme_color": "rgba(255,0,0,0.4)" })~");
EXPECT_EQ(manifest->theme_color, 0x66FF0000u);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept transparent colors.
{
auto& manifest = ParseManifest(R"~({ "theme_color": "rgba(0,0,0,0)" })~");
EXPECT_EQ(manifest->theme_color, 0x00000000u);
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, BackgroundColorParserRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "background_color": "#FF0000" })");
EXPECT_EQ(manifest->background_color, 0xFFFF0000u);
EXPECT_FALSE(IsManifestEmpty(manifest));
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "background_color": " blue " })");
EXPECT_EQ(manifest->background_color, 0xFF0000FFu);
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if background_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "background_color": {} })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'background_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if background_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "background_color": false })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'background_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if background_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "background_color": null })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'background_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if background_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "background_color": [] })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'background_color' ignored, type string expected.",
errors()[0]);
}
// Don't parse if background_color isn't a string.
{
auto& manifest = ParseManifest(R"({ "background_color": 42 })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'background_color' ignored, type string expected.",
errors()[0]);
}
// Parse fails if string is not in a known format.
{
auto& manifest = ParseManifest(R"~({ "background_color": "foo(bar)" })~");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'background_color' ignored,"
" 'foo(bar)' is not a valid color.",
errors()[0]);
}
// Parse fails if string is not in a known format.
{
auto& manifest = ParseManifest(R"({ "background_color": "bleu" })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'background_color' ignored,"
" 'bleu' is not a valid color.",
errors()[0]);
}
// Parse fails if string is not in a known format.
{
auto& manifest = ParseManifest(R"({ "background_color": "FF00FF" })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'background_color' ignored,"
" 'FF00FF' is not a valid color.",
errors()[0]);
}
// Parse fails if multiple values for background_color are given.
{
auto& manifest = ParseManifest(R"({ "background_color": "#ABC #DEF" })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'background_color' ignored, "
"'#ABC #DEF' is not a valid color.",
errors()[0]);
}
// Parse fails if multiple values for background_color are given.
{
auto& manifest =
ParseManifest(R"({ "background_color": "#AABBCC #DDEEFF" })");
EXPECT_FALSE(manifest->has_background_color);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'background_color' ignored, "
"'#AABBCC #DDEEFF' is not a valid color.",
errors()[0]);
}
// Accept CSS color keyword format.
{
auto& manifest = ParseManifest(R"({ "background_color": "blue" })");
EXPECT_EQ(manifest->background_color, 0xFF0000FFu);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS color keyword format.
{
auto& manifest = ParseManifest(R"({ "background_color": "chartreuse" })");
EXPECT_EQ(manifest->background_color, 0xFF7FFF00u);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS RGB format.
{
auto& manifest = ParseManifest(R"({ "background_color": "#FFF" })");
EXPECT_EQ(manifest->background_color, 0xFFFFFFFFu);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS RGB format.
{
auto& manifest = ParseManifest(R"({ "background_color": "#ABC" })");
EXPECT_EQ(manifest->background_color, 0xFFAABBCCu);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept CSS RRGGBB format.
{
auto& manifest = ParseManifest(R"({ "background_color": "#FF0000" })");
EXPECT_EQ(manifest->background_color, 0xFFFF0000u);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept translucent colors.
{
auto& manifest =
ParseManifest(R"~({ "background_color": "rgba(255,0,0,0.4)" })~");
EXPECT_EQ(manifest->background_color, 0x66FF0000u);
EXPECT_EQ(0u, GetErrorCount());
}
// Accept transparent colors.
{
auto& manifest =
ParseManifest(R"~({ "background_color": "rgba(0,0,0,0)" })~");
EXPECT_EQ(manifest->background_color, 0x00000000u);
EXPECT_EQ(0u, GetErrorCount());
}
}
TEST_F(ManifestParserTest, GCMSenderIDParseRules) {
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "gcm_sender_id": "foo" })");
EXPECT_EQ(manifest->gcm_sender_id, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Trim whitespaces.
{
auto& manifest = ParseManifest(R"({ "gcm_sender_id": " foo " })");
EXPECT_EQ(manifest->gcm_sender_id, "foo");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if the property isn't a string.
{
auto& manifest = ParseManifest(R"({ "gcm_sender_id": {} })");
EXPECT_TRUE(manifest->gcm_sender_id.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'gcm_sender_id' ignored, type string expected.",
errors()[0]);
}
{
auto& manifest = ParseManifest(R"({ "gcm_sender_id": 42 })");
EXPECT_TRUE(manifest->gcm_sender_id.IsNull());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'gcm_sender_id' ignored, type string expected.",
errors()[0]);
}
}
TEST_F(ManifestParserTest, StorageIsolationEnabled) {
auto& manifest = ParseManifest(R"({ "isolated_storage": true })");
EXPECT_EQ(manifest->isolated_storage, true);
EXPECT_EQ(0u, GetErrorCount());
}
TEST_F(ManifestParserTest, StorageIsolationBadScope) {
auto& manifest = ParseManifest(
R"({ "isolated_storage": true,
"scope": "/invalid",
"start_url": "/invalid/index.html" })");
EXPECT_EQ(manifest->isolated_storage, false);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("Isolated storage is only supported with a scope of \"/\".",
errors()[0]);
}
TEST_F(ManifestParserTest, PermissionsPolicy) {
auto& manifest = ParseManifest(
R"({ "permissions_policy": {
"geolocation": ["https://example.com"],
"microphone": ["https://example.com"]
}})");
EXPECT_EQ(0u, GetErrorCount());
EXPECT_EQ(2u, manifest->permissions_policy.size());
}
TEST_F(ManifestParserTest, PermissionsPolicyEmptyOrigin) {
auto& manifest = ParseManifest(
R"({ "permissions_policy": {
"geolocation": ["https://example.com"],
"microphone": [""],
"midi": []
}})");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(1u, manifest->permissions_policy.size());
}
TEST_F(ManifestParserTest, PermissionsPolicyAsArray) {
auto& manifest = ParseManifest(
R"({ "permissions_policy": [
{"geolocation": ["https://example.com"]},
{"microphone": [""]},
{"midi": []}
]})");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(0u, manifest->permissions_policy.size());
EXPECT_EQ("property 'permissions_policy' ignored, type object expected.",
errors()[0]);
}
TEST_F(ManifestParserTest, PermissionsPolicyInvalidType) {
auto& manifest = ParseManifest(R"({ "permissions_policy": true})");
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(0u, manifest->permissions_policy.size());
EXPECT_EQ("property 'permissions_policy' ignored, type object expected.",
errors()[0]);
}
TEST_F(ManifestParserTest, PermissionsPolicyInvalidAllowlistType) {
auto& manifest = ParseManifest(
R"({ "permissions_policy": {
"geolocation": ["https://example.com"],
"microphone": 0,
"midi": true
}})");
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(1u, manifest->permissions_policy.size());
EXPECT_EQ(
"permission 'microphone' ignored, invalid allowlist: type array "
"expected.",
errors()[0]);
EXPECT_EQ(
"permission 'midi' ignored, invalid allowlist: type array expected.",
errors()[1]);
}
TEST_F(ManifestParserTest, PermissionsPolicyInvalidAllowlistEntry) {
auto& manifest = ParseManifest(
R"({ "permissions_policy": {
"geolocation": ["https://example.com", null],
"microphone": ["https://example.com", {}]
}})");
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ(0u, manifest->permissions_policy.size());
EXPECT_EQ(
"permissions_policy entry ignored, required property 'origin' contains "
"an invalid element: type string expected.",
errors()[0]);
EXPECT_EQ(
"permissions_policy entry ignored, required property 'origin' contains "
"an invalid element: type string expected.",
errors()[1]);
}
TEST_F(ManifestParserTest, HandleLinksParseRules) {
{
ScopedWebAppHandleLinksForTest feature(false);
// Feature not enabled, should not be parsed.
auto& manifest = ParseManifest(R"({ })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kUndefined);
EXPECT_EQ(0u, GetErrorCount());
}
{
ScopedWebAppHandleLinksForTest feature(false);
// Feature not enabled, should not be parsed.
auto& manifest = ParseManifest(R"({ "handle_links": "auto" })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kUndefined);
EXPECT_EQ(0u, GetErrorCount());
}
{
ScopedWebAppHandleLinksForTest feature(true);
// Smoke test.
{
auto& manifest = ParseManifest(R"({ "handle_links": "auto" })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kAuto);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(R"({ "handle_links": ["preferred"] })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kPreferred);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest =
ParseManifest(R"({ "handle_links": ["not-preferred"] })");
EXPECT_EQ(manifest->handle_links,
mojom::blink::HandleLinks::kNotPreferred);
EXPECT_EQ(0u, GetErrorCount());
}
// Unknown single string.
{
auto& manifest = ParseManifest(R"({ "handle_links": "unknown" })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kAuto);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("handle_links value 'unknown' ignored, unknown value.",
errors()[0]);
}
// Empty array is fine.
{
auto& manifest = ParseManifest(R"({ "handle_links": [] })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kAuto);
EXPECT_EQ(0u, GetErrorCount());
}
// First known value in array is used.
{
auto& manifest =
ParseManifest(R"({ "handle_links": ["preferred", "auto"] })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kPreferred);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(R"({
"handle_links": [
"unknown",
"preferred",
"also-unknown",
"auto"
]
})");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kPreferred);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("handle_links value 'unknown' ignored, unknown value.",
errors()[0]);
}
{
auto& manifest = ParseManifest(R"({
"handle_links": [
1234,
"preferred",
null,
"auto"
]
})");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kPreferred);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("handle_links value '1234' ignored, string expected.",
errors()[0]);
}
// No recognized values in properly formatted array of strings.
{
auto& manifest = ParseManifest(R"({
"handle_links": [
"unknown",
"also-unknown"
]
})");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kAuto);
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("handle_links value 'unknown' ignored, unknown value.",
errors()[0]);
EXPECT_EQ("handle_links value 'also-unknown' ignored, unknown value.",
errors()[1]);
}
// Don't parse if the property isn't a string or array of strings.
{
auto& manifest = ParseManifest(R"({ "handle_links": null })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kAuto);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'handle_links' ignored, type string or array of strings "
"expected.",
errors()[0]);
}
{
auto& manifest = ParseManifest(R"({ "handle_links": 1234 })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kAuto);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'handle_links' ignored, type string or array of strings "
"expected.",
errors()[0]);
}
{
auto& manifest = ParseManifest(R"({ "handle_links": [12, 34] })");
EXPECT_EQ(manifest->handle_links, mojom::blink::HandleLinks::kAuto);
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("handle_links value '12' ignored, string expected.",
errors()[0]);
EXPECT_EQ("handle_links value '34' ignored, string expected.",
errors()[1]);
}
}
}
TEST_F(ManifestParserTest, LaunchHandlerParseRules) {
using RouteTo = mojom::blink::ManifestLaunchHandler::RouteTo;
{
ScopedWebAppLaunchHandlerForTest feature(false);
// Feature not enabled, should not be parsed.
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": "existing-client-navigate"
}
})");
EXPECT_FALSE(manifest->launch_handler);
EXPECT_EQ(0u, GetErrorCount());
}
{
ScopedWebAppLaunchHandlerForTest feature(true);
// Smoke test.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": "existing-client-retain"
}
})");
EXPECT_EQ(manifest->launch_handler->route_to,
RouteTo::kExistingClientRetain);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": "new-client"
}
})");
EXPECT_EQ(manifest->launch_handler->route_to, RouteTo::kNewClient);
EXPECT_EQ(0u, GetErrorCount());
}
// Empty object is fine.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {}
})");
EXPECT_EQ(manifest->launch_handler->route_to, RouteTo::kAuto);
EXPECT_EQ(0u, GetErrorCount());
}
// Empty array is fine.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": []
}
})");
EXPECT_EQ(manifest->launch_handler->route_to, RouteTo::kAuto);
EXPECT_EQ(0u, GetErrorCount());
}
// Unknown single string.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": "space"
}
})");
EXPECT_EQ(manifest->launch_handler->route_to, RouteTo::kAuto);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("route_to value 'space' ignored, unknown value.", errors()[0]);
}
// First known value in array is used.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": ["existing-client-navigate", "new-client"]
}
})");
EXPECT_EQ(manifest->launch_handler->route_to,
RouteTo::kExistingClientNavigate);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": [null, "space", "existing-client-retain", "auto"]
}
})");
EXPECT_EQ(manifest->launch_handler->route_to,
RouteTo::kExistingClientRetain);
EXPECT_EQ(2u, GetErrorCount());
EXPECT_EQ("route_to value 'null' ignored, string expected.", errors()[0]);
EXPECT_EQ("route_to value 'space' ignored, unknown value.", errors()[1]);
}
// Don't parse if the property isn't an object.
{
auto& manifest = ParseManifest(R"({ "launch_handler": null })");
EXPECT_FALSE(manifest->launch_handler);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("launch_handler value ignored, object expected.", errors()[0]);
}
{
auto& manifest = ParseManifest(R"({
"launch_handler": [{
"route_to": "new-client"
}]
})");
EXPECT_FALSE(manifest->launch_handler);
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("launch_handler value ignored, object expected.", errors()[0]);
}
}
}
TEST_F(ManifestParserTest, DeprecatedLaunchHandlerParseRules) {
using RouteTo = mojom::blink::ManifestLaunchHandler::RouteTo;
ScopedWebAppLaunchHandlerForTest feature(true);
// Smoke test.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": "existing-client",
"navigate_existing_client": "never"
}
})");
EXPECT_EQ(manifest->launch_handler->route_to,
RouteTo::kExistingClientRetain);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": "new-client",
"navigate_existing_client": "always"
}
})");
EXPECT_EQ(manifest->launch_handler->route_to, RouteTo::kNewClient);
EXPECT_EQ(0u, GetErrorCount());
}
// First known value in array is used.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": ["existing-client", "new-client"],
"navigate_existing_client": ["never", "always"]
}
})");
EXPECT_EQ(manifest->launch_handler->route_to,
RouteTo::kExistingClientRetain);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": [null, "space", "existing-client", "auto"],
"navigate_existing_client": [1234, "sometimes", "never", "always"]
}
})");
EXPECT_EQ(manifest->launch_handler->route_to,
RouteTo::kExistingClientRetain);
EXPECT_EQ(4u, GetErrorCount());
EXPECT_EQ("route_to value 'null' ignored, string expected.", errors()[0]);
EXPECT_EQ("route_to value 'space' ignored, unknown value.", errors()[1]);
EXPECT_EQ("navigate_existing_client value '1234' ignored, string expected.",
errors()[2]);
EXPECT_EQ(
"navigate_existing_client value 'sometimes' ignored, unknown value.",
errors()[3]);
}
// navigate_existing_client ignored for non-deprecated values of route_to.
{
auto& manifest = ParseManifest(R"({
"launch_handler": {
"route_to": "existing-client-navigate",
"navigate_existing_client": "never"
}
})");
EXPECT_EQ(manifest->launch_handler->route_to,
RouteTo::kExistingClientNavigate);
}
}
TEST_F(ManifestParserTest, TranslationsParseRules) {
{
ScopedWebAppTranslationsForTest feature(false);
// Feature not enabled, should not be parsed.
auto& manifest =
ParseManifest(R"({ "translations": {"fr": {"name": "french name"}} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
{
ScopedWebAppTranslationsForTest feature(true);
// Manifest does not contain a 'translations' field.
{
auto& manifest = ParseManifest(R"({ })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if translations object is empty.
{
auto& manifest = ParseManifest(R"({ "translations": {} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(0u, GetErrorCount());
}
// Empty translation is ignored.
{
auto& manifest = ParseManifest(R"({ "translations": {"fr": {}} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_FALSE(manifest->translations.Contains("fr"));
EXPECT_EQ(0u, GetErrorCount());
}
// Valid name, short_name and description should be parsed
{
auto& manifest = ParseManifest(
R"({ "translations": {"fr": {"name": "french name", "short_name":
"fr name", "description": "french description"}} })");
EXPECT_FALSE(manifest->translations.IsEmpty());
EXPECT_TRUE(manifest->translations.Contains("fr"));
EXPECT_EQ(manifest->translations.find("fr")->value->name, "french name");
EXPECT_EQ(manifest->translations.find("fr")->value->short_name,
"fr name");
EXPECT_EQ(manifest->translations.find("fr")->value->description,
"french description");
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if the property isn't an object.
{
auto& manifest = ParseManifest(R"({ "translations": [] })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'translations' ignored, object expected.",
errors()[0]);
}
// Ignore translation if it isn't an object.
{
auto& manifest = ParseManifest(R"({ "translations": {"fr": []} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("skipping translation, object expected.", errors()[0]);
}
// Multiple valid translations should all be parsed.
{
auto& manifest = ParseManifest(
R"({ "translations": {"fr": {"name": "french name"},
"es": {"name": "spanish name"}} })");
EXPECT_FALSE(manifest->translations.IsEmpty());
EXPECT_TRUE(manifest->translations.Contains("fr"));
EXPECT_TRUE(manifest->translations.Contains("es"));
EXPECT_EQ(manifest->translations.find("fr")->value->name, "french name");
EXPECT_EQ(manifest->translations.find("es")->value->name, "spanish name");
EXPECT_EQ(0u, GetErrorCount());
}
// Empty locale string should be ignored.
{
auto& manifest = ParseManifest(
R"({ "translations": {"": {"name": "translated name"}} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("skipping translation, non-empty locale string expected.",
errors()[0]);
}
}
}
TEST_F(ManifestParserTest, TranslationsStringsParseRules) {
ScopedWebAppTranslationsForTest feature(true);
// Ignore non-string translations name.
{
auto& manifest =
ParseManifest(R"({ "translations": {"fr": {"name": {}}} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'name' of 'translations' ignored, type string expected.",
errors()[0]);
}
// Ignore non-string translations short_name.
{
auto& manifest =
ParseManifest(R"({ "translations": {"fr": {"short_name": []}} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'short_name' of 'translations' ignored, type string "
"expected.",
errors()[0]);
}
// Ignore non-string translations description.
{
auto& manifest =
ParseManifest(R"({ "translations": {"fr": {"description": 42}} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'description' of 'translations' ignored, type string "
"expected.",
errors()[0]);
}
// Translation with empty strings is ignored.
{
auto& manifest = ParseManifest(
R"({ "translations": {"fr": {"name": "", "short_name": "",
"description": ""}} })");
EXPECT_TRUE(manifest->translations.IsEmpty());
EXPECT_FALSE(manifest->translations.Contains("fr"));
EXPECT_EQ(3u, GetErrorCount());
EXPECT_EQ("property 'name' of 'translations' is an empty string.",
errors()[0]);
EXPECT_EQ("property 'short_name' of 'translations' is an empty string.",
errors()[1]);
EXPECT_EQ("property 'description' of 'translations' is an empty string.",
errors()[2]);
}
}
TEST_F(ManifestParserTest, UserPreferencesParseRules) {
{
ScopedWebAppDarkModeForTest feature(false);
// Feature not enabled, should not be parsed.
{
auto& manifest = ParseManifest(
R"({ "user_preferences":
{"color_scheme_dark": {"theme_color": "#FF0000"}} })");
EXPECT_TRUE(manifest->user_preferences.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(
R"({ "user_preferences":
{"color_scheme": {"dark": {"theme_color": "#FF0000"}}} })");
EXPECT_TRUE(manifest->user_preferences.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
}
{
ScopedWebAppDarkModeForTest feature(true);
// Manifest does not contain a 'user_preferences' field.
{
auto& manifest = ParseManifest(R"({ })");
EXPECT_TRUE(manifest->user_preferences.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
// user_preferences object is empty.
{
auto& manifest = ParseManifest(R"({ "user_preferences": {} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_TRUE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
// Empty preference is ignored.
{
auto& manifest =
ParseManifest(R"({ "user_preferences": {"color_scheme_dark": {}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_TRUE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(
R"({ "user_preferences": {"color_scheme": {"dark": {}}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_TRUE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
// Valid theme_color and background_color should be parsed
{
auto& manifest = ParseManifest(
R"({ "user_preferences": {"color_scheme_dark":
{"theme_color": "#FF0000", "background_color": "#FFF"}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_FALSE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(manifest->user_preferences->color_scheme_dark->theme_color,
0xFFFF0000u);
EXPECT_EQ(manifest->user_preferences->color_scheme_dark->background_color,
0xFFFFFFFFu);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(
R"({ "user_preferences": {"color_scheme": {"dark":
{"theme_color": "#FF0000", "background_color": "#FFF"}}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_FALSE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(manifest->user_preferences->color_scheme_dark->theme_color,
0xFFFF0000u);
EXPECT_EQ(manifest->user_preferences->color_scheme_dark->background_color,
0xFFFFFFFFu);
EXPECT_EQ(0u, GetErrorCount());
}
// Don't parse if the property isn't an object.
{
auto& manifest = ParseManifest(R"({ "user_preferences": [] })");
EXPECT_TRUE(manifest->user_preferences.is_null());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'user_preferences' ignored, object expected.",
errors()[0]);
}
// Ignore preference if it isn't an object.
{
auto& manifest =
ParseManifest(R"({ "user_preferences": {"color_scheme_dark": []} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_TRUE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("preference 'color_scheme_dark' ignored, object expected.",
errors()[0]);
}
{
auto& manifest = ParseManifest(
R"({ "user_preferences": {"color_scheme": {"dark": []}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_TRUE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("preference 'dark' ignored, object expected.", errors()[0]);
}
// Ignore color_scheme if it isn't an object.
{
auto& manifest =
ParseManifest(R"({ "user_preferences": {"color_scheme": []} })");
EXPECT_TRUE(manifest->user_preferences.is_null());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ("property 'color_scheme' ignored, object expected.",
errors()[0]);
}
// Preferences overriding a single value should be parsed.
{
auto& manifest = ParseManifest(
R"({ "user_preferences":
{"color_scheme_dark": {"theme_color": "#FF0000"}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_FALSE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(manifest->user_preferences->color_scheme_dark->theme_color,
0xFFFF0000u);
EXPECT_FALSE(
manifest->user_preferences->color_scheme_dark->has_background_color);
EXPECT_EQ(0u, GetErrorCount());
}
{
auto& manifest = ParseManifest(
R"({ "user_preferences":
{"color_scheme": {"dark": {"theme_color": "#FF0000"}}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_FALSE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(manifest->user_preferences->color_scheme_dark->theme_color,
0xFFFF0000u);
EXPECT_FALSE(
manifest->user_preferences->color_scheme_dark->has_background_color);
EXPECT_EQ(0u, GetErrorCount());
}
// Unknown preference string should be ignored.
{
auto& manifest = ParseManifest(
R"({ "user_preferences": {"something": {"theme_color": "#FF0000"}} })");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_TRUE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
// Manifests with both old and new formats should prefer the new format.
{
auto& manifest = ParseManifest(
R"({ "user_preferences":
{"color_scheme_dark": {"theme_color": "#FFFFFF"},
"color_scheme": {"dark": {"theme_color": "#FF0000"}}}})");
EXPECT_FALSE(manifest->user_preferences.is_null());
EXPECT_FALSE(manifest->user_preferences->color_scheme_dark.is_null());
EXPECT_EQ(manifest->user_preferences->color_scheme_dark->theme_color,
0xFFFF0000u);
EXPECT_FALSE(
manifest->user_preferences->color_scheme_dark->has_background_color);
EXPECT_EQ(0u, GetErrorCount());
}
}
}
TEST_F(ManifestParserTest, TabStripParseRules) {
using Visibility = mojom::blink::TabStripMemberVisibility;
{
ScopedWebAppTabStripForTest feature(false);
// Feature not enabled, should not be parsed.
{
auto& manifest =
ParseManifest(R"({ "tab_strip": {"home_tab": "auto"} })");
EXPECT_TRUE(manifest->tab_strip.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
}
{
ScopedWebAppTabStripForTest feature(true);
// Display mode not 'tabbed', 'tab_strip' should not be parsed.
{
auto& manifest =
ParseManifest(R"({ "tab_strip": {"home_tab": "auto"} })");
EXPECT_TRUE(manifest->tab_strip.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
// Manifest does not contain 'tab_strip' field.
{
auto& manifest = ParseManifest(R"({ "display_override": [ "tabbed" ] })");
EXPECT_TRUE(manifest->tab_strip.is_null());
EXPECT_EQ(0u, GetErrorCount());
}
// 'tab_strip' object is empty.
{
auto& manifest = ParseManifest(
R"({ "display_override": [ "tabbed" ], "tab_strip": {} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_EQ(manifest->tab_strip->home_tab->get_visibility(),
Visibility::kAuto);
EXPECT_EQ(manifest->tab_strip->new_tab_button->get_visibility(),
Visibility::kAuto);
EXPECT_EQ(0u, GetErrorCount());
}
// Home tab and new tab button are empty objects.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {"home_tab": {}, "new_tab_button": {}} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_FALSE(manifest->tab_strip->home_tab->is_visibility());
EXPECT_EQ(manifest->tab_strip->home_tab->get_params()->icons.size(), 0u);
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_visibility());
EXPECT_FALSE(
manifest->tab_strip->new_tab_button->get_params()->url.has_value());
EXPECT_EQ(0u, GetErrorCount());
}
// Home tab and new tab button are invalid.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {"home_tab": "something", "new_tab_button": 42} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_EQ(manifest->tab_strip->home_tab->get_visibility(),
Visibility::kAuto);
EXPECT_FALSE(manifest->tab_strip->home_tab->is_params());
EXPECT_EQ(manifest->tab_strip->new_tab_button->get_visibility(),
Visibility::kAuto);
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_params());
EXPECT_EQ(0u, GetErrorCount());
}
// Unknown members of 'tab_strip' are ignored.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {"unknown": {}} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_EQ(manifest->tab_strip->home_tab->get_visibility(),
Visibility::kAuto);
EXPECT_FALSE(manifest->tab_strip->home_tab->is_params());
EXPECT_EQ(manifest->tab_strip->new_tab_button->get_visibility(),
Visibility::kAuto);
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_params());
EXPECT_EQ(0u, GetErrorCount());
}
// Home tab with icons and new tab button with url are parsed.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {
"home_tab": {"icons": [{"src": "foo.jpg"}]},
"new_tab_button": {"url": "foo"}} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_FALSE(manifest->tab_strip->home_tab->is_visibility());
EXPECT_EQ(manifest->tab_strip->home_tab->get_params()->icons.size(), 1u);
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_visibility());
EXPECT_EQ(manifest->tab_strip->new_tab_button->get_params()->url,
KURL(DefaultDocumentUrl(), "foo"));
EXPECT_EQ(0u, GetErrorCount());
}
// New tab button url out of scope.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {"new_tab_button": {"url": "https://bar.com"}} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_visibility());
EXPECT_FALSE(
manifest->tab_strip->new_tab_button->get_params()->url.has_value());
EXPECT_EQ(1u, GetErrorCount());
EXPECT_EQ(
"property 'url' ignored, should be within scope of the manifest.",
errors()[0]);
}
// Home tab and new tab button set to 'auto'.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {"home_tab": "auto", "new_tab_button": "auto"} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_EQ(manifest->tab_strip->home_tab->get_visibility(),
Visibility::kAuto);
EXPECT_FALSE(manifest->tab_strip->home_tab->is_params());
EXPECT_EQ(manifest->tab_strip->new_tab_button->get_visibility(),
Visibility::kAuto);
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_params());
EXPECT_EQ(0u, GetErrorCount());
}
// Home tab and new tab button set to 'absent'.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {"home_tab": "absent", "new_tab_button": "absent"} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_EQ(manifest->tab_strip->home_tab->get_visibility(),
Visibility::kAbsent);
EXPECT_FALSE(manifest->tab_strip->home_tab->is_params());
EXPECT_EQ(manifest->tab_strip->new_tab_button->get_visibility(),
Visibility::kAbsent);
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_params());
EXPECT_EQ(0u, GetErrorCount());
}
// Home tab with 'auto' icons and new tab button with 'auto' url.
{
auto& manifest = ParseManifest(R"({
"display_override": [ "tabbed" ],
"tab_strip": {
"home_tab": {"icons": "auto"},
"new_tab_button": {"url": "auto"}} })");
EXPECT_FALSE(manifest->tab_strip.is_null());
EXPECT_FALSE(manifest->tab_strip->home_tab->is_visibility());
EXPECT_EQ(manifest->tab_strip->home_tab->get_params()->icons.size(), 0u);
EXPECT_FALSE(manifest->tab_strip->new_tab_button->is_visibility());
EXPECT_FALSE(
manifest->tab_strip->new_tab_button->get_params()->url.has_value());
EXPECT_EQ(0u, GetErrorCount());
}
}
}
} // namespace blink