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
|
// Copyright 2021 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/policy/cbcm_invalidations_initializer.h"
#include "base/functional/bind.h"
#include "base/json/json_writer.h"
#include "base/values.h"
#include "chrome/browser/device_identity/device_oauth2_token_service.h"
#include "chrome/browser/device_identity/device_oauth2_token_service_factory.h"
#include "chrome/browser/device_identity/device_oauth2_token_store_desktop.h"
#include "components/os_crypt/sync/os_crypt_mocker.h"
#include "components/policy/core/common/cloud/mock_cloud_policy_client.h"
#include "components/prefs/testing_pref_service.h"
#include "content/public/test/browser_task_environment.h"
#include "google_apis/gaia/gaia_urls.h"
#include "services/network/public/cpp/weak_wrapper_shared_url_loader_factory.h"
#include "services/network/test/test_url_loader_factory.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace policy {
namespace {
static const char kFirstRefreshToken[] = "first_refresh_token";
static const char kSecondRefreshToken[] = "second_refresh_token";
static const char kFirstAccessToken[] = "first_access_token";
static const char kSecondAccessToken[] = "second_access_token";
static const char kServiceAccountEmail[] =
"service_account@system.gserviceaccount.com";
static const char kOtherServiceAccountEmail[] =
"other_service_account@system.gserviceaccount.com";
static const char kDMToken[] = "dm_token";
static const char kAuthCode[] = "auth_code";
} // namespace
class FakeCloudPolicyClient : public MockCloudPolicyClient {
public:
void FetchRobotAuthCodes(
DMAuth auth,
enterprise_management::DeviceServiceApiAccessRequest::DeviceType
device_type,
const std::set<std::string>& oauth_scopes,
RobotAuthCodeCallback callback) override {
std::move(callback).Run(DM_STATUS_SUCCESS, kAuthCode);
}
};
class CBCMInvalidationsInitializerTest
: public testing::Test,
public CBCMInvalidationsInitializer::Delegate {
public:
CBCMInvalidationsInitializerTest() = default;
void RefreshTokenSavedCallbackExpectSuccess(bool success) {
EXPECT_TRUE(success);
++num_refresh_tokens_saved_;
}
// CBCMInvalidationsInitializer::Delegate:
void StartInvalidations() override { ++num_invalidations_started_; }
scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory()
override {
return test_url_loader_factory_.GetSafeWeakWrapper();
}
bool IsInvalidationsServiceStarted() const override {
return num_invalidations_started_ > 0;
}
protected:
int num_refresh_tokens_saved() const { return num_refresh_tokens_saved_; }
int num_invalidations_started() const { return num_invalidations_started_; }
FakeCloudPolicyClient* policy_client() { return &mock_policy_client_; }
TestingPrefServiceSimple* testing_local_state() {
return &testing_local_state_;
}
network::TestURLLoaderFactory* test_url_loader_factory() {
return &test_url_loader_factory_;
}
std::string MakeTokensFromAuthCodesResponse(const std::string& refresh_token,
const std::string& access_token) {
base::Value::Dict dict;
dict.Set("access_token", access_token);
dict.Set("refresh_token", refresh_token);
dict.Set("expires_in", 9999);
std::string json;
base::JSONWriter::Write(dict, &json);
return json;
}
private:
void SetUp() override {
DeviceOAuth2TokenStoreDesktop::RegisterPrefs(
testing_local_state_.registry());
DeviceOAuth2TokenServiceFactory::Initialize(GetURLLoaderFactory(),
&testing_local_state_);
OSCryptMocker::SetUp();
mock_policy_client_.SetDMToken(kDMToken);
}
void TearDown() override {
DeviceOAuth2TokenServiceFactory::Shutdown();
OSCryptMocker::TearDown();
}
int num_refresh_tokens_saved_ = 0;
int num_invalidations_started_ = 0;
FakeCloudPolicyClient mock_policy_client_;
network::TestURLLoaderFactory test_url_loader_factory_;
content::BrowserTaskEnvironment task_environment_;
TestingPrefServiceSimple testing_local_state_;
};
TEST_F(CBCMInvalidationsInitializerTest, InvalidationsStartDisabled) {
CBCMInvalidationsInitializer initializer(this);
EXPECT_FALSE(IsInvalidationsServiceStarted());
}
TEST_F(CBCMInvalidationsInitializerTest,
InvalidationsStartIfRefreshTokenPresent) {
CBCMInvalidationsInitializer initializer(this);
DeviceOAuth2TokenServiceFactory::Get()->SetServiceAccountEmail(
kServiceAccountEmail);
DeviceOAuth2TokenServiceFactory::Get()->SetAndSaveRefreshToken(
kFirstRefreshToken,
base::BindRepeating(&CBCMInvalidationsInitializerTest::
RefreshTokenSavedCallbackExpectSuccess,
base::Unretained(this)));
EXPECT_EQ(1, num_refresh_tokens_saved());
EXPECT_TRUE(
DeviceOAuth2TokenServiceFactory::Get()->RefreshTokenIsAvailable());
EXPECT_FALSE(IsInvalidationsServiceStarted());
initializer.OnServiceAccountSet(policy_client(), kServiceAccountEmail);
EXPECT_TRUE(IsInvalidationsServiceStarted());
}
TEST_F(CBCMInvalidationsInitializerTest,
InvalidationsStartIfRefreshTokenAbsent) {
CBCMInvalidationsInitializer initializer(this);
EXPECT_FALSE(IsInvalidationsServiceStarted());
initializer.OnServiceAccountSet(policy_client(), kServiceAccountEmail);
EXPECT_EQ(1, test_url_loader_factory()->NumPending());
EXPECT_EQ(GaiaUrls::GetInstance()->oauth2_token_url().spec(),
test_url_loader_factory()->GetPendingRequest(0)->request.url);
EXPECT_TRUE(IsInvalidationsServiceStarted());
EXPECT_TRUE(test_url_loader_factory()->SimulateResponseForPendingRequest(
GaiaUrls::GetInstance()->oauth2_token_url().spec(),
MakeTokensFromAuthCodesResponse(kFirstRefreshToken, kFirstAccessToken)));
EXPECT_TRUE(IsInvalidationsServiceStarted());
}
TEST_F(CBCMInvalidationsInitializerTest,
InvalidationsDontRestartOnNextPolicyFetch) {
CBCMInvalidationsInitializer initializer(this);
EXPECT_FALSE(IsInvalidationsServiceStarted());
initializer.OnServiceAccountSet(policy_client(), kServiceAccountEmail);
EXPECT_TRUE(test_url_loader_factory()->SimulateResponseForPendingRequest(
GaiaUrls::GetInstance()->oauth2_token_url().spec(),
MakeTokensFromAuthCodesResponse(kFirstRefreshToken, kFirstAccessToken)));
EXPECT_TRUE(IsInvalidationsServiceStarted());
EXPECT_EQ(0, test_url_loader_factory()->NumPending());
// When the next policy fetch happens, it'll contain the same service account.
// In this case, avoid starting the invalidations services again.
initializer.OnServiceAccountSet(policy_client(), kServiceAccountEmail);
EXPECT_EQ(0, test_url_loader_factory()->NumPending());
EXPECT_EQ(1, num_invalidations_started());
}
TEST_F(CBCMInvalidationsInitializerTest,
CanHandleServiceAccountChangedAfterFetchingInSameSession) {
CBCMInvalidationsInitializer initializer(this);
EXPECT_FALSE(IsInvalidationsServiceStarted());
// Simulate that a policy sets a service account and triggers a fetch.
initializer.OnServiceAccountSet(policy_client(), kServiceAccountEmail);
EXPECT_TRUE(IsInvalidationsServiceStarted());
EXPECT_EQ(1, test_url_loader_factory()->NumPending());
EXPECT_EQ(GaiaUrls::GetInstance()->oauth2_token_url().spec(),
test_url_loader_factory()->GetPendingRequest(0)->request.url);
EXPECT_TRUE(test_url_loader_factory()->SimulateResponseForPendingRequest(
GaiaUrls::GetInstance()->oauth2_token_url().spec(),
MakeTokensFromAuthCodesResponse(kFirstRefreshToken, kFirstAccessToken)));
EXPECT_EQ(0, test_url_loader_factory()->NumPending());
EXPECT_TRUE(
DeviceOAuth2TokenServiceFactory::Get()->RefreshTokenIsAvailable());
EXPECT_EQ(CoreAccountId::FromRobotEmail(kServiceAccountEmail),
DeviceOAuth2TokenServiceFactory::Get()->GetRobotAccountId());
std::string first_refresh_token =
testing_local_state()->GetString(kCBCMServiceAccountRefreshToken);
// Simulate that a policy comes in with a different service account. This
// should trigger a re-initialization of the service account.
initializer.OnServiceAccountSet(policy_client(), kOtherServiceAccountEmail);
EXPECT_EQ(1, test_url_loader_factory()->NumPending());
EXPECT_TRUE(IsInvalidationsServiceStarted());
EXPECT_TRUE(test_url_loader_factory()->SimulateResponseForPendingRequest(
GaiaUrls::GetInstance()->oauth2_token_url().spec(),
MakeTokensFromAuthCodesResponse(kSecondRefreshToken,
kSecondAccessToken)));
EXPECT_EQ(1, num_invalidations_started());
EXPECT_TRUE(
DeviceOAuth2TokenServiceFactory::Get()->RefreshTokenIsAvailable());
// Now a different refresh token and email should be present. The token
// themselves aren't validated because they're encrypted. Verifying that it
// changed is sufficient.
EXPECT_EQ(CoreAccountId::FromRobotEmail(kOtherServiceAccountEmail),
DeviceOAuth2TokenServiceFactory::Get()->GetRobotAccountId());
EXPECT_NE(first_refresh_token,
testing_local_state()->GetString(kCBCMServiceAccountRefreshToken));
}
TEST_F(CBCMInvalidationsInitializerTest,
CanHandleServiceAccountChangedWhenAccountPresentOnStartup) {
CBCMInvalidationsInitializer initializer(this);
// Set up the token service as if there was already a service account set up
// on start up.
DeviceOAuth2TokenServiceFactory::Get()->SetServiceAccountEmail(
kServiceAccountEmail);
DeviceOAuth2TokenServiceFactory::Get()->SetAndSaveRefreshToken(
kFirstRefreshToken,
base::BindRepeating(&CBCMInvalidationsInitializerTest::
RefreshTokenSavedCallbackExpectSuccess,
base::Unretained(this)));
EXPECT_EQ(1, num_refresh_tokens_saved());
EXPECT_TRUE(
DeviceOAuth2TokenServiceFactory::Get()->RefreshTokenIsAvailable());
std::string first_refresh_token =
testing_local_state()->GetString(kCBCMServiceAccountRefreshToken);
EXPECT_FALSE(IsInvalidationsServiceStarted());
// On first policy store load, this will be called and invalidations started.
initializer.OnServiceAccountSet(policy_client(), kServiceAccountEmail);
EXPECT_EQ(0, test_url_loader_factory()->NumPending());
EXPECT_TRUE(IsInvalidationsServiceStarted());
// The same refresh token should be present in local state.
EXPECT_EQ(first_refresh_token,
testing_local_state()->GetString(kCBCMServiceAccountRefreshToken));
// Simulate that a new policy is fetched with a different service account.
// This should result in a gaia call for the service account initialization.
initializer.OnServiceAccountSet(policy_client(), kOtherServiceAccountEmail);
EXPECT_EQ(1, test_url_loader_factory()->NumPending());
EXPECT_TRUE(test_url_loader_factory()->SimulateResponseForPendingRequest(
GaiaUrls::GetInstance()->oauth2_token_url().spec(),
MakeTokensFromAuthCodesResponse(kSecondRefreshToken,
kSecondAccessToken)));
EXPECT_TRUE(IsInvalidationsServiceStarted());
EXPECT_TRUE(
DeviceOAuth2TokenServiceFactory::Get()->RefreshTokenIsAvailable());
// Now a different refresh token and email should be present. The token
// themselves aren't validated because they're encrypted. Verifying that it
// changed is sufficient.
EXPECT_EQ(CoreAccountId::FromRobotEmail(kOtherServiceAccountEmail),
DeviceOAuth2TokenServiceFactory::Get()->GetRobotAccountId());
EXPECT_NE(first_refresh_token,
testing_local_state()->GetString(kCBCMServiceAccountRefreshToken));
}
} // namespace policy
|