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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/settings/profile_info_handler.h"
#include <memory>
#include "base/containers/span.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/values.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/testing_browser_process.h"
#include "chrome/test/base/testing_profile.h"
#include "chrome/test/base/testing_profile_manager.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/test/browser_task_environment.h"
#include "content/public/test/test_web_ui.h"
#include "net/base/data_url.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/codec/png_codec.h"
#include "url/gurl.h"
#if BUILDFLAG(IS_CHROMEOS)
#include "chrome/browser/ash/login/users/fake_chrome_user_manager.h"
#include "components/user_manager/scoped_user_manager.h"
#endif
namespace settings {
namespace {
#if BUILDFLAG(IS_CHROMEOS)
constexpr char fake_id[] = "fake_id";
constexpr char fake_email[] = "fake_id@gmail.com";
#endif
class TestProfileInfoHandler : public ProfileInfoHandler {
public:
explicit TestProfileInfoHandler(Profile* profile)
: ProfileInfoHandler(profile) {}
using ProfileInfoHandler::set_web_ui;
};
} // namespace
class ProfileInfoHandlerTest : public testing::Test {
public:
ProfileInfoHandlerTest()
: profile_manager_(TestingBrowserProcess::GetGlobal()),
profile_(nullptr) {}
void SetUp() override {
ASSERT_TRUE(profile_manager_.SetUp());
#if BUILDFLAG(IS_CHROMEOS)
auto* fake_user_manager = new ash::FakeChromeUserManager;
user_manager_enabler_ = std::make_unique<user_manager::ScopedUserManager>(
base::WrapUnique(fake_user_manager));
profile_ = profile_manager_.CreateTestingProfile(fake_email);
fake_user_manager->AddUser(AccountId::FromUserEmail(fake_email));
#else
profile_ = profile_manager_.CreateTestingProfile("Profile 1");
#endif
handler_ = std::make_unique<TestProfileInfoHandler>(profile_);
handler_->set_web_ui(&web_ui_);
}
void VerifyProfileInfo(const base::Value* call_argument) {
ASSERT_TRUE(call_argument->is_dict());
const base::Value::Dict& dict = call_argument->GetDict();
const std::string* name = dict.FindString("name");
const std::string* icon_url = dict.FindString("iconUrl");
ASSERT_TRUE(name);
ASSERT_TRUE(icon_url);
#if BUILDFLAG(IS_CHROMEOS)
EXPECT_EQ(fake_id, *name);
EXPECT_FALSE(icon_url->empty());
#else
EXPECT_EQ("Profile 1", *name);
std::string mime, charset, data;
EXPECT_TRUE(net::DataURL::Parse(GURL(*icon_url), &mime, &charset, &data));
EXPECT_EQ("image/png", mime);
SkBitmap bitmap = gfx::PNGCodec::Decode(base::as_byte_span(data));
EXPECT_FALSE(bitmap.isNull());
#endif
}
content::TestWebUI* web_ui() { return &web_ui_; }
Profile* profile() const { return profile_; }
TestProfileInfoHandler* handler() const { return handler_.get(); }
private:
content::BrowserTaskEnvironment task_environment_;
TestingProfileManager profile_manager_;
content::TestWebUI web_ui_;
#if BUILDFLAG(IS_CHROMEOS)
std::unique_ptr<user_manager::ScopedUserManager> user_manager_enabler_;
#endif
raw_ptr<Profile> profile_;
std::unique_ptr<TestProfileInfoHandler> handler_;
};
TEST_F(ProfileInfoHandlerTest, GetProfileInfo) {
base::Value::List list_args;
list_args.Append("get-profile-info-callback-id");
handler()->HandleGetProfileInfo(list_args);
EXPECT_EQ(1U, web_ui()->call_data().size());
const content::TestWebUI::CallData& data = *web_ui()->call_data().back();
EXPECT_EQ("cr.webUIResponse", data.function_name());
ASSERT_TRUE(data.arg1()->is_string());
EXPECT_EQ("get-profile-info-callback-id", data.arg1()->GetString());
ASSERT_TRUE(data.arg2()->is_bool());
EXPECT_TRUE(data.arg2()->GetBool());
VerifyProfileInfo(data.arg3());
}
TEST_F(ProfileInfoHandlerTest, PushProfileInfo) {
handler()->AllowJavascript();
handler()->OnProfileAvatarChanged(base::FilePath());
EXPECT_EQ(1U, web_ui()->call_data().size());
const content::TestWebUI::CallData& data = *web_ui()->call_data().back();
EXPECT_EQ("cr.webUIListenerCallback", data.function_name());
ASSERT_TRUE(data.arg1()->is_string());
EXPECT_EQ(ProfileInfoHandler::kProfileInfoChangedEventName,
data.arg1()->GetString());
VerifyProfileInfo(data.arg2());
}
} // namespace settings
|