chromium/components/search_provider_logos/google_logo_api_unittest.cc

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

#include "components/search_provider_logos/google_logo_api.h"

#include <memory>
#include <string>

#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/path_service.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace search_provider_logos {

TEST(GoogleNewLogoApiTest, UsesHttps) {}

TEST(GoogleNewLogoApiTest, AppendPreliminaryParamsParsing) {}

TEST(GoogleNewLogoApiTest, AppendPreliminaryParams) {}

TEST(GoogleNewLogoApiTest, AppendFingerprintParam) {}

TEST(GoogleNewLogoApiTest, ResolvesRelativeUrl) {}

TEST(GoogleNewLogoApiTest, DoesNotResolveAbsoluteUrl) {}

TEST(GoogleNewLogoApiTest, RequiresHttpsForContainedUrls) {}

TEST(GoogleNewLogoApiTest, AcceptsHttpForContainedUrlsIfBaseInsecure) {}

TEST(GoogleNewLogoApiTest, ParsesStaticImage) {}

TEST(GoogleNewLogoApiTest, ParsesShareButtonForSimpleDoodle) {}

TEST(GoogleNewLogoApiTest, ParsesNoShareButtonIfWrongShortLinkFormat) {}

TEST(GoogleNewLogoApiTest, ParsesNoShareButtonIfShortLinkInvalid) {}

TEST(GoogleNewLogoApiTest, ParsesShareButtonForAnimatedDoodle) {}

TEST(GoogleNewLogoApiTest, ParsesAnimatedImage) {}

TEST(GoogleNewLogoApiTest, ParsesLoggingUrls) {}

TEST(GoogleNewLogoApiTest, ParsesImageSize) {}

TEST(GoogleNewLogoApiTest, ParsesInteractiveDoodle) {}

TEST(GoogleNewLogoApiTest, ParsesInteractiveDoodleWithNewWindowAsSimple) {}

TEST(GoogleNewLogoApiTest, DefaultsInteractiveIframeSize) {}

TEST(GoogleNewLogoApiTest, ParsesCapturedApiResult) {}

}  // namespace search_provider_logos