blob: 25eb8422219e021290a273074e26ec21896be082 (
plain)
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
|
// 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_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_
#define CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_
#pragma once
#include <string>
#include "base/file_path.h"
#include "base/message_loop.h"
#include "base/win/scoped_handle.h"
#include "chrome/app/scoped_ole_initializer.h"
#include "chrome/browser/browser_process_impl.h"
#include "chrome_frame/test_utils.h"
#include "chrome_frame/test/test_server.h"
#include "chrome_frame/test/net/test_automation_provider.h"
#include "chrome_frame/test/net/process_singleton_subclass.h"
#include "content/browser/browser_thread.h"
#include "net/base/net_test_suite.h"
class ProcessSingleton;
class FakeExternalTab {
public:
FakeExternalTab();
virtual ~FakeExternalTab();
virtual void Initialize();
virtual void Shutdown();
const FilePath& user_data() const {
return user_data_dir_;
}
MessageLoopForUI* ui_loop() {
return &loop_;
}
protected:
MessageLoopForUI loop_;
scoped_ptr<BrowserProcess> browser_process_;
FilePath overridden_user_dir_;
FilePath user_data_dir_;
scoped_ptr<ProcessSingleton> process_singleton_;
};
// The "master class" that spins the UI and test threads.
class CFUrlRequestUnittestRunner
: public NetTestSuite,
public ProcessSingletonSubclassDelegate,
public TestAutomationProviderDelegate {
public:
CFUrlRequestUnittestRunner(int argc, char** argv);
~CFUrlRequestUnittestRunner();
virtual void StartChromeFrameInHostBrowser();
virtual void ShutDownHostBrowser();
// Overrides to not call icu initialize
virtual void Initialize();
virtual void Shutdown();
// ProcessSingletonSubclassDelegate.
virtual void OnConnectAutomationProviderToChannel(
const std::string& channel_id);
// TestAutomationProviderDelegate.
virtual void OnInitialTabLoaded();
void RunMainUIThread();
void StartTests();
// Borrowed from TestSuite::Initialize().
static void InitializeLogging();
int test_result() const {
return test_result_;
}
protected:
// This is the thread that runs all the UrlRequest tests.
// Within its context, the Initialize() and Shutdown() routines above
// will be called.
static DWORD WINAPI RunAllUnittests(void* param);
static void TakeDownBrowser(CFUrlRequestUnittestRunner* me);
protected:
base::win::ScopedHandle test_thread_;
DWORD test_thread_id_;
scoped_ptr<test_server::SimpleWebServer> test_http_server_;
test_server::SimpleResponse chrome_frame_html_;
// The fake chrome instance. This instance owns the UI message loop
// on the main thread.
FakeExternalTab fake_chrome_;
scoped_ptr<ProcessSingletonSubclass> pss_subclass_;
scoped_ptr<BrowserThread> main_thread_;
ScopedChromeFrameRegistrar registrar_;
int test_result_;
};
#endif // CHROME_FRAME_TEST_NET_FAKE_EXTERNAL_TAB_H_
|