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

content / test / mock_reduce_accept_language_controller_delegate.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_TEST_MOCK_REDUCE_ACCEPT_LANGUAGE_CONTROLLER_DELEGATE_H_
#define CONTENT_TEST_MOCK_REDUCE_ACCEPT_LANGUAGE_CONTROLLER_DELEGATE_H_

#include <map>

#include "content/public/browser/reduce_accept_language_controller_delegate.h"
#include "url/origin.h"

namespace content {

class MockReduceAcceptLanguageControllerDelegate
    : public ReduceAcceptLanguageControllerDelegate {
 public:
  // Initialize user's accept-languages list as `languages` in the mock
  // instance, which is similar to setting user's Prefs accept-language list.
  explicit MockReduceAcceptLanguageControllerDelegate(
      const std::string& languages,
      bool is_incognito = false);

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

  ~MockReduceAcceptLanguageControllerDelegate() override;

  // ReduceAcceptLanguageControllerDelegate overrides.
  std::optional<std::string> GetReducedLanguage(
      const url::Origin& origin) override;
  std::vector<std::string> GetUserAcceptLanguages() const override;
  void PersistReducedLanguage(const url::Origin& origin,
                              const std::string& language) override;
  void ClearReducedLanguage(const url::Origin& origin) override;

  // Change the user's accept-language list for testing purpose.
  void SetUserAcceptLanguages(const std::string& languages);

 private:
  std::vector<std::string> user_accept_languages_;
  std::map<url::Origin, std::string> reduce_accept_language_map_;
  const bool is_incognito_;
};

}  // namespace content

#endif  // CONTENT_TEST_MOCK_REDUCE_ACCEPT_LANGUAGE_CONTROLLER_DELEGATE_H_