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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
|
// 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/chrome_frame_test_utils.h"
#include <atlbase.h>
#include <atlwin.h>
#include <iepmapi.h>
#include <sddl.h>
#include "base/file_version_info.h"
#include "base/file_util.h"
#include "base/message_loop.h"
#include "base/path_service.h"
#include "base/registry.h" // to find IE and firefox
#include "base/scoped_bstr_win.h"
#include "base/scoped_handle.h"
#include "base/scoped_comptr_win.h"
#include "base/utf_string_conversions.h"
#include "base/win_util.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_paths_internal.h"
#include "chrome_frame/utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace chrome_frame_test {
const int kDefaultWaitForIEToTerminateMs = 10 * 1000;
const wchar_t kIEImageName[] = L"iexplore.exe";
const wchar_t kIEBrokerImageName[] = L"ieuser.exe";
const wchar_t kFirefoxImageName[] = L"firefox.exe";
const wchar_t kOperaImageName[] = L"opera.exe";
const wchar_t kSafariImageName[] = L"safari.exe";
const wchar_t kChromeImageName[] = L"chrome.exe";
const wchar_t kIEProfileName[] = L"iexplore";
const wchar_t kChromeLauncher[] = L"chrome_launcher.exe";
const int kChromeFrameLongNavigationTimeoutInSeconds = 10;
// Callback function for EnumThreadWindows.
BOOL CALLBACK CloseWindowsThreadCallback(HWND hwnd, LPARAM param) {
int& count = *reinterpret_cast<int*>(param);
if (IsWindowVisible(hwnd)) {
if (IsWindowEnabled(hwnd)) {
DWORD results = 0;
if (!::SendMessageTimeout(hwnd, WM_SYSCOMMAND, SC_CLOSE, 0, SMTO_BLOCK,
10000, &results)) {
LOG(WARNING) << "Window hung: " << StringPrintf(L"%08X", hwnd);
}
count++;
} else {
DLOG(WARNING) << "Skipping disabled window: "
<< StringPrintf(L"%08X", hwnd);
}
}
return TRUE; // continue enumeration
}
// Attempts to close all non-child, visible windows on the given thread.
// The return value is the number of visible windows a close request was
// sent to.
int CloseVisibleTopLevelWindowsOnThread(DWORD thread_id) {
int window_close_attempts = 0;
EnumThreadWindows(thread_id, CloseWindowsThreadCallback,
reinterpret_cast<LPARAM>(&window_close_attempts));
return window_close_attempts;
}
// Enumerates the threads of a process and attempts to close visible non-child
// windows on all threads of the process.
// The return value is the number of visible windows a close request was
// sent to.
int CloseVisibleWindowsOnAllThreads(HANDLE process) {
DWORD process_id = ::GetProcessId(process);
if (process_id == 0) {
NOTREACHED();
return 0;
}
ScopedHandle snapshot(CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0));
if (!snapshot.IsValid()) {
NOTREACHED();
return 0;
}
int window_close_attempts = 0;
THREADENTRY32 te = { sizeof(THREADENTRY32) };
if (Thread32First(snapshot, &te)) {
do {
if (RTL_CONTAINS_FIELD(&te, te.dwSize, th32OwnerProcessID) &&
te.th32OwnerProcessID == process_id) {
window_close_attempts +=
CloseVisibleTopLevelWindowsOnThread(te.th32ThreadID);
}
te.dwSize = sizeof(te);
} while (Thread32Next(snapshot, &te));
}
return window_close_attempts;
}
std::wstring GetExecutableAppPath(const std::wstring& file) {
std::wstring kAppPathsKey =
L"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths\\";
std::wstring app_path;
RegKey key(HKEY_LOCAL_MACHINE, (kAppPathsKey + file).c_str());
if (key.Handle()) {
key.ReadValue(NULL, &app_path);
}
return app_path;
}
std::wstring FormatCommandForApp(const std::wstring& exe_name,
const std::wstring& argument) {
std::wstring reg_path(StringPrintf(L"Applications\\%ls\\shell\\open\\command",
exe_name.c_str()));
RegKey key(HKEY_CLASSES_ROOT, reg_path.c_str());
std::wstring command;
if (key.Handle()) {
key.ReadValue(NULL, &command);
int found = command.find(L"%1");
if (found >= 0) {
command.replace(found, 2, argument);
}
}
return command;
}
base::ProcessHandle LaunchExecutable(const std::wstring& executable,
const std::wstring& argument) {
base::ProcessHandle process = NULL;
std::wstring path = GetExecutableAppPath(executable);
if (path.empty()) {
path = FormatCommandForApp(executable, argument);
if (path.empty()) {
DLOG(ERROR) << "Failed to find executable: " << executable;
} else {
CommandLine cmdline = CommandLine::FromString(path);
base::LaunchApp(cmdline, false, false, &process);
}
} else {
CommandLine cmdline((FilePath(path)));
cmdline.AppendLooseValue(argument);
base::LaunchApp(cmdline, false, false, &process);
}
return process;
}
base::ProcessHandle LaunchFirefox(const std::wstring& url) {
return LaunchExecutable(kFirefoxImageName, url);
}
base::ProcessHandle LaunchSafari(const std::wstring& url) {
return LaunchExecutable(kSafariImageName, url);
}
base::ProcessHandle LaunchChrome(const std::wstring& url) {
std::wstring path;
PathService::Get(base::DIR_MODULE, &path);
file_util::AppendToPath(&path, kChromeImageName);
FilePath exe_path(path);
CommandLine cmd(exe_path);
std::wstring args = L"--";
args += ASCIIToWide(switches::kNoFirstRun);
args += L" ";
args += url;
cmd.AppendLooseValue(args);
base::ProcessHandle process = NULL;
base::LaunchApp(cmd, false, false, &process);
return process;
}
base::ProcessHandle LaunchOpera(const std::wstring& url) {
// NOTE: For Opera tests to work it must be configured to start up with
// a blank page. There is an command line switch, -nosession, that's supposed
// to avoid opening up the previous session, but that switch is not working.
// TODO(tommi): Include a special ini file (opera6.ini) for opera and launch
// with our required settings. This file is by default stored here:
// "%USERPROFILE%\Application Data\Opera\Opera\profile\opera6.ini"
return LaunchExecutable(kOperaImageName, url);
}
base::ProcessHandle LaunchIEOnVista(const std::wstring& url) {
typedef HRESULT (WINAPI* IELaunchURLPtr)(
const wchar_t* url,
PROCESS_INFORMATION *pi,
VOID *info);
IELaunchURLPtr launch;
PROCESS_INFORMATION pi = {0};
IELAUNCHURLINFO info = {sizeof info, 0};
HMODULE h = LoadLibrary(L"ieframe.dll");
if (!h)
return NULL;
launch = reinterpret_cast<IELaunchURLPtr>(GetProcAddress(h, "IELaunchURL"));
HRESULT hr = launch(url.c_str(), &pi, &info);
FreeLibrary(h);
if (SUCCEEDED(hr))
CloseHandle(pi.hThread);
return pi.hProcess;
}
base::ProcessHandle LaunchIE(const std::wstring& url) {
if (win_util::GetWinVersion() >= win_util::WINVERSION_VISTA) {
return LaunchIEOnVista(url);
} else {
return LaunchExecutable(kIEImageName, url);
}
}
int CloseAllIEWindows() {
int ret = 0;
ScopedComPtr<IShellWindows> windows;
HRESULT hr = ::CoCreateInstance(__uuidof(ShellWindows), NULL, CLSCTX_ALL,
IID_IShellWindows, reinterpret_cast<void**>(windows.Receive()));
DCHECK(SUCCEEDED(hr));
if (SUCCEEDED(hr)) {
long count = 0; // NOLINT
windows->get_Count(&count);
VARIANT i = { VT_I4 };
for (i.lVal = 0; i.lVal < count; ++i.lVal) {
ScopedComPtr<IDispatch> folder;
windows->Item(i, folder.Receive());
if (folder != NULL) {
ScopedComPtr<IWebBrowser2> browser;
if (SUCCEEDED(browser.QueryFrom(folder))) {
browser->Quit();
++ret;
}
}
}
}
return ret;
}
LowIntegrityToken::LowIntegrityToken() : impersonated_(false) {
}
LowIntegrityToken::~LowIntegrityToken() {
RevertToSelf();
}
BOOL LowIntegrityToken::RevertToSelf() {
BOOL ok = TRUE;
if (impersonated_) {
DCHECK(IsImpersonated());
ok = ::RevertToSelf();
if (ok)
impersonated_ = false;
}
return ok;
}
BOOL LowIntegrityToken::Impersonate() {
DCHECK(!impersonated_);
DCHECK(!IsImpersonated());
HANDLE process_token_handle = NULL;
BOOL ok = ::OpenProcessToken(GetCurrentProcess(), TOKEN_DUPLICATE,
&process_token_handle);
if (!ok) {
DLOG(ERROR) << "::OpenProcessToken failed: " << GetLastError();
return ok;
}
ScopedHandle process_token(process_token_handle);
// Create impersonation low integrity token.
HANDLE impersonation_token_handle = NULL;
ok = ::DuplicateTokenEx(process_token,
TOKEN_QUERY | TOKEN_IMPERSONATE | TOKEN_ADJUST_DEFAULT, NULL,
SecurityImpersonation, TokenImpersonation, &impersonation_token_handle);
if (!ok) {
DLOG(ERROR) << "::DuplicateTokenEx failed: " << GetLastError();
return ok;
}
// TODO: sandbox/src/restricted_token_utils.cc has SetTokenIntegrityLevel
// function already.
ScopedHandle impersonation_token(impersonation_token_handle);
PSID integrity_sid = NULL;
TOKEN_MANDATORY_LABEL tml = {0};
ok = ::ConvertStringSidToSid(SDDL_ML_LOW, &integrity_sid);
if (!ok) {
DLOG(ERROR) << "::ConvertStringSidToSid failed: " << GetLastError();
return ok;
}
tml.Label.Attributes = SE_GROUP_INTEGRITY | SE_GROUP_INTEGRITY_ENABLED;
tml.Label.Sid = integrity_sid;
ok = ::SetTokenInformation(impersonation_token, TokenIntegrityLevel,
&tml, sizeof(tml) + ::GetLengthSid(integrity_sid));
::LocalFree(integrity_sid);
if (!ok) {
DLOG(ERROR) << "::SetTokenInformation failed: " << GetLastError();
return ok;
}
// Switch current thread to low integrity.
ok = ::ImpersonateLoggedOnUser(impersonation_token);
if (ok) {
impersonated_ = true;
} else {
DLOG(ERROR) << "::ImpersonateLoggedOnUser failed: " << GetLastError();
}
return ok;
}
bool LowIntegrityToken::IsImpersonated() {
HANDLE token = NULL;
if (!::OpenThreadToken(::GetCurrentThread(), 0, false, &token) &&
::GetLastError() != ERROR_NO_TOKEN) {
return true;
}
if (token)
::CloseHandle(token);
return false;
}
HRESULT LaunchIEAsComServer(IWebBrowser2** web_browser) {
if (!web_browser)
return E_INVALIDARG;
AllowSetForegroundWindow(ASFW_ANY);
HRESULT hr = S_OK;
DWORD cocreate_flags = CLSCTX_LOCAL_SERVER;
chrome_frame_test::LowIntegrityToken token;
// Vista has a bug which manifests itself when a medium integrity process
// launches a COM server like IE which runs in protected mode due to UAC.
// This causes the IWebBrowser2 interface which is returned to be useless,
// i.e it does not receive any events, etc. Our workaround for this is
// to impersonate a low integrity token and then launch IE.
if (win_util::GetWinVersion() == win_util::WINVERSION_VISTA) {
// Create medium integrity browser that will launch IE broker.
ScopedComPtr<IWebBrowser2> medium_integrity_browser;
hr = medium_integrity_browser.CreateInstance(CLSID_InternetExplorer, NULL,
CLSCTX_LOCAL_SERVER);
if (FAILED(hr))
return hr;
medium_integrity_browser->Quit();
// Broker remains alive.
if (!token.Impersonate()) {
hr = HRESULT_FROM_WIN32(GetLastError());
return hr;
}
cocreate_flags |= CLSCTX_ENABLE_CLOAKING;
}
hr = ::CoCreateInstance(CLSID_InternetExplorer, NULL,
cocreate_flags, IID_IWebBrowser2,
reinterpret_cast<void**>(web_browser));
// ~LowIntegrityToken() will switch integrity back to medium.
return hr;
}
FilePath GetProfilePath(const std::wstring& profile_name) {
FilePath profile_path;
chrome::GetChromeFrameUserDataDirectory(&profile_path);
return profile_path.Append(profile_name);
}
_ATL_FUNC_INFO WebBrowserEventSink::kNavigateErrorInfo = {
CC_STDCALL, VT_EMPTY, 5, {
VT_DISPATCH,
VT_VARIANT | VT_BYREF,
VT_VARIANT | VT_BYREF,
VT_VARIANT | VT_BYREF,
VT_BOOL | VT_BYREF,
}
};
_ATL_FUNC_INFO WebBrowserEventSink::kNavigateComplete2Info = {
CC_STDCALL, VT_EMPTY, 2, {
VT_DISPATCH,
VT_VARIANT | VT_BYREF
}
};
_ATL_FUNC_INFO WebBrowserEventSink::kBeforeNavigate2Info = {
CC_STDCALL, VT_EMPTY, 7, {
VT_DISPATCH,
VT_VARIANT | VT_BYREF,
VT_VARIANT | VT_BYREF,
VT_VARIANT | VT_BYREF,
VT_VARIANT | VT_BYREF,
VT_VARIANT | VT_BYREF,
VT_BOOL | VT_BYREF
}
};
_ATL_FUNC_INFO WebBrowserEventSink::kNewWindow2Info = {
CC_STDCALL, VT_EMPTY, 2, {
VT_DISPATCH | VT_BYREF,
VT_BOOL | VT_BYREF,
}
};
_ATL_FUNC_INFO WebBrowserEventSink::kNewWindow3Info = {
CC_STDCALL, VT_EMPTY, 5, {
VT_DISPATCH | VT_BYREF,
VT_BOOL | VT_BYREF,
VT_UINT,
VT_BSTR,
VT_BSTR
}
};
_ATL_FUNC_INFO WebBrowserEventSink::kVoidMethodInfo = {
CC_STDCALL, VT_EMPTY, 0, {NULL}};
_ATL_FUNC_INFO WebBrowserEventSink::kDocumentCompleteInfo = {
CC_STDCALL, VT_EMPTY, 2, {
VT_DISPATCH,
VT_VARIANT | VT_BYREF
}
};
_ATL_FUNC_INFO WebBrowserEventSink::kFileDownloadInfo = {
CC_STDCALL, VT_EMPTY, 2, {
VT_BOOL,
VT_BOOL | VT_BYREF
}
};
// WebBrowserEventSink member defines
void WebBrowserEventSink::Attach(IDispatch* browser_disp) {
EXPECT_TRUE(NULL != browser_disp);
if (browser_disp) {
EXPECT_HRESULT_SUCCEEDED(web_browser2_.QueryFrom(browser_disp));
EXPECT_TRUE(S_OK == DispEventAdvise(web_browser2_,
&DIID_DWebBrowserEvents2));
}
}
void WebBrowserEventSink::Uninitialize() {
DisconnectFromChromeFrame();
if (web_browser2_.get()) {
if (m_dwEventCookie != 0xFEFEFEFE) {
CoDisconnectObject(this, 0);
DispEventUnadvise(web_browser2_);
}
ScopedHandle process;
// process_id_to_wait_for_ is set when we receive OnQuit.
// So, we should only attempt to wait for the browser if we know that
// the browser is truly quitting and if this instance actually launched
// the browser.
if (process_id_to_wait_for_) {
if (is_main_browser_object_) {
process.Set(OpenProcess(SYNCHRONIZE, FALSE, process_id_to_wait_for_));
DLOG_IF(ERROR, !process.IsValid())
<< StringPrintf("OpenProcess failed: %i", ::GetLastError());
}
process_id_to_wait_for_ = 0;
} else {
DLOG_IF(ERROR, is_main_browser_object_)
<< "Main browser event object did not have a valid the process id.";
web_browser2_->Quit();
}
web_browser2_.Release();
if (process) {
DWORD max_wait = kDefaultWaitForIEToTerminateMs;
while (true) {
base::Time start = base::Time::Now();
HANDLE wait_for = process;
DWORD wait = MsgWaitForMultipleObjects(1, &wait_for, FALSE, max_wait,
QS_ALLINPUT);
if (wait == WAIT_OBJECT_0 + 1) {
MSG msg;
while (PeekMessage(&msg, NULL, 0, 0, TRUE) > 0) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
} else if (wait == WAIT_OBJECT_0) {
break;
} else {
DCHECK(wait == WAIT_TIMEOUT);
DLOG(ERROR) << "Wait for IE timed out";
break;
}
base::TimeDelta elapsed = base::Time::Now() - start;
ULARGE_INTEGER ms;
ms.QuadPart = elapsed.InMilliseconds();
DCHECK(ms.HighPart == 0);
if (ms.LowPart > max_wait) {
DLOG(ERROR) << "Wait for IE timed out (2)";
break;
} else {
max_wait -= ms.LowPart;
}
}
}
}
}
STDMETHODIMP WebBrowserEventSink::OnBeforeNavigate2Internal(
IDispatch* dispatch, VARIANT* url, VARIANT* flags,
VARIANT* target_frame_name, VARIANT* post_data, VARIANT* headers,
VARIANT_BOOL* cancel) {
DLOG(INFO) << __FUNCTION__
<< StringPrintf("%ls - 0x%08X", url->bstrVal, this);
// Reset any existing reference to chrome frame since this is a new
// navigation.
DisconnectFromChromeFrame();
OnBeforeNavigate2(dispatch, url, flags, target_frame_name, post_data,
headers, cancel);
return S_OK;
}
STDMETHODIMP_(void) WebBrowserEventSink::OnNavigateComplete2Internal(
IDispatch* dispatch, VARIANT* url) {
DLOG(INFO) << __FUNCTION__;
ConnectToChromeFrame();
OnNavigateComplete2(dispatch, url);
}
STDMETHODIMP_(void) WebBrowserEventSink::OnDocumentCompleteInternal(
IDispatch* dispatch, VARIANT* url) {
DLOG(INFO) << __FUNCTION__;
OnDocumentComplete(dispatch, url);
}
STDMETHODIMP_(void) WebBrowserEventSink::OnFileDownloadInternal(
VARIANT_BOOL active_doc, VARIANT_BOOL* cancel) {
DLOG(INFO) << __FUNCTION__ << StringPrintf(" 0x%08X ad=%i", this, active_doc);
OnFileDownload(active_doc, cancel);
// Always cancel file downloads in tests.
*cancel = VARIANT_TRUE;
}
STDMETHODIMP_(void) WebBrowserEventSink::OnNewWindow3Internal(
IDispatch** dispatch, VARIANT_BOOL* cancel, DWORD flags, BSTR url_context,
BSTR url) {
DLOG(INFO) << __FUNCTION__;
if (!dispatch) {
NOTREACHED() << "Invalid argument - dispatch";
return;
}
// Call the OnNewWindow3 with original args
OnNewWindow3(dispatch, cancel, flags, url_context, url);
// Note that |dispatch| is an [in/out] argument. IE is asking listeners if
// they want to use a IWebBrowser2 of their choice for the new window.
// Since we need to listen on events on the new browser, we create one
// if needed.
if (!*dispatch) {
ScopedComPtr<IDispatch> new_browser;
HRESULT hr = new_browser.CreateInstance(CLSID_InternetExplorer, NULL,
CLSCTX_LOCAL_SERVER);
DCHECK(SUCCEEDED(hr) && new_browser);
*dispatch = new_browser.Detach();
}
if (*dispatch)
OnNewBrowserWindow(*dispatch, url);
}
HRESULT WebBrowserEventSink::OnLoadInternal(const VARIANT* param) {
DLOG(INFO) << __FUNCTION__ << " " << param->bstrVal;
if (chrome_frame_) {
OnLoad(param->bstrVal);
} else {
DLOG(WARNING) << "Invalid chrome frame pointer";
}
return S_OK;
}
HRESULT WebBrowserEventSink::OnLoadErrorInternal(const VARIANT* param) {
DLOG(INFO) << __FUNCTION__ << " " << param->bstrVal;
if (chrome_frame_) {
OnLoadError(param->bstrVal);
} else {
DLOG(WARNING) << "Invalid chrome frame pointer";
}
return S_OK;
}
HRESULT WebBrowserEventSink::OnMessageInternal(const VARIANT* param) {
DLOG(INFO) << __FUNCTION__ << " " << param;
if (!chrome_frame_.get()) {
DLOG(WARNING) << "Invalid chrome frame pointer";
return S_OK;
}
ScopedVariant data, origin, source;
if (param && (V_VT(param) == VT_DISPATCH)) {
wchar_t* properties[] = { L"data", L"origin", L"source" };
const int prop_count = arraysize(properties);
DISPID ids[prop_count] = {0};
HRESULT hr = param->pdispVal->GetIDsOfNames(IID_NULL, properties,
prop_count, LOCALE_SYSTEM_DEFAULT, ids);
if (SUCCEEDED(hr)) {
DISPPARAMS params = { 0 };
EXPECT_HRESULT_SUCCEEDED(param->pdispVal->Invoke(ids[0], IID_NULL,
LOCALE_SYSTEM_DEFAULT, DISPATCH_PROPERTYGET, ¶ms,
data.Receive(), NULL, NULL));
EXPECT_HRESULT_SUCCEEDED(param->pdispVal->Invoke(ids[1], IID_NULL,
LOCALE_SYSTEM_DEFAULT, DISPATCH_PROPERTYGET, ¶ms,
origin.Receive(), NULL, NULL));
EXPECT_HRESULT_SUCCEEDED(param->pdispVal->Invoke(ids[2], IID_NULL,
LOCALE_SYSTEM_DEFAULT, DISPATCH_PROPERTYGET, ¶ms,
source.Receive(), NULL, NULL));
}
}
OnMessage(V_BSTR(&data), V_BSTR(&origin), V_BSTR(&source));
return S_OK;
}
HRESULT WebBrowserEventSink::LaunchIEAndNavigate(
const std::wstring& navigate_url) {
is_main_browser_object_ = true;
HRESULT hr = LaunchIEAsComServer(web_browser2_.Receive());
EXPECT_EQ(S_OK, hr);
if (hr == S_OK) {
web_browser2_->put_Visible(VARIANT_TRUE);
hr = DispEventAdvise(web_browser2_, &DIID_DWebBrowserEvents2);
EXPECT_TRUE(hr == S_OK);
hr = Navigate(navigate_url);
}
DLOG_IF(WARNING, FAILED(hr)) << "Failed to launch IE. Error:" << hr;
return hr;
}
HRESULT WebBrowserEventSink::Navigate(const std::wstring& navigate_url) {
VARIANT empty = ScopedVariant::kEmptyVariant;
ScopedVariant url;
url.Set(navigate_url.c_str());
HRESULT hr = S_OK;
hr = web_browser2_->Navigate2(url.AsInput(), &empty, &empty, &empty, &empty);
EXPECT_TRUE(hr == S_OK);
return hr;
}
void WebBrowserEventSink::SetFocusToChrome() {
simulate_input::SetKeyboardFocusToWindow(GetRendererWindow());
}
void WebBrowserEventSink::SendKeys(const wchar_t* input_string) {
SetFocusToChrome();
simulate_input::SendStringW(input_string);
}
void WebBrowserEventSink::SendMouseClick(int x, int y,
simulate_input::MouseButton button) {
simulate_input::SendMouseClick(GetRendererWindow(), x, y, button);
}
void WebBrowserEventSink::SendMouseClickToIE(int x, int y,
simulate_input::MouseButton button) {
simulate_input::SendMouseClick(GetIERendererWindow(), x, y, button);
}
void WebBrowserEventSink::ConnectToChromeFrame() {
DCHECK(web_browser2_);
if (chrome_frame_.get())
return;
ScopedComPtr<IShellBrowser> shell_browser;
DoQueryService(SID_STopLevelBrowser, web_browser2_,
shell_browser.Receive());
if (shell_browser) {
ScopedComPtr<IShellView> shell_view;
shell_browser->QueryActiveShellView(shell_view.Receive());
if (shell_view) {
shell_view->GetItemObject(SVGIO_BACKGROUND, __uuidof(IChromeFrame),
reinterpret_cast<void**>(chrome_frame_.Receive()));
}
if (chrome_frame_) {
ScopedVariant onmessage(onmessage_.ToDispatch());
ScopedVariant onloaderror(onloaderror_.ToDispatch());
ScopedVariant onload(onload_.ToDispatch());
EXPECT_HRESULT_SUCCEEDED(chrome_frame_->put_onmessage(onmessage));
EXPECT_HRESULT_SUCCEEDED(chrome_frame_->put_onloaderror(onloaderror));
EXPECT_HRESULT_SUCCEEDED(chrome_frame_->put_onload(onload));
}
}
}
void WebBrowserEventSink::DisconnectFromChromeFrame() {
if (chrome_frame_) {
// Use a local ref counted copy of the IChromeFrame interface as the
// outgoing calls could cause the interface to be deleted due to a message
// pump running in the context of the outgoing call.
ScopedComPtr<IChromeFrame> chrome_frame(chrome_frame_);
chrome_frame_.Release();
ScopedVariant dummy(static_cast<IDispatch*>(NULL));
chrome_frame->put_onmessage(dummy);
chrome_frame->put_onload(dummy);
chrome_frame->put_onloaderror(dummy);
}
}
HWND WebBrowserEventSink::GetRendererWindow() {
DCHECK(chrome_frame_);
HWND renderer_window = NULL;
ScopedComPtr<IOleWindow> ole_window;
ole_window.QueryFrom(chrome_frame_);
EXPECT_TRUE(ole_window.get());
if (ole_window) {
HWND activex_window = NULL;
ole_window->GetWindow(&activex_window);
EXPECT_TRUE(IsWindow(activex_window));
// chrome tab window is the first (and the only) child of activex
HWND chrome_tab_window = GetWindow(activex_window, GW_CHILD);
EXPECT_TRUE(IsWindow(chrome_tab_window));
renderer_window = GetWindow(chrome_tab_window, GW_CHILD);
}
EXPECT_TRUE(IsWindow(renderer_window));
return renderer_window;
}
HWND WebBrowserEventSink::GetIERendererWindow() {
DCHECK(web_browser2_);
HWND renderer_window = NULL;
ScopedComPtr<IDispatch> doc;
HRESULT hr = web_browser2_->get_Document(doc.Receive());
EXPECT_HRESULT_SUCCEEDED(hr);
EXPECT_TRUE(doc);
if (doc) {
ScopedComPtr<IOleWindow> ole_window;
ole_window.QueryFrom(doc);
EXPECT_TRUE(ole_window);
if (ole_window) {
ole_window->GetWindow(&renderer_window);
}
}
return renderer_window;
}
HRESULT WebBrowserEventSink::SetWebBrowser(IWebBrowser2* web_browser2) {
DCHECK(web_browser2_.get() == NULL);
DCHECK(!is_main_browser_object_);
web_browser2_ = web_browser2;
web_browser2_->put_Visible(VARIANT_TRUE);
HRESULT hr = DispEventAdvise(web_browser2_, &DIID_DWebBrowserEvents2);
return hr;
}
HRESULT WebBrowserEventSink::CloseWebBrowser() {
DCHECK(process_id_to_wait_for_ == 0);
if (!web_browser2_)
return E_FAIL;
DisconnectFromChromeFrame();
web_browser2_->Quit();
return S_OK;
}
void WebBrowserEventSink::ExpectRendererWindowHasFocus() {
HWND renderer_window = GetRendererWindow();
EXPECT_TRUE(IsWindow(renderer_window));
for (HWND first_child = renderer_window;
IsWindow(first_child); first_child = GetWindow(first_child, GW_CHILD)) {
renderer_window = first_child;
}
wchar_t class_name[MAX_PATH] = {0};
GetClassName(renderer_window, class_name, arraysize(class_name));
EXPECT_EQ(0, _wcsicmp(class_name, L"Chrome_RenderWidgetHostHWND"));
DWORD renderer_thread = 0;
DWORD renderer_process = 0;
renderer_thread = GetWindowThreadProcessId(renderer_window,
&renderer_process);
ASSERT_TRUE(AttachThreadInput(GetCurrentThreadId(), renderer_thread, TRUE));
HWND focus_window = GetFocus();
EXPECT_TRUE(focus_window == renderer_window);
EXPECT_TRUE(AttachThreadInput(GetCurrentThreadId(), renderer_thread, FALSE));
}
void WebBrowserEventSink::ExpectIERendererWindowHasFocus() {
HWND renderer_window = GetIERendererWindow();
EXPECT_TRUE(IsWindow(renderer_window));
DWORD renderer_thread = 0;
DWORD renderer_process = 0;
renderer_thread = GetWindowThreadProcessId(renderer_window,
&renderer_process);
ASSERT_TRUE(AttachThreadInput(GetCurrentThreadId(), renderer_thread, TRUE));
HWND focus_window = GetFocus();
EXPECT_TRUE(focus_window == renderer_window);
EXPECT_TRUE(AttachThreadInput(GetCurrentThreadId(), renderer_thread, FALSE));
}
void WebBrowserEventSink::ExpectAddressBarUrl(
const std::wstring& expected_url) {
DCHECK(web_browser2_);
if (web_browser2_) {
ScopedBstr address_bar_url;
EXPECT_EQ(S_OK, web_browser2_->get_LocationURL(address_bar_url.Receive()));
EXPECT_EQ(expected_url, std::wstring(address_bar_url));
}
}
void WebBrowserEventSink::Exec(const GUID* cmd_group_guid, DWORD command_id,
DWORD cmd_exec_opt, VARIANT* in_args,
VARIANT* out_args) {
ScopedComPtr<IOleCommandTarget> shell_browser_cmd_target;
DoQueryService(SID_STopLevelBrowser, web_browser2_,
shell_browser_cmd_target.Receive());
ASSERT_TRUE(NULL != shell_browser_cmd_target);
EXPECT_HRESULT_SUCCEEDED(shell_browser_cmd_target->Exec(cmd_group_guid,
command_id, cmd_exec_opt, in_args, out_args));
}
void WebBrowserEventSink::WatchChromeWindow(const wchar_t* window_class) {
DCHECK(window_class);
window_watcher_.AddObserver(this, WideToUTF8(window_class));
}
void WebBrowserEventSink::StopWatching() {
window_watcher_.RemoveObserver(this);
}
std::wstring GetExeVersion(const std::wstring& exe_path) {
scoped_ptr<FileVersionInfo> ie_version_info(
FileVersionInfo::CreateFileVersionInfo(FilePath(exe_path)));
return ie_version_info->product_version();
}
IEVersion GetInstalledIEVersion() {
std::wstring path = chrome_frame_test::GetExecutableAppPath(kIEImageName);
std::wstring version = GetExeVersion(path);
switch (version[0]) {
case '6':
return IE_6;
case '7':
return IE_7;
case '8':
return IE_8;
default:
break;
}
return IE_UNSUPPORTED;
}
FilePath GetProfilePathForIE() {
FilePath profile_path;
// Browsers without IDeleteBrowsingHistory in non-priv mode
// have their profiles moved into "Temporary Internet Files".
// The code below basically retrieves the version of IE and computes
// the profile directory accordingly.
if (GetInstalledIEVersion() == IE_8) {
profile_path = GetProfilePath(kIEProfileName);
} else {
profile_path = GetIETemporaryFilesFolder();
profile_path = profile_path.Append(L"Google Chrome Frame");
}
return profile_path;
}
} // namespace chrome_frame_test
|