blob: c6ca185a54c467ad5ab4b281d8bc1700c7686508 [file] [log] [blame]
// Copyright (c) 2017 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 <stdint.h>
#include <string>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/location.h"
#include "base/run_loop.h"
#include "base/single_thread_task_runner.h"
#include "base/threading/thread_task_runner_handle.h"
#include "chrome/browser/chromeos/attestation/enrollment_policy_observer.h"
#include "chrome/browser/chromeos/settings/device_settings_test_helper.h"
#include "chromeos/attestation/mock_attestation_flow.h"
#include "chromeos/dbus/fake_cryptohome_client.h"
#include "chromeos/settings/cros_settings_names.h"
#include "components/policy/core/common/cloud/mock_cloud_policy_client.h"
#include "testing/gtest/include/gtest/gtest.h"
using testing::_;
using testing::Invoke;
using testing::Return;
using testing::StrictMock;
using testing::WithArgs;
namespace chromeos {
namespace attestation {
namespace {
void CertCallbackSuccess(const AttestationFlow::CertificateCallback& callback) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(callback, ATTESTATION_SUCCESS, "fake_cert"));
}
void CertCallbackUnspecifiedFailure(
const AttestationFlow::CertificateCallback& callback) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(callback, ATTESTATION_UNSPECIFIED_FAILURE, ""));
}
void CertCallbackBadRequestFailure(
const AttestationFlow::CertificateCallback& callback) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE,
base::BindOnce(callback, ATTESTATION_SERVER_BAD_REQUEST_FAILURE, ""));
}
void StatusCallbackSuccess(
const policy::CloudPolicyClient::StatusCallback& callback) {
base::ThreadTaskRunnerHandle::Get()->PostTask(FROM_HERE,
base::BindOnce(callback, true));
}
} // namespace
class EnrollmentPolicyObserverTest : public DeviceSettingsTestBase {
public:
EnrollmentPolicyObserverTest() {
policy_client_.SetDMToken("fake_dm_token");
}
protected:
void SetUpEnrollmentIdNeeded(bool enrollment_id_needed) {
if (enrollment_id_needed) {
EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _, _, _))
.WillOnce(WithArgs<4>(Invoke(CertCallbackSuccess)));
EXPECT_CALL(policy_client_,
UploadEnterpriseEnrollmentCertificate("fake_cert", _))
.WillOnce(WithArgs<1>(Invoke(StatusCallbackSuccess)));
}
SetUpDevicePolicy(enrollment_id_needed);
}
void SetUpDevicePolicy(bool enrollment_id_needed) {
device_policy_.policy_data().set_enrollment_id_needed(enrollment_id_needed);
device_policy_.Build();
session_manager_client_.set_device_policy(device_policy_.GetBlob());
ReloadDeviceSettings();
}
void Run() {
EnrollmentPolicyObserver observer(&policy_client_,
&device_settings_service_,
&cryptohome_client_, &attestation_flow_);
observer.set_retry_limit(3);
observer.set_retry_delay(0);
base::RunLoop().RunUntilIdle();
}
FakeCryptohomeClient cryptohome_client_;
StrictMock<MockAttestationFlow> attestation_flow_;
StrictMock<policy::MockCloudPolicyClient> policy_client_;
};
TEST_F(EnrollmentPolicyObserverTest, UploadEnterpriseEnrollmentCertificate) {
SetUpEnrollmentIdNeeded(true);
Run();
}
TEST_F(EnrollmentPolicyObserverTest, FeatureDisabled) {
SetUpEnrollmentIdNeeded(false);
Run();
}
TEST_F(EnrollmentPolicyObserverTest, UnregisteredPolicyClient) {
policy_client_.SetDMToken("");
Run();
}
TEST_F(EnrollmentPolicyObserverTest, GetCertificateUnspecifiedFailure) {
EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _, _, _))
.WillRepeatedly(WithArgs<4>(Invoke(CertCallbackUnspecifiedFailure)));
SetUpDevicePolicy(true);
Run();
}
TEST_F(EnrollmentPolicyObserverTest, GetCertificateBadRequestFailure) {
EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _, _, _))
.WillOnce(WithArgs<4>(Invoke(CertCallbackBadRequestFailure)));
EXPECT_CALL(policy_client_, UploadEnterpriseEnrollmentCertificate("", _))
.WillOnce(WithArgs<1>(Invoke(StatusCallbackSuccess)));
SetUpDevicePolicy(true);
Run();
}
TEST_F(EnrollmentPolicyObserverTest, DBusFailureRetry) {
SetUpEnrollmentIdNeeded(true);
// Simulate a DBus failure.
cryptohome_client_.SetServiceIsAvailable(false);
// Emulate delayed service initialization.
// Run() instantiates an Observer, which synchronously calls
// TpmAttestationDoesKeyExist() and fails. During this call, we make the
// service available in the next run, so on retry, it will successfully
// return the result.
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(
[](FakeCryptohomeClient* cryptohome_client) {
cryptohome_client->SetServiceIsAvailable(true);
},
base::Unretained(&cryptohome_client_)));
Run();
}
} // namespace attestation
} // namespace chromeos