| Index: content/common/background_fetch/background_fetch_struct_traits_unittest.cc
|
| diff --git a/content/common/background_fetch/background_fetch_struct_traits_unittest.cc b/content/common/background_fetch/background_fetch_struct_traits_unittest.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..92a6aa9ba4bf7ecdc62319d991970784bd1f9be5
|
| --- /dev/null
|
| +++ b/content/common/background_fetch/background_fetch_struct_traits_unittest.cc
|
| @@ -0,0 +1,99 @@
|
| +// Copyright 2017 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 "content/common/background_fetch/background_fetch_struct_traits.h"
|
| +
|
| +#include <utility>
|
| +
|
| +#include "content/common/background_fetch/background_fetch_types.h"
|
| +#include "testing/gtest/include/gtest/gtest.h"
|
| +
|
| +namespace content {
|
| +
|
| +namespace {
|
| +
|
| +// Creates a new IconDefinition object for the given arguments.
|
| +IconDefinition CreateIconDefinition(std::string src,
|
| + std::string sizes,
|
| + std::string type) {
|
| + IconDefinition definition;
|
| + definition.src = std::move(src);
|
| + definition.sizes = std::move(sizes);
|
| + definition.type = std::move(type);
|
| +
|
| + return definition;
|
| +}
|
| +
|
| +// Returns whether the given IconDefinition objects are identical.
|
| +bool IconDefinitionsAreIdentical(const IconDefinition& left,
|
| + const IconDefinition& right) {
|
| + return left.src == right.src && left.sizes == right.sizes &&
|
| + left.type == right.type;
|
| +}
|
| +
|
| +} // namespace
|
| +
|
| +TEST(BackgroundFetchStructTraitsTest, BackgroundFetchOptionsRoundtrip) {
|
| + BackgroundFetchOptions options;
|
| + options.icons = {
|
| + CreateIconDefinition("my_icon.png", "256x256", "image/png"),
|
| + CreateIconDefinition("my_small_icon.jpg", "128x128", "image/jpg")};
|
| + options.title = "My Background Fetch";
|
| + options.total_download_size = 9001;
|
| +
|
| + BackgroundFetchOptions roundtrip_options;
|
| + ASSERT_TRUE(blink::mojom::BackgroundFetchOptions::Deserialize(
|
| + blink::mojom::BackgroundFetchOptions::Serialize(&options),
|
| + &roundtrip_options));
|
| +
|
| + ASSERT_EQ(roundtrip_options.icons.size(), options.icons.size());
|
| + for (size_t i = 0; i < options.icons.size(); ++i) {
|
| + EXPECT_TRUE(IconDefinitionsAreIdentical(options.icons[i],
|
| + roundtrip_options.icons[i]));
|
| + }
|
| +
|
| + EXPECT_EQ(roundtrip_options.title, options.title);
|
| + EXPECT_EQ(roundtrip_options.total_download_size, options.total_download_size);
|
| +}
|
| +
|
| +TEST(BackgroundFetchStructTraitsTest, BackgroundFetchRegistrationRoundTrip) {
|
| + BackgroundFetchRegistration registration;
|
| + registration.tag = "my_tag";
|
| + registration.icons = {
|
| + CreateIconDefinition("my_icon.png", "256x256", "image/png"),
|
| + CreateIconDefinition("my_small_icon.jpg", "128x128", "image/jpg")};
|
| + registration.title = "My Background Fetch";
|
| + registration.total_download_size = 9001;
|
| +
|
| + BackgroundFetchRegistration roundtrip_registration;
|
| + ASSERT_TRUE(blink::mojom::BackgroundFetchRegistration::Deserialize(
|
| + blink::mojom::BackgroundFetchRegistration::Serialize(®istration),
|
| + &roundtrip_registration));
|
| +
|
| + EXPECT_EQ(roundtrip_registration.tag, registration.tag);
|
| +
|
| + ASSERT_EQ(roundtrip_registration.icons.size(), registration.icons.size());
|
| + for (size_t i = 0; i < registration.icons.size(); ++i) {
|
| + EXPECT_TRUE(IconDefinitionsAreIdentical(registration.icons[i],
|
| + roundtrip_registration.icons[i]));
|
| + }
|
| +
|
| + EXPECT_EQ(roundtrip_registration.title, registration.title);
|
| + EXPECT_EQ(roundtrip_registration.total_download_size,
|
| + registration.total_download_size);
|
| +}
|
| +
|
| +TEST(BackgroundFetchStructTraitsTest, IconDefinitionRoundtrip) {
|
| + IconDefinition definition =
|
| + CreateIconDefinition("my_icon.png", "256x256", "image/png");
|
| +
|
| + IconDefinition roundtrip_definition;
|
| + ASSERT_TRUE(blink::mojom::IconDefinition::Deserialize(
|
| + blink::mojom::IconDefinition::Serialize(&definition),
|
| + &roundtrip_definition));
|
| +
|
| + EXPECT_TRUE(IconDefinitionsAreIdentical(definition, roundtrip_definition));
|
| +}
|
| +
|
| +} // namespace content
|
|
|