blob: 12e2afe85e6d0669a67923077677d1651a168033 [file] [log] [blame]
// Copyright 2021 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.
#ifndef ASH_WALLPAPER_TEST_WALLPAPER_CONTROLLER_CLIENT_H_
#define ASH_WALLPAPER_TEST_WALLPAPER_CONTROLLER_CLIENT_H_
#include <stddef.h>
#include <unordered_map>
#include "ash/public/cpp/wallpaper/wallpaper_controller_client.h"
#include "components/account_id/account_id.h"
namespace ash {
// A test wallpaper controller client class.
class TestWallpaperControllerClient : public WallpaperControllerClient {
public:
TestWallpaperControllerClient();
TestWallpaperControllerClient(const TestWallpaperControllerClient&) = delete;
TestWallpaperControllerClient& operator=(
const TestWallpaperControllerClient&) = delete;
virtual ~TestWallpaperControllerClient();
size_t open_count() const { return open_count_; }
size_t close_preview_count() const { return close_preview_count_; }
size_t set_default_wallpaper_count() const {
return set_default_wallpaper_count_;
}
size_t migrate_collection_id_from_chrome_app_count() const {
return migrate_collection_id_from_chrome_app_count_;
}
std::string get_fetch_daily_refresh_wallpaper_param() const {
return fetch_daily_refresh_wallpaper_param_;
}
AccountId get_save_wallpaper_to_drive_fs_account_id() const {
return save_wallpaper_to_drive_fs_account_id_;
}
AccountId get_wallpaper_path_from_drive_fs_account_id() const {
return get_wallpaper_path_from_drive_fs_account_id_;
}
void set_fetch_daily_refresh_info_fails(bool fails) {
fetch_daily_refresh_info_fails_ = fails;
}
void set_fake_files_id_for_account_id(const AccountId& account_id,
std::string fake_files_id) {
fake_files_ids_[account_id] = fake_files_id;
}
void set_wallpaper_sync_enabled(bool sync_enabled) {
wallpaper_sync_enabled_ = sync_enabled;
}
void ResetCounts();
// WallpaperControllerClient:
void OpenWallpaperPicker() override;
void MaybeClosePreviewWallpaper() override;
void SetDefaultWallpaper(const AccountId& account_id,
bool show_wallpaper) override;
void MigrateCollectionIdFromChromeApp(const AccountId& account_id) override;
void FetchDailyRefreshWallpaper(
const std::string& collection_id,
DailyWallpaperUrlFetchedCallback callback) override;
void FetchImagesForCollection(
const std::string& collection_id,
FetchImagesForCollectionCallback callback) override;
bool SaveWallpaperToDriveFs(const AccountId& account_id,
const base::FilePath& origin) override;
base::FilePath GetWallpaperPathFromDriveFs(
const AccountId& account_id) override;
void GetFilesId(const AccountId& account_id,
base::OnceCallback<void(const std::string&)>
files_id_callback) const override;
bool IsWallpaperSyncEnabled(const AccountId& account_id) const override;
private:
size_t open_count_ = 0;
size_t close_preview_count_ = 0;
size_t set_default_wallpaper_count_ = 0;
size_t migrate_collection_id_from_chrome_app_count_ = 0;
std::string fetch_daily_refresh_wallpaper_param_;
bool fetch_daily_refresh_info_fails_ = false;
AccountId get_wallpaper_path_from_drive_fs_account_id_;
AccountId save_wallpaper_to_drive_fs_account_id_;
std::unordered_map<AccountId, std::string> fake_files_ids_;
bool wallpaper_sync_enabled_ = true;
bool fetch_images_for_collection_fails_ = false;
};
} // namespace ash
#endif // ASH_WALLPAPER_TEST_WALLPAPER_CONTROLLER_CLIENT_H_