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 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956
|
// Copyright 2013 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.
#include "chrome/browser/chromeos/policy/cloud_external_data_policy_observer.h"
#include <utility>
#include <vector>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/json/json_writer.h"
#include "base/memory/ref_counted.h"
#include "base/message_loop/message_loop.h"
#include "base/message_loop/message_loop_proxy.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/values.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_util.h"
#include "chrome/browser/chromeos/policy/device_local_account.h"
#include "chrome/browser/chromeos/policy/device_local_account_external_data_manager.h"
#include "chrome/browser/chromeos/policy/device_local_account_policy_provider.h"
#include "chrome/browser/chromeos/policy/device_local_account_policy_service.h"
#include "chrome/browser/chromeos/policy/proto/chrome_device_policy.pb.h"
#include "chrome/browser/chromeos/profiles/profile_helper.h"
#include "chrome/browser/chromeos/settings/device_settings_service.h"
#include "chrome/browser/chromeos/settings/device_settings_test_helper.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/chrome_paths.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/policy/core/common/cloud/cloud_policy_core.h"
#include "components/policy/core/common/cloud/cloud_policy_store.h"
#include "components/policy/core/common/cloud/mock_cloud_external_data_manager.h"
#include "components/policy/core/common/cloud/policy_builder.h"
#include "components/policy/core/common/external_data_fetcher.h"
#include "components/policy/core/common/mock_configuration_policy_provider.h"
#include "components/policy/core/common/policy_map.h"
#include "components/policy/core/common/policy_service.h"
#include "components/policy/core/common/policy_service_impl.h"
#include "components/policy/core/common/policy_types.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
#include "net/url_request/test_url_fetcher_factory.h"
#include "net/url_request/url_fetcher_delegate.h"
#include "net/url_request/url_request_context_getter.h"
#include "net/url_request/url_request_status.h"
#include "policy/policy_constants.h"
#include "policy/proto/cloud_policy.pb.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace em = enterprise_management;
using ::testing::Mock;
using ::testing::Return;
using ::testing::SaveArg;
using ::testing::_;
namespace policy {
namespace {
const char kDeviceLocalAccount[] = "device_local_account@localhost";
const char kRegularUserID[] = "user@example.com";
const char kAvatar1URL[] = "http://localhost/avatar1.jpg";
const char kAvatar2URL[] = "http://localhost/avatar2.jpg";
void ConstructAvatarPolicy(const std::string& file_name,
const std::string& url,
std::string* policy_data,
std::string* policy) {
base::FilePath test_data_dir;
ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &test_data_dir));
ASSERT_TRUE(base::ReadFileToString(
test_data_dir.Append("chromeos").Append(file_name),
policy_data));
base::JSONWriter::Write(
test::ConstructExternalDataReference(url, *policy_data).get(),
policy);
}
} // namespace
class CloudExternalDataPolicyObserverTest
: public chromeos::DeviceSettingsTestBase,
public CloudExternalDataPolicyObserver::Delegate {
public:
typedef std::pair<std::string, std::string> FetchedCall;
CloudExternalDataPolicyObserverTest();
virtual ~CloudExternalDataPolicyObserverTest();
// chromeos::DeviceSettingsTestBase:
virtual void SetUp() override;
virtual void TearDown() override;
// CloudExternalDataPolicyObserver::Delegate:
virtual void OnExternalDataSet(const std::string& policy,
const std::string& user_id) override;
virtual void OnExternalDataCleared(const std::string& policy,
const std::string& user_id) override;
virtual void OnExternalDataFetched(const std::string& policy,
const std::string& user_id,
scoped_ptr<std::string> data) override;
void CreateObserver();
void ClearObservations();
void SetDeviceLocalAccountAvatarPolicy(const std::string& account_id,
const std::string& value);
void AddDeviceLocalAccount(const std::string& account_id);
void RemoveDeviceLocalAccount(const std::string& account_id);
DeviceLocalAccountPolicyBroker* GetBrokerForDeviceLocalAccountUser();
void RefreshDeviceLocalAccountPolicy(DeviceLocalAccountPolicyBroker* broker);
void LogInAsDeviceLocalAccount(const std::string& user_id);
void SetRegularUserAvatarPolicy(const std::string& value);
void LogInAsRegularUser();
const std::string device_local_account_user_id_;
std::string avatar_policy_1_data_;
std::string avatar_policy_2_data_;
std::string avatar_policy_1_;
std::string avatar_policy_2_;
chromeos::CrosSettings cros_settings_;
scoped_ptr<DeviceLocalAccountPolicyService>
device_local_account_policy_service_;
net::TestURLFetcherFactory url_fetcher_factory_;
scoped_ptr<DeviceLocalAccountPolicyProvider>
device_local_account_policy_provider_;
MockCloudExternalDataManager external_data_manager_;
MockConfigurationPolicyProvider user_policy_provider_;
scoped_ptr<TestingProfile> profile_;
scoped_ptr<CloudExternalDataPolicyObserver> observer_;
std::vector<std::string> set_calls_;
std::vector<std::string> cleared_calls_;
std::vector<FetchedCall> fetched_calls_;
ExternalDataFetcher::FetchCallback fetch_callback_;
TestingProfileManager profile_manager_;
private:
DISALLOW_COPY_AND_ASSIGN(CloudExternalDataPolicyObserverTest);
};
CloudExternalDataPolicyObserverTest::CloudExternalDataPolicyObserverTest()
: device_local_account_user_id_(GenerateDeviceLocalAccountUserId(
kDeviceLocalAccount,
DeviceLocalAccount::TYPE_PUBLIC_SESSION)),
cros_settings_(&device_settings_service_),
profile_manager_(TestingBrowserProcess::GetGlobal()) {
}
CloudExternalDataPolicyObserverTest::~CloudExternalDataPolicyObserverTest() {
}
void CloudExternalDataPolicyObserverTest::SetUp() {
chromeos::DeviceSettingsTestBase::SetUp();
ASSERT_TRUE(profile_manager_.SetUp());
device_local_account_policy_service_.reset(
new DeviceLocalAccountPolicyService(&device_settings_test_helper_,
&device_settings_service_,
&cros_settings_,
base::MessageLoopProxy::current(),
base::MessageLoopProxy::current(),
base::MessageLoopProxy::current(),
base::MessageLoopProxy::current(),
NULL));
url_fetcher_factory_.set_remove_fetcher_on_delete(true);
EXPECT_CALL(user_policy_provider_, IsInitializationComplete(_))
.WillRepeatedly(Return(true));
user_policy_provider_.Init();
ConstructAvatarPolicy("avatar1.jpg",
kAvatar1URL,
&avatar_policy_1_data_,
&avatar_policy_1_);
ConstructAvatarPolicy("avatar2.jpg",
kAvatar2URL,
&avatar_policy_2_data_,
&avatar_policy_2_);
}
void CloudExternalDataPolicyObserverTest::TearDown() {
observer_.reset();
user_policy_provider_.Shutdown();
profile_.reset();
if (device_local_account_policy_provider_) {
device_local_account_policy_provider_->Shutdown();
device_local_account_policy_provider_.reset();
}
device_local_account_policy_service_->Shutdown();
device_local_account_policy_service_.reset();
chromeos::DeviceSettingsTestBase::TearDown();
}
void CloudExternalDataPolicyObserverTest::OnExternalDataSet(
const std::string& policy,
const std::string& user_id) {
EXPECT_EQ(key::kUserAvatarImage, policy);
set_calls_.push_back(user_id);
}
void CloudExternalDataPolicyObserverTest::OnExternalDataCleared(
const std::string& policy,
const std::string& user_id) {
EXPECT_EQ(key::kUserAvatarImage, policy);
cleared_calls_.push_back(user_id);
}
void CloudExternalDataPolicyObserverTest::OnExternalDataFetched(
const std::string& policy,
const std::string& user_id,
scoped_ptr<std::string> data) {
EXPECT_EQ(key::kUserAvatarImage, policy);
fetched_calls_.push_back(make_pair(user_id, std::string()));
fetched_calls_.back().second.swap(*data);
}
void CloudExternalDataPolicyObserverTest::CreateObserver() {
observer_.reset(new CloudExternalDataPolicyObserver(
&cros_settings_,
device_local_account_policy_service_.get(),
key::kUserAvatarImage,
this));
observer_->Init();
}
void CloudExternalDataPolicyObserverTest::ClearObservations() {
set_calls_.clear();
cleared_calls_.clear();
fetched_calls_.clear();
}
void CloudExternalDataPolicyObserverTest::SetDeviceLocalAccountAvatarPolicy(
const std::string& account_id,
const std::string& value) {
UserPolicyBuilder builder;
builder.policy_data().set_policy_type(
dm_protocol::kChromePublicAccountPolicyType);
builder.policy_data().set_settings_entity_id(account_id);
builder.policy_data().set_username(account_id);
if (!value.empty())
builder.payload().mutable_useravatarimage()->set_value(value);
builder.Build();
device_settings_test_helper_.set_device_local_account_policy_blob(
account_id,
builder.GetBlob());
}
void CloudExternalDataPolicyObserverTest::AddDeviceLocalAccount(
const std::string& account_id) {
em::DeviceLocalAccountInfoProto* account =
device_policy_.payload().mutable_device_local_accounts()->add_account();
account->set_account_id(account_id);
account->set_type(
em::DeviceLocalAccountInfoProto::ACCOUNT_TYPE_PUBLIC_SESSION);
device_policy_.Build();
device_settings_test_helper_.set_policy_blob(device_policy_.GetBlob());
ReloadDeviceSettings();
}
void CloudExternalDataPolicyObserverTest::RemoveDeviceLocalAccount(
const std::string& account_id) {
em::DeviceLocalAccountsProto* accounts =
device_policy_.payload().mutable_device_local_accounts();
std::vector<std::string> account_ids;
for (int i = 0; i < accounts->account_size(); ++i) {
if (accounts->account(i).account_id() != account_id)
account_ids.push_back(accounts->account(i).account_id());
}
accounts->clear_account();
for (std::vector<std::string>::const_iterator it = account_ids.begin();
it != account_ids.end(); ++it) {
em::DeviceLocalAccountInfoProto* account = accounts->add_account();
account->set_account_id(*it);
account->set_type(
em::DeviceLocalAccountInfoProto::ACCOUNT_TYPE_PUBLIC_SESSION);
}
device_policy_.Build();
device_settings_test_helper_.set_policy_blob(device_policy_.GetBlob());
ReloadDeviceSettings();
}
DeviceLocalAccountPolicyBroker*
CloudExternalDataPolicyObserverTest::GetBrokerForDeviceLocalAccountUser() {
return device_local_account_policy_service_->GetBrokerForUser(
device_local_account_user_id_);
}
void CloudExternalDataPolicyObserverTest::RefreshDeviceLocalAccountPolicy(
DeviceLocalAccountPolicyBroker* broker) {
broker->core()->store()->Load();
device_settings_test_helper_.Flush();
}
void CloudExternalDataPolicyObserverTest::LogInAsDeviceLocalAccount(
const std::string& user_id) {
user_manager_->AddUser(user_id);
device_local_account_policy_provider_.reset(
new DeviceLocalAccountPolicyProvider(
user_id,
device_local_account_policy_service_.get(),
scoped_ptr<PolicyMap>()));
PolicyServiceImpl::Providers providers;
providers.push_back(device_local_account_policy_provider_.get());
TestingProfile::Builder builder;
builder.SetPolicyService(
scoped_ptr<PolicyService>(new PolicyServiceImpl(providers)));
builder.SetPath(chromeos::ProfileHelper::Get()->GetProfilePathByUserIdHash(
chromeos::ProfileHelper::GetUserIdHashByUserIdForTesting(user_id)));
profile_ = builder.Build();
profile_->set_profile_name(user_id);
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_LOGIN_USER_PROFILE_PREPARED,
content::NotificationService::AllSources(),
content::Details<Profile>(profile_.get()));
}
void CloudExternalDataPolicyObserverTest::SetRegularUserAvatarPolicy(
const std::string& value) {
PolicyMap policy_map;
if (!value.empty()) {
policy_map.Set(
key::kUserAvatarImage,
POLICY_LEVEL_MANDATORY,
POLICY_SCOPE_USER,
new base::StringValue(value),
external_data_manager_.CreateExternalDataFetcher(
key::kUserAvatarImage).release());
}
user_policy_provider_.UpdateChromePolicy(policy_map);
}
void CloudExternalDataPolicyObserverTest::LogInAsRegularUser() {
user_manager_->AddUser(kRegularUserID);
PolicyServiceImpl::Providers providers;
providers.push_back(&user_policy_provider_);
TestingProfile::Builder builder;
builder.SetPolicyService(
scoped_ptr<PolicyService>(new PolicyServiceImpl(providers)));
builder.SetPath(chromeos::ProfileHelper::Get()->GetProfilePathByUserIdHash(
chromeos::ProfileHelper::GetUserIdHashByUserIdForTesting(
kRegularUserID)));
profile_ = builder.Build();
profile_->set_profile_name(kRegularUserID);
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_LOGIN_USER_PROFILE_PREPARED,
content::NotificationService::AllSources(),
content::Details<Profile>(profile_.get()));
}
// Verifies that when an external data reference is set for a device-local
// account, a corresponding notification is emitted and a fetch is started.
// Further verifies that when the fetch succeeds, a notification containing the
// external data is emitted.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountFetchSuccess) {
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_1_);
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
net::TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar1URL), fetcher->GetOriginalURL());
fetcher->SetResponseString(avatar_policy_1_data_);
fetcher->set_status(net::URLRequestStatus(net::URLRequestStatus::SUCCESS,
net::OK));
fetcher->set_response_code(200);
fetcher->delegate()->OnURLFetchComplete(fetcher);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
ASSERT_EQ(1u, fetched_calls_.size());
EXPECT_EQ(device_local_account_user_id_, fetched_calls_.front().first);
EXPECT_EQ(avatar_policy_1_data_, fetched_calls_.front().second);
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(1));
}
// Verifies that when an external data reference is set for a device-local
// account, a corresponding notification is emitted and a fetch is started.
// Further verifies that when the fetch fails, no notification is emitted.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountFetchFailure) {
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_1_);
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
net::TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar1URL), fetcher->GetOriginalURL());
fetcher->set_status(net::URLRequestStatus(net::URLRequestStatus::SUCCESS,
net::OK));
fetcher->set_response_code(400);
fetcher->delegate()->OnURLFetchComplete(fetcher);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(1));
}
// Verifies that when the external data reference for a device-local account is
// initially not set, no notifications are emitted. Further verifies that when
// the external data reference is then cleared (which is a no-op), again, no
// notifications are emitted.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountClearUnset) {
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(0));
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, "");
RefreshDeviceLocalAccountPolicy(broker);
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(0));
}
// Verifies that when the external data reference for a device-local account is
// initially set, a corresponding notification is emitted and a fetch is
// started. Further verifies that when the external data reference is then
// cleared, a corresponding notification is emitted and the fetch is canceled.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountClearSet) {
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_1_);
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
net::TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar1URL), fetcher->GetOriginalURL());
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, "");
RefreshDeviceLocalAccountPolicy(broker);
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, cleared_calls_.size());
EXPECT_EQ(device_local_account_user_id_, cleared_calls_.front());
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(0));
}
// Verifies that when the external data reference for a device-local account is
// initially not set, no notifications are emitted. Further verifies that when
// the external data reference is then set, a corresponding notification is
// emitted and a fetch is started. Also verifies that when the fetch eventually
// succeeds, a notification containing the external data is emitted.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountSetUnset) {
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_1_);
RefreshDeviceLocalAccountPolicy(broker);
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
net::TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar1URL), fetcher->GetOriginalURL());
fetcher->SetResponseString(avatar_policy_1_data_);
fetcher->set_status(net::URLRequestStatus(net::URLRequestStatus::SUCCESS,
net::OK));
fetcher->set_response_code(200);
fetcher->delegate()->OnURLFetchComplete(fetcher);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
ASSERT_EQ(1u, fetched_calls_.size());
EXPECT_EQ(device_local_account_user_id_, fetched_calls_.front().first);
EXPECT_EQ(avatar_policy_1_data_, fetched_calls_.front().second);
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(1));
}
// Verifies that when the external data reference for a device-local account is
// initially set, a corresponding notification is emitted and a fetch is
// started. Further verifies that when the external data reference is then
// updated, a corresponding notification is emitted and the fetch is restarted.
// Also verifies that when the fetch eventually succeeds, a notification
// containing the external data is emitted.
TEST_F(CloudExternalDataPolicyObserverTest, ExistingDeviceLocalAccountSetSet) {
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_1_);
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
net::TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar1URL), fetcher->GetOriginalURL());
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_2_);
RefreshDeviceLocalAccountPolicy(broker);
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
fetcher = url_fetcher_factory_.GetFetcherByID(1);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar2URL), fetcher->GetOriginalURL());
fetcher->SetResponseString(avatar_policy_2_data_);
fetcher->set_status(net::URLRequestStatus(net::URLRequestStatus::SUCCESS,
net::OK));
fetcher->set_response_code(200);
fetcher->delegate()->OnURLFetchComplete(fetcher);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
ASSERT_EQ(1u, fetched_calls_.size());
EXPECT_EQ(device_local_account_user_id_, fetched_calls_.front().first);
EXPECT_EQ(avatar_policy_2_data_, fetched_calls_.front().second);
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(2));
}
// Verifies that when the external data reference for a device-local account is
// initially not set, no notifications are emitted during login into the
// account. Further verifies that when the external data reference is then set,
// a corresponding notification is emitted only once and a fetch is started.
// Also verifies that when the fetch eventually succeeds, a notification
// containing the external data is emitted, again, only once.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountSetAfterLogin) {
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
LogInAsDeviceLocalAccount(kDeviceLocalAccount);
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_1_);
RefreshDeviceLocalAccountPolicy(broker);
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
net::TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar1URL), fetcher->GetOriginalURL());
fetcher->SetResponseString(avatar_policy_1_data_);
fetcher->set_status(net::URLRequestStatus(net::URLRequestStatus::SUCCESS,
net::OK));
fetcher->set_response_code(200);
fetcher->delegate()->OnURLFetchComplete(fetcher);
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
ASSERT_EQ(1u, fetched_calls_.size());
EXPECT_EQ(device_local_account_user_id_, fetched_calls_.front().first);
EXPECT_EQ(avatar_policy_1_data_, fetched_calls_.front().second);
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(1));
}
// Verifies that when the external data reference for a device-local account is
// initially not set, no notifications are emitted. Further verifies that when
// the device-local account is then removed, again, no notifications are sent.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountRemoveAccountUnset) {
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(0));
RemoveDeviceLocalAccount(kDeviceLocalAccount);
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(0));
}
// Verifies that when the external data reference for a device-local account is
// initially set, a corresponding notification is emitted and a fetch is
// started. Further verifies that when the device-local account is then removed,
// a notification indicating that the external data reference has been cleared
// is emitted and the fetch is canceled.
TEST_F(CloudExternalDataPolicyObserverTest,
ExistingDeviceLocalAccountRemoveAccountSet) {
SetDeviceLocalAccountAvatarPolicy(kDeviceLocalAccount, avatar_policy_1_);
AddDeviceLocalAccount(kDeviceLocalAccount);
DeviceLocalAccountPolicyBroker* broker = GetBrokerForDeviceLocalAccountUser();
ASSERT_TRUE(broker);
broker->external_data_manager()->Connect(NULL);
base::RunLoop().RunUntilIdle();
CreateObserver();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(device_local_account_user_id_, set_calls_.front());
ClearObservations();
net::TestURLFetcher* fetcher = url_fetcher_factory_.GetFetcherByID(0);
ASSERT_TRUE(fetcher);
EXPECT_EQ(GURL(kAvatar1URL), fetcher->GetOriginalURL());
RemoveDeviceLocalAccount(kDeviceLocalAccount);
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, cleared_calls_.size());
EXPECT_EQ(device_local_account_user_id_, cleared_calls_.front());
ClearObservations();
EXPECT_FALSE(url_fetcher_factory_.GetFetcherByID(0));
}
// Verifies that when an external data reference is set for a regular user and
// the user logs in, a corresponding notification is emitted and a fetch is
// started. Further verifies that when the fetch succeeds, a notification
// containing the external data is emitted.
TEST_F(CloudExternalDataPolicyObserverTest, RegularUserFetchSuccess) {
SetRegularUserAvatarPolicy(avatar_policy_1_);
CreateObserver();
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _))
.Times(1)
.WillOnce(SaveArg<1>(&fetch_callback_));
LogInAsRegularUser();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(kRegularUserID, set_calls_.front());
ClearObservations();
Mock::VerifyAndClear(&external_data_manager_);
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _)).Times(0);
fetch_callback_.Run(make_scoped_ptr(new std::string(avatar_policy_1_data_)));
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
ASSERT_EQ(1u, fetched_calls_.size());
EXPECT_EQ(kRegularUserID, fetched_calls_.front().first);
EXPECT_EQ(avatar_policy_1_data_, fetched_calls_.front().second);
ClearObservations();
}
// Verifies that when the external data reference for a regular user is not set
// while the user is logging in, no notifications are emitted. Further verifies
// that when the external data reference is then cleared (which is a no-op),
// again, no notifications are emitted.
TEST_F(CloudExternalDataPolicyObserverTest, RegularUserClearUnset) {
CreateObserver();
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _)).Times(0);
LogInAsRegularUser();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
Mock::VerifyAndClear(&external_data_manager_);
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _)).Times(0);
SetRegularUserAvatarPolicy("");
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
}
// Verifies that when the external data reference for a regular user is set
// while the user is logging in, a corresponding notification is emitted and a
// fetch is started. Further verifies that when the external data reference is
// then cleared, a corresponding notification is emitted and no new fetch is
// started.
TEST_F(CloudExternalDataPolicyObserverTest, RegularUserClearSet) {
SetRegularUserAvatarPolicy(avatar_policy_1_);
CreateObserver();
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _))
.Times(1)
.WillOnce(SaveArg<1>(&fetch_callback_));
LogInAsRegularUser();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(kRegularUserID, set_calls_.front());
ClearObservations();
Mock::VerifyAndClear(&external_data_manager_);
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _)).Times(0);
SetRegularUserAvatarPolicy("");
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, cleared_calls_.size());
EXPECT_EQ(kRegularUserID, cleared_calls_.front());
ClearObservations();
}
// Verifies that when the external data reference for a regular user is not set
// while the user is logging in, no notifications are emitted. Further verifies
// that when the external data reference is then set, a corresponding
// notification is emitted and a fetch is started. Also verifies that when the
// fetch eventually succeeds, a notification containing the external data is
// emitted.
TEST_F(CloudExternalDataPolicyObserverTest, RegularUserSetUnset) {
CreateObserver();
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _)).Times(0);
LogInAsRegularUser();
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ClearObservations();
Mock::VerifyAndClear(&external_data_manager_);
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _))
.Times(1)
.WillOnce(SaveArg<1>(&fetch_callback_));
SetRegularUserAvatarPolicy(avatar_policy_1_);
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(kRegularUserID, set_calls_.front());
ClearObservations();
Mock::VerifyAndClear(&external_data_manager_);
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _)).Times(0);
fetch_callback_.Run(make_scoped_ptr(new std::string(avatar_policy_1_data_)));
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
ASSERT_EQ(1u, fetched_calls_.size());
EXPECT_EQ(kRegularUserID, fetched_calls_.front().first);
EXPECT_EQ(avatar_policy_1_data_, fetched_calls_.front().second);
ClearObservations();
}
// Verifies that when the external data reference for a regular user is set
// while the user is logging in, a corresponding notification is emitted and a
// fetch is started. Further verifies that when the external data reference is
// then updated, a corresponding notification is emitted and the fetch is
// restarted. Also verifies that when the fetch eventually succeeds, a
// notification containing the external data is emitted.
TEST_F(CloudExternalDataPolicyObserverTest, RegularUserSetSet) {
SetRegularUserAvatarPolicy(avatar_policy_1_);
CreateObserver();
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _))
.Times(1)
.WillOnce(SaveArg<1>(&fetch_callback_));
LogInAsRegularUser();
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(kRegularUserID, set_calls_.front());
ClearObservations();
Mock::VerifyAndClear(&external_data_manager_);
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _))
.Times(1)
.WillOnce(SaveArg<1>(&fetch_callback_));
SetRegularUserAvatarPolicy(avatar_policy_2_);
EXPECT_TRUE(cleared_calls_.empty());
EXPECT_TRUE(fetched_calls_.empty());
ASSERT_EQ(1u, set_calls_.size());
EXPECT_EQ(kRegularUserID, set_calls_.front());
ClearObservations();
Mock::VerifyAndClear(&external_data_manager_);
EXPECT_CALL(external_data_manager_, Fetch(key::kUserAvatarImage, _)).Times(0);
fetch_callback_.Run(make_scoped_ptr(new std::string(avatar_policy_2_data_)));
EXPECT_TRUE(set_calls_.empty());
EXPECT_TRUE(cleared_calls_.empty());
ASSERT_EQ(1u, fetched_calls_.size());
EXPECT_EQ(kRegularUserID, fetched_calls_.front().first);
EXPECT_EQ(avatar_policy_2_data_, fetched_calls_.front().second);
ClearObservations();
}
} // namespace policy
|