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
|
// 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"
#include "base/string_util.h"
using testing::Action;
namespace em = enterprise_management;
namespace policy {
namespace {
// Common mock request job functionality.
class MockRequestJobBase : public DeviceManagementRequestJob {
public:
MockRequestJobBase(JobType type,
MockDeviceManagementService* service)
: DeviceManagementRequestJob(type),
service_(service) {}
virtual ~MockRequestJobBase() {}
protected:
virtual void Run() OVERRIDE {
service_->StartJob(ExtractParameter(dm_protocol::kParamRequest),
gaia_token_,
ExtractParameter(dm_protocol::kParamOAuthToken),
dm_token_,
ExtractParameter(dm_protocol::kParamUserAffiliation),
ExtractParameter(dm_protocol::kParamDeviceID),
request_);
}
private:
// Searches for a query parameter and returns the associated value.
const std::string& ExtractParameter(const std::string& name) const {
for (ParameterMap::const_iterator entry(query_params_.begin());
entry != query_params_.end();
++entry) {
if (name == entry->first)
return entry->second;
}
return EmptyString();
}
MockDeviceManagementService* service_;
DISALLOW_COPY_AND_ASSIGN(MockRequestJobBase);
};
// Synchronous mock request job that immediately completes on calling Run().
class SyncRequestJob : public MockRequestJobBase {
public:
SyncRequestJob(JobType type,
MockDeviceManagementService* service,
DeviceManagementStatus status,
const em::DeviceManagementResponse& response)
: MockRequestJobBase(type, service),
status_(status),
response_(response) {}
virtual ~SyncRequestJob() {}
protected:
virtual void Run() OVERRIDE {
MockRequestJobBase::Run();
callback_.Run(status_, response_);
}
private:
DeviceManagementStatus status_;
em::DeviceManagementResponse response_;
DISALLOW_COPY_AND_ASSIGN(SyncRequestJob);
};
// Asynchronous job that allows the test to delay job completion.
class AsyncRequestJob : public MockRequestJobBase,
public MockDeviceManagementJob {
public:
AsyncRequestJob(JobType type, MockDeviceManagementService* service)
: MockRequestJobBase(type, service) {}
virtual ~AsyncRequestJob() {}
protected:
virtual void SendResponse(
DeviceManagementStatus status,
const em::DeviceManagementResponse& response) OVERRIDE {
callback_.Run(status, response);
}
private:
DISALLOW_COPY_AND_ASSIGN(AsyncRequestJob);
};
} // namespace
ACTION_P3(CreateSyncMockDeviceManagementJob, service, status, response) {
return new SyncRequestJob(arg0, service, status, response);
}
ACTION_P2(CreateAsyncMockDeviceManagementJob, service, mock_job) {
AsyncRequestJob* job = new AsyncRequestJob(arg0, service);
*mock_job = job;
return job;
}
MockDeviceManagementJob::~MockDeviceManagementJob() {}
MockDeviceManagementService::MockDeviceManagementService()
: DeviceManagementService("") {}
MockDeviceManagementService::~MockDeviceManagementService() {}
Action<MockDeviceManagementService::CreateJobFunction>
MockDeviceManagementService::SucceedJob(
const em::DeviceManagementResponse& response) {
return CreateSyncMockDeviceManagementJob(this, DM_STATUS_SUCCESS, response);
}
Action<MockDeviceManagementService::CreateJobFunction>
MockDeviceManagementService::FailJob(DeviceManagementStatus status) {
const em::DeviceManagementResponse dummy_response;
return CreateSyncMockDeviceManagementJob(this, status, dummy_response);
}
Action<MockDeviceManagementService::CreateJobFunction>
MockDeviceManagementService::CreateAsyncJob(MockDeviceManagementJob** job) {
return CreateAsyncMockDeviceManagementJob(this, job);
}
} // namespace policy
|