1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85
   86

content / public / test / browsing_topics_test_util.h [blame]

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

#ifndef CONTENT_PUBLIC_TEST_BROWSING_TOPICS_TEST_UTIL_H_
#define CONTENT_PUBLIC_TEST_BROWSING_TOPICS_TEST_UTIL_H_

#include "base/files/file_path.h"
#include "content/public/browser/browsing_topics_site_data_manager.h"

namespace content {

class BrowsingTopicsSiteDataManagerImpl;

// Synchrnously get all the browsing topics api usage contexts. Entries are
// sorted based on [hashed_context_domain, hashed_main_frame_host, time]
std::vector<browsing_topics::ApiUsageContext> GetBrowsingTopicsApiUsage(
    BrowsingTopicsSiteDataManager* topics_site_data_manager);

// Synchronously get unhashed context domains from hashed context domains.
std::map<browsing_topics::HashedDomain, std::string>
GetContextDomainsFromHashedContextDomains(
    content::BrowsingTopicsSiteDataManager* topics_site_data_manager,
    std::set<browsing_topics::HashedDomain> hashed_context_domains);

// A tester class that allows mocking a query failure (e.g. database error).
class TesterBrowsingTopicsSiteDataManager
    : public BrowsingTopicsSiteDataManager {
 public:
  explicit TesterBrowsingTopicsSiteDataManager(
      const base::FilePath& user_data_directory);

  ~TesterBrowsingTopicsSiteDataManager() override;

  TesterBrowsingTopicsSiteDataManager(
      const TesterBrowsingTopicsSiteDataManager&) = delete;
  TesterBrowsingTopicsSiteDataManager& operator=(
      const TesterBrowsingTopicsSiteDataManager&) = delete;
  TesterBrowsingTopicsSiteDataManager(TesterBrowsingTopicsSiteDataManager&&) =
      delete;
  TesterBrowsingTopicsSiteDataManager& operator=(
      TesterBrowsingTopicsSiteDataManager&&) = delete;

  // Use the default handling from `BrowsingTopicsSiteDataManagerImpl`.
  void ExpireDataBefore(base::Time time) override;

  // Use the default handling from `BrowsingTopicsSiteDataManagerImpl`.
  void ClearContextDomain(
      const browsing_topics::HashedDomain& hashed_context_domain) override;

  // Use the default handling from `BrowsingTopicsSiteDataManagerImpl`.
  void OnBrowsingTopicsApiUsed(
      const browsing_topics::HashedHost& hashed_top_host,
      const browsing_topics::HashedDomain& hashed_context_domain,
      const std::string& context_domain,
      base::Time time) override;

  void SetQueryFailureOverride() { query_failure_override_ = true; }

  void SetQueryResultDelay(base::TimeDelta query_result_delay) {
    query_result_delay_ = query_result_delay;
  }

  // Return a default/failed `ApiUsageContextQueryResult` if
  // `query_failure_override_` is true; otherwise, sse the default handling from
  // `BrowsingTopicsSiteDataManagerImpl`.
  void GetBrowsingTopicsApiUsage(
      base::Time begin_time,
      base::Time end_time,
      GetBrowsingTopicsApiUsageCallback callback) override;

  // Use the default handling from `BrowsingTopicsSiteDataManagerImpl`.
  void GetContextDomainsFromHashedContextDomains(
      const std::set<browsing_topics::HashedDomain>& hashed_context_domains,
      GetContextDomainsFromHashedContextDomainsCallback callback) override;

 private:
  std::unique_ptr<BrowsingTopicsSiteDataManagerImpl> manager_impl_;

  bool query_failure_override_ = false;
  base::TimeDelta query_result_delay_;
};

}  // namespace content

#endif  // CONTENT_PUBLIC_TEST_BROWSING_TOPICS_TEST_UTIL_H_