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
|
// Copyright (c) 2012 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/policy/mock_device_management_service.h"
namespace em = enterprise_management;
namespace policy {
class MockDeviceManagementRequestJob : public DeviceManagementRequestJob {
public:
MockDeviceManagementRequestJob(
JobType type,
MockDeviceManagementService* service,
DeviceManagementStatus status,
const enterprise_management::DeviceManagementResponse& response)
: DeviceManagementRequestJob(type),
service_(service),
status_(status),
response_(response) {}
protected:
virtual void Run() OVERRIDE {
service_->StartJob(this);
callback_.Run(status_, response_);
}
private:
MockDeviceManagementService* service_;
DeviceManagementStatus status_;
enterprise_management::DeviceManagementResponse response_;
DISALLOW_COPY_AND_ASSIGN(MockDeviceManagementRequestJob);
};
ACTION_P3(CreateMockDeviceManagementRequestJob, service, status, response) {
return new MockDeviceManagementRequestJob(arg0, service, status, response);
}
MockDeviceManagementService::MockDeviceManagementService()
: DeviceManagementService("") {}
MockDeviceManagementService::~MockDeviceManagementService() {}
testing::Action<MockDeviceManagementService::CreateJobFunction>
MockDeviceManagementService::SucceedJob(
const enterprise_management::DeviceManagementResponse& response) {
return CreateMockDeviceManagementRequestJob(this, DM_STATUS_SUCCESS,
response);
}
testing::Action<MockDeviceManagementService::CreateJobFunction>
MockDeviceManagementService::FailJob(DeviceManagementStatus status) {
const enterprise_management::DeviceManagementResponse dummy_response;
return CreateMockDeviceManagementRequestJob(this, status, dummy_response);
}
} // namespace policy
|