| // Copyright 2019 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/callback_helpers.h" |
| #include "base/location.h" |
| #include "base/run_loop.h" |
| #include "base/single_thread_task_runner.h" |
| #include "base/test/bind.h" |
| #include "base/threading/thread_task_runner_handle.h" |
| #include "chrome/browser/ash/attestation/attestation_key_payload.pb.h" |
| #include "chrome/browser/ash/attestation/enrollment_certificate_uploader_impl.h" |
| #include "chrome/browser/ash/attestation/fake_certificate.h" |
| #include "chrome/browser/ash/settings/scoped_cros_settings_test_helper.h" |
| #include "chromeos/attestation/mock_attestation_flow.h" |
| #include "chromeos/settings/cros_settings_names.h" |
| #include "components/policy/core/common/cloud/mock_cloud_policy_client.h" |
| #include "content/public/test/browser_task_environment.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| |
| using CertStatus = ash::attestation::EnrollmentCertificateUploader::Status; |
| using testing::_; |
| using testing::Invoke; |
| using testing::StrictMock; |
| using testing::WithArgs; |
| |
| namespace ash { |
| namespace attestation { |
| |
| namespace { |
| |
| void CertCallbackSuccess(AttestationFlow::CertificateCallback callback) { |
| base::ThreadTaskRunnerHandle::Get()->PostTask( |
| FROM_HERE, |
| base::BindOnce(std::move(callback), ATTESTATION_SUCCESS, "fake_cert")); |
| } |
| |
| void CertCallbackUnspecifiedFailure( |
| AttestationFlow::CertificateCallback callback) { |
| base::ThreadTaskRunnerHandle::Get()->PostTask( |
| FROM_HERE, |
| base::BindOnce(std::move(callback), ATTESTATION_UNSPECIFIED_FAILURE, "")); |
| } |
| |
| void CertCallbackBadRequestFailure( |
| AttestationFlow::CertificateCallback callback) { |
| base::ThreadTaskRunnerHandle::Get()->PostTask( |
| FROM_HERE, base::BindOnce(std::move(callback), |
| ATTESTATION_SERVER_BAD_REQUEST_FAILURE, "")); |
| } |
| |
| void StatusCallbackFailure(policy::CloudPolicyClient::StatusCallback callback) { |
| base::ThreadTaskRunnerHandle::Get()->PostTask( |
| FROM_HERE, base::BindOnce(std::move(callback), false)); |
| } |
| |
| void StatusCallbackSuccess(policy::CloudPolicyClient::StatusCallback callback) { |
| base::ThreadTaskRunnerHandle::Get()->PostTask( |
| FROM_HERE, base::BindOnce(std::move(callback), true)); |
| } |
| |
| } // namespace |
| |
| class EnrollmentCertificateUploaderTest : public ::testing::Test { |
| public: |
| EnrollmentCertificateUploaderTest() |
| : uploader_(&policy_client_, &attestation_flow_) { |
| settings_helper_.ReplaceDeviceSettingsProviderWithStub(); |
| policy_client_.SetDMToken("fake_dm_token"); |
| |
| uploader_.set_retry_limit(3); |
| uploader_.set_retry_delay(base::TimeDelta()); |
| } |
| |
| protected: |
| void SetupMocks() { |
| // Setup expected cert uploads. Use WillOnce() so StrictMock will trigger an |
| // error if our expectations are not met exactly. We want to verify that |
| // during a single run through the uploader only one upload operation occurs |
| // (because it is costly). |
| EXPECT_CALL(policy_client_, |
| UploadEnterpriseEnrollmentCertificate("fake_cert", _)) |
| .WillOnce(WithArgs<1>(Invoke(StatusCallbackSuccess))); |
| |
| // Setup expected cert generations. Again use WillOnce(). Cert generation |
| // is another costly operation and if it gets triggered more than once |
| // during a single pass this indicates a logical problem in the uploader. |
| EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _, _, _, _)) |
| .WillOnce(WithArgs<5>(Invoke(CertCallbackSuccess))); |
| } |
| |
| void Run(CertStatus expected_status) { |
| uploader_.ObtainAndUploadCertificate( |
| base::BindLambdaForTesting([expected_status](CertStatus status) { |
| EXPECT_EQ(status, expected_status); |
| })); |
| |
| base::RunLoop().RunUntilIdle(); |
| } |
| |
| content::BrowserTaskEnvironment task_environment_; |
| ScopedCrosSettingsTestHelper settings_helper_; |
| StrictMock<MockAttestationFlow> attestation_flow_; |
| StrictMock<policy::MockCloudPolicyClient> policy_client_; |
| |
| EnrollmentCertificateUploaderImpl uploader_; |
| }; |
| |
| TEST_F(EnrollmentCertificateUploaderTest, UnregisteredPolicyClient) { |
| policy_client_.SetDMToken(""); |
| Run(/*expected_status=*/CertStatus::kFailedToFetch); |
| } |
| |
| TEST_F(EnrollmentCertificateUploaderTest, GetCertificateUnspecifiedFailure) { |
| EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _, _, _, _)) |
| .WillRepeatedly(WithArgs<5>(Invoke(CertCallbackUnspecifiedFailure))); |
| Run(/*expected_status=*/CertStatus::kFailedToFetch); |
| } |
| |
| TEST_F(EnrollmentCertificateUploaderTest, GetCertificateBadRequestFailure) { |
| EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _, _, _, _)) |
| .WillOnce(WithArgs<5>(Invoke(CertCallbackBadRequestFailure))); |
| Run(/*expected_status=*/CertStatus::kFailedToFetch); |
| } |
| |
| TEST_F(EnrollmentCertificateUploaderTest, UploadCertificateFailure) { |
| EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _, _, _, _)) |
| .WillOnce(WithArgs<5>(Invoke(CertCallbackSuccess))); |
| EXPECT_CALL(policy_client_, |
| UploadEnterpriseEnrollmentCertificate("fake_cert", _)) |
| .WillOnce(WithArgs<1>(Invoke(StatusCallbackFailure))); |
| |
| Run(/*expected_status=*/CertStatus::kFailedToUpload); |
| } |
| |
| TEST_F(EnrollmentCertificateUploaderTest, NewCertificate) { |
| SetupMocks(); |
| Run(/*expected_status=*/CertStatus::kSuccess); |
| } |
| |
| TEST_F(EnrollmentCertificateUploaderTest, UploadsOnlyOnce) { |
| SetupMocks(); |
| Run(/*expected_status=*/CertStatus::kSuccess); |
| // Mocks expect single upload request and will fail if requested more than |
| // once. |
| Run(/*expected_status=*/CertStatus::kSuccess); |
| } |
| |
| } // namespace attestation |
| } // namespace ash |