blob: 4828fdb49c4f3c49a6f6e88c7a2b8f6d71155fc7 [file] [log] [blame]
// Copyright (c) 2011 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.
#ifndef CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_BACKEND_H_
#define CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_BACKEND_H_
#pragma once
#include <map>
#include <string>
#include "base/time.h"
#include "base/values.h"
#include "chrome/browser/policy/device_management_backend.h"
#include "chrome/browser/policy/proto/cloud_policy.pb.h"
#include "chrome/browser/policy/proto/device_management_backend.pb.h"
#include "chrome/browser/policy/proto/device_management_constants.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace policy {
namespace em = enterprise_management;
// Useful for unit testing when a server-based backend isn't
// available. Simulates both successful and failed requests to the device
// management server.
class MockDeviceManagementBackend : public DeviceManagementBackend {
public:
MockDeviceManagementBackend();
virtual ~MockDeviceManagementBackend();
// DeviceManagementBackend method overrides:
MOCK_METHOD4(ProcessRegisterRequest, void(
const std::string& auth_token,
const std::string& device_id,
const em::DeviceRegisterRequest& request,
DeviceRegisterResponseDelegate* delegate));
MOCK_METHOD4(ProcessUnregisterRequest, void(
const std::string& device_management_token,
const std::string& device_id,
const em::DeviceUnregisterRequest& request,
DeviceUnregisterResponseDelegate* delegate));
MOCK_METHOD4(ProcessPolicyRequest, void(
const std::string& device_management_token,
const std::string& device_id,
const em::DevicePolicyRequest& request,
DevicePolicyResponseDelegate* delegate));
private:
DISALLOW_COPY_AND_ASSIGN(MockDeviceManagementBackend);
};
ACTION(MockDeviceManagementBackendSucceedRegister) {
em::DeviceRegisterResponse response;
std::string token("FAKE_DEVICE_TOKEN_");
static int next_token_suffix;
token += next_token_suffix++;
response.set_device_management_token(token);
arg3->HandleRegisterResponse(response);
}
ACTION(MockDeviceManagementBackendSucceedSpdyCloudPolicy) {
em::PolicyData signed_response;
em::CloudPolicySettings settings;
em::DisableSpdyProto* spdy_proto = settings.mutable_disablespdy();
spdy_proto->set_disablespdy(true);
spdy_proto->mutable_policy_options()->set_mode(em::PolicyOptions::MANDATORY);
EXPECT_TRUE(
settings.SerializeToString(signed_response.mutable_policy_value()));
base::TimeDelta timestamp =
base::Time::NowFromSystemTime() - base::Time::UnixEpoch();
signed_response.set_timestamp(timestamp.InMilliseconds());
std::string serialized_signed_response;
EXPECT_TRUE(signed_response.SerializeToString(&serialized_signed_response));
em::DevicePolicyResponse response;
em::PolicyFetchResponse* fetch_response = response.add_response();
fetch_response->set_policy_data(serialized_signed_response);
// TODO(jkummerow): Set proper new_public_key and signature (when
// implementing support for signature verification).
fetch_response->set_policy_data_signature("TODO");
fetch_response->set_new_public_key("TODO");
arg3->HandlePolicyResponse(response);
}
ACTION_P(MockDeviceManagementBackendFailRegister, error) {
arg3->OnError(error);
}
ACTION_P(MockDeviceManagementBackendFailPolicy, error) {
arg3->OnError(error);
}
} // namespace policy
#endif // CHROME_BROWSER_POLICY_MOCK_DEVICE_MANAGEMENT_BACKEND_H_