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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
// Copyright (c) 2010 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_frame/test/automation_client_mock.h"
#include "base/callback.h"
#include "net/base/net_errors.h"
#include "chrome_frame/test/chrome_frame_test_utils.h"
#define GMOCK_MUTANT_INCLUDE_LATE_OBJECT_BINDING
#include "testing/gmock_mutant.h"
using testing::CreateFunctor;
using testing::_;
template <> struct RunnableMethodTraits<ProxyFactory::LaunchDelegate> {
void RetainCallee(ProxyFactory::LaunchDelegate* obj) {}
void ReleaseCallee(ProxyFactory::LaunchDelegate* obj) {}
};
template <> struct RunnableMethodTraits<ChromeFrameAutomationClient> {
void RetainCallee(ChromeFrameAutomationClient* obj) {}
void ReleaseCallee(ChromeFrameAutomationClient* obj) {}
};
template <> struct RunnableMethodTraits<chrome_frame_test::TimedMsgLoop> {
void RetainCallee(chrome_frame_test::TimedMsgLoop* obj) {}
void ReleaseCallee(chrome_frame_test::TimedMsgLoop* obj) {}
};
void MockProxyFactory::GetServerImpl(ChromeFrameAutomationProxy* pxy,
void* proxy_id,
AutomationLaunchResult result,
LaunchDelegate* d,
const ChromeFrameLaunchParams& params,
void** automation_server_id) {
*automation_server_id = proxy_id;
Task* task = NewRunnableMethod(d,
&ProxyFactory::LaunchDelegate::LaunchComplete, pxy, result);
loop_->PostDelayedTask(FROM_HERE, task,
params.automation_server_launch_timeout/2);
}
void CFACMockTest::SetAutomationServerOk() {
EXPECT_CALL(factory_, GetAutomationServer(testing::NotNull(),
testing::Field(&ChromeFrameLaunchParams::profile_name,
testing::StrEq(profile_path_.BaseName().ToWStringHack())),
testing::NotNull()))
.Times(1)
.WillOnce(testing::Invoke(CreateFunctor(&factory_,
&MockProxyFactory::GetServerImpl,
get_proxy(), id_,
AUTOMATION_SUCCESS)));
EXPECT_CALL(factory_, ReleaseAutomationServer(testing::Eq(id_))).Times(1);
}
void CFACMockTest::Set_CFD_LaunchFailed(AutomationLaunchResult result) {
EXPECT_CALL(cfd_, OnAutomationServerLaunchFailed(testing::Eq(result),
testing::_))
.Times(1)
.WillOnce(QUIT_LOOP(loop_));
}
MATCHER_P(MsgType, msg_type, "IPC::Message::type()") {
const IPC::Message& m = arg;
return (m.type() == msg_type);
}
MATCHER_P(EqNavigationInfoUrl, url, "IPC::NavigationInfo matcher") {
if (url.is_valid() && url != arg.url)
return false;
// TODO(stevet): other members
return true;
}
// Could be implemented as MockAutomationProxy member (we have WithArgs<>!)
ACTION_P3(HandleCreateTab, tab_handle, external_tab_container, tab_wnd) {
// arg0 - message
// arg1 - callback
// arg2 - key
CallbackRunner<Tuple3<HWND, HWND, int> >* c =
reinterpret_cast<CallbackRunner<Tuple3<HWND, HWND, int> >*>(arg1);
c->Run(external_tab_container, tab_wnd, tab_handle);
delete c;
delete arg0;
}
// We mock ChromeFrameDelegate only. The rest is with real AutomationProxy
TEST(CFACWithChrome, CreateTooFast) {
MockCFDelegate cfd;
chrome_frame_test::TimedMsgLoop loop;
int timeout = 0; // Chrome cannot send Hello message so fast.
const FilePath profile_path(
chrome_frame_test::GetProfilePath(L"Adam.N.Epilinter"));
scoped_refptr<ChromeFrameAutomationClient> client;
client = new ChromeFrameAutomationClient();
EXPECT_CALL(cfd, OnAutomationServerLaunchFailed(AUTOMATION_TIMEOUT, _))
.Times(1)
.WillOnce(QUIT_LOOP(loop));
EXPECT_TRUE(client->Initialize(&cfd, timeout, false, profile_path, L"",
false));
loop.RunFor(10);
client->Uninitialize();
}
// This test may fail if Chrome take more that 10 seconds (timeout var) to
// launch. In this case GMock shall print something like "unexpected call to
// OnAutomationServerLaunchFailed". I'm yet to find out how to specify
// that this is an unexpected call, and still to execute and action.
TEST(CFACWithChrome, CreateNotSoFast) {
MockCFDelegate cfd;
chrome_frame_test::TimedMsgLoop loop;
const FilePath profile_path(
chrome_frame_test::GetProfilePath(L"Adam.N.Epilinter"));
int timeout = 10000;
scoped_refptr<ChromeFrameAutomationClient> client;
client = new ChromeFrameAutomationClient;
EXPECT_CALL(cfd, OnAutomationServerReady())
.Times(1)
.WillOnce(QUIT_LOOP(loop));
EXPECT_CALL(cfd, OnAutomationServerLaunchFailed(_, _))
.Times(0);
EXPECT_TRUE(client->Initialize(&cfd, timeout, false, profile_path, L"",
false));
loop.RunFor(11);
client->Uninitialize();
client = NULL;
}
TEST(CFACWithChrome, NavigateOk) {
MockCFDelegate cfd;
chrome_frame_test::TimedMsgLoop loop;
const std::string url = "about:version";
const FilePath profile_path(
chrome_frame_test::GetProfilePath(L"Adam.N.Epilinter"));
int timeout = 10000;
scoped_refptr<ChromeFrameAutomationClient> client;
client = new ChromeFrameAutomationClient;
EXPECT_CALL(cfd, OnAutomationServerReady())
.WillOnce(testing::IgnoreResult(testing::InvokeWithoutArgs(CreateFunctor(
client.get(), &ChromeFrameAutomationClient::InitiateNavigation,
url, std::string(), false))));
EXPECT_CALL(cfd, GetBounds(_)).Times(testing::AnyNumber());
EXPECT_CALL(cfd, OnNavigationStateChanged(_, _))
.Times(testing::AnyNumber());
{
testing::InSequence s;
EXPECT_CALL(cfd, OnDidNavigate(_, EqNavigationInfoUrl(GURL())))
.Times(1);
EXPECT_CALL(cfd, OnUpdateTargetUrl(_, _)).Times(1);
EXPECT_CALL(cfd, OnLoad(_, _))
.Times(1)
.WillOnce(QUIT_LOOP(loop));
}
EXPECT_TRUE(client->Initialize(&cfd, timeout, false, profile_path, L"",
false));
loop.RunFor(10);
client->Uninitialize();
client = NULL;
}
TEST(CFACWithChrome, NavigateFailed) {
MockCFDelegate cfd;
chrome_frame_test::TimedMsgLoop loop;
const FilePath profile_path(
chrome_frame_test::GetProfilePath(L"Adam.N.Epilinter"));
const std::string url = "http://127.0.0.3:65412/";
const URLRequestStatus connection_failed(URLRequestStatus::FAILED,
net::ERR_INVALID_URL);
scoped_refptr<ChromeFrameAutomationClient> client;
client = new ChromeFrameAutomationClient;
cfd.SetRequestDelegate(client);
EXPECT_CALL(cfd, OnAutomationServerReady())
.WillOnce(testing::IgnoreResult(testing::InvokeWithoutArgs(CreateFunctor(
client.get(), &ChromeFrameAutomationClient::InitiateNavigation,
url, std::string(), false))));
EXPECT_CALL(cfd, GetBounds(_)).Times(testing::AnyNumber());
EXPECT_CALL(cfd, OnNavigationStateChanged(_, _)).Times(testing::AnyNumber());
EXPECT_CALL(cfd, OnRequestStart(_, _, _))
// Often there's another request for the error page
.Times(testing::Between(1, 2))
.WillRepeatedly(testing::WithArgs<1>(testing::Invoke(CreateFunctor(&cfd,
&MockCFDelegate::Reply, connection_failed))));
EXPECT_CALL(cfd, OnUpdateTargetUrl(_, _)).Times(testing::AnyNumber());
EXPECT_CALL(cfd, OnLoad(_, _)).Times(testing::AtMost(1));
EXPECT_CALL(cfd, OnNavigationFailed(_, _, GURL(url)))
.Times(1)
.WillOnce(QUIT_LOOP_SOON(loop, 2));
EXPECT_TRUE(client->Initialize(&cfd, 10000, false, profile_path, L"",
false));
loop.RunFor(10);
client->Uninitialize();
client = NULL;
}
TEST_F(CFACMockTest, MockedCreateTabOk) {
int timeout = 500;
CreateTab();
SetAutomationServerOk();
EXPECT_CALL(proxy_, server_version()).Times(testing::AnyNumber())
.WillRepeatedly(testing::Return(""));
// We need some valid HWNDs, when responding to CreateExternalTab
HWND h1 = ::GetDesktopWindow();
HWND h2 = ::GetDesktopWindow();
EXPECT_CALL(proxy_, SendAsAsync(testing::Property(&IPC::SyncMessage::type,
AutomationMsg_CreateExternalTab__ID),
testing::NotNull(), _))
.Times(1)
.WillOnce(HandleCreateTab(tab_handle_, h1, h2));
EXPECT_CALL(proxy_, CreateTabProxy(testing::Eq(tab_handle_)))
.WillOnce(testing::Return(tab_));
EXPECT_CALL(cfd_, OnAutomationServerReady())
.WillOnce(QUIT_LOOP(loop_));
EXPECT_CALL(proxy_, CancelAsync(_)).Times(testing::AnyNumber());
// Here we go!
EXPECT_TRUE(client_->Initialize(&cfd_, timeout, false, profile_path_, L"",
false));
loop_.RunFor(10);
client_->Uninitialize();
}
TEST_F(CFACMockTest, MockedCreateTabFailed) {
HWND null_wnd = NULL;
SetAutomationServerOk();
EXPECT_CALL(proxy_, server_version()).Times(testing::AnyNumber())
.WillRepeatedly(testing::Return(""));
EXPECT_CALL(proxy_, SendAsAsync(testing::Property(&IPC::SyncMessage::type,
AutomationMsg_CreateExternalTab__ID),
testing::NotNull(), _))
.Times(1)
.WillOnce(HandleCreateTab(tab_handle_, null_wnd, null_wnd));
EXPECT_CALL(proxy_, CreateTabProxy(_)).Times(0);
EXPECT_CALL(proxy_, CancelAsync(_)).Times(testing::AnyNumber());
Set_CFD_LaunchFailed(AUTOMATION_CREATE_TAB_FAILED);
// Here we go!
EXPECT_TRUE(client_->Initialize(&cfd_, timeout_, false, profile_path_, L"",
false));
loop_.RunFor(4);
client_->Uninitialize();
}
|